diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7c8397e4c1a..78b05f9c87e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -48,10 +48,17 @@ jobs: cd RobustToolbox git fetch --depth=1 - - name: Package all - run: | - Tools/package_server_build.py -p win-x64 linux-x64 osx-x64 linux-arm64 - Tools/package_client_build.py + - name: Install dependencies + run: dotnet restore + + - name: Build Packaging + run: dotnet build Content.Packaging --configuration Release --no-restore /m + + - name: Package server + run: dotnet run --project Content.Packaging server --platform win-x64 --platform linux-x64 --platform osx-x64 --platform linux-arm64 + + - name: Package client + run: dotnet run --project Content.Packaging client --no-wipe-release - name: Update Build Info env: diff --git a/.github/workflows/test-packaging.yml b/.github/workflows/test-packaging.yml index 7c3ac758761..859c04ce8cc 100644 --- a/.github/workflows/test-packaging.yml +++ b/.github/workflows/test-packaging.yml @@ -70,11 +70,15 @@ jobs: - name: Install dependencies run: dotnet restore - - name: Package client - run: | - Tools/package_server_build.py -p win-x64 linux-x64 osx-x64 linux-arm64 - Tools/package_client_build.py + - name: Build Packaging + run: dotnet build Content.Packaging --configuration Release --no-restore /m + - name: Package server + run: dotnet run --project Content.Packaging server --platform win-x64 --platform linux-x64 --platform osx-x64 --platform linux-arm64 + + - name: Package client + run: dotnet run --project Content.Packaging client --no-wipe-release + - name: Update Build Info env: FORK_ID: ${{ vars.FORK_ID }} diff --git a/Content.Client/Administration/UI/CustomControls/PlayerListControl.xaml.cs b/Content.Client/Administration/UI/CustomControls/PlayerListControl.xaml.cs index 5fa28bf1ac7..39749f8ac6f 100644 --- a/Content.Client/Administration/UI/CustomControls/PlayerListControl.xaml.cs +++ b/Content.Client/Administration/UI/CustomControls/PlayerListControl.xaml.cs @@ -60,7 +60,7 @@ private void PlayerListItemPressed(BaseButton.ButtonEventArgs? args, ListData? d } else if (args.Event.Function == EngineKeyFunctions.UseSecondary && selectedPlayer.NetEntity != null) { - _uiManager.GetUIController().OpenVerbMenu(_entManager.GetEntity(selectedPlayer.NetEntity.Value)); + _uiManager.GetUIController().OpenVerbMenu(selectedPlayer.NetEntity.Value, true); } } diff --git a/Content.Client/Administration/UI/Tabs/PlayerTab/PlayerTab.xaml.cs b/Content.Client/Administration/UI/Tabs/PlayerTab/PlayerTab.xaml.cs index 4f77369b57b..1190a4c329c 100644 --- a/Content.Client/Administration/UI/Tabs/PlayerTab/PlayerTab.xaml.cs +++ b/Content.Client/Administration/UI/Tabs/PlayerTab/PlayerTab.xaml.cs @@ -14,11 +14,13 @@ namespace Content.Client.Administration.UI.Tabs.PlayerTab [GenerateTypedNameReferences] public sealed partial class PlayerTab : Control { + [Dependency] private readonly IEntityManager _entManager = default!; + [Dependency] private readonly IPlayerManager _playerMan = default!; + private const string ArrowUp = "↑"; 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(); @@ -30,7 +32,7 @@ public sealed partial class PlayerTab : Control public PlayerTab() { - _entManager = IoCManager.Resolve(); + IoCManager.InjectDependencies(this); _adminSystem = _entManager.System(); RobustXamlLoader.Load(this); RefreshPlayerList(_adminSystem.PlayerList); @@ -95,13 +97,11 @@ private void RefreshPlayerList(IReadOnlyList players) foreach (var child in PlayerList.Children.ToArray()) { if (child is PlayerTabEntry) - child.Orphan(); + child.Dispose(); } _players = players; - - var playerManager = IoCManager.Resolve(); - PlayerCount.Text = $"Players: {playerManager.PlayerCount}"; + PlayerCount.Text = $"Players: {_playerMan.PlayerCount}"; var sortedPlayers = new List(players); sortedPlayers.Sort(Compare); diff --git a/Content.Client/Construction/UI/ConstructionMenuPresenter.cs b/Content.Client/Construction/UI/ConstructionMenuPresenter.cs index cdc9044a40f..28cf3ba16c0 100644 --- a/Content.Client/Construction/UI/ConstructionMenuPresenter.cs +++ b/Content.Client/Construction/UI/ConstructionMenuPresenter.cs @@ -1,9 +1,11 @@ using System.Linq; using Content.Client.UserInterface.Systems.MenuBar.Widgets; using Content.Shared.Construction.Prototypes; +using Content.Shared.Tag; using Robust.Client.GameObjects; using Robust.Client.Graphics; using Robust.Client.Placement; +using Robust.Client.Player; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Client.Utility; @@ -25,6 +27,7 @@ internal sealed class ConstructionMenuPresenter : IDisposable [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly IPlacementManager _placementManager = default!; [Dependency] private readonly IUserInterfaceManager _uiManager = default!; + [Dependency] private readonly IPlayerManager _playerManager = default!; private readonly IConstructionMenuView _constructionView; @@ -152,6 +155,11 @@ private void OnViewPopulateRecipes(object? sender, (string search, string catago if (recipe.Hide) continue; + if (_playerManager.LocalSession == null + || _playerManager.LocalEntity == null + || (recipe.EntityWhitelist != null && !recipe.EntityWhitelist.IsValid(_playerManager.LocalEntity.Value))) + continue; + if (!string.IsNullOrEmpty(search)) { if (!recipe.Name.ToLowerInvariant().Contains(search.Trim().ToLowerInvariant())) diff --git a/Content.Client/Overlays/ShowSyndicateIconsSystem.cs b/Content.Client/Overlays/ShowSyndicateIconsSystem.cs new file mode 100644 index 00000000000..25d4d9b895b --- /dev/null +++ b/Content.Client/Overlays/ShowSyndicateIconsSystem.cs @@ -0,0 +1,43 @@ +using Content.Shared.Overlays; +using Content.Shared.StatusIcon.Components; +using Content.Shared.NukeOps; +using Content.Shared.StatusIcon; +using Robust.Shared.Prototypes; + +namespace Content.Client.Overlays; +public sealed class ShowSyndicateIconsSystem : EquipmentHudSystem +{ + [Dependency] private readonly IPrototypeManager _prototype = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnGetStatusIconsEvent); + } + + private void OnGetStatusIconsEvent(EntityUid uid, NukeOperativeComponent nukeOperativeComponent, ref GetStatusIconsEvent args) + { + if (!IsActive || args.InContainer) + { + return; + } + + var healthIcons = SyndicateIcon(uid, nukeOperativeComponent); + + args.StatusIcons.AddRange(healthIcons); + } + + private IReadOnlyList SyndicateIcon(EntityUid uid, NukeOperativeComponent nukeOperativeComponent) + { + var result = new List(); + + if (_prototype.TryIndex(nukeOperativeComponent.SyndStatusIcon, out var syndicateicon)) + { + result.Add(syndicateicon); + } + + return result; + } +} + diff --git a/Content.Client/PowerCell/PowerCellSystem.cs b/Content.Client/PowerCell/PowerCellSystem.cs index ec69f0d56b4..1423dffaa39 100644 --- a/Content.Client/PowerCell/PowerCellSystem.cs +++ b/Content.Client/PowerCell/PowerCellSystem.cs @@ -1,4 +1,5 @@ using Content.Shared.PowerCell; +using Content.Shared.PowerCell.Components; using JetBrains.Annotations; using Robust.Client.GameObjects; @@ -15,6 +16,29 @@ public override void Initialize() SubscribeLocalEvent(OnPowerCellVisualsChange); } + /// + public override bool HasActivatableCharge(EntityUid uid, PowerCellDrawComponent? battery = null, PowerCellSlotComponent? cell = null, + EntityUid? user = null) + { + if (!Resolve(uid, ref battery, ref cell, false)) + return true; + + return battery.CanUse; + } + + /// + public override bool HasDrawCharge( + EntityUid uid, + PowerCellDrawComponent? battery = null, + PowerCellSlotComponent? cell = null, + EntityUid? user = null) + { + if (!Resolve(uid, ref battery, ref cell, false)) + return true; + + return battery.CanDraw; + } + private void OnPowerCellVisualsChange(EntityUid uid, PowerCellVisualsComponent component, ref AppearanceChangeEvent args) { if (args.Sprite == null) diff --git a/Content.Client/Roles/RoleSystem.cs b/Content.Client/Roles/RoleSystem.cs index 6a98320af4e..5c27e173d38 100644 --- a/Content.Client/Roles/RoleSystem.cs +++ b/Content.Client/Roles/RoleSystem.cs @@ -1,5 +1,7 @@ -namespace Content.Client.Roles; +using Content.Shared.Roles; -public sealed class RoleSystem : EntitySystem +namespace Content.Client.Roles; + +public sealed class RoleSystem : SharedRoleSystem { } diff --git a/Content.Client/Storage/UI/StorageWindow.cs b/Content.Client/Storage/UI/StorageWindow.cs index fb3f7cd33fa..b096e8d472e 100644 --- a/Content.Client/Storage/UI/StorageWindow.cs +++ b/Content.Client/Storage/UI/StorageWindow.cs @@ -1,4 +1,5 @@ using System.Numerics; +using Content.Client.Items.Systems; using Content.Client.Message; using Robust.Client.Graphics; using Robust.Client.UserInterface.Controls; @@ -23,6 +24,7 @@ public sealed class StorageWindow : FancyWindow private readonly IEntityManager _entityManager; private readonly SharedStorageSystem _storage; + private readonly ItemSystem _item; private readonly RichTextLabel _information; public readonly ContainerButton StorageContainerButton; @@ -34,6 +36,7 @@ public StorageWindow(IEntityManager entityManager) { _entityManager = entityManager; _storage = _entityManager.System(); + _item = _entityManager.System(); SetSize = new Vector2(240, 320); Title = Loc.GetString("comp-storage-window-title"); RectClipContent = true; @@ -69,7 +72,7 @@ public StorageWindow(IEntityManager entityManager) _information.SetMessage(Loc.GetString("comp-storage-window-weight", ("weight", 0), ("maxWeight", 0), - ("size", SharedItemSystem.GetItemSizeLocale(ItemSize.Normal)))); + ("size", _item.GetItemSizeLocale(SharedStorageSystem.DefaultStorageMaxItemSize)))); vBox.AddChild(_information); @@ -117,14 +120,14 @@ private void SetStorageInformation(Entity uid) _information.SetMarkup(Loc.GetString("comp-storage-window-weight", ("weight", _storage.GetCumulativeItemSizes(uid, uid.Comp)), ("maxWeight", uid.Comp.MaxTotalWeight), - ("size", SharedItemSystem.GetItemSizeLocale(_storage.GetMaxItemSize((uid, uid.Comp)))))); + ("size", _item.GetItemSizeLocale(_storage.GetMaxItemSize((uid, uid.Comp)))))); } else { _information.SetMarkup(Loc.GetString("comp-storage-window-slots", ("itemCount", uid.Comp.Container.ContainedEntities.Count), ("maxCount", uid.Comp.MaxSlots), - ("size", SharedItemSystem.GetItemSizeLocale(_storage.GetMaxItemSize((uid, uid.Comp)))))); + ("size", _item.GetItemSizeLocale(_storage.GetMaxItemSize((uid, uid.Comp)))))); } } @@ -167,7 +170,7 @@ public void GenerateButton(ListData data, ListContainerButton button) { Align = Label.AlignMode.Right, Text = item?.Size != null - ? $"{SharedItemSystem.GetItemSizeWeight(item.Size)}" + ? $"{_item.GetItemSizeWeight(item.Size)}" : Loc.GetString("comp-storage-no-item-size") } } diff --git a/Content.Client/UserInterface/Systems/Admin/AdminUIController.cs b/Content.Client/UserInterface/Systems/Admin/AdminUIController.cs index 4a7a57e5272..acb79cf3012 100644 --- a/Content.Client/UserInterface/Systems/Admin/AdminUIController.cs +++ b/Content.Client/UserInterface/Systems/Admin/AdminUIController.cs @@ -187,7 +187,7 @@ private void PlayerTabEntryPressed(ButtonEventArgs args) if (function == EngineKeyFunctions.UIClick) _conHost.ExecuteCommand($"vv {entity}"); else if (function == EngineKeyFunctions.UseSecondary) - _verb.OpenVerbMenu(EntityManager.GetEntity(entity), true); + _verb.OpenVerbMenu(entity, true); else return; diff --git a/Content.Client/Verbs/UI/VerbMenuUIController.cs b/Content.Client/Verbs/UI/VerbMenuUIController.cs index 6347564ec82..165b55131af 100644 --- a/Content.Client/Verbs/UI/VerbMenuUIController.cs +++ b/Content.Client/Verbs/UI/VerbMenuUIController.cs @@ -9,6 +9,7 @@ using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controllers; using Robust.Shared.Input; +using Robust.Shared.Utility; namespace Content.Client.Verbs.UI { @@ -29,7 +30,7 @@ public sealed class VerbMenuUIController : UIController, IOnStateEntered CurrentVerbs = new(); /// @@ -64,8 +65,25 @@ public void OnStateExited(GameplayState state) /// public void OpenVerbMenu(EntityUid target, bool force = false, ContextMenuPopup? popup=null) { - if (_playerManager.LocalPlayer?.ControlledEntity is not {Valid: true} user || - _combatMode.IsInCombatMode(user)) + DebugTools.Assert(target.IsValid()); + OpenVerbMenu(EntityManager.GetNetEntity(target), force, popup); + } + + /// + /// Open a verb menu and fill it with verbs applicable to the given target entity. + /// + /// Entity to get verbs on. + /// Used to force showing all verbs. Only works on networked entities if the user is an admin. + /// + /// If this is not null, verbs will be placed into the given popup instead. + /// + public void OpenVerbMenu(NetEntity target, bool force = false, ContextMenuPopup? popup=null) + { + DebugTools.Assert(target.IsValid()); + if (_playerManager.LocalEntity is not {Valid: true} user) + return; + + if (!force && _combatMode.IsInCombatMode(user)) return; Close(); @@ -82,7 +100,7 @@ public void OpenVerbMenu(EntityUid target, bool force = false, ContextMenuPopup? // Add indicator that some verbs may be missing. // I long for the day when verbs will all be predicted and this becomes unnecessary. - if (!EntityManager.IsClientSide(target)) + if (!target.IsClientSide()) { _context.AddElement(menu, new ContextMenuElement(Loc.GetString("verb-system-waiting-on-server-text"))); } @@ -248,7 +266,7 @@ private void Close() private void HandleVerbsResponse(VerbsResponseEvent msg) { - if (OpenMenu == null || !OpenMenu.Visible || CurrentTarget != EntityManager.GetEntity(msg.Entity)) + if (OpenMenu == null || !OpenMenu.Visible || CurrentTarget != msg.Entity) return; AddServerVerbs(msg.Verbs, OpenMenu); diff --git a/Content.Client/Verbs/VerbSystem.cs b/Content.Client/Verbs/VerbSystem.cs index e71da351b94..34634482c61 100644 --- a/Content.Client/Verbs/VerbSystem.cs +++ b/Content.Client/Verbs/VerbSystem.cs @@ -170,28 +170,27 @@ public bool TryGetEntityMenuEntities(MapCoordinates targetPos, [NotNullWhen(true /// public SortedSet GetVerbs(EntityUid target, EntityUid user, Type type, bool force = false) { - return GetVerbs(target, user, new List() { type }, force); + return GetVerbs(GetNetEntity(target), user, new List() { type }, force); } /// /// Ask the server to send back a list of server-side verbs, and for now return an incomplete list of verbs /// (only those defined locally). /// - public SortedSet GetVerbs(EntityUid target, EntityUid user, List verbTypes, + public SortedSet GetVerbs(NetEntity target, EntityUid user, List verbTypes, bool force = false) { - if (!IsClientSide(target)) - { - RaiseNetworkEvent(new RequestServerVerbsEvent(GetNetEntity(target), verbTypes, adminRequest: force)); - } + if (!target.IsClientSide()) + RaiseNetworkEvent(new RequestServerVerbsEvent(target, verbTypes, adminRequest: force)); // Some admin menu interactions will try get verbs for entities that have not yet been sent to the player. - if (!Exists(target)) + if (!TryGetEntity(target, out var local)) return new(); - return GetLocalVerbs(target, user, verbTypes, force); + return GetLocalVerbs(local.Value, user, verbTypes, force); } + /// /// Execute actions associated with the given verb. /// @@ -200,8 +199,18 @@ public SortedSet GetVerbs(EntityUid target, EntityUid user, List ver /// public void ExecuteVerb(EntityUid target, Verb verb) { - var user = _playerManager.LocalPlayer?.ControlledEntity; - if (user == null) + ExecuteVerb(GetNetEntity(target), verb); + } + + /// + /// Execute actions associated with the given verb. + /// + /// + /// Unless this is a client-exclusive verb, this will also tell the server to run the same verb. + /// + public void ExecuteVerb(NetEntity target, Verb verb) + { + if ( _playerManager.LocalEntity is not {} user) return; // is this verb actually valid? @@ -209,16 +218,16 @@ public void ExecuteVerb(EntityUid target, Verb verb) { // maybe send an informative pop-up message. if (!string.IsNullOrWhiteSpace(verb.Message)) - _popupSystem.PopupEntity(verb.Message, user.Value); + _popupSystem.PopupEntity(verb.Message, user); return; } - if (verb.ClientExclusive || IsClientSide(target)) + if (verb.ClientExclusive || target.IsClientSide()) // is this a client exclusive (gui) verb? - ExecuteVerb(verb, user.Value, target); + ExecuteVerb(verb, user, GetEntity(target)); else - EntityManager.RaisePredictiveEvent(new ExecuteVerbEvent(GetNetEntity(target), verb)); + EntityManager.RaisePredictiveEvent(new ExecuteVerbEvent(target, verb)); } private void HandleVerbResponse(VerbsResponseEvent msg) diff --git a/Content.IntegrationTests/Tests/StorageTest.cs b/Content.IntegrationTests/Tests/StorageTest.cs index e9781ef47a2..a5944f43949 100644 --- a/Content.IntegrationTests/Tests/StorageTest.cs +++ b/Content.IntegrationTests/Tests/StorageTest.cs @@ -26,6 +26,9 @@ public async Task StorageSizeArbitrageTest() var server = pair.Server; var protoManager = server.ResolveDependency(); + var entMan = server.ResolveDependency(); + + var itemSys = entMan.System(); await server.WaitAssertion(() => { @@ -37,7 +40,9 @@ await server.WaitAssertion(() => !proto.TryGetComponent("Item", out var item)) continue; - Assert.That(storage.MaxItemSize.Value, Is.LessThanOrEqualTo(item.Size), $"Found storage arbitrage on {proto.ID}"); + Assert.That(itemSys.GetSizePrototype(storage.MaxItemSize.Value).Weight, + Is.LessThanOrEqualTo(itemSys.GetSizePrototype(item.Size).Weight), + $"Found storage arbitrage on {proto.ID}"); } }); await pair.CleanReturnAsync(); @@ -77,10 +82,16 @@ public async Task TestSufficientSpaceForFill() await using var pair = await PoolManager.GetServerClient(); var server = pair.Server; + var entMan = server.ResolveDependency(); var protoMan = server.ResolveDependency(); var compFact = server.ResolveDependency(); var id = compFact.GetComponentName(typeof(StorageFillComponent)); + var itemSys = entMan.System(); + + var allSizes = protoMan.EnumeratePrototypes().ToList(); + allSizes.Sort(); + Assert.Multiple(() => { foreach (var proto in PoolManager.GetPrototypesWithComponent(server)) @@ -97,14 +108,29 @@ public async Task TestSufficientSpaceForFill() proto.TryGetComponent("Item", out var item); var fill = (StorageFillComponent) proto.Components[id].Component; - var size = GetFillSize(fill, false, protoMan); - var maxSize = storage.MaxItemSize ?? - (item?.Size == null - ? SharedStorageSystem.DefaultStorageMaxItemSize - : (ItemSize) Math.Max(0, (int) item.Size - 1)); + var size = GetFillSize(fill, false, protoMan, itemSys); + + var maxSize = storage.MaxItemSize; + if (storage.MaxItemSize == null) + { + if (item?.Size == null) + { + maxSize = SharedStorageSystem.DefaultStorageMaxItemSize; + } + else + { + var curIndex = allSizes.IndexOf(protoMan.Index(item.Size)); + var index = Math.Max(0, curIndex - 1); + maxSize = allSizes[index].ID; + } + } + + if (maxSize == null) + continue; + if (storage.MaxSlots != null) { - Assert.That(GetFillSize(fill, true, protoMan), Is.LessThanOrEqualTo(storage.MaxSlots), + Assert.That(GetFillSize(fill, true, protoMan, itemSys), Is.LessThanOrEqualTo(storage.MaxSlots), $"{proto.ID} storage fill has too many items."); } else @@ -123,14 +149,14 @@ public async Task TestSufficientSpaceForFill() if (!fillItem.TryGetComponent("Item", out var entryItem)) continue; - Assert.That(entryItem.Size, Is.LessThanOrEqualTo(maxSize), + Assert.That(protoMan.Index(entryItem.Size).Weight, + Is.LessThanOrEqualTo(protoMan.Index(maxSize.Value).Weight), $"Entity {proto.ID} has storage-fill item, {entry.PrototypeId}, that is too large"); } } }); await pair.CleanReturnAsync(); - } [Test] @@ -139,10 +165,13 @@ public async Task TestSufficientSpaceForEntityStorageFill() await using var pair = await PoolManager.GetServerClient(); var server = pair.Server; + var entMan = server.ResolveDependency(); var protoMan = server.ResolveDependency(); var compFact = server.ResolveDependency(); var id = compFact.GetComponentName(typeof(StorageFillComponent)); + var itemSys = entMan.System(); + Assert.Multiple(() => { foreach (var proto in PoolManager.GetPrototypesWithComponent(server)) @@ -157,7 +186,7 @@ public async Task TestSufficientSpaceForEntityStorageFill() } var fill = (StorageFillComponent) proto.Components[id].Component; - var size = GetFillSize(fill, true, protoMan); + var size = GetFillSize(fill, true, protoMan, itemSys); Assert.That(size, Is.LessThanOrEqualTo(entStorage.Capacity), $"{proto.ID} storage fill is too large."); } @@ -165,7 +194,7 @@ public async Task TestSufficientSpaceForEntityStorageFill() await pair.CleanReturnAsync(); } - private int GetEntrySize(EntitySpawnEntry entry, bool getCount, IPrototypeManager protoMan) + private int GetEntrySize(EntitySpawnEntry entry, bool getCount, IPrototypeManager protoMan, SharedItemSystem itemSystem) { if (entry.PrototypeId == null) return 0; @@ -179,20 +208,21 @@ private int GetEntrySize(EntitySpawnEntry entry, bool getCount, IPrototypeManage if (getCount) return entry.Amount; + if (proto.TryGetComponent("Item", out var item)) - return SharedItemSystem.GetItemSizeWeight(item.Size) * entry.Amount; + return itemSystem.GetItemSizeWeight(item.Size) * entry.Amount; Assert.Fail($"Prototype is missing item comp: {entry.PrototypeId}"); return 0; } - private int GetFillSize(StorageFillComponent fill, bool getCount, IPrototypeManager protoMan) + private int GetFillSize(StorageFillComponent fill, bool getCount, IPrototypeManager protoMan, SharedItemSystem itemSystem) { var totalSize = 0; var groups = new Dictionary(); foreach (var entry in fill.Contents) { - var size = GetEntrySize(entry, getCount, protoMan); + var size = GetEntrySize(entry, getCount, protoMan, itemSystem); if (entry.GroupId == null) totalSize += size; diff --git a/Content.MapRenderer/Painters/MapPainter.cs b/Content.MapRenderer/Painters/MapPainter.cs index 8f3dd59baf8..8a87a93744c 100644 --- a/Content.MapRenderer/Painters/MapPainter.cs +++ b/Content.MapRenderer/Painters/MapPainter.cs @@ -1,4 +1,3 @@ -#nullable enable using System; using System.Collections.Generic; using System.Linq; @@ -15,7 +14,6 @@ using SixLabors.ImageSharp; using SixLabors.ImageSharp.PixelFormats; using SixLabors.ImageSharp.Processing; -using SpriteComponent = Robust.Client.GameObjects.SpriteComponent; namespace Content.MapRenderer.Painters { @@ -46,7 +44,7 @@ public static async IAsyncEnumerable> Paint(string map await client.WaitPost(() => { - if (cEntityManager.TryGetComponent(cPlayerManager.LocalPlayer!.ControlledEntity!, out SpriteComponent? sprite)) + if (cEntityManager.TryGetComponent(cPlayerManager.LocalEntity, out SpriteComponent? sprite)) { sprite.Visible = false; } @@ -62,7 +60,7 @@ await client.WaitPost(() => var tilePainter = new TilePainter(client, server); var entityPainter = new GridPainter(client, server); - (EntityUid Uid, MapGridComponent Grid)[] grids = null!; + Entity[] grids = null!; var xformQuery = sEntityManager.GetEntityQuery(); var xformSystem = sEntityManager.System(); @@ -76,7 +74,7 @@ await server.WaitPost(() => } var mapId = sMapManager.GetAllMapIds().Last(); - grids = sMapManager.GetAllMapGrids(mapId).Select(o => (o.Owner, o)).ToArray(); + grids = sMapManager.GetAllGrids(mapId).ToArray(); foreach (var (uid, _) in grids) { diff --git a/Content.Packaging/ClientPackaging.cs b/Content.Packaging/ClientPackaging.cs new file mode 100644 index 00000000000..033cab71f01 --- /dev/null +++ b/Content.Packaging/ClientPackaging.cs @@ -0,0 +1,79 @@ +using System.Diagnostics; +using System.IO.Compression; +using Robust.Packaging; +using Robust.Packaging.AssetProcessing; +using Robust.Packaging.AssetProcessing.Passes; +using Robust.Packaging.Utility; +using Robust.Shared.Timing; + +namespace Content.Packaging; + +public static class ClientPackaging +{ + /// + /// Be advised this can be called from server packaging during a HybridACZ build. + /// + public static async Task PackageClient(bool skipBuild, IPackageLogger logger) + { + logger.Info("Building client..."); + + if (!skipBuild) + { + await ProcessHelpers.RunCheck(new ProcessStartInfo + { + FileName = "dotnet", + ArgumentList = + { + "build", + Path.Combine("Content.Client", "Content.Client.csproj"), + "-c", "Release", + "--nologo", + "/v:m", + "/t:Rebuild", + "/p:FullRelease=true", + "/m" + } + }); + } + + logger.Info("Packaging client..."); + + var sw = RStopwatch.StartNew(); + { + await using var zipFile = + File.Open(Path.Combine("release", "SS14.Client.zip"), FileMode.Create, FileAccess.ReadWrite); + using var zip = new ZipArchive(zipFile, ZipArchiveMode.Update); + var writer = new AssetPassZipWriter(zip); + + await WriteResources("", writer, logger, default); + await writer.FinishedTask; + } + + logger.Info($"Finished packaging client in {sw.Elapsed}"); + } + + public static async Task WriteResources( + string contentDir, + AssetPass pass, + IPackageLogger logger, + CancellationToken cancel) + { + var graph = new RobustClientAssetGraph(); + pass.Dependencies.Add(new AssetPassDependency(graph.Output.Name)); + + AssetGraph.CalculateGraph(graph.AllPasses.Append(pass).ToArray(), logger); + + var inputPass = graph.Input; + + await RobustSharedPackaging.WriteContentAssemblies( + inputPass, + contentDir, + "Content.Client", + new[] { "Content.Client", "Content.Shared", "Content.Shared.Database", "Content.Corvax.Interfaces.Client", "Content.Corvax.Interfaces.Shared" }, // Corvax-Secrets: Add Corvax interfaces to Magic ACZ + cancel: cancel); + + await RobustClientPackaging.WriteClientResources(contentDir, pass, cancel); + + inputPass.InjectFinished(); + } +} diff --git a/Content.Packaging/CommandLineArgs.cs b/Content.Packaging/CommandLineArgs.cs new file mode 100644 index 00000000000..9f2b0755357 --- /dev/null +++ b/Content.Packaging/CommandLineArgs.cs @@ -0,0 +1,139 @@ +using System.Diagnostics.CodeAnalysis; + +namespace Content.Packaging; + +public sealed class CommandLineArgs +{ + // PJB forgib me + + /// + /// Generate client or server. + /// + public bool Client { get; set; } + + /// + /// Should we also build the relevant project. + /// + public bool SkipBuild { get; set; } + + /// + /// Should we wipe the release folder or ignore it. + /// + public bool WipeRelease { get; set; } + + /// + /// Platforms for server packaging. + /// + public List? Platforms { get; set; } + + /// + /// Use HybridACZ for server packaging. + /// + public bool HybridAcz { get; set; } + + // CommandLineArgs, 3rd of her name. + public static bool TryParse(IReadOnlyList args, [NotNullWhen(true)] out CommandLineArgs? parsed) + { + parsed = null; + bool? client = null; + var skipBuild = false; + var wipeRelease = true; + var hybridAcz = false; + List? platforms = null; + + using var enumerator = args.GetEnumerator(); + var i = -1; + + while (enumerator.MoveNext()) + { + i++; + var arg = enumerator.Current; + if (i == 0) + { + if (arg == "client") + { + client = true; + } + else if (arg == "server") + { + client = false; + } + else + { + return false; + } + + continue; + } + + if (arg == "--skip-build") + { + skipBuild = true; + } + else if (arg == "--no-wipe-release") + { + wipeRelease = false; + } + else if (arg == "--hybrid-acz") + { + hybridAcz = true; + } + else if (arg == "--platform") + { + if (!enumerator.MoveNext()) + { + Console.WriteLine("No platform provided"); + return false; + } + + platforms ??= new List(); + platforms.Add(enumerator.Current); + } + else if (arg == "--help") + { + PrintHelp(); + return false; + } + else + { + Console.WriteLine("Unknown argument: {0}", arg); + } + } + + if (client == null) + { + Console.WriteLine("Client / server packaging unspecified."); + return false; + } + + parsed = new CommandLineArgs(client.Value, skipBuild, wipeRelease, hybridAcz, platforms); + return true; + } + + private static void PrintHelp() + { + Console.WriteLine(@" +Usage: Content.Packaging [client/server] [options] + +Options: + --skip-build Should we skip building the project and use what's already there. + --no-wipe-release Don't wipe the release folder before creating files. + --hybrid-acz Use HybridACZ for server builds. + --platform Platform for server builds. Default will output several x64 targets. +"); + } + + private CommandLineArgs( + bool client, + bool skipBuild, + bool wipeRelease, + bool hybridAcz, + List? platforms) + { + Client = client; + SkipBuild = skipBuild; + WipeRelease = wipeRelease; + HybridAcz = hybridAcz; + Platforms = platforms; + } +} diff --git a/Content.Packaging/Content.Packaging.csproj b/Content.Packaging/Content.Packaging.csproj index 1b5acec3fd3..82edfb4adde 100644 --- a/Content.Packaging/Content.Packaging.csproj +++ b/Content.Packaging/Content.Packaging.csproj @@ -5,6 +5,9 @@ enable + + + diff --git a/Content.Packaging/ContentPackaging.cs b/Content.Packaging/ContentPackaging.cs deleted file mode 100644 index f918f516175..00000000000 --- a/Content.Packaging/ContentPackaging.cs +++ /dev/null @@ -1,32 +0,0 @@ -using Robust.Packaging; -using Robust.Packaging.AssetProcessing; - -namespace Content.Packaging; - -public static class ContentPackaging -{ - public static async Task WriteResources( - string contentDir, - AssetPass pass, - IPackageLogger logger, - CancellationToken cancel) - { - var graph = new RobustClientAssetGraph(); - pass.Dependencies.Add(new AssetPassDependency(graph.Output.Name)); - - AssetGraph.CalculateGraph(graph.AllPasses.Append(pass).ToArray(), logger); - - var inputPass = graph.Input; - - await RobustClientPackaging.WriteContentAssemblies( - inputPass, - contentDir, - "Content.Client", - new[] { "Content.Client", "Content.Shared", "Content.Shared.Database", "Content.Corvax.Interfaces.Client", "Content.Corvax.Interfaces.Shared" }, // Corvax-Secrets: Add Corvax interfaces to Magic ACZ - cancel); - - await RobustClientPackaging.WriteClientResources(contentDir, inputPass, cancel); - - inputPass.InjectFinished(); - } -} diff --git a/Content.Packaging/Program.cs b/Content.Packaging/Program.cs index f965ec9995c..ba5924ec3e9 100644 --- a/Content.Packaging/Program.cs +++ b/Content.Packaging/Program.cs @@ -1,68 +1,44 @@ -using System.Diagnostics; -using System.IO.Compression; -using Content.Packaging; +using Content.Packaging; using Robust.Packaging; -using Robust.Packaging.AssetProcessing.Passes; -using Robust.Packaging.Utility; -using Robust.Shared.Timing; IPackageLogger logger = new PackageLoggerConsole(); -logger.Info("Clearing release/ directory"); -Directory.CreateDirectory("release"); +if (!CommandLineArgs.TryParse(args, out var parsed)) +{ + logger.Error("Unable to parse args, aborting."); + return; +} -var skipBuild = args.Contains("--skip-build"); +if (parsed.WipeRelease) + WipeRelease(); -if (!skipBuild) +if (!parsed.SkipBuild) WipeBin(); -await Build(skipBuild); - -async Task Build(bool skipBuild) +if (parsed.Client) { - logger.Info("Building project..."); - - if (!skipBuild) - { - await ProcessHelpers.RunCheck(new ProcessStartInfo - { - FileName = "dotnet", - ArgumentList = - { - "build", - Path.Combine("Content.Client", "Content.Client.csproj"), - "-c", "Release", - "--nologo", - "/v:m", - "/t:Rebuild", - "/p:FullRelease=true", - "/m" - } - }); - } - - logger.Info("Packaging client..."); - - var sw = RStopwatch.StartNew(); - - { - using var zipFile = - File.Open(Path.Combine("release", "SS14.Client.zip"), FileMode.Create, FileAccess.ReadWrite); - using var zip = new ZipArchive(zipFile, ZipArchiveMode.Update); - var writer = new AssetPassZipWriter(zip); - - await ContentPackaging.WriteResources("", writer, logger, default); - - await writer.FinishedTask; - } - - logger.Info($"Finished packaging in {sw.Elapsed}"); + await ClientPackaging.PackageClient(parsed.SkipBuild, logger); +} +else +{ + await ServerPackaging.PackageServer(parsed.SkipBuild, parsed.HybridAcz, logger, parsed.Platforms); } - void WipeBin() { logger.Info("Clearing old build artifacts (if any)..."); - Directory.Delete("bin", recursive: true); + if (Directory.Exists("bin")) + Directory.Delete("bin", recursive: true); +} + +void WipeRelease() +{ + if (Directory.Exists("release")) + { + logger.Info("Cleaning old release packages (release/)..."); + Directory.Delete("release", recursive: true); + } + + Directory.CreateDirectory("release"); } diff --git a/Content.Packaging/ServerPackaging.cs b/Content.Packaging/ServerPackaging.cs new file mode 100644 index 00000000000..d75b425561a --- /dev/null +++ b/Content.Packaging/ServerPackaging.cs @@ -0,0 +1,226 @@ +using System.Diagnostics; +using System.Globalization; +using System.IO.Compression; +using Robust.Packaging; +using Robust.Packaging.AssetProcessing; +using Robust.Packaging.AssetProcessing.Passes; +using Robust.Packaging.Utility; +using Robust.Shared.Audio; +using Robust.Shared.Serialization; +using Robust.Shared.Timing; +using YamlDotNet.Core; +using YamlDotNet.RepresentationModel; + +namespace Content.Packaging; + +public static class ServerPackaging +{ + private static readonly List Platforms = new() + { + new PlatformReg("win-x64", "Windows", true), + new PlatformReg("linux-x64", "Linux", true), + new PlatformReg("linux-arm64", "Linux", true), + new PlatformReg("osx-x64", "MacOS", true), + // Non-default platforms (i.e. for Watchdog Git) + new PlatformReg("win-x86", "Windows", false), + new PlatformReg("linux-x86", "Linux", false), + new PlatformReg("linux-arm", "Linux", false), + }; + + private static List PlatformRids => Platforms + .Select(o => o.Rid) + .ToList(); + + private static List PlatformRidsDefault => Platforms + .Where(o => o.BuildByDefault) + .Select(o => o.Rid) + .ToList(); + + private static readonly List ServerContentAssemblies = new() + { + "Content.Server.Database", + "Content.Server", + "Content.Shared", + "Content.Shared.Database", + }; + + private static readonly List ServerExtraAssemblies = new() + { + // Python script had Npgsql. though we want Npgsql.dll as well soooo + "Npgsql", + "Microsoft", + }; + + private static readonly List ServerNotExtraAssemblies = new() + { + "Microsoft.CodeAnalysis", + }; + + private static readonly HashSet BinSkipFolders = new() + { + // Roslyn localization files, screw em. + "cs", + "de", + "es", + "fr", + "it", + "ja", + "ko", + "pl", + "pt-BR", + "ru", + "tr", + "zh-Hans", + "zh-Hant" + }; + + public static async Task PackageServer(bool skipBuild, bool hybridAcz, IPackageLogger logger, List? platforms = null) + { + if (platforms == null) + { + platforms ??= PlatformRidsDefault; + } + + if (hybridAcz) + { + // Hybrid ACZ involves a file "Content.Client.zip" in the server executable directory. + // Rather than hosting the client ZIP on the watchdog or on a separate server, + // Hybrid ACZ uses the ACZ hosting functionality to host it as part of the status host, + // which means that features such as automatic UPnP forwarding still work properly. + await ClientPackaging.PackageClient(skipBuild, logger); + } + + // Good variable naming right here. + foreach (var platform in Platforms) + { + if (!platforms.Contains(platform.Rid)) + continue; + + await BuildPlatform(platform, skipBuild, hybridAcz, logger); + } + } + + private static async Task BuildPlatform(PlatformReg platform, bool skipBuild, bool hybridAcz, IPackageLogger logger) + { + logger.Info($"Building project for {platform}..."); + + if (!skipBuild) + { + await ProcessHelpers.RunCheck(new ProcessStartInfo + { + FileName = "dotnet", + ArgumentList = + { + "build", + Path.Combine("Content.Server", "Content.Server.csproj"), + "-c", "Release", + "--nologo", + "/v:m", + $"/p:TargetOs={platform.TargetOs}", + "/t:Rebuild", + "/p:FullRelease=true", + "/m" + } + }); + + await PublishClientServer(platform.Rid, platform.TargetOs); + } + + logger.Info($"Packaging {platform.Rid} server..."); + + var sw = RStopwatch.StartNew(); + { + await using var zipFile = + File.Open(Path.Combine("release", $"SS14.Server_{platform.Rid}.zip"), FileMode.Create, FileAccess.ReadWrite); + using var zip = new ZipArchive(zipFile, ZipArchiveMode.Update); + var writer = new AssetPassZipWriter(zip); + + await WriteServerResources(platform, "", writer, logger, hybridAcz, default); + await writer.FinishedTask; + } + + logger.Info($"Finished packaging server in {sw.Elapsed}"); + } + + private static async Task PublishClientServer(string runtime, string targetOs) + { + await ProcessHelpers.RunCheck(new ProcessStartInfo + { + FileName = "dotnet", + ArgumentList = + { + "publish", + "--runtime", runtime, + "--no-self-contained", + "-c", "Release", + $"/p:TargetOs={targetOs}", + "/p:FullRelease=True", + "/m", + "RobustToolbox/Robust.Server/Robust.Server.csproj" + } + }); + } + + private static async Task WriteServerResources( + PlatformReg platform, + string contentDir, + AssetPass pass, + IPackageLogger logger, + bool hybridAcz, + CancellationToken cancel) + { + var graph = new RobustClientAssetGraph(); + var passes = graph.AllPasses.ToList(); + + pass.Dependencies.Add(new AssetPassDependency(graph.Output.Name)); + passes.Add(pass); + + AssetGraph.CalculateGraph(passes, logger); + + var inputPass = graph.Input; + var contentAssemblies = new List(ServerContentAssemblies); + + // Additional assemblies that need to be copied such as EFCore. + var sourcePath = Path.Combine(contentDir, "bin", "Content.Server"); + + // Should this be an asset pass? + // For future archaeologists I just want audio rework to work and need the audio pass so + // just porting this as is from python. + foreach (var fullPath in Directory.EnumerateFiles(sourcePath, "*.*", SearchOption.AllDirectories)) + { + var fileName = Path.GetFileNameWithoutExtension(fullPath); + + if (!ServerNotExtraAssemblies.Any(o => fileName.StartsWith(o)) && ServerExtraAssemblies.Any(o => fileName.StartsWith(o))) + { + contentAssemblies.Add(fileName); + } + } + + await RobustSharedPackaging.DoResourceCopy( + Path.Combine("RobustToolbox", "bin", "Server", + platform.Rid, + "publish"), + inputPass, + BinSkipFolders, + cancel: cancel); + + await RobustSharedPackaging.WriteContentAssemblies( + inputPass, + contentDir, + "Content.Server", + contentAssemblies, + Path.Combine("Resources", "Assemblies"), + cancel); + + await RobustServerPackaging.WriteServerResources(contentDir, inputPass, cancel); + + if (hybridAcz) + { + inputPass.InjectFileFromDisk("Content.Client.zip", Path.Combine("release", "SS14.Client.zip")); + } + + inputPass.InjectFinished(); + } + + private readonly record struct PlatformReg(string Rid, string TargetOs, bool BuildByDefault); +} diff --git a/Content.Server/Acz/ContentMagicAczProvider.cs b/Content.Server/Acz/ContentMagicAczProvider.cs index ffd3123c578..57b5c1ec562 100644 --- a/Content.Server/Acz/ContentMagicAczProvider.cs +++ b/Content.Server/Acz/ContentMagicAczProvider.cs @@ -20,6 +20,6 @@ public async Task Package(AssetPass pass, IPackageLogger logger, CancellationTok { var contentDir = DefaultMagicAczProvider.FindContentRootPath(_deps); - await ContentPackaging.WriteResources(contentDir, pass, logger, cancel); + await ClientPackaging.WriteResources(contentDir, pass, logger, cancel); } } diff --git a/Content.Server/Anomaly/AnomalySynchronizerSystem.cs b/Content.Server/Anomaly/AnomalySynchronizerSystem.cs new file mode 100644 index 00000000000..6e881aa3d19 --- /dev/null +++ b/Content.Server/Anomaly/AnomalySynchronizerSystem.cs @@ -0,0 +1,148 @@ +using Content.Server.Anomaly.Components; +using Content.Server.DeviceLinking.Systems; +using Content.Server.Power.Components; +using Content.Server.Power.EntitySystems; +using Content.Shared.Anomaly.Components; +using Content.Shared.Interaction; +using Content.Shared.Popups; + +namespace Content.Server.Anomaly; + +/// +/// a device that allows you to translate anomaly activity into multitool signals. +/// +public sealed partial class AnomalySynchronizerSystem : EntitySystem +{ + [Dependency] private readonly AnomalySystem _anomaly = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly EntityLookupSystem _entityLookup = default!; + [Dependency] private readonly DeviceLinkSystem _signal = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly PowerReceiverSystem _power = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnInteractHand); + SubscribeLocalEvent(OnPowerChanged); + + SubscribeLocalEvent(OnAnomalyPulse); + SubscribeLocalEvent(OnAnomalySeverityChanged); + SubscribeLocalEvent(OnAnomalyStabilityChanged); + } + + private void OnPowerChanged(EntityUid uid, AnomalySynchronizerComponent component, ref PowerChangedEvent args) + { + if (args.Powered) + return; + + if (!TryComp(component.ConnectedAnomaly, out var anomaly)) + return; + + _anomaly.DoAnomalyPulse(component.ConnectedAnomaly.Value, anomaly); + DisconneсtFromAnomaly(uid, component, anomaly); + } + + private void OnInteractHand(EntityUid uid, AnomalySynchronizerComponent component, InteractHandEvent args) + { + if (!_power.IsPowered(uid)) + return; + + foreach (var entity in _entityLookup.GetEntitiesInRange(uid, 0.15f)) //is the radius of one tile. It must not be set higher, otherwise the anomaly can be moved from tile to tile + { + if (!TryComp(entity, out var anomaly)) + continue; + + + ConnectToAnomaly(uid, component, entity, anomaly); + break; + } + } + + private void ConnectToAnomaly(EntityUid uid, AnomalySynchronizerComponent component, EntityUid auid, AnomalyComponent anomaly) + { + if (component.ConnectedAnomaly == auid) + return; + + component.ConnectedAnomaly = auid; + //move the anomaly to the center of the synchronizer, for aesthetics. + var targetXform = _transform.GetWorldPosition(uid); + _transform.SetWorldPosition(auid, targetXform); + + _anomaly.DoAnomalyPulse(component.ConnectedAnomaly.Value, anomaly); + _popup.PopupEntity(Loc.GetString("anomaly-sync-connected"), uid, PopupType.Medium); + _audio.PlayPvs(component.ConnectedSound, uid); + } + + //TO DO: disconnection from the anomaly should also be triggered if the anomaly is far away from the synchronizer. + //Currently only bluespace anomaly can do this, but for some reason it is the only one that cannot be connected to the synchronizer. + private void DisconneсtFromAnomaly(EntityUid uid, AnomalySynchronizerComponent component, AnomalyComponent anomaly) + { + if (component.ConnectedAnomaly == null) + return; + + _anomaly.DoAnomalyPulse(component.ConnectedAnomaly.Value, anomaly); + _popup.PopupEntity(Loc.GetString("anomaly-sync-disconnected"), uid, PopupType.Large); + _audio.PlayPvs(component.ConnectedSound, uid); + + component.ConnectedAnomaly = default!; + } + + private void OnAnomalyPulse(ref AnomalyPulseEvent args) + { + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var ent, out var component)) + { + if (args.Anomaly != component.ConnectedAnomaly) + continue; + if (!_power.IsPowered(ent)) + continue; + + _signal.InvokePort(ent, component.PulsePort); + } + } + + private void OnAnomalySeverityChanged(ref AnomalySeverityChangedEvent args) + { + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var ent, out var component)) + { + if (args.Anomaly != component.ConnectedAnomaly) + continue; + if (!_power.IsPowered(ent)) + continue; + //The superscritical port is invoked not at the AnomalySupercriticalEvent, + //but at the moment the growth animation starts. Otherwise, there is no point in this port. + //ATTENTION! the console command supercriticalanomaly does not work here, + //as it forcefully causes growth to start without increasing severity. + if (args.Severity >= 1) + _signal.InvokePort(ent, component.SupercritPort); + } + } + private void OnAnomalyStabilityChanged(ref AnomalyStabilityChangedEvent args) + { + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var ent, out var component)) + { + if (args.Anomaly != component.ConnectedAnomaly) + continue; + if (TryComp(ent, out var apcPower) && !apcPower.Powered) + continue; + + if (args.Stability < 0.25f) //I couldn't find where these values are stored, so I hardcoded them. Tell me where these variables are stored and I'll fix it + { + _signal.InvokePort(ent, component.DecayingPort); + } + else if (args.Stability > 0.5f) //I couldn't find where these values are stored, so I hardcoded them. Tell me where these variables are stored and I'll fix it + { + _signal.InvokePort(ent, component.GrowingPort); + } + else + { + _signal.InvokePort(ent, component.StabilizePort); + } + } + } +} diff --git a/Content.Server/Anomaly/Components/AnomalySynchronizerComponent.cs b/Content.Server/Anomaly/Components/AnomalySynchronizerComponent.cs new file mode 100644 index 00000000000..295ce885c29 --- /dev/null +++ b/Content.Server/Anomaly/Components/AnomalySynchronizerComponent.cs @@ -0,0 +1,42 @@ +using Content.Shared.Anomaly; +using Content.Shared.Anomaly.Components; +using Content.Shared.DeviceLinking; +using Robust.Shared.Audio; +using Robust.Shared.Prototypes; + +namespace Content.Server.Anomaly.Components; + +/// +/// a device that allows you to translate anomaly activity into multitool signals. +/// +[RegisterComponent, Access(typeof(AnomalySynchronizerSystem))] +public sealed partial class AnomalySynchronizerComponent : Component +{ + /// + /// The uid of the anomaly to which the synchronizer is connected. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public EntityUid? ConnectedAnomaly; + + + [DataField] + public ProtoId DecayingPort = "Decaying"; + + [DataField] + public ProtoId StabilizePort = "Stabilize"; + + [DataField] + public ProtoId GrowingPort = "Growing"; + + [DataField] + public ProtoId PulsePort = "Pulse"; + + [DataField] + public ProtoId SupercritPort = "Supercritical"; + + [DataField, ViewVariables(VVAccess.ReadWrite)] + public SoundSpecifier ConnectedSound = new SoundPathSpecifier("/Audio/Machines/anomaly_sync_connect.ogg"); + + [DataField, ViewVariables(VVAccess.ReadWrite)] + public SoundSpecifier DisconnectedSound = new SoundPathSpecifier("/Audio/Machines/anomaly_sync_connect.ogg"); +} diff --git a/Content.Server/Anomaly/Effects/EntityAnomalySystem.cs b/Content.Server/Anomaly/Effects/EntityAnomalySystem.cs index 5f201833145..ee4e2ac115f 100644 --- a/Content.Server/Anomaly/Effects/EntityAnomalySystem.cs +++ b/Content.Server/Anomaly/Effects/EntityAnomalySystem.cs @@ -21,27 +21,46 @@ public override void Initialize() { SubscribeLocalEvent(OnPulse); SubscribeLocalEvent(OnSupercritical); + SubscribeLocalEvent(OnStabilityChanged); } private void OnPulse(EntityUid uid, EntitySpawnAnomalyComponent component, ref AnomalyPulseEvent args) { + if (!component.SpawnOnPulse) + return; + var range = component.SpawnRange * args.Stability; var amount = (int) (component.MaxSpawnAmount * args.Severity + 0.5f); var xform = Transform(uid); - SpawnMonstersOnOpenTiles(component, xform, amount, range, component.Spawns); + SpawnEntitesOnOpenTiles(component, xform, amount, range, component.Spawns); } private void OnSupercritical(EntityUid uid, EntitySpawnAnomalyComponent component, ref AnomalySupercriticalEvent args) { + if (!component.SpawnOnSuperCritical) + return; + var xform = Transform(uid); - // A cluster of monsters - SpawnMonstersOnOpenTiles(component, xform, component.MaxSpawnAmount, component.SpawnRange, component.Spawns); + // A cluster of entities + SpawnEntitesOnOpenTiles(component, xform, component.MaxSpawnAmount, component.SpawnRange, component.Spawns); // And so much meat (for the meat anomaly at least) - SpawnMonstersOnOpenTiles(component, xform, component.MaxSpawnAmount, component.SpawnRange, component.SuperCriticalSpawns); + SpawnEntitesOnOpenTiles(component, xform, component.MaxSpawnAmount, component.SpawnRange, component.SuperCriticalSpawns); + } + + private void OnStabilityChanged(EntityUid uid, EntitySpawnAnomalyComponent component, ref AnomalyStabilityChangedEvent args) + { + if (!component.SpawnOnStabilityChanged) + return; + + var range = component.SpawnRange * args.Stability; + var amount = (int) (component.MaxSpawnAmount * args.Stability + 0.5f); + + var xform = Transform(uid); + SpawnEntitesOnOpenTiles(component, xform, amount, range, component.Spawns); } - private void SpawnMonstersOnOpenTiles(EntitySpawnAnomalyComponent component, TransformComponent xform, int amount, float radius, List spawns) + private void SpawnEntitesOnOpenTiles(EntitySpawnAnomalyComponent component, TransformComponent xform, int amount, float radius, List spawns) { if (!component.Spawns.Any()) return; diff --git a/Content.Server/Atmos/Components/AirFilterComponent.cs b/Content.Server/Atmos/Components/AirFilterComponent.cs new file mode 100644 index 00000000000..6b65a646f28 --- /dev/null +++ b/Content.Server/Atmos/Components/AirFilterComponent.cs @@ -0,0 +1,46 @@ +using Content.Server.Atmos.EntitySystems; +using Content.Shared.Atmos; + +namespace Content.Server.Atmos.Components; + +/// +/// This is basically a reverse scrubber but using . +/// +[RegisterComponent, Access(typeof(AirFilterSystem))] +public sealed partial class AirFilterComponent : Component +{ + /// + /// Gases that will be filtered out of internal air + /// + [DataField(required: true)] + public HashSet Gases = new(); + + /// + /// Gases that will be filtered out of internal air to maintain oxygen ratio. + /// When oxygen is below , these gases will be filtered instead of . + /// + [DataField(required: true)] + public HashSet OverflowGases = new(); + + /// + /// Minimum oxygen fraction before it will start removing . + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float TargetOxygen = 0.21f; + + /// + /// Gas to consider oxygen for and logic. + /// + /// + /// For slime you might want to change this to be nitrogen, and overflowgases to remove oxygen. + /// However theres still no real danger since standard atmos is mostly nitrogen so nitrogen tends to 100% anyway. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public Gas Oxygen = Gas.Oxygen; + + /// + /// Fraction of target volume to transfer every second. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float TransferRate = 0.1f; +} diff --git a/Content.Server/Atmos/Components/AirIntakeComponent.cs b/Content.Server/Atmos/Components/AirIntakeComponent.cs new file mode 100644 index 00000000000..dafaed93a5e --- /dev/null +++ b/Content.Server/Atmos/Components/AirIntakeComponent.cs @@ -0,0 +1,29 @@ +using Content.Server.Atmos.EntitySystems; +using Content.Shared.Atmos; + +namespace Content.Server.Atmos.Components; + +/// +/// This is basically a siphon vent for . +/// +[RegisterComponent, Access(typeof(AirFilterSystem))] +public sealed partial class AirIntakeComponent : Component +{ + /// + /// Target pressure change for a single atmos tick + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float TargetPressureChange = 5f; + + /// + /// How strong the intake pump is, it will be able to replenish air from lower pressure areas. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float PumpPower = 2f; + + /// + /// Pressure to intake gases up to, maintains pressure of the air volume. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float Pressure = Atmospherics.OneAtmosphere; +} diff --git a/Content.Server/Atmos/EntitySystems/AirFilterSystem.cs b/Content.Server/Atmos/EntitySystems/AirFilterSystem.cs new file mode 100644 index 00000000000..a7404c08f45 --- /dev/null +++ b/Content.Server/Atmos/EntitySystems/AirFilterSystem.cs @@ -0,0 +1,113 @@ +using Content.Server.Atmos; +using Content.Server.Atmos.Components; +using Content.Server.Atmos.Piping.Components; +using Content.Shared.Atmos; +using Robust.Shared.GameObjects; +using Robust.Shared.Map; +using System.Diagnostics.CodeAnalysis; + +namespace Content.Server.Atmos.EntitySystems; + +/// +/// Handles gas filtering and intake for and . +/// +public sealed class AirFilterSystem : EntitySystem +{ + [Dependency] private readonly AtmosphereSystem _atmosphere = default!; + [Dependency] private readonly IMapManager _map = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnIntakeUpdate); + SubscribeLocalEvent(OnFilterUpdate); + } + + private void OnIntakeUpdate(EntityUid uid, AirIntakeComponent intake, AtmosDeviceUpdateEvent args) + { + if (!GetAir(uid, out var air)) + return; + + // if the volume is filled there is nothing to do + if (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 - 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 * air.Volume / (environment.Temperature * Atmospherics.R); + _atmosphere.Merge(air, environment.Remove(transferMoles)); + } + + private void OnFilterUpdate(EntityUid uid, AirFilterComponent filter, AtmosDeviceUpdateEvent args) + { + if (!GetAir(uid, out var air)) + return; + + var ratio = MathF.Min(1f, args.dt * filter.TransferRate); + var removed = air.RemoveRatio(ratio); + // nothing left to remove from the volume + if (MathHelper.CloseToPercent(removed.TotalMoles, 0f)) + return; + + // when oxygen gets too low start removing overflow gases (nitrogen) to maintain oxygen ratio + var oxygen = air.GetMoles(filter.Oxygen) / air.TotalMoles; + var gases = oxygen >= filter.TargetOxygen ? filter.Gases : filter.OverflowGases; + + 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, gases); + } + else + { + // filtering into space/planet so just discard them + foreach (var gas in gases) + { + removed.SetMoles(gas, 0f); + } + } + + _atmosphere.Merge(air, removed); + } + + /// + /// Uses to get an internal volume of air on an entity. + /// Used for both filter and intake. + /// + public bool GetAir(EntityUid uid, [NotNullWhen(true)] out GasMixture? air) + { + air = null; + + var ev = new GetFilterAirEvent(); + RaiseLocalEvent(uid, ref ev); + air = ev.Air; + return air != null; + } +} + +/// +/// Get a reference to an entity's air volume to filter. +/// Do not create a new mixture as this will be modified when filtering and intaking air. +/// +[ByRefEvent] +public record struct GetFilterAirEvent(GasMixture? Air = null); diff --git a/Content.Server/Cargo/Components/StationCargoBountyDatabaseComponent.cs b/Content.Server/Cargo/Components/StationCargoBountyDatabaseComponent.cs index d94c2995e3d..68517ea144a 100644 --- a/Content.Server/Cargo/Components/StationCargoBountyDatabaseComponent.cs +++ b/Content.Server/Cargo/Components/StationCargoBountyDatabaseComponent.cs @@ -33,8 +33,15 @@ public sealed partial class StationCargoBountyDatabaseComponent : Component public float MinBountyTime = 600f; /// - /// The maxmium amount of time the bounty lasts before being removed. + /// The maximum amount of time the bounty lasts before being removed. /// [DataField("maxBountyTime"), ViewVariables(VVAccess.ReadWrite)] public float MaxBountyTime = 905f; + + /// + /// A list of bounty IDs that have been checked this tick. + /// Used to prevent multiplying bounty prices. + /// + [DataField] + public HashSet CheckedBounties = new(); } diff --git a/Content.Server/Cargo/Systems/CargoSystem.Bounty.cs b/Content.Server/Cargo/Systems/CargoSystem.Bounty.cs index be8f54dfeef..f502b7f92f4 100644 --- a/Content.Server/Cargo/Systems/CargoSystem.Bounty.cs +++ b/Content.Server/Cargo/Systems/CargoSystem.Bounty.cs @@ -89,18 +89,24 @@ private void OnGetBountyPrice(EntityUid uid, CargoBountyLabelComponent component if (!_container.TryGetContainingContainer(uid, out var container) || container.ID != LabelSystem.ContainerName) return; - if (_station.GetOwningStation(uid) is not { } station) + if (_station.GetOwningStation(uid) is not { } station || !TryComp(station, out var database)) + return; + + if (database.CheckedBounties.Contains(component.Id)) return; - if (!TryGetBountyFromId(station, component.Id, out var bounty)) + if (!TryGetBountyFromId(station, component.Id, out var bounty, database)) return; - if (!_protoMan.TryIndex(bounty.Value.Bounty, out var bountyProtoype) ||!IsBountyComplete(container.Owner, bountyProtoype)) + if (!_protoMan.TryIndex(bounty.Value.Bounty, out var bountyPrototype) || + !IsBountyComplete(container.Owner, bountyPrototype)) return; + + database.CheckedBounties.Add(component.Id); args.Handled = true; component.Calculating = true; - args.Price = bountyProtoype.Reward - _pricing.GetPrice(container.Owner); + args.Price = bountyPrototype.Reward - _pricing.GetPrice(container.Owner); component.Calculating = false; } @@ -329,6 +335,7 @@ private void UpdateBounty() var query = EntityQueryEnumerator(); while (query.MoveNext(out var uid, out var bountyDatabase)) { + bountyDatabase.CheckedBounties.Clear(); var bounties = new ValueList(bountyDatabase.Bounties); foreach (var bounty in bounties) { diff --git a/Content.Server/Chat/ChatUser.cs b/Content.Server/Chat/ChatUser.cs new file mode 100644 index 00000000000..9b63dbc42cc --- /dev/null +++ b/Content.Server/Chat/ChatUser.cs @@ -0,0 +1,34 @@ +using Content.Shared.Chat; + +namespace Content.Server.Chat; + +public sealed class ChatUser +{ + /// + /// The unique key associated with this chat user, starting from 1 and incremented. + /// Used when the server sends . + /// Used on the client to delete messages sent by this user when receiving + /// . + /// + public readonly int Key; + + /// + /// All entities that this chat user was attached to while sending chat messages. + /// Sent to the client to delete messages sent by those entities when receiving + /// . + /// + public readonly HashSet Entities = new(); + + public ChatUser(int key) + { + Key = key; + } + + public void AddEntity(NetEntity entity) + { + if (!entity.Valid) + return; + + Entities.Add(entity); + } +} diff --git a/Content.Server/Chat/Managers/ChatManager.cs b/Content.Server/Chat/Managers/ChatManager.cs index c9e66ff124a..84a0e8dddfe 100644 --- a/Content.Server/Chat/Managers/ChatManager.cs +++ b/Content.Server/Chat/Managers/ChatManager.cs @@ -1,3 +1,4 @@ +using System.Diagnostics.CodeAnalysis; using System.Linq; using System.Runtime.InteropServices; using Content.Corvax.Interfaces.Server; @@ -51,8 +52,7 @@ internal sealed class ChatManager : IChatManager private bool _oocEnabled = true; private bool _adminOocEnabled = true; - public Dictionary SenderKeys { get; } = new(); - public Dictionary> SenderEntities { get; } = new(); + private readonly Dictionary _players = new(); public void Initialize() { @@ -82,13 +82,26 @@ private void OnAdminOocEnabledChanged(bool val) public void DeleteMessagesBy(ICommonSession player) { - var key = SenderKeys.GetValueOrDefault(player); - var entities = SenderEntities.GetValueOrDefault(player) ?? new HashSet(); - var msg = new MsgDeleteChatMessagesBy { Key = key, Entities = entities }; + if (!_players.TryGetValue(player.UserId, out var user)) + return; + var msg = new MsgDeleteChatMessagesBy { Key = user.Key, Entities = user.Entities }; _netManager.ServerSendToAll(msg); } + [return: NotNullIfNotNull(nameof(author))] + public ChatUser? EnsurePlayer(NetUserId? author) + { + if (author == null) + return null; + + ref var user = ref CollectionsMarshal.GetValueRefOrAddDefault(_players, author.Value, out var exists); + if (!exists || user == null) + user = new ChatUser(_players.Count); + + return user; + } + #region Server Announcements public void DispatchServerAnnouncement(string message, Color? colorOverride = null) @@ -217,10 +230,6 @@ private void SendOOC(ICommonSession player, string message) wrappedMessage = Loc.GetString("chat-manager-send-ooc-patron-wrap-message", ("patronColor", patronColor),("playerName", player.Name), ("message", FormattedMessage.EscapeText(message))); } - ref var key = ref CollectionsMarshal.GetValueRefOrAddDefault(SenderKeys, player, out var exists); - if (!exists) - key = SenderKeys.Count; - // Corvax-Sponsors-Start if (_sponsorsManager != null && _sponsorsManager.TryGetOocColor(player.UserId, out var oocColor)) { @@ -229,7 +238,7 @@ private void SendOOC(ICommonSession player, string message) // Corvax-Sponsors-End //TODO: player.Name color, this will need to change the structure of the MsgChatMessage - ChatMessageToAll(ChatChannel.OOC, message, wrappedMessage, EntityUid.Invalid, hideChat: false, recordReplay: true, colorOverride: colorOverride, senderKey: key); + ChatMessageToAll(ChatChannel.OOC, message, wrappedMessage, EntityUid.Invalid, hideChat: false, recordReplay: true, colorOverride: colorOverride, author: player.UserId); _mommiLink.SendOOCMessage(player.Name, message); _adminLogger.Add(LogType.Chat, LogImpact.Low, $"OOC from {player:Player}: {message}"); } @@ -247,10 +256,6 @@ private void SendAdminChat(ICommonSession player, string message) ("adminChannelName", Loc.GetString("chat-manager-admin-channel-name")), ("playerName", player.Name), ("message", FormattedMessage.EscapeText(message))); - ref var key = ref CollectionsMarshal.GetValueRefOrAddDefault(SenderKeys, player, out var exists); - if (!exists) - key = SenderKeys.Count; - foreach (var client in clients) { var isSource = client != player.ConnectedClient; @@ -261,7 +266,8 @@ private void SendAdminChat(ICommonSession player, string message) false, client, audioPath: isSource ? _netConfigManager.GetClientCVar(client, CCVars.AdminChatSoundPath) : default, - audioVolume: isSource ? _netConfigManager.GetClientCVar(client, CCVars.AdminChatSoundVolume) : default, senderKey: key); + audioVolume: isSource ? _netConfigManager.GetClientCVar(client, CCVars.AdminChatSoundVolume) : default, + author: player.UserId); } _adminLogger.Add(LogType.Chat, $"Admin chat from {player:Player}: {message}"); @@ -271,9 +277,13 @@ private void SendAdminChat(ICommonSession player, string message) #region Utility - 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, int? senderKey = null) + 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, NetUserId? author = null) { - var msg = new ChatMessage(channel, message, wrappedMessage, _entityManager.GetNetEntity(source), senderKey, hideChat, colorOverride, audioPath, audioVolume); + var user = author == null ? null : EnsurePlayer(author); + var netSource = _entityManager.GetNetEntity(source); + user?.AddEntity(netSource); + + var msg = new ChatMessage(channel, message, wrappedMessage, netSource, user?.Key, hideChat, colorOverride, audioPath, audioVolume); _netManager.ServerSendMessage(new MsgChatMessage() { Message = msg }, client); if (!recordReplay) @@ -286,12 +296,16 @@ public void ChatMessageToOne(ChatChannel channel, string message, string wrapped } } - public void ChatMessageToMany(ChatChannel channel, string message, string wrappedMessage, EntityUid source, bool hideChat, bool recordReplay, IEnumerable clients, Color? colorOverride = null, string? audioPath = null, float audioVolume = 0) - => ChatMessageToMany(channel, message, wrappedMessage, source, hideChat, recordReplay, clients.ToList(), colorOverride, audioPath, audioVolume); + public void ChatMessageToMany(ChatChannel channel, string message, string wrappedMessage, EntityUid source, bool hideChat, bool recordReplay, IEnumerable clients, Color? colorOverride = null, string? audioPath = null, float audioVolume = 0, NetUserId? author = null) + => ChatMessageToMany(channel, message, wrappedMessage, source, hideChat, recordReplay, clients.ToList(), colorOverride, audioPath, audioVolume, author); - 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) + 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, NetUserId? author = null) { - var msg = new ChatMessage(channel, message, wrappedMessage, _entityManager.GetNetEntity(source), null, hideChat, colorOverride, audioPath, audioVolume); + var user = author == null ? null : EnsurePlayer(author); + var netSource = _entityManager.GetNetEntity(source); + user?.AddEntity(netSource); + + var msg = new ChatMessage(channel, message, wrappedMessage, netSource, user?.Key, hideChat, colorOverride, audioPath, audioVolume); _netManager.ServerSendToMany(new MsgChatMessage() { Message = msg }, clients); if (!recordReplay) @@ -319,9 +333,13 @@ public void ChatMessageToManyFiltered(Filter filter, ChatChannel channel, string ChatMessageToMany(channel, message, wrappedMessage, source, hideChat, recordReplay, clients, colorOverride, audioPath, audioVolume); } - public void ChatMessageToAll(ChatChannel channel, string message, string wrappedMessage, EntityUid source, bool hideChat, bool recordReplay, Color? colorOverride = null, string? audioPath = null, float audioVolume = 0, int? senderKey = null) + public void ChatMessageToAll(ChatChannel channel, string message, string wrappedMessage, EntityUid source, bool hideChat, bool recordReplay, Color? colorOverride = null, string? audioPath = null, float audioVolume = 0, NetUserId? author = null) { - var msg = new ChatMessage(channel, message, wrappedMessage, _entityManager.GetNetEntity(source), senderKey, hideChat, colorOverride, audioPath, audioVolume); + var user = author == null ? null : EnsurePlayer(author); + var netSource = _entityManager.GetNetEntity(source); + user?.AddEntity(netSource); + + var msg = new ChatMessage(channel, message, wrappedMessage, netSource, user?.Key, 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 5317b3054e4..34f16fe3111 100644 --- a/Content.Server/Chat/Managers/IChatManager.cs +++ b/Content.Server/Chat/Managers/IChatManager.cs @@ -1,3 +1,4 @@ +using System.Diagnostics.CodeAnalysis; using Content.Shared.Chat; using Robust.Shared.Network; using Robust.Shared.Player; @@ -6,17 +7,6 @@ namespace Content.Server.Chat.Managers { public interface IChatManager { - /// - /// Keys identifying messages sent by a specific player, used when sending - /// - /// - Dictionary SenderKeys { get; } - - /// - /// Tracks which entities a player was attached to while sending messages. - /// - Dictionary> SenderEntities { get; } - void Initialize(); /// @@ -36,17 +26,20 @@ public interface IChatManager 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, int? senderKey = null); + INetChannel client, Color? colorOverride = null, bool recordReplay = false, string? audioPath = null, float audioVolume = 0, NetUserId? author = null); void ChatMessageToMany(ChatChannel channel, string message, string wrappedMessage, EntityUid source, bool hideChat, bool recordReplay, - IEnumerable clients, Color? colorOverride = null, string? audioPath = null, float audioVolume = 0); + IEnumerable clients, Color? colorOverride = null, string? audioPath = null, float audioVolume = 0, NetUserId? author = null); void ChatMessageToManyFiltered(Filter filter, ChatChannel channel, string message, string wrappedMessage, EntityUid source, bool hideChat, bool recordReplay, Color? colorOverride, string? audioPath = null, float audioVolume = 0); - void ChatMessageToAll(ChatChannel channel, string message, string wrappedMessage, EntityUid source, bool hideChat, bool recordReplay, Color? colorOverride = null, string? audioPath = null, float audioVolume = 0, int? senderKey = null); + void ChatMessageToAll(ChatChannel channel, string message, string wrappedMessage, EntityUid source, bool hideChat, bool recordReplay, Color? colorOverride = null, string? audioPath = null, float audioVolume = 0, NetUserId? author = null); bool MessageCharacterLimit(ICommonSession player, string message); void DeleteMessagesBy(ICommonSession player); + + [return: NotNullIfNotNull(nameof(author))] + ChatUser? EnsurePlayer(NetUserId? author); } } diff --git a/Content.Server/Chat/Systems/ChatSystem.cs b/Content.Server/Chat/Systems/ChatSystem.cs index c4aafa10cc2..28563d1c76d 100644 --- a/Content.Server/Chat/Systems/ChatSystem.cs +++ b/Content.Server/Chat/Systems/ChatSystem.cs @@ -1,12 +1,12 @@ using System.Globalization; using System.Linq; using System.Text; -using Content.Server.Speech.EntitySystems; -using Content.Server.Speech.Components; using Content.Server.Administration.Logs; using Content.Server.Administration.Managers; using Content.Server.Chat.Managers; using Content.Server.GameTicking; +using Content.Server.Speech.Components; +using Content.Server.Speech.EntitySystems; using Content.Server.Station.Components; using Content.Server.Station.Systems; using Content.Shared.ActionBlocker; @@ -20,7 +20,6 @@ using Content.Shared.Mobs.Systems; using Content.Shared.Players; using Content.Shared.Radio; -using Robust.Server.GameObjects; using Robust.Server.Player; using Robust.Shared.Audio; using Robust.Shared.Configuration; @@ -195,8 +194,18 @@ public void TrySendInGameICMessage( if (!CanSendInGame(message, shell, player)) return; + // this method is a disaster + // every second i have to spend working with this code is fucking agony + // scientists have to wonder how any of this was merged + // coding any game admin feature that involves chat code is pure torture + // changing even 10 lines of code feels like waterboarding myself + // and i dont feel like vibe checking 50 code paths + // so we set this here + // todo free me from chat code if (player != null) - _chatManager.SenderEntities.GetOrNew(player).Add(GetNetEntity(source)); + { + _chatManager.EnsurePlayer(player.UserId).AddEntity(GetNetEntity(source)); + } if (desiredType == InGameICChatType.Speak && message.StartsWith(LocalPrefix)) { @@ -529,7 +538,8 @@ private void SendEntityEmote( string? nameOverride, bool hideLog = false, bool checkEmote = true, - bool ignoreActionBlocker = false + bool ignoreActionBlocker = false, + NetUserId? author = null ) { if (!_actionBlocker.CanEmote(source) && !ignoreActionBlocker) @@ -547,7 +557,7 @@ private void SendEntityEmote( if (checkEmote) TryEmoteChatInput(source, action); - SendInVoiceRange(ChatChannel.Emotes, action, wrappedMessage, source, range); + SendInVoiceRange(ChatChannel.Emotes, action, wrappedMessage, source, range, author); if (!hideLog) if (name != Name(source)) _adminLogger.Add(LogType.Chat, LogImpact.Low, $"Emote from {ToPrettyString(source):user} as {name}: {action}"); @@ -574,9 +584,7 @@ private void SendLOOC(EntityUid source, ICommonSession player, string message, b ("entityName", name), ("message", FormattedMessage.EscapeText(message))); - _chatManager.SenderEntities.GetOrNew(player).Add(GetNetEntity(source)); - - SendInVoiceRange(ChatChannel.LOOC, message, wrappedMessage, source, hideChat ? ChatTransmitRange.HideChat : ChatTransmitRange.Normal); + SendInVoiceRange(ChatChannel.LOOC, message, wrappedMessage, source, hideChat ? ChatTransmitRange.HideChat : ChatTransmitRange.Normal, player.UserId); _adminLogger.Add(LogType.Chat, LogImpact.Low, $"LOOC from {player:Player}: {message}"); } @@ -602,9 +610,7 @@ private void SendDeadChat(EntityUid source, ICommonSession player, string messag _adminLogger.Add(LogType.Chat, LogImpact.Low, $"Dead chat from {player:Player}: {message}"); } - _chatManager.SenderEntities.GetOrNew(player).Add(GetNetEntity(source)); - - _chatManager.ChatMessageToMany(ChatChannel.Dead, message, wrappedMessage, source, hideChat, true, clients.ToList()); + _chatManager.ChatMessageToMany(ChatChannel.Dead, message, wrappedMessage, source, hideChat, true, clients.ToList(), author: player.UserId); } #endregion @@ -658,7 +664,7 @@ private MessageRangeCheckResult MessageRangeCheck(ICommonSession session, ICChat /// /// Sends a chat message to the given players in range of the source entity. /// - private void SendInVoiceRange(ChatChannel channel, string message, string wrappedMessage, EntityUid source, ChatTransmitRange range) + private void SendInVoiceRange(ChatChannel channel, string message, string wrappedMessage, EntityUid source, ChatTransmitRange range, NetUserId? author = null) { foreach (var (session, data) in GetRecipients(source, VoiceRange)) { @@ -666,7 +672,7 @@ private void SendInVoiceRange(ChatChannel channel, string message, string wrappe if (entRange == MessageRangeCheckResult.Disallowed) continue; var entHideChat = entRange == MessageRangeCheckResult.HideChat; - _chatManager.ChatMessageToOne(channel, message, wrappedMessage, source, entHideChat, session.ConnectedClient); + _chatManager.ChatMessageToOne(channel, message, wrappedMessage, source, entHideChat, session.ConnectedClient, author: author); } _replay.RecordServerMessage(new ChatMessage(channel, message, wrappedMessage, GetNetEntity(source), null, MessageRangeHideChatForReplay(range))); diff --git a/Content.Server/Chemistry/ReagentEffects/ChemVomit.cs b/Content.Server/Chemistry/ReagentEffects/ChemVomit.cs index cfdfd5ffa05..630d00124c3 100644 --- a/Content.Server/Chemistry/ReagentEffects/ChemVomit.cs +++ b/Content.Server/Chemistry/ReagentEffects/ChemVomit.cs @@ -13,10 +13,10 @@ public sealed partial class ChemVomit : ReagentEffect { /// How many units of thirst to add each time we vomit [DataField("thirstAmount")] - public float ThirstAmount = -40f; + public float ThirstAmount = -8f; /// How many units of hunger to add each time we vomit [DataField("hungerAmount")] - public float HungerAmount = -40f; + public float HungerAmount = -8f; protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) => Loc.GetString("reagent-effect-guidebook-chem-vomit", ("chance", Probability)); diff --git a/Content.Server/Clothing/Systems/SkatesSystem.cs b/Content.Server/Clothing/Systems/SkatesSystem.cs new file mode 100644 index 00000000000..18ae609ee09 --- /dev/null +++ b/Content.Server/Clothing/Systems/SkatesSystem.cs @@ -0,0 +1,38 @@ +using Content.Shared.Clothing; +using Content.Shared.Inventory.Events; +using Content.Shared.Movement.Systems; +using Content.Server.Damage.Systems; + +namespace Content.Server.Clothing; + +public sealed class SkatesSystem : EntitySystem +{ + [Dependency] private readonly MovementSpeedModifierSystem _move = default!; + [Dependency] private readonly DamageOnHighSpeedImpactSystem _impact = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnGotEquipped); + SubscribeLocalEvent(OnGotUnequipped); + } + + public void OnGotUnequipped(EntityUid uid, SkatesComponent component, GotUnequippedEvent args) + { + if (args.Slot == "shoes") + { + _move.ChangeFriction(args.Equipee, 20f, null, 20f); + _impact.ChangeCollide(args.Equipee, 20f, 1f, 2f); + } + } + + private void OnGotEquipped(EntityUid uid, SkatesComponent component, GotEquippedEvent args) + { + if (args.Slot == "shoes") + { + _move.ChangeFriction(args.Equipee, 5f, 5f, 20f); + _impact.ChangeCollide(args.Equipee, 4f, 1f, 2f); + } + } +} diff --git a/Content.Server/Construction/Conditions/MinSolution.cs b/Content.Server/Construction/Conditions/MinSolution.cs new file mode 100644 index 00000000000..d70e84761d6 --- /dev/null +++ b/Content.Server/Construction/Conditions/MinSolution.cs @@ -0,0 +1,83 @@ +using Content.Shared.Chemistry.EntitySystems; +using Content.Shared.Chemistry.Reagent; +using Content.Shared.Construction; +using Content.Shared.Examine; +using Content.Shared.FixedPoint; +using Robust.Shared.Prototypes; + +namespace Content.Server.Construction.Conditions; + +/// +/// Requires that a certain solution has a minimum amount of a reagent to proceed. +/// +[DataDefinition] +public sealed partial class MinSolution : IGraphCondition +{ + /// + /// The solution that needs to have the reagent. + /// + [DataField(required: true)] + public string Solution = string.Empty; + + /// + /// The reagent that needs to be present. + /// + [DataField(required: true)] + public ReagentId Reagent = new(); + + /// + /// How much of the reagent must be present. + /// + [DataField] + public FixedPoint2 Quantity = 1; + + public bool Condition(EntityUid uid, IEntityManager entMan) + { + var containerSys = entMan.System(); + if (!containerSys.TryGetSolution(uid, Solution, out var solution)) + return false; + + solution.TryGetReagentQuantity(Reagent, out var quantity); + return quantity >= Quantity; + } + + public bool DoExamine(ExaminedEvent args) + { + var entMan = IoCManager.Resolve(); + var uid = args.Examined; + + var containerSys = entMan.System(); + if (!containerSys.TryGetSolution(uid, Solution, out var solution)) + return false; + + solution.TryGetReagentQuantity(Reagent, out var quantity); + + // already has enough so dont show examine + if (quantity >= Quantity) + return false; + + args.PushMarkup(Loc.GetString("construction-examine-condition-min-solution", + ("quantity", Quantity - quantity), ("reagent", Name())) + "\n"); + return true; + } + + public IEnumerable GenerateGuideEntry() + { + yield return new ConstructionGuideEntry() + { + Localization = "construction-guide-condition-min-solution", + Arguments = new (string, object)[] + { + ("quantity", Quantity), + ("reagent", Name()) + } + }; + } + + private string Name() + { + var protoMan = IoCManager.Resolve(); + var proto = protoMan.Index(Reagent.Prototype); + return proto.LocalizedName; + } +} diff --git a/Content.Server/Construction/Conditions/SolutionEmpty.cs b/Content.Server/Construction/Conditions/SolutionEmpty.cs new file mode 100644 index 00000000000..d3cbd7356e5 --- /dev/null +++ b/Content.Server/Construction/Conditions/SolutionEmpty.cs @@ -0,0 +1,52 @@ +using Content.Shared.Chemistry.EntitySystems; +using Content.Shared.Construction; +using Content.Shared.Examine; + +namespace Content.Server.Construction.Conditions; + +/// +/// Requires that a certain solution be empty to proceed. +/// +[DataDefinition] +public sealed partial class SolutionEmpty : IGraphCondition +{ + /// + /// The solution that needs to be empty. + /// + [DataField] + public string Solution; + + public bool Condition(EntityUid uid, IEntityManager entMan) + { + var containerSys = entMan.System(); + if (!containerSys.TryGetSolution(uid, Solution, out var solution)) + return false; + + return solution.Volume == 0; + } + + public bool DoExamine(ExaminedEvent args) + { + var entMan = IoCManager.Resolve(); + var uid = args.Examined; + + var containerSys = entMan.System(); + if (!containerSys.TryGetSolution(uid, Solution, out var solution)) + return false; + + // already empty so dont show examine + if (solution.Volume == 0) + return false; + + args.PushMarkup(Loc.GetString("construction-examine-condition-solution-empty")); + return true; + } + + public IEnumerable GenerateGuideEntry() + { + yield return new ConstructionGuideEntry() + { + Localization = "construction-guide-condition-solution-empty" + }; + } +} diff --git a/Content.Server/Construction/ConstructionSystem.Initial.cs b/Content.Server/Construction/ConstructionSystem.Initial.cs index 21978f2d0cb..f3123087988 100644 --- a/Content.Server/Construction/ConstructionSystem.Initial.cs +++ b/Content.Server/Construction/ConstructionSystem.Initial.cs @@ -15,6 +15,7 @@ using Content.Shared.Interaction; using Content.Shared.Inventory; using Content.Shared.Storage; +using Content.Shared.Tag; using Robust.Shared.Containers; using Robust.Shared.Player; using Robust.Shared.Timing; @@ -29,6 +30,8 @@ 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!; + [Dependency] private readonly TagSystem _tagSystem = default!; // --- WARNING! LEGACY CODE AHEAD! --- // This entire file contains the legacy code for initial construction. @@ -330,6 +333,12 @@ public async Task TryStartItemConstruction(string prototype, EntityUid use return false; } + if (constructionPrototype.EntityWhitelist != null && !constructionPrototype.EntityWhitelist.IsValid(user)) + { + _popup.PopupEntity(Loc.GetString("construction-system-cannot-start"), user, user); + return false; + } + var startNode = constructionGraph.Nodes[constructionPrototype.StartNode]; var targetNode = constructionGraph.Nodes[constructionPrototype.TargetNode]; var pathFind = constructionGraph.Path(startNode.Name, targetNode.Name); @@ -383,7 +392,6 @@ public async Task TryStartItemConstruction(string prototype, EntityUid use // LEGACY CODE. See warning at the top of the file! private async void HandleStartStructureConstruction(TryStartStructureConstructionMessage ev, EntitySessionEventArgs args) { - if (!_prototypeManager.TryIndex(ev.PrototypeName, out ConstructionPrototype? constructionPrototype)) { _sawmill.Error($"Tried to start construction of invalid recipe '{ev.PrototypeName}'!"); @@ -404,6 +412,12 @@ private async void HandleStartStructureConstruction(TryStartStructureConstructio return; } + if (constructionPrototype.EntityWhitelist != null && !constructionPrototype.EntityWhitelist.IsValid(user)) + { + _popup.PopupEntity(Loc.GetString("construction-system-cannot-start"), user, user); + return; + } + if (_container.IsEntityInContainer(user)) { _popup.PopupEntity(Loc.GetString("construction-system-inside-container"), user, user); diff --git a/Content.Server/Damage/Systems/DamageOnHighSpeedImpactSystem.cs b/Content.Server/Damage/Systems/DamageOnHighSpeedImpactSystem.cs index bcd1e0423ad..c3fd00b325e 100644 --- a/Content.Server/Damage/Systems/DamageOnHighSpeedImpactSystem.cs +++ b/Content.Server/Damage/Systems/DamageOnHighSpeedImpactSystem.cs @@ -53,4 +53,15 @@ private void HandleCollide(EntityUid uid, DamageOnHighSpeedImpactComponent compo _audio.PlayPvs(component.SoundHit, uid, AudioParams.Default.WithVariation(0.125f).WithVolume(-0.125f)); _color.RaiseEffect(Color.Red, new List() { uid }, Filter.Pvs(uid, entityManager: EntityManager)); } + + public void ChangeCollide(EntityUid uid, float minimumSpeed, float stunSeconds, float damageCooldown, DamageOnHighSpeedImpactComponent? collide = null) + { + if (!Resolve(uid, ref collide, false)) + return; + + collide.MinimumSpeed = minimumSpeed; + collide.StunSeconds = stunSeconds; + collide.DamageCooldown = damageCooldown; + Dirty(uid, collide); + } } diff --git a/Content.Server/DeviceNetwork/NetworkPayload.cs b/Content.Server/DeviceNetwork/NetworkPayload.cs index ae93eea0487..eefbaa6eea5 100644 --- a/Content.Server/DeviceNetwork/NetworkPayload.cs +++ b/Content.Server/DeviceNetwork/NetworkPayload.cs @@ -3,7 +3,7 @@ namespace Content.Server.DeviceNetwork { - public sealed class NetworkPayload : Dictionary + public sealed class NetworkPayload : Dictionary { /// /// Tries to get a value from the payload and checks if that value is of type T. diff --git a/Content.Server/GameTicking/GameTicker.Spawning.cs b/Content.Server/GameTicking/GameTicker.Spawning.cs index 236a4dc01ef..ab3c9e5bf4f 100644 --- a/Content.Server/GameTicking/GameTicker.Spawning.cs +++ b/Content.Server/GameTicking/GameTicker.Spawning.cs @@ -200,7 +200,7 @@ private void SpawnPlayer(ICommonSession player, HumanoidCharacterProfile charact _mind.SetUserId(newMind, data.UserId); var jobPrototype = _prototypeManager.Index(jobId); - var job = new JobComponent { PrototypeId = jobId }; + var job = new JobComponent { Prototype = jobId }; _roles.MindAddRole(newMind, job, silent: silent); var jobName = _jobs.MindTryGetJobName(newMind); diff --git a/Content.Server/GameTicking/GameTicker.StatusShell.cs b/Content.Server/GameTicking/GameTicker.StatusShell.cs index 41f57603fa9..2aa89d57b19 100644 --- a/Content.Server/GameTicking/GameTicker.StatusShell.cs +++ b/Content.Server/GameTicking/GameTicker.StatusShell.cs @@ -41,6 +41,7 @@ private void GetStatusResponse(JsonNode jObject) // Corvax-Queue-End jObject["name"] = _baseServer.ServerName; + jObject["map"] = _gameMapManager.GetSelectedMap()?.MapName; jObject["players"] = players; // Corvax-Queue jObject["soft_max_players"] = _cfg.GetCVar(CCVars.SoftMaxPlayers); jObject["run_level"] = (int) _runLevel; diff --git a/Content.Server/GameTicking/Rules/Components/NukeOperativeComponent.cs b/Content.Server/GameTicking/Rules/Components/NukeOperativeComponent.cs deleted file mode 100644 index 59fc9526dca..00000000000 --- a/Content.Server/GameTicking/Rules/Components/NukeOperativeComponent.cs +++ /dev/null @@ -1,16 +0,0 @@ -using Robust.Shared.Audio; - -namespace Content.Server.GameTicking.Rules.Components; - -/// -/// This is used for tagging a mob as a nuke operative. -/// -[RegisterComponent] -public sealed partial class NukeOperativeComponent : Component -{ - /// - /// Path to antagonist alert sound. - /// - [DataField("greetSoundNotification")] - public SoundSpecifier GreetSoundNotification = new SoundPathSpecifier("/Audio/Ambience/Antag/nukeops_start.ogg"); -} diff --git a/Content.Server/GameTicking/Rules/PiratesRuleSystem.cs b/Content.Server/GameTicking/Rules/PiratesRuleSystem.cs index 0785d81d09b..f94fbace9ce 100644 --- a/Content.Server/GameTicking/Rules/PiratesRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/PiratesRuleSystem.cs @@ -8,6 +8,7 @@ using Content.Server.Spawners.Components; using Content.Server.Station.Components; using Content.Server.Station.Systems; +using Content.Server.NPC.Systems; using Content.Shared.CCVar; using Content.Shared.Humanoid; using Content.Shared.Mind; @@ -40,6 +41,7 @@ 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 NpcFactionSystem _npcFaction = default!; [Dependency] private readonly SharedMindSystem _mindSystem = default!; [Dependency] private readonly SharedAudioSystem _audioSystem = default!; [Dependency] private readonly MetaDataSystem _metaData = default!; @@ -222,6 +224,9 @@ private void OnPlayerSpawningEvent(RulePlayerSpawningEvent ev) var profile = _prefs.GetPreferences(session.UserId).SelectedCharacter as HumanoidCharacterProfile; _stationSpawningSystem.EquipStartingGear(mob, pirateGear, profile); + _npcFaction.RemoveFaction(mob, "NanoTrasen", false); + _npcFaction.AddFaction(mob, "Syndicate"); + pirates.Pirates.Add(newMind); // Notificate every player about a pirate antagonist role with sound diff --git a/Content.Server/Guardian/GuardianComponent.cs b/Content.Server/Guardian/GuardianComponent.cs index dcb9a8c0540..a54d0337567 100644 --- a/Content.Server/Guardian/GuardianComponent.cs +++ b/Content.Server/Guardian/GuardianComponent.cs @@ -9,24 +9,26 @@ public sealed partial class GuardianComponent : Component /// /// The guardian host entity /// - public EntityUid Host; + [DataField] + public EntityUid? Host; /// /// Percentage of damage reflected from the guardian to the host /// - [DataField("damageShare")] + [DataField] public float DamageShare { get; set; } = 0.65f; /// /// Maximum distance the guardian can travel before it's forced to recall, use YAML to set /// - [DataField("distanceAllowed")] + [DataField] public float DistanceAllowed { get; set; } = 5f; /// /// If the guardian is currently manifested /// - public bool GuardianLoose = false; + [DataField] + public bool GuardianLoose; } } diff --git a/Content.Server/Guardian/GuardianHostComponent.cs b/Content.Server/Guardian/GuardianHostComponent.cs index 6a747ae86a4..e9d0e4affd2 100644 --- a/Content.Server/Guardian/GuardianHostComponent.cs +++ b/Content.Server/Guardian/GuardianHostComponent.cs @@ -1,6 +1,5 @@ using Robust.Shared.Containers; using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Server.Guardian { @@ -16,6 +15,7 @@ public sealed partial class GuardianHostComponent : Component /// /// Can be null if the component is added at any time. /// + [DataField] public EntityUid? HostedGuardian; /// @@ -23,9 +23,9 @@ public sealed partial class GuardianHostComponent : Component /// [ViewVariables] public ContainerSlot GuardianContainer = default!; - [DataField("action", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string Action = "ActionToggleGuardian"; + [DataField] + public EntProtoId Action = "ActionToggleGuardian"; - [DataField("actionEntity")] public EntityUid? ActionEntity; + [DataField] public EntityUid? ActionEntity; } } diff --git a/Content.Server/Guardian/GuardianSystem.cs b/Content.Server/Guardian/GuardianSystem.cs index b6121a7fbda..2847b45ba17 100644 --- a/Content.Server/Guardian/GuardianSystem.cs +++ b/Content.Server/Guardian/GuardianSystem.cs @@ -41,10 +41,11 @@ public override void Initialize() SubscribeLocalEvent(OnCreatorExamine); SubscribeLocalEvent(OnDoAfter); + SubscribeLocalEvent(OnGuardianShutdown); SubscribeLocalEvent(OnGuardianMove); SubscribeLocalEvent(OnGuardianDamaged); - SubscribeLocalEvent(OnGuardianPlayer); - SubscribeLocalEvent(OnGuardianUnplayer); + SubscribeLocalEvent(OnGuardianPlayerAttached); + SubscribeLocalEvent(OnGuardianPlayerDetached); SubscribeLocalEvent(OnHostInit); SubscribeLocalEvent(OnHostMove); @@ -56,6 +57,21 @@ public override void Initialize() SubscribeLocalEvent(OnGuardianAttackAttempt); } + private void OnGuardianShutdown(EntityUid uid, GuardianComponent component, ComponentShutdown args) + { + var host = component.Host; + component.Host = null; + + if (!TryComp(host, out GuardianHostComponent? hostComponent)) + return; + + hostComponent.GuardianContainer.Remove(uid); + hostComponent.HostedGuardian = null; + Dirty(host.Value, hostComponent); + QueueDel(hostComponent.ActionEntity); + hostComponent.ActionEntity = null; + } + private void OnPerformAction(EntityUid uid, GuardianHostComponent component, GuardianToggleActionEvent args) { if (args.Handled) @@ -67,24 +83,29 @@ private void OnPerformAction(EntityUid uid, GuardianHostComponent component, Gua args.Handled = true; } - private void OnGuardianUnplayer(EntityUid uid, GuardianComponent component, PlayerDetachedEvent args) + private void OnGuardianPlayerDetached(EntityUid uid, GuardianComponent component, PlayerDetachedEvent args) { var host = component.Host; - - if (!TryComp(host, out var hostComponent) || LifeStage(host) >= EntityLifeStage.MapInitialized) + if (!TryComp(host, out var hostComponent) || TerminatingOrDeleted(host.Value)) + { + QueueDel(uid); return; + } - RetractGuardian(host, hostComponent, uid, component); + RetractGuardian(host.Value, hostComponent, uid, component); } - private void OnGuardianPlayer(EntityUid uid, GuardianComponent component, PlayerAttachedEvent args) + private void OnGuardianPlayerAttached(EntityUid uid, GuardianComponent component, PlayerAttachedEvent args) { var host = component.Host; if (!HasComp(host)) + { + QueueDel(uid); return; + } - _popupSystem.PopupEntity(Loc.GetString("guardian-available"), host, host); + _popupSystem.PopupEntity(Loc.GetString("guardian-available"), host.Value, host.Value); } private void OnHostInit(EntityUid uid, GuardianHostComponent component, ComponentInit args) @@ -95,14 +116,16 @@ private void OnHostInit(EntityUid uid, GuardianHostComponent component, Componen private void OnHostShutdown(EntityUid uid, GuardianHostComponent component, ComponentShutdown args) { - if (component.HostedGuardian == null) + if (component.HostedGuardian is not {} guardian) return; - if (HasComp(component.HostedGuardian.Value)) + // Ensure held items are dropped before deleting guardian. + if (HasComp(guardian)) _bodySystem.GibBody(component.HostedGuardian.Value); - EntityManager.QueueDeleteEntity(component.HostedGuardian.Value); - _actionSystem.RemoveAction(uid, component.ActionEntity); + QueueDel(guardian); + QueueDel(component.ActionEntity); + component.ActionEntity = null; } private void OnGuardianAttackAttempt(EntityUid uid, GuardianComponent component, AttackAttemptEvent args) @@ -117,7 +140,7 @@ private void OnGuardianAttackAttempt(EntityUid uid, GuardianComponent component, public void ToggleGuardian(EntityUid user, GuardianHostComponent hostComponent) { - if (hostComponent.HostedGuardian == null || !TryComp(hostComponent.HostedGuardian, out var guardianComponent)) + if (!TryComp(hostComponent.HostedGuardian, out var guardianComponent)) return; if (guardianComponent.GuardianLoose) @@ -134,7 +157,7 @@ private void OnCreatorUse(EntityUid uid, GuardianCreatorComponent component, Use if (args.Handled) return; - //args.Handled = true; + args.Handled = true; UseCreator(args.User, args.User, uid, component); } @@ -143,7 +166,7 @@ private void OnCreatorInteract(EntityUid uid, GuardianCreatorComponent component if (args.Handled || args.Target == null || !args.CanReach) return; - //args.Handled = true; + args.Handled = true; UseCreator(args.User, args.Target.Value, uid, component); } private void UseCreator(EntityUid user, EntityUid target, EntityUid injector, GuardianCreatorComponent component) @@ -194,6 +217,7 @@ private void OnDoAfter(EntityUid uid, GuardianCreatorComponent component, DoAfte if (TryComp(guardian, out var guardianComp)) { guardianComp.Host = args.Args.Target.Value; + // TODO this should be a data field, not a hardcoded path _audio.Play("/Audio/Effects/guardian_inject.ogg", Filter.Pvs(args.Args.Target.Value), args.Args.Target.Value, true); _popupSystem.PopupEntity(Loc.GetString("guardian-created"), args.Args.Target.Value, args.Args.Target.Value); // Exhaust the activator @@ -201,8 +225,8 @@ private void OnDoAfter(EntityUid uid, GuardianCreatorComponent component, DoAfte } else { - Logger.ErrorS("guardian", $"Tried to spawn a guardian that doesn't have {nameof(GuardianComponent)}"); - EntityManager.QueueDeleteEntity(guardian); + Log.Error($"Tried to spawn a guardian that doesn't have {nameof(GuardianComponent)}"); + QueueDel(guardian); } args.Handled = true; @@ -219,13 +243,14 @@ private void OnHostStateChange(EntityUid uid, GuardianHostComponent component, M if (args.NewMobState == MobState.Critical) { _popupSystem.PopupEntity(Loc.GetString("guardian-host-critical-warn"), component.HostedGuardian.Value, component.HostedGuardian.Value); + // TODO this should be a data field, not a hardcoded path _audio.Play("/Audio/Effects/guardian_warn.ogg", Filter.Pvs(component.HostedGuardian.Value), component.HostedGuardian.Value, true); } else if (args.NewMobState == MobState.Dead) { //TODO: Replace WithVariation with datafield _audio.Play("/Audio/Voice/Human/malescream_guardian.ogg", Filter.Pvs(uid), uid, true, AudioHelpers.WithVariation(0.20f)); - EntityManager.RemoveComponent(uid); + RemComp(uid); } } @@ -234,11 +259,11 @@ private void OnHostStateChange(EntityUid uid, GuardianHostComponent component, M /// private void OnGuardianDamaged(EntityUid uid, GuardianComponent component, DamageChangedEvent args) { - if (args.DamageDelta == null) + if (args.DamageDelta == null || component.Host == null || component.DamageShare > 0) return; _damageSystem.TryChangeDamage(component.Host, args.DamageDelta * component.DamageShare, origin: args.Origin); - _popupSystem.PopupEntity(Loc.GetString("guardian-entity-taking-damage"), component.Host, component.Host); + _popupSystem.PopupEntity(Loc.GetString("guardian-entity-taking-damage"), component.Host.Value, component.Host.Value); } @@ -256,8 +281,7 @@ private void OnCreatorExamine(EntityUid uid, GuardianCreatorComponent component, /// private void OnHostMove(EntityUid uid, GuardianHostComponent component, ref MoveEvent args) { - if (component.HostedGuardian == null || - !TryComp(component.HostedGuardian, out GuardianComponent? guardianComponent) || + if (!TryComp(component.HostedGuardian, out GuardianComponent? guardianComponent) || !guardianComponent.GuardianLoose) { return; @@ -271,10 +295,10 @@ private void OnHostMove(EntityUid uid, GuardianHostComponent component, ref Move /// private void OnGuardianMove(EntityUid uid, GuardianComponent component, ref MoveEvent args) { - if (!component.GuardianLoose) + if (!component.GuardianLoose || component.Host == null) return; - CheckGuardianMove(component.Host, uid, guardianComponent: component); + CheckGuardianMove(component.Host.Value, uid, guardianComponent: component); } /// @@ -288,6 +312,9 @@ private void CheckGuardianMove( TransformComponent? hostXform = null, TransformComponent? guardianXform = null) { + if (TerminatingOrDeleted(guardianUid) || TerminatingOrDeleted(hostUid)) + return; + if (!Resolve(hostUid, ref hostComponent, ref hostXform) || !Resolve(guardianUid, ref guardianComponent, ref guardianXform)) { diff --git a/Content.Server/Kitchen/Components/MicrowaveComponent.cs b/Content.Server/Kitchen/Components/MicrowaveComponent.cs index 538a069d16c..56ea23e27e6 100644 --- a/Content.Server/Kitchen/Components/MicrowaveComponent.cs +++ b/Content.Server/Kitchen/Components/MicrowaveComponent.cs @@ -1,4 +1,5 @@ using Content.Shared.Construction.Prototypes; +using Content.Shared.DeviceLinking; using Robust.Shared.Audio; using Robust.Shared.Containers; using Robust.Shared.Prototypes; @@ -37,6 +38,9 @@ public sealed partial class MicrowaveComponent : Component [ViewVariables] public bool Broken; + [DataField, ViewVariables(VVAccess.ReadWrite)] + public ProtoId OnPort = "On"; + /// /// This is a fixed offset of 5. /// The cook times for all recipes should be divisible by 5,with a minimum of 1 second. diff --git a/Content.Server/Kitchen/EntitySystems/MicrowaveSystem.cs b/Content.Server/Kitchen/EntitySystems/MicrowaveSystem.cs index 1c8dbfb4df9..5cee960df88 100644 --- a/Content.Server/Kitchen/EntitySystems/MicrowaveSystem.cs +++ b/Content.Server/Kitchen/EntitySystems/MicrowaveSystem.cs @@ -1,9 +1,13 @@ using System.Linq; using Content.Server.Body.Systems; using Content.Server.Construction; +using Content.Server.DeviceLinking.Events; +using Content.Server.DeviceLinking.Systems; +using Content.Server.DeviceNetwork; using Content.Server.Hands.Systems; using Content.Server.Kitchen.Components; using Content.Server.Power.Components; +using Content.Server.Power.EntitySystems; using Content.Server.Temperature.Components; using Content.Server.Temperature.Systems; using Content.Shared.Body.Components; @@ -33,7 +37,9 @@ public sealed class MicrowaveSystem : EntitySystem { [Dependency] private readonly BodySystem _bodySystem = default!; [Dependency] private readonly ContainerSystem _container = default!; + [Dependency] private readonly DeviceLinkSystem _deviceLink = default!; [Dependency] private readonly SharedPopupSystem _popupSystem = default!; + [Dependency] private readonly PowerReceiverSystem _power = default!; [Dependency] private readonly RecipeManager _recipeManager = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; @@ -49,6 +55,7 @@ public override void Initialize() base.Initialize(); SubscribeLocalEvent(OnInit); + SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnSolutionChange); SubscribeLocalEvent(OnInteractUsing, after: new[] { typeof(AnchorableSystem) }); SubscribeLocalEvent(OnBreak); @@ -57,6 +64,8 @@ public override void Initialize() SubscribeLocalEvent(OnRefreshParts); SubscribeLocalEvent(OnUpgradeExamine); + SubscribeLocalEvent(OnSignalReceived); + SubscribeLocalEvent((u, c, m) => Wzhzhzh(u, c, m.Session.AttachedEntity)); SubscribeLocalEvent(OnEjectMessage); SubscribeLocalEvent(OnEjectIndex); @@ -172,9 +181,15 @@ private void SubtractContents(MicrowaveComponent component, FoodRecipePrototype } } - private void OnInit(EntityUid uid, MicrowaveComponent component, ComponentInit ags) + private void OnInit(Entity ent, ref ComponentInit args) + { + // this really does have to be in ComponentInit + ent.Comp.Storage = _container.EnsureContainer(ent, "microwave_entity_container"); + } + + private void OnMapInit(Entity ent, ref MapInitEvent args) { - component.Storage = _container.EnsureContainer(uid, "microwave_entity_container"); + _deviceLink.EnsureSinkPorts(ent, ent.Comp.OnPort); } private void OnSuicide(EntityUid uid, MicrowaveComponent component, SuicideEvent args) @@ -277,6 +292,17 @@ private void OnUpgradeExamine(EntityUid uid, MicrowaveComponent component, Upgra args.AddPercentageUpgrade("microwave-component-upgrade-cook-time", component.CookTimeMultiplier); } + private void OnSignalReceived(Entity ent, ref SignalReceivedEvent args) + { + if (args.Port != ent.Comp.OnPort) + return; + + if (ent.Comp.Broken || !_power.IsPowered(ent)) + return; + + Wzhzhzh(ent.Owner, ent.Comp, null); + } + public void UpdateUserInterfaceState(EntityUid uid, MicrowaveComponent component) { var ui = _userInterface.GetUiOrNull(uid, MicrowaveUiKey.Key); diff --git a/Content.Server/Mech/Components/MechAirComponent.cs b/Content.Server/Mech/Components/MechAirComponent.cs index 7e989f6481a..c533b3d8343 100644 --- a/Content.Server/Mech/Components/MechAirComponent.cs +++ b/Content.Server/Mech/Components/MechAirComponent.cs @@ -6,7 +6,8 @@ namespace Content.Server.Mech.Components; public sealed partial class MechAirComponent : Component { //TODO: this doesn't support a tank implant for mechs or anything like that - [ViewVariables(VVAccess.ReadWrite)] + [DataField, ViewVariables(VVAccess.ReadWrite)] public GasMixture Air = new (GasMixVolume); + public const float GasMixVolume = 70f; } diff --git a/Content.Server/Mech/Components/MechAirFilterComponent.cs b/Content.Server/Mech/Components/MechAirFilterComponent.cs deleted file mode 100644 index d35b4af471f..00000000000 --- a/Content.Server/Mech/Components/MechAirFilterComponent.cs +++ /dev/null @@ -1,22 +0,0 @@ -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 deleted file mode 100644 index 7b3a84c66ba..00000000000 --- a/Content.Server/Mech/Components/MechAirIntakeComponent.cs +++ /dev/null @@ -1,28 +0,0 @@ -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/Systems/MechSystem.Filtering.cs b/Content.Server/Mech/Systems/MechSystem.Filtering.cs deleted file mode 100644 index 3de151ba705..00000000000 --- a/Content.Server/Mech/Systems/MechSystem.Filtering.cs +++ /dev/null @@ -1,80 +0,0 @@ -using Content.Server.Atmos; -using Content.Server.Atmos.Piping.Components; -using Content.Server.Mech.Components; -using Content.Shared.Atmos; -using Content.Shared.Mech.Components; - -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 var gridId, out var grid)) - { - var tile = _mapSystem.GetTileRef(gridId, grid, 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 a0ca94197ea..780dbac82b5 100644 --- a/Content.Server/Mech/Systems/MechSystem.cs +++ b/Content.Server/Mech/Systems/MechSystem.cs @@ -47,8 +47,6 @@ public override void Initialize() _sawmill = Logger.GetSawmill("mech"); - InitializeFiltering(); - SubscribeLocalEvent(OnInteractUsing); SubscribeLocalEvent(OnInsertBattery); SubscribeLocalEvent(OnMapInit); @@ -69,6 +67,8 @@ public override void Initialize() SubscribeLocalEvent(OnExhale); SubscribeLocalEvent(OnExpose); + SubscribeLocalEvent(OnGetFilterAir); + #region Equipment UI message relays SubscribeLocalEvent(ReceiveEquipmentUiMesssages); SubscribeLocalEvent(ReceiveEquipmentUiMesssages); @@ -423,5 +423,17 @@ private void OnExpose(EntityUid uid, MechPilotComponent component, ref AtmosExpo args.Handled = true; } + + private void OnGetFilterAir(EntityUid uid, MechAirComponent comp, ref GetFilterAirEvent args) + { + if (args.Air != null) + return; + + // only airtight mechs get internal air + if (!TryComp(uid, out var mech) || !mech.Airtight) + return; + + args.Air = comp.Air; + } #endregion } diff --git a/Content.Server/Medical/DefibrillatorSystem.cs b/Content.Server/Medical/DefibrillatorSystem.cs index d041f8ee9d7..dd9f1ec91e8 100644 --- a/Content.Server/Medical/DefibrillatorSystem.cs +++ b/Content.Server/Medical/DefibrillatorSystem.cs @@ -16,6 +16,7 @@ using Content.Shared.Mobs; using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; +using Content.Shared.PowerCell; using Content.Shared.Timing; using Content.Shared.Toggleable; using Robust.Shared.Player; diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/SpeakOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/SpeakOperator.cs index 7fb2f91b943..cf07831959b 100644 --- a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/SpeakOperator.cs +++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/SpeakOperator.cs @@ -9,6 +9,12 @@ public sealed partial class SpeakOperator : HTNOperator [DataField("speech", required: true)] public string Speech = string.Empty; + /// + /// Whether to hide message from chat window and logs. + /// + [DataField] + public bool Hidden; + public override void Initialize(IEntitySystemManager sysManager) { base.Initialize(sysManager); @@ -19,7 +25,7 @@ public override HTNOperatorStatus Update(NPCBlackboard blackboard, float frameTi { var speaker = blackboard.GetValue(NPCBlackboard.Owner); - _chat.TrySendInGameICMessage(speaker, Loc.GetString(Speech), InGameICChatType.Speak, false); + _chat.TrySendInGameICMessage(speaker, Loc.GetString(Speech), InGameICChatType.Speak, hideChat: Hidden, hideLog: Hidden); return base.Update(blackboard, frameTime); } } diff --git a/Content.Server/Ninja/Systems/StunProviderSystem.cs b/Content.Server/Ninja/Systems/StunProviderSystem.cs index 70182e0e36f..097058f4d35 100644 --- a/Content.Server/Ninja/Systems/StunProviderSystem.cs +++ b/Content.Server/Ninja/Systems/StunProviderSystem.cs @@ -1,12 +1,15 @@ using Content.Server.Ninja.Events; using Content.Server.Power.EntitySystems; -using Content.Shared.Electrocution; +using Content.Shared.Damage; +using Content.Shared.Damage.Prototypes; using Content.Shared.Interaction; using Content.Shared.Ninja.Components; using Content.Shared.Ninja.Systems; using Content.Shared.Popups; +using Content.Shared.Stunnable; using Content.Shared.Whitelist; using Robust.Shared.Audio; +using Robust.Shared.Prototypes; using Robust.Shared.Timing; namespace Content.Server.Ninja.Systems; @@ -17,11 +20,13 @@ namespace Content.Server.Ninja.Systems; public sealed class StunProviderSystem : SharedStunProviderSystem { [Dependency] private readonly BatterySystem _battery = default!; + [Dependency] private readonly DamageableSystem _damageable = default!; [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly IPrototypeManager _proto = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; - [Dependency] private readonly SharedElectrocutionSystem _electrocution = default!; [Dependency] private readonly SharedNinjaGlovesSystem _gloves = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly SharedStunSystem _stun = default!; public override void Initialize() { @@ -55,8 +60,9 @@ private void OnBeforeInteractHand(EntityUid uid, StunProviderComponent comp, Bef _audio.PlayPvs(comp.Sound, target); - // not holding hands with target so insuls don't matter - _electrocution.TryDoElectrocution(target, uid, comp.StunDamage, comp.StunTime, false, ignoreInsulation: true); + _damageable.TryChangeDamage(target, comp.StunDamage, false, true, null, origin: uid); + _stun.TryParalyze(target, comp.StunTime, refresh: false); + // short cooldown to prevent instant stunlocking comp.NextStun = _timing.CurTime + comp.Cooldown; diff --git a/Content.Server/Objectives/Systems/NotJobRequirementSystem.cs b/Content.Server/Objectives/Systems/NotJobRequirementSystem.cs index c9539fcbf14..5c2b0404634 100644 --- a/Content.Server/Objectives/Systems/NotJobRequirementSystem.cs +++ b/Content.Server/Objectives/Systems/NotJobRequirementSystem.cs @@ -1,4 +1,3 @@ -using Content.Server.Objectives.Components; using Content.Shared.Objectives.Components; using Content.Shared.Roles.Jobs; @@ -25,7 +24,7 @@ private void OnCheck(EntityUid uid, NotJobRequirementComponent comp, ref Require if (!TryComp(args.MindId, out var job)) return; - if (job.PrototypeId == comp.Job) + if (job.Prototype == comp.Job) args.Cancelled = true; } } diff --git a/Content.Server/Paper/PaperSystem.cs b/Content.Server/Paper/PaperSystem.cs index 553bcaa0a21..0b19daa8a13 100644 --- a/Content.Server/Paper/PaperSystem.cs +++ b/Content.Server/Paper/PaperSystem.cs @@ -107,6 +107,7 @@ private void OnInteractUsing(EntityUid uid, PaperComponent paperComp, InteractUs paperComp.Mode = PaperAction.Write; _uiSystem.TryOpen(uid, PaperUiKey.Key, actor.PlayerSession); UpdateUserInterface(uid, paperComp, actor.PlayerSession); + args.Handled = true; return; } diff --git a/Content.Server/PowerCell/PowerCellSystem.Draw.cs b/Content.Server/PowerCell/PowerCellSystem.Draw.cs index 9d73138346f..c6d8e1e709d 100644 --- a/Content.Server/PowerCell/PowerCellSystem.Draw.cs +++ b/Content.Server/PowerCell/PowerCellSystem.Draw.cs @@ -22,7 +22,7 @@ public override void Update(float frameTime) if (!comp.Drawing) continue; - if (_timing.CurTime < comp.NextUpdateTime) + if (Timing.CurTime < comp.NextUpdateTime) continue; comp.NextUpdateTime += Delay; diff --git a/Content.Server/PowerCell/PowerCellSystem.cs b/Content.Server/PowerCell/PowerCellSystem.cs index 1cfb4d1d701..b424f34de55 100644 --- a/Content.Server/PowerCell/PowerCellSystem.cs +++ b/Content.Server/PowerCell/PowerCellSystem.cs @@ -1,9 +1,5 @@ -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; using Content.Shared.PowerCell; using Content.Shared.PowerCell.Components; @@ -15,7 +11,6 @@ using Content.Server.UserInterface; using Content.Shared.Containers.ItemSlots; using Content.Shared.Popups; -using Robust.Shared.Timing; namespace Content.Server.PowerCell; @@ -24,7 +19,6 @@ namespace Content.Server.PowerCell; /// public sealed partial class PowerCellSystem : SharedPowerCellSystem { - [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly ActivatableUISystem _activatable = default!; [Dependency] private readonly BatterySystem _battery = default!; [Dependency] private readonly SharedContainerSystem _containerSystem = default!; @@ -95,12 +89,8 @@ protected override void OnCellRemoved(EntityUid uid, PowerCellSlotComponent comp } #region Activatable - - /// - /// Returns whether the entity has a slotted battery and charge. - /// - /// Popup to this user with the relevant detail if specified. - public bool HasActivatableCharge(EntityUid uid, PowerCellDrawComponent? battery = null, PowerCellSlotComponent? cell = null, EntityUid? user = null) + /// + public override bool HasActivatableCharge(EntityUid uid, PowerCellDrawComponent? battery = null, PowerCellSlotComponent? cell = null, EntityUid? user = null) { // Default to true if we don't have the components. if (!Resolve(uid, ref battery, ref cell, false)) @@ -108,6 +98,7 @@ public bool HasActivatableCharge(EntityUid uid, PowerCellDrawComponent? battery return HasCharge(uid, battery.UseRate, cell, user); } + /// /// Tries to use the for this entity. /// @@ -128,11 +119,12 @@ public bool TryUseActivatableCharge(EntityUid uid, PowerCellDrawComponent? batte return false; } - /// - /// Whether the power cell has any power at all for the draw rate. - /// - public bool HasDrawCharge(EntityUid uid, PowerCellDrawComponent? battery = null, - PowerCellSlotComponent? cell = null, EntityUid? user = null) + /// + public override bool HasDrawCharge( + EntityUid uid, + PowerCellDrawComponent? battery = null, + PowerCellSlotComponent? cell = null, + EntityUid? user = null) { if (!Resolve(uid, ref battery, ref cell, false)) return true; @@ -142,15 +134,6 @@ public bool HasDrawCharge(EntityUid uid, PowerCellDrawComponent? battery = null, #endregion - public void SetPowerCellDrawEnabled(EntityUid uid, bool enabled, PowerCellDrawComponent? component = null) - { - if (!Resolve(uid, ref component, false) || enabled == component.Drawing) - return; - - component.Drawing = enabled; - component.NextUpdateTime = _timing.CurTime; - } - /// /// Returns whether the entity has a slotted battery and charge for the requested action. /// diff --git a/Content.Server/Roles/Jobs/JobSystem.cs b/Content.Server/Roles/Jobs/JobSystem.cs index 7bee6da7554..9f0dd7ae32b 100644 --- a/Content.Server/Roles/Jobs/JobSystem.cs +++ b/Content.Server/Roles/Jobs/JobSystem.cs @@ -4,7 +4,6 @@ using Content.Shared.Mind; using Content.Shared.Roles; using Content.Shared.Roles.Jobs; -using Robust.Shared.Prototypes; namespace Content.Server.Roles.Jobs; @@ -48,6 +47,6 @@ public void MindAddJob(EntityUid mindId, string jobPrototypeId) if (MindHasJobWithId(mindId, jobPrototypeId)) return; - _roles.MindAddRole(mindId, new JobComponent { PrototypeId = jobPrototypeId }); + _roles.MindAddRole(mindId, new JobComponent { Prototype = jobPrototypeId }); } } diff --git a/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs b/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs index c0804202669..228f32ad90d 100644 --- a/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs +++ b/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs @@ -3,7 +3,6 @@ using Content.Shared.Interaction.Components; using Content.Shared.Silicons.Borgs.Components; using Robust.Shared.Containers; -using Robust.Shared.Utility; namespace Content.Server.Silicons.Borgs; @@ -89,18 +88,19 @@ private void OnSelectableAction(EntityUid uid, SelectableBorgModuleComponent com if (!TryComp(chassis, out var chassisComp)) return; + var selected = chassisComp.SelectedModule; + args.Handled = true; - if (chassisComp.SelectedModule == uid) + UnselectModule(chassis, chassisComp); + + if (selected != uid) { - UnselectModule(chassis, chassisComp); - return; + SelectModule(chassis, uid, chassisComp, component); } - - SelectModule(chassis, uid, chassisComp, component); } /// - /// Selects a module, enablind the borg to use its provided abilities. + /// Selects a module, enabling the borg to use its provided abilities. /// public void SelectModule(EntityUid chassis, EntityUid moduleUid, diff --git a/Content.Server/Spawners/EntitySystems/SpawnPointSystem.cs b/Content.Server/Spawners/EntitySystems/SpawnPointSystem.cs index 755153d309b..c96e3c5c385 100644 --- a/Content.Server/Spawners/EntitySystems/SpawnPointSystem.cs +++ b/Content.Server/Spawners/EntitySystems/SpawnPointSystem.cs @@ -39,7 +39,7 @@ private void OnSpawnPlayer(PlayerSpawningEvent args) if (_gameTicker.RunLevel != GameRunLevel.InRound && spawnPoint.SpawnType == SpawnPointType.Job && - (args.Job == null || spawnPoint.Job?.ID == args.Job.PrototypeId)) + (args.Job == null || spawnPoint.Job?.ID == args.Job.Prototype)) { possiblePositions.Add(xform.Coordinates); } diff --git a/Content.Server/Station/Systems/StationSpawningSystem.cs b/Content.Server/Station/Systems/StationSpawningSystem.cs index 7d30a05bce6..d5d94c492d1 100644 --- a/Content.Server/Station/Systems/StationSpawningSystem.cs +++ b/Content.Server/Station/Systems/StationSpawningSystem.cs @@ -97,7 +97,7 @@ public EntityUid SpawnPlayerMob( EntityUid? station, EntityUid? entity = null) { - _prototypeManager.TryIndex(job?.PrototypeId ?? string.Empty, out JobPrototype? prototype); + _prototypeManager.TryIndex(job?.Prototype ?? string.Empty, out JobPrototype? prototype); // If we're not spawning a humanoid, we're gonna exit early without doing all the humanoid stuff. if (prototype?.JobEntity != null) @@ -161,7 +161,7 @@ public EntityUid SpawnPlayerMob( private void DoJobSpecials(JobComponent? job, EntityUid entity) { - if (!_prototypeManager.TryIndex(job?.PrototypeId ?? string.Empty, out JobPrototype? prototype)) + if (!_prototypeManager.TryIndex(job?.Prototype ?? string.Empty, out JobPrototype? prototype)) return; foreach (var jobSpecial in prototype.Special) diff --git a/Content.Server/Storage/Components/SecretStashComponent.cs b/Content.Server/Storage/Components/SecretStashComponent.cs index 6c7095617c2..a63cb074ad2 100644 --- a/Content.Server/Storage/Components/SecretStashComponent.cs +++ b/Content.Server/Storage/Components/SecretStashComponent.cs @@ -3,6 +3,7 @@ using Content.Shared.Item; using Content.Shared.Toilet; using Robust.Shared.Containers; +using Robust.Shared.Prototypes; namespace Content.Server.Storage.Components { @@ -19,7 +20,7 @@ public sealed partial class SecretStashComponent : Component /// Max item size that can be fitted into secret stash. /// [DataField("maxItemSize")] - public ItemSize MaxItemSize = ItemSize.Small; + public ProtoId MaxItemSize = "Small"; /// /// IC secret stash name. For example "the toilet cistern". diff --git a/Content.Server/Storage/EntitySystems/SecretStashSystem.cs b/Content.Server/Storage/EntitySystems/SecretStashSystem.cs index 81e8bd431ef..49be0a2f880 100644 --- a/Content.Server/Storage/EntitySystems/SecretStashSystem.cs +++ b/Content.Server/Storage/EntitySystems/SecretStashSystem.cs @@ -13,6 +13,7 @@ public sealed class SecretStashSystem : EntitySystem [Dependency] private readonly PopupSystem _popupSystem = default!; [Dependency] private readonly SharedHandsSystem _handsSystem = default!; [Dependency] private readonly SharedContainerSystem _containerSystem = default!; + [Dependency] private readonly SharedItemSystem _item = default!; public override void Initialize() { @@ -66,7 +67,7 @@ public bool TryHideItem(EntityUid uid, EntityUid userUid, EntityUid itemToHideUi } // check if item is too big to fit into secret stash - if (item.Size > component.MaxItemSize) + if (_item.GetSizePrototype(item.Size) > _item.GetSizePrototype(component.MaxItemSize)) { var msg = Loc.GetString("comp-secret-stash-action-hide-item-too-big", ("item", itemToHideUid), ("stash", GetSecretPartName(uid, component))); diff --git a/Content.Server/Store/Conditions/BuyerDepartmentCondition.cs b/Content.Server/Store/Conditions/BuyerDepartmentCondition.cs index a71adc4e779..4e5e504aec4 100644 --- a/Content.Server/Store/Conditions/BuyerDepartmentCondition.cs +++ b/Content.Server/Store/Conditions/BuyerDepartmentCondition.cs @@ -39,11 +39,11 @@ public override bool Condition(ListingConditionArgs args) var jobs = ent.System(); jobs.MindTryGetJob(mindId, out var job, out _); - if (Blacklist != null && job?.PrototypeId != null) + if (Blacklist != null && job?.Prototype != null) { foreach (var department in prototypeManager.EnumeratePrototypes()) { - if (department.Roles.Contains(job.PrototypeId) && Blacklist.Contains(department.ID)) + if (department.Roles.Contains(job.Prototype) && Blacklist.Contains(department.ID)) return false; } } @@ -52,11 +52,11 @@ public override bool Condition(ListingConditionArgs args) { var found = false; - if (job?.PrototypeId != null) + if (job?.Prototype != null) { foreach (var department in prototypeManager.EnumeratePrototypes()) { - if (department.Roles.Contains(job.PrototypeId) && Whitelist.Contains(department.ID)) + if (department.Roles.Contains(job.Prototype) && Whitelist.Contains(department.ID)) { found = true; break; diff --git a/Content.Server/Store/Conditions/BuyerJobCondition.cs b/Content.Server/Store/Conditions/BuyerJobCondition.cs index f5013008abf..6a53af188c2 100644 --- a/Content.Server/Store/Conditions/BuyerJobCondition.cs +++ b/Content.Server/Store/Conditions/BuyerJobCondition.cs @@ -38,13 +38,13 @@ public override bool Condition(ListingConditionArgs args) if (Blacklist != null) { - if (job?.PrototypeId != null && Blacklist.Contains(job.PrototypeId)) + if (job?.Prototype != null && Blacklist.Contains(job.Prototype)) return false; } if (Whitelist != null) { - if (job?.PrototypeId == null || !Whitelist.Contains(job.PrototypeId)) + if (job?.Prototype == null || !Whitelist.Contains(job.Prototype)) return false; } diff --git a/Content.Server/UserInterface/StatValuesCommand.cs b/Content.Server/UserInterface/StatValuesCommand.cs index 3021233a1c9..9ec38753d40 100644 --- a/Content.Server/UserInterface/StatValuesCommand.cs +++ b/Content.Server/UserInterface/StatValuesCommand.cs @@ -127,6 +127,7 @@ private StatValuesEuiMessage GetCargo() private StatValuesEuiMessage GetItem() { var values = new List(); + var itemSystem = _entManager.System(); var metaQuery = _entManager.GetEntityQuery(); var itemQuery = _entManager.GetEntityQuery(); var items = new HashSet(1024); @@ -149,7 +150,7 @@ private StatValuesEuiMessage GetItem() values.Add(new[] { id, - $"{SharedItemSystem.GetItemSizeLocale(itemComp.Size)}", + $"{itemSystem.GetItemSizeLocale(itemComp.Size)}", }); } diff --git a/Content.Server/Weapons/Melee/EnergySword/EnergySwordSystem.cs b/Content.Server/Weapons/Melee/EnergySword/EnergySwordSystem.cs index 80316d64f9a..c943aeb7f0c 100644 --- a/Content.Server/Weapons/Melee/EnergySword/EnergySwordSystem.cs +++ b/Content.Server/Weapons/Melee/EnergySword/EnergySwordSystem.cs @@ -98,7 +98,7 @@ private void TurnOff(EntityUid uid, EnergySwordComponent comp, ref EnergySwordDe { if (TryComp(uid, out ItemComponent? item)) { - _item.SetSize(uid, ItemSize.Small, item); + _item.SetSize(uid, "Small", item); } if (TryComp(uid, out var malus)) @@ -125,7 +125,7 @@ private void TurnOn(EntityUid uid, EnergySwordComponent comp, ref EnergySwordAct { if (TryComp(uid, out ItemComponent? item)) { - _item.SetSize(uid, ItemSize.Huge, item); + _item.SetSize(uid, "Huge", item); } if (comp.IsSharp) diff --git a/Content.Server/Weapons/Misc/TetherGunSystem.cs b/Content.Server/Weapons/Misc/TetherGunSystem.cs index 44d0c49e3f8..f6aafe376d6 100644 --- a/Content.Server/Weapons/Misc/TetherGunSystem.cs +++ b/Content.Server/Weapons/Misc/TetherGunSystem.cs @@ -1,4 +1,5 @@ using Content.Server.PowerCell; +using Content.Shared.PowerCell; using Content.Shared.Weapons.Misc; using Robust.Shared.Physics.Components; diff --git a/Content.Server/Zombies/ZombieSystem.Transform.cs b/Content.Server/Zombies/ZombieSystem.Transform.cs index 0be69ca0227..152ad1cd171 100644 --- a/Content.Server/Zombies/ZombieSystem.Transform.cs +++ b/Content.Server/Zombies/ZombieSystem.Transform.cs @@ -16,6 +16,7 @@ using Content.Server.Speech.Components; using Content.Server.Temperature.Components; using Content.Shared.CombatMode; +using Content.Shared.CombatMode.Pacification; using Content.Shared.Damage; using Content.Shared.Hands.Components; using Content.Shared.Hands.EntitySystems; @@ -107,6 +108,7 @@ 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. var combat = EnsureComp(target); + RemComp(target); _combat.SetCanDisarm(target, false, combat); _combat.SetInCombatMode(target, true, combat); diff --git a/Content.Server/Zombies/ZombieSystem.cs b/Content.Server/Zombies/ZombieSystem.cs index 51cbf34d99c..3f971b970f1 100644 --- a/Content.Server/Zombies/ZombieSystem.cs +++ b/Content.Server/Zombies/ZombieSystem.cs @@ -226,7 +226,7 @@ private void OnMeleeHit(EntityUid uid, ZombieComponent component, MeleeHitEvent } } - if (_mobState.IsIncapacitated(entity, mobState) && !HasComp(entity)) + if (_mobState.IsIncapacitated(entity, mobState) && !HasComp(entity) && !HasComp(entity)) { ZombifyEntity(entity); args.BonusDamage = -args.BaseDamage; diff --git a/Content.Shared/Actions/SharedActionsSystem.cs b/Content.Shared/Actions/SharedActionsSystem.cs index d035e6ccfbf..666110575a8 100644 --- a/Content.Shared/Actions/SharedActionsSystem.cs +++ b/Content.Shared/Actions/SharedActionsSystem.cs @@ -126,6 +126,27 @@ public void SetCooldown(EntityUid? actionId, TimeSpan start, TimeSpan end) Dirty(actionId.Value, action); } + public void SetCooldown(EntityUid? actionId, TimeSpan cooldown) + { + var start = GameTiming.CurTime; + SetCooldown(actionId, start, start + cooldown); + } + + public void ClearCooldown(EntityUid? actionId) + { + if (actionId == null) + return; + + if (!TryGetActionData(actionId, out var action)) + return; + + if (action.Cooldown is not { } cooldown) + return; + + action.Cooldown = (cooldown.Start, GameTiming.CurTime); + Dirty(actionId.Value, action); + } + public void StartUseDelay(EntityUid? actionId) { if (actionId == null) diff --git a/Content.Shared/Anomaly/Components/AnomalyComponent.cs b/Content.Shared/Anomaly/Components/AnomalyComponent.cs index cf3ba75aaaa..a6f4f6c0867 100644 --- a/Content.Shared/Anomaly/Components/AnomalyComponent.cs +++ b/Content.Shared/Anomaly/Components/AnomalyComponent.cs @@ -243,16 +243,17 @@ public sealed partial class AnomalyComponent : Component /// /// Event raised at regular intervals on an anomaly to do whatever its effect is. /// +/// The anomaly pulsing /// /// [ByRefEvent] -public readonly record struct AnomalyPulseEvent(float Stability, float Severity); +public readonly record struct AnomalyPulseEvent(EntityUid Anomaly, float Stability, float Severity); /// /// Event raised on an anomaly when it reaches a supercritical point. /// [ByRefEvent] -public readonly record struct AnomalySupercriticalEvent; +public readonly record struct AnomalySupercriticalEvent(EntityUid Anomaly); /// /// Event broadcast after an anomaly goes supercritical diff --git a/Content.Shared/Anomaly/Effects/Components/EntitySpawnAnomalyComponent.cs b/Content.Shared/Anomaly/Effects/Components/EntitySpawnAnomalyComponent.cs index 7083c91040e..7a816e43123 100644 --- a/Content.Shared/Anomaly/Effects/Components/EntitySpawnAnomalyComponent.cs +++ b/Content.Shared/Anomaly/Effects/Components/EntitySpawnAnomalyComponent.cs @@ -1,7 +1,4 @@ -using Content.Shared.Maps; using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; namespace Content.Shared.Anomaly.Effects.Components; @@ -36,8 +33,21 @@ public sealed partial class EntitySpawnAnomalyComponent : Component public float SpawnRange = 5f; /// - /// The tile that is spawned by the anomaly's effect + /// Whether or not anomaly spawns entities on Pulse /// - [DataField("floorTileId", customTypeSerializer: typeof(PrototypeIdSerializer)), ViewVariables(VVAccess.ReadWrite)] - public string FloorTileId = "FloorFlesh"; + [DataField, ViewVariables(VVAccess.ReadWrite)] + public bool SpawnOnPulse = true; + + /// + /// Whether or not anomaly spawns entities on SuperCritical + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public bool SpawnOnSuperCritical = true; + + /// + /// Whether or not anomaly spawns entities on StabilityChanged + /// The idea was to spawn entities either on Pulse/Supercritical OR StabilityChanged + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public bool SpawnOnStabilityChanged = false; } diff --git a/Content.Shared/Anomaly/SharedAnomalySystem.cs b/Content.Shared/Anomaly/SharedAnomalySystem.cs index ca77544a156..48413ac0018 100644 --- a/Content.Shared/Anomaly/SharedAnomalySystem.cs +++ b/Content.Shared/Anomaly/SharedAnomalySystem.cs @@ -109,9 +109,9 @@ public void DoAnomalyPulse(EntityUid uid, AnomalyComponent? component = null) var pulse = EnsureComp(uid); pulse.EndTime = Timing.CurTime + pulse.PulseDuration; Appearance.SetData(uid, AnomalyVisuals.IsPulsing, true); - - var ev = new AnomalyPulseEvent(component.Stability, component.Severity); - RaiseLocalEvent(uid, ref ev); + + var ev = new AnomalyPulseEvent(uid, component.Stability, component.Severity); + RaiseLocalEvent(uid, ref ev, true); } /// @@ -154,8 +154,8 @@ public void DoAnomalySupercriticalEvent(EntityUid uid, AnomalyComponent? compone if (_net.IsServer) _sawmill.Info($"Raising supercritical event. Entity: {ToPrettyString(uid)}"); - var ev = new AnomalySupercriticalEvent(); - RaiseLocalEvent(uid, ref ev); + var ev = new AnomalySupercriticalEvent(uid); + RaiseLocalEvent(uid, ref ev, true); EndAnomaly(uid, component, true); } diff --git a/Content.Shared/Clothing/ClothingSpeedModifierSystem.cs b/Content.Shared/Clothing/ClothingSpeedModifierSystem.cs index 74b5369aa39..66ff5c624a4 100644 --- a/Content.Shared/Clothing/ClothingSpeedModifierSystem.cs +++ b/Content.Shared/Clothing/ClothingSpeedModifierSystem.cs @@ -1,6 +1,11 @@ +using Content.Shared.Actions; +using Content.Shared.Clothing.Components; using Content.Shared.Examine; +using Content.Shared.IdentityManagement; using Content.Shared.Inventory; using Content.Shared.Movement.Systems; +using Content.Shared.PowerCell; +using Content.Shared.Toggleable; using Content.Shared.Verbs; using Robust.Shared.Containers; using Robust.Shared.GameStates; @@ -10,9 +15,13 @@ namespace Content.Shared.Clothing; public sealed class ClothingSpeedModifierSystem : EntitySystem { - [Dependency] private readonly MovementSpeedModifierSystem _movementSpeed = default!; + [Dependency] private readonly SharedActionsSystem _actions = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly ClothingSpeedModifierSystem _clothingSpeedModifier = default!; [Dependency] private readonly SharedContainerSystem _container = default!; [Dependency] private readonly ExamineSystemShared _examine = default!; + [Dependency] private readonly MovementSpeedModifierSystem _movementSpeed = default!; + [Dependency] private readonly SharedPowerCellSystem _powerCell = default!; public override void Initialize() { @@ -22,6 +31,12 @@ public override void Initialize() SubscribeLocalEvent(OnHandleState); SubscribeLocalEvent>(OnRefreshMoveSpeed); SubscribeLocalEvent>(OnClothingVerbExamine); + + SubscribeLocalEvent>(AddToggleVerb); + SubscribeLocalEvent(OnGetActions); + SubscribeLocalEvent(OnToggleSpeed); + SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(OnPowerCellSlotEmpty); } // Public API @@ -34,7 +49,7 @@ public void SetClothingSpeedModifierEnabled(EntityUid uid, bool enabled, Clothin if (component.Enabled != enabled) { component.Enabled = enabled; - Dirty(component); + Dirty(uid, component); // inventory system will automatically hook into the event raised by this and update accordingly if (_container.TryGetContainingContainer(uid, out var container)) @@ -126,4 +141,61 @@ private void OnClothingVerbExamine(EntityUid uid, ClothingSpeedModifierComponent _examine.AddDetailedExamineVerb(args, component, msg, Loc.GetString("clothing-speed-examinable-verb-text"), "/Textures/Interface/VerbIcons/outfit.svg.192dpi.png", Loc.GetString("clothing-speed-examinable-verb-message")); } + + private void OnMapInit(Entity uid, ref MapInitEvent args) + { + _actions.AddAction(uid, ref uid.Comp.ToggleActionEntity, uid.Comp.ToggleAction); + } + + private void OnToggleSpeed(Entity uid, ref ToggleClothingSpeedEvent args) + { + if (args.Handled) + return; + + args.Handled = true; + SetSpeedToggleEnabled(uid, !uid.Comp.Enabled, args.Performer); + } + + private void SetSpeedToggleEnabled(Entity uid, bool value, EntityUid? user) + { + if (uid.Comp.Enabled == value) + return; + + TryComp(uid, out var draw); + if (value && !_powerCell.HasDrawCharge(uid, draw, user: user)) + return; + + uid.Comp.Enabled = value; + + _appearance.SetData(uid, ToggleVisuals.Toggled, uid.Comp.Enabled); + _actions.SetToggled(uid.Comp.ToggleActionEntity, uid.Comp.Enabled); + _clothingSpeedModifier.SetClothingSpeedModifierEnabled(uid.Owner, uid.Comp.Enabled); + _powerCell.SetPowerCellDrawEnabled(uid, uid.Comp.Enabled, draw); + Dirty(uid, uid.Comp); + } + + private void AddToggleVerb(Entity uid, ref GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract) + return; + + var user = args.User; + ActivationVerb verb = new() + { + Text = Loc.GetString("toggle-clothing-verb-text", + ("entity", Identity.Entity(uid, EntityManager))), + Act = () => SetSpeedToggleEnabled(uid, !uid.Comp.Enabled, user) + }; + args.Verbs.Add(verb); + } + + private void OnGetActions(Entity uid, ref GetItemActionsEvent args) + { + args.AddAction(ref uid.Comp.ToggleActionEntity, uid.Comp.ToggleAction); + } + + private void OnPowerCellSlotEmpty(Entity uid, ref PowerCellSlotEmptyEvent args) + { + SetSpeedToggleEnabled(uid, false, null); + } } diff --git a/Content.Shared/Clothing/Components/SkatesComponent.cs b/Content.Shared/Clothing/Components/SkatesComponent.cs new file mode 100644 index 00000000000..dcfe9664733 --- /dev/null +++ b/Content.Shared/Clothing/Components/SkatesComponent.cs @@ -0,0 +1,9 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Clothing; + +[RegisterComponent] +[NetworkedComponent] +public sealed partial class SkatesComponent : Component +{ +} diff --git a/Content.Shared/Clothing/Components/ToggleClothingSpeedComponent.cs b/Content.Shared/Clothing/Components/ToggleClothingSpeedComponent.cs new file mode 100644 index 00000000000..90b2d7322e0 --- /dev/null +++ b/Content.Shared/Clothing/Components/ToggleClothingSpeedComponent.cs @@ -0,0 +1,35 @@ +using Content.Shared.Actions; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Clothing.Components; + +/// +/// This is used for a clothing item that gives a speed modification that is toggleable. +/// +[RegisterComponent, NetworkedComponent, Access(typeof(ClothingSpeedModifierSystem)), AutoGenerateComponentState] +public sealed partial class ToggleClothingSpeedComponent : Component +{ + /// + /// The action for toggling the clothing. + /// + [DataField] + public EntProtoId ToggleAction = "ActionToggleSpeedBoots"; + + /// + /// The action entity + /// + [DataField, AutoNetworkedField] + public EntityUid? ToggleActionEntity; + + /// + /// The state of the toggle. + /// + [DataField, AutoNetworkedField] + public bool Enabled; +} + +public sealed partial class ToggleClothingSpeedEvent : InstantActionEvent +{ + +} diff --git a/Content.Shared/Construction/Conditions/EntityWhitelistCondition.cs b/Content.Shared/Construction/Conditions/EntityWhitelistCondition.cs new file mode 100644 index 00000000000..22d86b54fb7 --- /dev/null +++ b/Content.Shared/Construction/Conditions/EntityWhitelistCondition.cs @@ -0,0 +1,45 @@ +using Content.Shared.Construction.EntitySystems; +using Content.Shared.Whitelist; +using Robust.Shared.Map; +using Robust.Shared.Utility; + +namespace Content.Shared.Construction.Conditions; + +/// +/// A check to see if the entity itself can be crafted. +/// +[DataDefinition] +public sealed partial class EntityWhitelistCondition : IConstructionCondition +{ + /// + /// What is told to the player attempting to construct the recipe using this condition. This will be localised. + /// + [DataField("conditionString")] + public string ConditionString = "construction-step-condition-entity-whitelist"; + + /// + /// The icon shown to the player beside the condition string. + /// + [DataField("conditionIcon")] + public SpriteSpecifier? ConditionIcon = null; + + /// + /// The whitelist that allows only certain entities to use this. + /// + [DataField("whitelist", required: true)] + public EntityWhitelist Whitelist = new(); + + public bool Condition(EntityUid user, EntityCoordinates location, Direction direction) + { + return Whitelist.IsValid(user); + } + + public ConstructionGuideEntry GenerateGuideEntry() + { + return new ConstructionGuideEntry + { + Localization = ConditionString, + Icon = ConditionIcon + }; + } +} diff --git a/Content.Shared/Construction/Prototypes/ConstructionPrototype.cs b/Content.Shared/Construction/Prototypes/ConstructionPrototype.cs index bd6dc096add..e9863f83641 100644 --- a/Content.Shared/Construction/Prototypes/ConstructionPrototype.cs +++ b/Content.Shared/Construction/Prototypes/ConstructionPrototype.cs @@ -1,4 +1,5 @@ using Content.Shared.Construction.Conditions; +using Content.Shared.Whitelist; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; using Robust.Shared.Utility; @@ -20,7 +21,7 @@ public sealed partial class ConstructionPrototype : IPrototype /// Friendly name displayed in the construction GUI. /// [DataField("name")] - public string Name= string.Empty; + public string Name = string.Empty; /// /// "Useful" description displayed in the construction GUI. @@ -31,7 +32,7 @@ public sealed partial class ConstructionPrototype : IPrototype /// /// The this construction will be using. /// - [DataField("graph", customTypeSerializer:typeof(PrototypeIdSerializer), required: true)] + [DataField("graph", customTypeSerializer: typeof(PrototypeIdSerializer), required: true)] public string Graph = string.Empty; /// @@ -64,6 +65,13 @@ public sealed partial class ConstructionPrototype : IPrototype [DataField("canBuildInImpassable")] public bool CanBuildInImpassable { get; private set; } + /// + /// If not null, then this is used to check if the entity trying to construct this is whitelisted. + /// If they're not whitelisted, hide the item. + /// + [DataField("entityWhitelist")] + public EntityWhitelist? EntityWhitelist = null; + [DataField("category")] public string Category { get; private set; } = ""; [DataField("objectType")] public ConstructionType Type { get; private set; } = ConstructionType.Structure; @@ -84,11 +92,11 @@ public sealed partial class ConstructionPrototype : IPrototype /// /// Construction to replace this construction with when the current one is 'flipped' /// - [DataField("mirror", customTypeSerializer:typeof(PrototypeIdSerializer))] + [DataField("mirror", customTypeSerializer: typeof(PrototypeIdSerializer))] public string? Mirror; public IReadOnlyList Conditions => _conditions; - public IReadOnlyList Layers => _layers ?? new List{Icon}; + public IReadOnlyList Layers => _layers ?? new List { Icon }; } public enum ConstructionType diff --git a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs index dfa72fcfb7f..712e0192db0 100644 --- a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs +++ b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs @@ -182,7 +182,9 @@ public bool TryMoveHeldEntityToActiveHand(EntityUid uid, string handName, bool c //TODO: Actually shows all items/clothing/etc. private void HandleExamined(EntityUid uid, HandsComponent handsComp, ExaminedEvent args) { - var held = EnumerateHeld(uid, handsComp).ToList(); + var held = EnumerateHeld(uid, handsComp) + .Where(x => !HasComp(x)).ToList(); + if (!held.Any()) { args.PushText(Loc.GetString("comp-hands-examine-empty", @@ -191,7 +193,6 @@ private void HandleExamined(EntityUid uid, HandsComponent handsComp, ExaminedEve } var heldList = ContentLocalizationManager.FormatList(held - .Where(x => !HasComp(x)) .Select(x => Loc.GetString("comp-hands-examine-wrapper", ("item", Identity.Entity(x, EntityManager)))).ToList()); diff --git a/Content.Shared/Inventory/InventorySystem.Equip.cs b/Content.Shared/Inventory/InventorySystem.Equip.cs index 23c0fbd0a2d..7b6ccaf0d48 100644 --- a/Content.Shared/Inventory/InventorySystem.Equip.cs +++ b/Content.Shared/Inventory/InventorySystem.Equip.cs @@ -14,6 +14,7 @@ using Robust.Shared.Containers; using Robust.Shared.Network; using Robust.Shared.Player; +using Robust.Shared.Prototypes; using Robust.Shared.Timing; namespace Content.Shared.Inventory; @@ -23,12 +24,16 @@ public abstract partial class InventorySystem [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly MovementSpeedModifierSystem _movementSpeed = default!; [Dependency] private readonly SharedInteractionSystem _interactionSystem = default!; + [Dependency] private readonly SharedItemSystem _item = default!; [Dependency] private readonly SharedContainerSystem _containerSystem = default!; [Dependency] private readonly SharedHandsSystem _handsSystem = default!; [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly INetManager _netMan = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; + [ValidatePrototypeId] + private const string PocketableItemSize = "Small"; + private void InitializeEquip() { //these events ensure that the client also gets its proper events raised when getting its containerstate updated @@ -264,7 +269,9 @@ public bool CanEquip(EntityUid actor, EntityUid target, EntityUid itemUid, strin if (slotDefinition.DependsOn != null && !TryGetSlotEntity(target, slotDefinition.DependsOn, out _, inventory)) return false; - var fittingInPocket = slotDefinition.SlotFlags.HasFlag(SlotFlags.POCKET) && item is { Size: <= ItemSize.Small }; + var fittingInPocket = slotDefinition.SlotFlags.HasFlag(SlotFlags.POCKET) && + item != null && + _item.GetSizePrototype(item.Size) <= _item.GetSizePrototype(PocketableItemSize); if (clothing == null && !fittingInPocket || clothing != null && !clothing.Slots.HasFlag(slotDefinition.SlotFlags) && !fittingInPocket) { diff --git a/Content.Shared/Inventory/InventorySystem.Relay.cs b/Content.Shared/Inventory/InventorySystem.Relay.cs index fbe744911fd..20a98dc1244 100644 --- a/Content.Shared/Inventory/InventorySystem.Relay.cs +++ b/Content.Shared/Inventory/InventorySystem.Relay.cs @@ -42,6 +42,7 @@ public void InitializeRelay() SubscribeLocalEvent>(RelayInventoryEvent); SubscribeLocalEvent>(RelayInventoryEvent); SubscribeLocalEvent>(RelayInventoryEvent); + SubscribeLocalEvent>(RelayInventoryEvent); SubscribeLocalEvent>(OnGetEquipmentVerbs); } diff --git a/Content.Shared/Item/ItemComponent.cs b/Content.Shared/Item/ItemComponent.cs index 2c667b778a2..ef4d4513207 100644 --- a/Content.Shared/Item/ItemComponent.cs +++ b/Content.Shared/Item/ItemComponent.cs @@ -1,5 +1,6 @@ using Content.Shared.Hands.Components; using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization; namespace Content.Shared.Item; @@ -15,7 +16,7 @@ public sealed partial class ItemComponent : Component { [DataField, ViewVariables(VVAccess.ReadWrite)] [Access(typeof(SharedItemSystem))] - public ItemSize Size = ItemSize.Small; + public ProtoId Size = "Small"; [Access(typeof(SharedItemSystem))] [DataField] @@ -38,10 +39,10 @@ public sealed partial class ItemComponent : Component [Serializable, NetSerializable] public sealed class ItemComponentState : ComponentState { - public ItemSize Size { get; } + public ProtoId Size { get; } public string? HeldPrefix { get; } - public ItemComponentState(ItemSize size, string? heldPrefix) + public ItemComponentState(ProtoId size, string? heldPrefix) { Size = size; HeldPrefix = heldPrefix; @@ -64,40 +65,3 @@ public VisualsChangedEvent(NetEntity item, string containerId) ContainerId = containerId; } } - -/// -/// Abstracted sizes for items. -/// Used to determine what can fit into inventories. -/// -public enum ItemSize -{ - /// - /// Items that can be held completely in one's hand. - /// - Tiny = 1, - - /// - /// Items that can fit inside of a standard pocket. - /// - Small = 2, - - /// - /// Items that can fit inside of a standard bag. - /// - Normal = 4, - - /// - /// Items that are too large to fit inside of standard bags, but can worn in exterior slots or placed in custom containers. - /// - Large = 8, - - /// - /// Items that are too large to place inside of any kind of container. - /// - Huge = 16, - - /// - /// Picture furry gf - /// - Ginormous = 32 -} diff --git a/Content.Shared/Item/ItemSizePrototype.cs b/Content.Shared/Item/ItemSizePrototype.cs new file mode 100644 index 00000000000..e4988095934 --- /dev/null +++ b/Content.Shared/Item/ItemSizePrototype.cs @@ -0,0 +1,53 @@ +using Robust.Shared.Prototypes; + +namespace Content.Shared.Item; + +/// +/// This is a prototype for a category of an item's size. +/// +[Prototype("itemSize")] +public sealed partial class ItemSizePrototype : IPrototype, IComparable +{ + /// + [IdDataField] + public string ID { get; } = default!; + + /// + /// The amount of space in a bag an item of this size takes. + /// + [DataField] + public readonly int Weight = 1; + + /// + /// A player-facing name used to describe this size. + /// + [DataField] + public readonly LocId Name; + + public int CompareTo(ItemSizePrototype? other) + { + if (other is not { } otherItemSize) + return 0; + return Weight.CompareTo(otherItemSize.Weight); + } + + public static bool operator <(ItemSizePrototype a, ItemSizePrototype b) + { + return a.Weight < b.Weight; + } + + public static bool operator >(ItemSizePrototype a, ItemSizePrototype b) + { + return a.Weight > b.Weight; + } + + public static bool operator <=(ItemSizePrototype a, ItemSizePrototype b) + { + return a.Weight <= b.Weight; + } + + public static bool operator >=(ItemSizePrototype a, ItemSizePrototype b) + { + return a.Weight >= b.Weight; + } +} diff --git a/Content.Shared/Item/ItemToggleComponent.cs b/Content.Shared/Item/ItemToggleComponent.cs index 250306f8c72..eb25f259aea 100644 --- a/Content.Shared/Item/ItemToggleComponent.cs +++ b/Content.Shared/Item/ItemToggleComponent.cs @@ -1,6 +1,7 @@ using Content.Shared.Item; using Robust.Shared.Audio; using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; namespace Content.Server.Weapons.Melee.ItemToggle; @@ -21,11 +22,11 @@ public sealed partial class ItemToggleComponent : Component [ViewVariables(VVAccess.ReadWrite)] [DataField("offSize")] - public ItemSize OffSize = ItemSize.Small; + public ProtoId OffSize = "Small"; [ViewVariables(VVAccess.ReadWrite)] [DataField("onSize")] - public ItemSize OnSize = ItemSize.Huge; + public ProtoId OnSize = "Huge"; } [ByRefEvent] diff --git a/Content.Shared/Item/SharedItemSystem.cs b/Content.Shared/Item/SharedItemSystem.cs index 4317a2307f4..ee4dc1e45f7 100644 --- a/Content.Shared/Item/SharedItemSystem.cs +++ b/Content.Shared/Item/SharedItemSystem.cs @@ -6,12 +6,14 @@ using JetBrains.Annotations; using Robust.Shared.Containers; using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; using Robust.Shared.Utility; namespace Content.Shared.Item; public abstract class SharedItemSystem : EntitySystem { + [Dependency] private readonly IPrototypeManager _prototype = default!; [Dependency] private readonly SharedHandsSystem _handsSystem = default!; [Dependency] protected readonly SharedContainerSystem Container = default!; @@ -30,7 +32,7 @@ public override void Initialize() #region Public API - public void SetSize(EntityUid uid, ItemSize size, ItemComponent? component = null) + public void SetSize(EntityUid uid, ProtoId size, ItemComponent? component = null) { if (!Resolve(uid, ref component, false)) return; @@ -128,6 +130,11 @@ private void OnExamine(EntityUid uid, ItemComponent component, ExaminedEvent arg ("size", GetItemSizeLocale(component.Size)))); } + public ItemSizePrototype GetSizePrototype(ProtoId id) + { + return _prototype.Index(id); + } + /// /// Notifies any entity that is holding or wearing this item that they may need to update their sprite. /// @@ -140,14 +147,14 @@ public virtual void VisualsChanged(EntityUid owner) } [PublicAPI] - public static string GetItemSizeLocale(ItemSize size) + public string GetItemSizeLocale(ProtoId size) { - return Robust.Shared.Localization.Loc.GetString($"item-component-size-{size.ToString()}"); + return Loc.GetString(GetSizePrototype(size).Name); } [PublicAPI] - public static int GetItemSizeWeight(ItemSize size) + public int GetItemSizeWeight(ProtoId size) { - return (int) size; + return GetSizePrototype(size).Weight; } } diff --git a/Content.Shared/Mech/EntitySystems/SharedMechSystem.cs b/Content.Shared/Mech/EntitySystems/SharedMechSystem.cs index 2af5ac6e0c3..23f0ce8a7c2 100644 --- a/Content.Shared/Mech/EntitySystems/SharedMechSystem.cs +++ b/Content.Shared/Mech/EntitySystems/SharedMechSystem.cs @@ -4,6 +4,7 @@ using Content.Shared.Actions; using Content.Shared.Destructible; using Content.Shared.DoAfter; +using Content.Shared.DragDrop; using Content.Shared.FixedPoint; using Content.Shared.Interaction; using Content.Shared.Interaction.Components; @@ -35,6 +36,7 @@ public abstract class SharedMechSystem : EntitySystem [Dependency] private readonly SharedInteractionSystem _interaction = default!; [Dependency] private readonly SharedMoverController _mover = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; /// public override void Initialize() @@ -45,6 +47,8 @@ public override void Initialize() SubscribeLocalEvent(OnStartup); SubscribeLocalEvent(OnDestruction); SubscribeLocalEvent(OnGetAdditionalAccess); + SubscribeLocalEvent(OnDragDrop); + SubscribeLocalEvent(OnCanDragDrop); SubscribeLocalEvent(OnGetMeleeWeapon); SubscribeLocalEvent(OnCanAttackFromContainer); @@ -420,6 +424,29 @@ private void UpdateAppearance(EntityUid uid, MechComponent? component = null, _appearance.SetData(uid, MechVisuals.Open, IsEmpty(component), appearance); _appearance.SetData(uid, MechVisuals.Broken, component.Broken, appearance); } + + private void OnDragDrop(EntityUid uid, MechComponent component, ref DragDropTargetEvent args) + { + if (args.Handled) + return; + + args.Handled = true; + + var doAfterEventArgs = new DoAfterArgs(EntityManager, args.Dragged, component.EntryDelay, new MechEntryEvent(), uid, target: uid) + { + BreakOnUserMove = true, + }; + + _doAfter.TryStartDoAfter(doAfterEventArgs); + } + + private void OnCanDragDrop(EntityUid uid, MechComponent component, ref CanDropTargetEvent args) + { + args.Handled = true; + + args.CanDrop |= !component.Broken && CanInsert(uid, args.Dragged, component); + } + } /// diff --git a/Content.Shared/Mobs/Systems/MobStateSystem.Subscribers.cs b/Content.Shared/Mobs/Systems/MobStateSystem.Subscribers.cs index 4442d87d885..15999322465 100644 --- a/Content.Shared/Mobs/Systems/MobStateSystem.Subscribers.cs +++ b/Content.Shared/Mobs/Systems/MobStateSystem.Subscribers.cs @@ -70,6 +70,11 @@ private void OnStateExitSubscribers(EntityUid target, MobStateComponent componen private void OnStateEnteredSubscribers(EntityUid target, MobStateComponent component, MobState state) { + // All of the state changes here should already be networked, so we do nothing if we are currently applying a + // server state. + if (_timing.ApplyingState) + return; + _blocker.UpdateCanMove(target); //update movement anytime a state changes switch (state) { diff --git a/Content.Shared/Mobs/Systems/MobStateSystem.cs b/Content.Shared/Mobs/Systems/MobStateSystem.cs index ad2de1c8013..ff54c30aaf4 100644 --- a/Content.Shared/Mobs/Systems/MobStateSystem.cs +++ b/Content.Shared/Mobs/Systems/MobStateSystem.cs @@ -4,6 +4,7 @@ using Content.Shared.Standing; using Robust.Shared.GameStates; using Robust.Shared.Physics.Systems; +using Robust.Shared.Timing; namespace Content.Shared.Mobs.Systems; @@ -16,6 +17,7 @@ public partial class MobStateSystem : EntitySystem [Dependency] private readonly StandingStateSystem _standing = default!; [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; [Dependency] private readonly ILogManager _logManager = default!; + [Dependency] private readonly IGameTiming _timing = default!; private ISawmill _sawmill = default!; public override void Initialize() diff --git a/Content.Shared/Movement/Components/FrictionContactsComponent.cs b/Content.Shared/Movement/Components/FrictionContactsComponent.cs new file mode 100644 index 00000000000..693ada49f77 --- /dev/null +++ b/Content.Shared/Movement/Components/FrictionContactsComponent.cs @@ -0,0 +1,31 @@ +using Content.Shared.Movement.Systems; +using Robust.Shared.GameStates; + +namespace Content.Shared.Movement.Components; + +[NetworkedComponent, RegisterComponent] +[AutoGenerateComponentState] +[Access(typeof(FrictionContactsSystem))] +public sealed partial class FrictionContactsComponent : Component +{ + /// + /// Modified mob friction while on FrictionContactsComponent + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + [AutoNetworkedField] + public float MobFriction = 0.5f; + + /// + /// Modified mob friction without input while on FrictionContactsComponent + /// + [AutoNetworkedField] + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float MobFrictionNoInput = 0.05f; + + /// + /// Modified mob acceleration while on FrictionContactsComponent + /// + [AutoNetworkedField] + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float MobAcceleration = 2.0f; +} diff --git a/Content.Shared/Movement/Components/MovementSpeedModifierComponent.cs b/Content.Shared/Movement/Components/MovementSpeedModifierComponent.cs index 7efc12a7316..a0feab7052c 100644 --- a/Content.Shared/Movement/Components/MovementSpeedModifierComponent.cs +++ b/Content.Shared/Movement/Components/MovementSpeedModifierComponent.cs @@ -87,19 +87,19 @@ private float _baseSprintSpeedVV /// /// The acceleration applied to mobs when moving. /// - [ViewVariables(VVAccess.ReadWrite), DataField] + [AutoNetworkedField, ViewVariables(VVAccess.ReadWrite), DataField] public float Acceleration = DefaultAcceleration; /// /// The negative velocity applied for friction. /// - [ViewVariables(VVAccess.ReadWrite), DataField] + [AutoNetworkedField, ViewVariables(VVAccess.ReadWrite), DataField] public float Friction = DefaultFriction; /// /// The negative velocity applied for friction. /// - [ViewVariables(VVAccess.ReadWrite), DataField] + [AutoNetworkedField, ViewVariables(VVAccess.ReadWrite), DataField] public float? FrictionNoInput; [ViewVariables(VVAccess.ReadWrite), DataField, AutoNetworkedField] diff --git a/Content.Shared/Movement/Systems/FrictionContactsSystem.cs b/Content.Shared/Movement/Systems/FrictionContactsSystem.cs new file mode 100644 index 00000000000..b104c549e69 --- /dev/null +++ b/Content.Shared/Movement/Systems/FrictionContactsSystem.cs @@ -0,0 +1,100 @@ +using Content.Shared.Movement.Components; +using Robust.Shared.Physics.Components; +using Robust.Shared.Physics.Events; +using Robust.Shared.Physics.Systems; + +namespace Content.Shared.Movement.Systems; + +public sealed class FrictionContactsSystem : EntitySystem +{ + [Dependency] private readonly SharedPhysicsSystem _physics = default!; + [Dependency] private readonly MovementSpeedModifierSystem _speedModifierSystem = default!; + + // Comment copied from "original" SlowContactsSystem.cs + // TODO full-game-save + // Either these need to be processed before a map is saved, or slowed/slowing entities need to update on init. + private HashSet _toUpdate = new(); + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnEntityEnter); + SubscribeLocalEvent(OnEntityExit); + SubscribeLocalEvent(OnShutdown); + + UpdatesAfter.Add(typeof(SharedPhysicsSystem)); + } + + private void OnEntityEnter(EntityUid uid, FrictionContactsComponent component, ref StartCollideEvent args) + { + var otherUid = args.OtherEntity; + + if (!HasComp(otherUid, typeof(MovementSpeedModifierComponent))) + return; + + _toUpdate.Add(otherUid); + } + + private void OnEntityExit(EntityUid uid, FrictionContactsComponent component, ref EndCollideEvent args) + { + var otherUid = args.OtherEntity; + + if (!HasComp(otherUid, typeof(MovementSpeedModifierComponent))) + return; + + _toUpdate.Add(otherUid); + } + + private void OnShutdown(EntityUid uid, FrictionContactsComponent component, ComponentShutdown args) + { + if (!TryComp(uid, out PhysicsComponent? phys)) + return; + + _toUpdate.UnionWith(_physics.GetContactingEntities(uid, phys)); + } + + public override void Update(float frameTime) + { + base.Update(frameTime); + + foreach (var uid in _toUpdate) + { + ApplyFrictionChange(uid); + } + + _toUpdate.Clear(); + } + + private void ApplyFrictionChange(EntityUid uid) + { + if (!EntityManager.TryGetComponent(uid, out var physicsComponent)) + return; + + if (!TryComp(uid, out MovementSpeedModifierComponent? speedModifier)) + return; + + FrictionContactsComponent? frictionComponent = TouchesFrictionContactsComponent(uid, physicsComponent); + + if (frictionComponent == null) + { + _speedModifierSystem.ChangeFriction(uid, MovementSpeedModifierComponent.DefaultFriction, null, MovementSpeedModifierComponent.DefaultAcceleration, speedModifier); + } + else + { + _speedModifierSystem.ChangeFriction(uid, frictionComponent.MobFriction, frictionComponent.MobFrictionNoInput, frictionComponent.MobAcceleration, speedModifier); + } + } + + private FrictionContactsComponent? TouchesFrictionContactsComponent(EntityUid uid, PhysicsComponent physicsComponent) + { + foreach (var ent in _physics.GetContactingEntities(uid, physicsComponent)) + { + if (!TryComp(ent, out FrictionContactsComponent? frictionContacts)) + continue; + + return frictionContacts; + } + + return null; + } +} diff --git a/Content.Shared/Movement/Systems/MovementSpeedModifierSystem.cs b/Content.Shared/Movement/Systems/MovementSpeedModifierSystem.cs index c95ab379c6b..7c793d5eb89 100644 --- a/Content.Shared/Movement/Systems/MovementSpeedModifierSystem.cs +++ b/Content.Shared/Movement/Systems/MovementSpeedModifierSystem.cs @@ -25,7 +25,7 @@ public void RefreshMovementSpeedModifiers(EntityUid uid, MovementSpeedModifierCo move.WalkSpeedModifier = ev.WalkSpeedModifier; move.SprintSpeedModifier = ev.SprintSpeedModifier; - Dirty(move); + Dirty(uid, move); } public void ChangeBaseSpeed(EntityUid uid, float baseWalkSpeed, float baseSprintSpeed, float acceleration, MovementSpeedModifierComponent? move = null) @@ -36,7 +36,19 @@ public void ChangeBaseSpeed(EntityUid uid, float baseWalkSpeed, float baseSprint move.BaseWalkSpeed = baseWalkSpeed; move.BaseSprintSpeed = baseSprintSpeed; move.Acceleration = acceleration; - Dirty(move); + Dirty(uid, move); + } + + // We might want to create separate RefreshMovementFrictionModifiersEvent and RefreshMovementFrictionModifiers function that will call it + public void ChangeFriction(EntityUid uid, float friction, float? frictionNoInput, float acceleration, MovementSpeedModifierComponent? move = null) + { + if (!Resolve(uid, ref move, false)) + return; + + move.Friction = friction; + move.FrictionNoInput = frictionNoInput; + move.Acceleration = acceleration; + Dirty(uid, move); } } diff --git a/Content.Shared/Ninja/Components/StunProviderComponent.cs b/Content.Shared/Ninja/Components/StunProviderComponent.cs index e8eb25a1b68..37a27074a49 100644 --- a/Content.Shared/Ninja/Components/StunProviderComponent.cs +++ b/Content.Shared/Ninja/Components/StunProviderComponent.cs @@ -1,3 +1,4 @@ +using Content.Shared.Damage; using Content.Shared.Ninja.Systems; using Content.Shared.Whitelist; using Robust.Shared.Audio; @@ -17,49 +18,55 @@ public sealed partial class StunProviderComponent : Component /// The powercell entity to take power from. /// Determines whether stunning is possible. /// - [DataField("batteryUid"), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] + [DataField, ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] public EntityUid? BatteryUid; /// /// Sound played when stunning someone. /// - [DataField("sound"), ViewVariables(VVAccess.ReadWrite)] + [DataField, ViewVariables(VVAccess.ReadWrite)] public SoundSpecifier Sound = new SoundCollectionSpecifier("sparks"); /// /// 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; + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float StunCharge = 36f; /// - /// Shock damage dealt when stunning someone + /// Damage dealt when stunning someone /// - [DataField("stunDamage"), ViewVariables(VVAccess.ReadWrite)] - public int StunDamage = 5; + [DataField, ViewVariables(VVAccess.ReadWrite)] + public DamageSpecifier StunDamage = new() + { + DamageDict = new() + { + { "Shock", 5 } + } + }; /// /// Time that someone is stunned for, stacks if done multiple times. /// - [DataField("stunTime"), ViewVariables(VVAccess.ReadWrite)] + [DataField, ViewVariables(VVAccess.ReadWrite)] public TimeSpan StunTime = TimeSpan.FromSeconds(5); /// /// How long stunning is disabled after stunning something. /// - [DataField("cooldown"), ViewVariables(VVAccess.ReadWrite)] + [DataField, ViewVariables(VVAccess.ReadWrite)] public TimeSpan Cooldown = TimeSpan.FromSeconds(2); /// /// Locale string to popup when there is no power /// - [DataField("noPowerPopup", required: true), ViewVariables(VVAccess.ReadWrite)] + [DataField(required: true), ViewVariables(VVAccess.ReadWrite)] public string NoPowerPopup = string.Empty; /// /// Whitelist for what counts as a mob. /// - [DataField("whitelist")] + [DataField] public EntityWhitelist Whitelist = new() { Components = new[] {"Stamina"} @@ -69,6 +76,6 @@ public sealed partial class StunProviderComponent : Component /// When someone can next be stunned. /// Essentially a UseDelay unique to this component. /// - [DataField("nextStun", customTypeSerializer: typeof(TimeOffsetSerializer)), ViewVariables(VVAccess.ReadWrite)] + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer)), ViewVariables(VVAccess.ReadWrite)] public TimeSpan NextStun = TimeSpan.Zero; } diff --git a/Content.Shared/NukeOps/NukeOperativeComponent.cs b/Content.Shared/NukeOps/NukeOperativeComponent.cs new file mode 100644 index 00000000000..cdbefece9d6 --- /dev/null +++ b/Content.Shared/NukeOps/NukeOperativeComponent.cs @@ -0,0 +1,27 @@ +using Robust.Shared.Audio; +using Content.Shared.StatusIcon; +using Robust.Shared.Prototypes; +using Robust.Shared.GameStates; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Shared.NukeOps; + +/// +/// This is used for tagging a mob as a nuke operative. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class NukeOperativeComponent : Component +{ + /// + /// Path to antagonist alert sound. + /// + [DataField("greetSoundNotification")] + public SoundSpecifier GreetSoundNotification = new SoundPathSpecifier("/Audio/Ambience/Antag/nukeops_start.ogg"); + + /// + /// + /// + [DataField("syndStatusIcon", customTypeSerializer: typeof(PrototypeIdSerializer))] + public string SyndStatusIcon = "SyndicateFaction"; +} diff --git a/Content.Shared/Overlays/ShowSyndicateIconsComponent.cs b/Content.Shared/Overlays/ShowSyndicateIconsComponent.cs new file mode 100644 index 00000000000..74a67db694a --- /dev/null +++ b/Content.Shared/Overlays/ShowSyndicateIconsComponent.cs @@ -0,0 +1,9 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Overlays; + +/// +/// +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class ShowSyndicateIconsComponent : Component {} diff --git a/Content.Shared/Placeable/ItemPlacerSystem.cs b/Content.Shared/Placeable/ItemPlacerSystem.cs index ec6ece671f0..f2fe58adcb8 100644 --- a/Content.Shared/Placeable/ItemPlacerSystem.cs +++ b/Content.Shared/Placeable/ItemPlacerSystem.cs @@ -26,8 +26,8 @@ private void OnStartCollide(EntityUid uid, ItemPlacerComponent comp, ref StartCo if (comp.Whitelist != null && !comp.Whitelist.IsValid(args.OtherEntity)) return; - if (TryComp(uid, out var wakeComp)) - _wake.SetEnabled(uid, false, wakeComp); + if (TryComp(args.OtherEntity, out var wakeComp)) + _wake.SetEnabled(args.OtherEntity, false, wakeComp); var count = comp.PlacedEntities.Count; if (comp.MaxEntities == 0 || count < comp.MaxEntities) @@ -47,8 +47,8 @@ private void OnStartCollide(EntityUid uid, ItemPlacerComponent comp, ref StartCo private void OnEndCollide(EntityUid uid, ItemPlacerComponent comp, ref EndCollideEvent args) { - if (TryComp(uid, out var wakeComp)) - _wake.SetEnabled(uid, true, wakeComp); + if (TryComp(args.OtherEntity, out var wakeComp)) + _wake.SetEnabled(args.OtherEntity, true, wakeComp); comp.PlacedEntities.Remove(args.OtherEntity); diff --git a/Content.Server/PowerCell/PowerCellSlotEmptyEvent.cs b/Content.Shared/PowerCell/PowerCellSlotEmptyEvent.cs similarity index 83% rename from Content.Server/PowerCell/PowerCellSlotEmptyEvent.cs rename to Content.Shared/PowerCell/PowerCellSlotEmptyEvent.cs index b2930ee50fc..e4075175aef 100644 --- a/Content.Server/PowerCell/PowerCellSlotEmptyEvent.cs +++ b/Content.Shared/PowerCell/PowerCellSlotEmptyEvent.cs @@ -1,4 +1,4 @@ -namespace Content.Server.PowerCell; +namespace Content.Shared.PowerCell; /// /// Raised directed on an entity when its active power cell has no more charge to supply. diff --git a/Content.Shared/PowerCell/SharedPowerCellSystem.cs b/Content.Shared/PowerCell/SharedPowerCellSystem.cs index 57af4403606..508bfc85f08 100644 --- a/Content.Shared/PowerCell/SharedPowerCellSystem.cs +++ b/Content.Shared/PowerCell/SharedPowerCellSystem.cs @@ -2,24 +2,26 @@ using Content.Shared.PowerCell.Components; using Content.Shared.Rejuvenate; using Robust.Shared.Containers; +using Robust.Shared.Timing; namespace Content.Shared.PowerCell; public abstract class SharedPowerCellSystem : EntitySystem { + [Dependency] protected readonly IGameTiming Timing = default!; [Dependency] private readonly ItemSlotsSystem _itemSlots = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnRejuventate); + SubscribeLocalEvent(OnRejuvenate); SubscribeLocalEvent(OnCellInserted); SubscribeLocalEvent(OnCellRemoved); SubscribeLocalEvent(OnCellInsertAttempt); } - private void OnRejuventate(EntityUid uid, PowerCellSlotComponent component, RejuvenateEvent args) + private void OnRejuvenate(EntityUid uid, PowerCellSlotComponent component, RejuvenateEvent args) { if (!_itemSlots.TryGetSlot(uid, component.CellSlotId, out var itemSlot) || !itemSlot.Item.HasValue) return; @@ -60,4 +62,35 @@ protected virtual void OnCellRemoved(EntityUid uid, PowerCellSlotComponent compo _appearance.SetData(uid, PowerCellSlotVisuals.Enabled, false); RaiseLocalEvent(uid, new PowerCellChangedEvent(true), false); } + + public void SetPowerCellDrawEnabled(EntityUid uid, bool enabled, PowerCellDrawComponent? component = null) + { + if (!Resolve(uid, ref component, false) || enabled == component.Drawing) + return; + + component.Drawing = enabled; + component.NextUpdateTime = Timing.CurTime; + } + + /// + /// Returns whether the entity has a slotted battery and charge. + /// + /// + /// + /// + /// Popup to this user with the relevant detail if specified. + public abstract bool HasActivatableCharge( + EntityUid uid, + PowerCellDrawComponent? battery = null, + PowerCellSlotComponent? cell = null, + EntityUid? user = null); + + /// + /// Whether the power cell has any power at all for the draw rate. + /// + public abstract bool HasDrawCharge( + EntityUid uid, + PowerCellDrawComponent? battery = null, + PowerCellSlotComponent? cell = null, + EntityUid? user = null); } diff --git a/Content.Shared/Roles/Jobs/JobComponent.cs b/Content.Shared/Roles/Jobs/JobComponent.cs index c9053c1c6fd..7191e8b3971 100644 --- a/Content.Shared/Roles/Jobs/JobComponent.cs +++ b/Content.Shared/Roles/Jobs/JobComponent.cs @@ -1,13 +1,14 @@ -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; namespace Content.Shared.Roles.Jobs; /// /// Added to mind entities to hold the data for the player's current job. /// -[RegisterComponent] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class JobComponent : Component { - [DataField("prototype", required: true, customTypeSerializer: typeof(PrototypeIdSerializer))] - public string? PrototypeId; + [DataField(required: true), AutoNetworkedField] + public ProtoId? Prototype; } diff --git a/Content.Shared/Roles/Jobs/SharedJobSystem.cs b/Content.Shared/Roles/Jobs/SharedJobSystem.cs index af97ea13504..0acda7425fe 100644 --- a/Content.Shared/Roles/Jobs/SharedJobSystem.cs +++ b/Content.Shared/Roles/Jobs/SharedJobSystem.cs @@ -83,7 +83,7 @@ public bool TryGetDepartment(string jobProto, [NotNullWhen(true)] out Department public bool MindHasJobWithId(EntityUid? mindId, string prototypeId) { - return CompOrNull(mindId)?.PrototypeId == prototypeId; + return CompOrNull(mindId)?.Prototype == prototypeId; } public bool MindTryGetJob( @@ -95,8 +95,8 @@ public bool MindTryGetJob( prototype = null; return TryComp(mindId, out comp) && - comp.PrototypeId != null && - _prototypes.TryIndex(comp.PrototypeId, out prototype); + comp.Prototype != null && + _prototypes.TryIndex(comp.Prototype, out prototype); } /// diff --git a/Content.Shared/Roles/SharedRoleSystem.cs b/Content.Shared/Roles/SharedRoleSystem.cs index ebd6730bbe4..9ba625305cf 100644 --- a/Content.Shared/Roles/SharedRoleSystem.cs +++ b/Content.Shared/Roles/SharedRoleSystem.cs @@ -25,7 +25,7 @@ private void OnJobGetAllRoles(EntityUid uid, JobComponent component, ref MindGet { var name = "game-ticker-unknown-role"; string? playTimeTracker = null; - if (component.PrototypeId != null && _prototypes.TryIndex(component.PrototypeId, out JobPrototype? job)) + if (component.Prototype != null && _prototypes.TryIndex(component.Prototype, out JobPrototype? job)) { name = job.Name; playTimeTracker = job.PlayTimeTracker; diff --git a/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs index 2d85f79e038..31803c394f2 100644 --- a/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs @@ -368,13 +368,9 @@ public bool AddToContents(EntityUid toAdd, EntityUid container, SharedEntityStor if (toAdd == container) return false; - if (TryComp(toAdd, out var phys)) - { - var aabb = _physics.GetWorldAABB(toAdd, body: phys); - - if (component.MaxSize < aabb.Size.X || component.MaxSize < aabb.Size.Y) - return false; - } + var aabb = _lookup.GetAABBNoContainer(toAdd, Vector2.Zero, 0); + if (component.MaxSize < aabb.Size.X || component.MaxSize < aabb.Size.Y) + return false; return Insert(toAdd, container, component); } diff --git a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs index 91405883987..63f5ba39a54 100644 --- a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs @@ -19,21 +19,23 @@ using Content.Shared.Verbs; using Robust.Shared.Containers; using Robust.Shared.Map; +using Robust.Shared.Prototypes; using Robust.Shared.Random; namespace Content.Shared.Storage.EntitySystems; public abstract class SharedStorageSystem : EntitySystem { + [Dependency] private readonly IPrototypeManager _prototype = default!; [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 SharedItemSystem _item = 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!; @@ -46,7 +48,8 @@ public abstract class SharedStorageSystem : EntitySystem private EntityQuery _stackQuery; private EntityQuery _xformQuery; - public const ItemSize DefaultStorageMaxItemSize = ItemSize.Normal; + [ValidatePrototypeId] + public const string DefaultStorageMaxItemSize = "Normal"; /// public override void Initialize() @@ -474,14 +477,15 @@ public bool CanInsert(EntityUid uid, EntityUid insertEnt, out string? reason, St if (!_stackQuery.TryGetComponent(insertEnt, out var stack) || !HasSpaceInStacks(uid, stack.StackTypeId)) { - if (item.Size > GetMaxItemSize((uid, storageComp))) + var maxSize = _item.GetSizePrototype(GetMaxItemSize((uid, storageComp))); + if (_item.GetSizePrototype(item.Size) > maxSize) { reason = "comp-storage-too-big"; return false; } if (TryComp(insertEnt, out var insertStorage) - && GetMaxItemSize((insertEnt, insertStorage)) >= GetMaxItemSize((uid, storageComp))) + && _item.GetSizePrototype(GetMaxItemSize((insertEnt, insertStorage))) >= maxSize) { reason = "comp-storage-too-big"; return false; @@ -495,7 +499,7 @@ public bool CanInsert(EntityUid uid, EntityUid insertEnt, out string? reason, St return false; } } - else if (SharedItemSystem.GetItemSizeWeight(item.Size) + GetCumulativeItemSizes(uid, storageComp) > storageComp.MaxTotalWeight) + else if (_item.GetItemSizeWeight(item.Size) + GetCumulativeItemSizes(uid, storageComp) > storageComp.MaxTotalWeight) { reason = "comp-storage-insufficient-capacity"; return false; @@ -643,7 +647,7 @@ public bool PlayerInsertHeldEntity(EntityUid uid, EntityUid player, StorageCompo /// true if inserted, false otherwise public bool PlayerInsertEntityInWorld(Entity uid, EntityUid player, EntityUid toInsert) { - if (!Resolve(uid, ref uid.Comp) || !_sharedInteractionSystem.InRangeUnobstructed(player, uid)) + if (!Resolve(uid, ref uid.Comp) || !_interactionSystem.InRangeUnobstructed(player, uid)) return false; if (!Insert(uid, toInsert, out _, user: player, uid.Comp)) @@ -706,13 +710,13 @@ public int GetCumulativeItemSizes(EntityUid uid, StorageComponent? component = n { if (!_itemQuery.TryGetComponent(item, out var itemComp)) continue; - sum += SharedItemSystem.GetItemSizeWeight(itemComp.Size); + sum += _item.GetItemSizeWeight(itemComp.Size); } return sum; } - public ItemSize GetMaxItemSize(Entity uid) + public ProtoId GetMaxItemSize(Entity uid) { if (!Resolve(uid, ref uid.Comp)) return DefaultStorageMaxItemSize; @@ -723,12 +727,14 @@ public ItemSize GetMaxItemSize(Entity uid) if (!_itemQuery.TryGetComponent(uid, out var item)) return DefaultStorageMaxItemSize; + var size = _item.GetSizePrototype(item.Size); // if there is no max item size specified, the value used // is one below the item size of the storage entity, clamped at ItemSize.Tiny - var sizes = Enum.GetValues().ToList(); - var currentSizeIndex = sizes.IndexOf(item.Size); - return sizes[Math.Max(currentSizeIndex - 1, 0)]; + var sizes = _prototype.EnumeratePrototypes().ToList(); + sizes.Sort(); + var currentSizeIndex = sizes.IndexOf(size); + return sizes[Math.Max(currentSizeIndex - 1, 0)].ID; } public FixedPoint2 GetStorageFillPercentage(Entity uid) diff --git a/Content.Shared/Storage/StorageComponent.cs b/Content.Shared/Storage/StorageComponent.cs index 2c05cb4eed6..56aa07d6498 100644 --- a/Content.Shared/Storage/StorageComponent.cs +++ b/Content.Shared/Storage/StorageComponent.cs @@ -5,6 +5,7 @@ using Robust.Shared.Containers; using Robust.Shared.GameStates; using Robust.Shared.Map; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization; namespace Content.Shared.Storage @@ -34,7 +35,7 @@ public sealed partial class StorageComponent : Component /// [DataField, ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] [Access(typeof(SharedStorageSystem))] - public ItemSize? MaxItemSize; + public ProtoId? MaxItemSize; /// /// The max number of entities that can be inserted into this storage. diff --git a/Content.Shared/Verbs/SharedVerbSystem.cs b/Content.Shared/Verbs/SharedVerbSystem.cs index 40cb2d50022..e6286c47cc3 100644 --- a/Content.Shared/Verbs/SharedVerbSystem.cs +++ b/Content.Shared/Verbs/SharedVerbSystem.cs @@ -24,16 +24,17 @@ private void HandleExecuteVerb(ExecuteVerbEvent args, EntitySessionEventArgs eve if (user == null) return; - var target = GetEntity(args.Target); + if (!TryGetEntity(args.Target, out var target)) + return; // 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(target) || Deleted(user)) + if (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(target, user.Value, args.RequestedVerb.GetType()); + var verbs = GetLocalVerbs(target.Value, 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. @@ -41,7 +42,7 @@ private void HandleExecuteVerb(ExecuteVerbEvent args, EntitySessionEventArgs eve // Find the requested verb. if (verbs.TryGetValue(args.RequestedVerb, out var verb)) - ExecuteVerb(verb, user.Value, target); + ExecuteVerb(verb, user.Value, target.Value); } /// diff --git a/Resources/Audio/Animals/attributions.yml b/Resources/Audio/Animals/attributions.yml new file mode 100644 index 00000000000..b6b5f8552b7 --- /dev/null +++ b/Resources/Audio/Animals/attributions.yml @@ -0,0 +1,114 @@ +- files: ["monkey_scream.ogg"] + license: "CC-BY-NC-SA-3.0" + copyright: "Taken from goonstation" + source: "https://github.com/goonstation/goonstation/blob/4059e4be90832b02b1228b1bee3db342094e4f1e/sound/voice/screams/monkey_scream.ogg" + +- files: ["cat_meow.ogg"] + license: "CC-BY-3.0" + copyright: "Modified from 'Meow 4.wav' by freesound user 'TRNGLE. The original audio was trimmed, split to mono, and converted from WAV to OGG format" + source: "https://freesound.org/people/TRNGLE/sounds/368006/" + +- files: ["cat_hiss.ogg"] + license: "CC0-1.0" + copyright: "Modified from 'Meow 4.wav' by freesound user 'TRNGLE'. The original audio was trimmed, split to mono, and converted from WAV to OGG format" + source: "https://freesound.org/people/Zabuhailo/sounds/146963/" + +- files: ["small_dog_bark_happy.ogg"] + license: "CC0-1.0" + copyright: "Modified from 'catHisses1.wav' by freesound user 'Zabuhailo. ' The original audio was trimmed and converted from WAV to OGG format" + source: "https://freesound.org/people/MisterTood/sounds/9032/" + +- files: ["duck_quack_happy.ogg"] + license: "CC0-1.0" + copyright: "Modified from 'Duck Quack - Sound Effect (HD).mp3' by freesound user 'Tabby+Gus.' The original audio was trimmed, looped, split to mono, and converted from MP3 to OGG format" + source: "https://freesound.org/people/Tabby+Gus./sounds/515408/" + +- files: ["chicken_cluck_happy.ogg"] + license: "CC0-1.0" + copyright: "Modified from 'Chicken Single Alarm Call' by freesound user 'Rudmer_Rotteveel'. The original audio was trimmed and converted from WAV to OGG format" + source: "https://freesound.org/people/Rudmer_Rotteveel/sounds/316920/" + +- files: ["ferret_happy.ogg"] + license: "CC-BY-3.0" + copyright: "Modified from 'Ferret' by freesound user 'J.Zazvurek'. The original audio was trimmed and converted from WAV to OGG format" + source: "https://freesound.org/people/J.Zazvurek/sounds/155115/" + +- files: ["mouse_squeak.ogg"] + license: "CC0-1.0" + copyright: "Modified from 'Cartoon - Bat / Mouse Squeak' by freesound user 'Breviceps'. The original audio was converted from WAV to OGG format" + source: "https://freesound.org/people/Breviceps/sounds/445958/" + +- files: ["sloth_squeak.ogg"] + license: "CC0-1.0" + copyright: "Modified from 'squeakfinal.wav' by freesound user 'Higgs01'. The original audio was converted from WAV to OFF format AND converted from stereo to mono" + source: "https://freesound.org/people/Higgs01/sounds/428114/" + +- files: ["parrot_raught.ogg"] + license: "CC-BY-3.0" + copyright: "Modified and used from 'Parrot 1 raught 2.wav' by freesound user 'Coral_Island_Studios'. The original audio was converted from WAV to OGG format" + source: "https://freesound.org/people/Coral_Island_Studios/sounds/432588/" + +- files: ["fox_squeak.ogg"] + license: "CC0-1.0" + copyright: "Modified from 'Video Game Squeak' by freesound user 'Breviceps'. The original audio was converted from WAV to OGG format" + source: "https://freesound.org/people/Breviceps/sounds/468442/" + +- files: ["frog_ribbit.ogg"] + license: "CC0-1.0" + copyright: "Modified from 'Video Game Squeak' by freesound user 'Breviceps'. The original audio was converted from WAV to OGG format" + source: "https://freesound.org/people/egomassive/sounds/536759/" + +- files: ["goose_honk.ogg"] + license: "CC0-1.0" + copyright: "Modified from ' Bird Honk - 1' by freesound user 'SpaceJoe'. The originial audio was converted from WAV to OGG format" + source: "https://freesound.org/people/SpaceJoe/sounds/510940/" + +- files: ["snake_his.ogg"] + license: "CC-BY-4.0" + copyright: "Modified from 'hissing snake sound effect' by freesound user 'Garuda1982'. The original audio was convertred from WAV to OGG format" + source: "https://freesound.org/people/Garuda1982/sounds/541656/" + +- files: ["pig_oink.ogg"] + license: "CC0-1.0" + copyright: "Modified from 'Pig Oink.wav' by freesound user 'qubodup'. The original audio was converted from WAV to OGG format" + source: "https://freesound.org/people/qubodup/sounds/442906/" + +- files: ["cerberus.ogg"] + license: "CC0-1.0" + copyright: "Modified from 'DogBARKING.wav' by freesound user 'ahill86'. The original audio was converted from WAV to OGG format, echoed, amplified and pitched down" + source: "https://freesound.org/people/ahill86/sounds/207124/" + +- files: ["space_dragon_roar.ogg"] + license: "CC-BY-3.0" + copyright: "Taken from tgstation" + source: "https://github.com/tgstation/tgstation/commit/d4f678a1772007ff8d7eddd21cf7218c8e07bfc0" + +- files: ["penguin_squawk.ogg"] + license: "CC-BY-3.0" + copyright: "Audio is recorded/created by youtube user 'ProSounds. The original audio was trimmed and converted from MP3 to OGG format" + source: "https://youtu.be/Anr35RbBL3Y" + +- files: ["raccoon_squeak.ogg"] + license: "CC-BY-3.0" + copyright: "Audio is recorded by youtube user 'jnargus'" + source: "https://youtu.be/BGjFP1CP7E0" + +- files: ["goat_bah.ogg"] + license: "CC-BY-3.0" + copyright: "Audio is created by youtube user 'Winry Marini'" + source: "https://youtu.be/QIhwzsk5bww" + +- files: ["lizard_happy.ogg"] + license: "CC-BY-3.0" + copyright: "Audio created by youtube user 'Nagaty Studio'" + source: "https://youtu.be/I7CX0AS8RNI" + +- files: ["bear.ogg"] + license: "CC-BY-3.0" + copyright: "Audio is recorded by 'Nagaty Studio'. The original audio was reverbed" + source: "https://www.youtube.com/watch?v=pz6eZbESlU8" + +- files: ["kangaroo_grunt.ogg"] + license: "CC-BY-4.0" + copyright: "Audio is recorded/created by Pfranzen 'FreeSound.org'. The original audio was trimmed and renamed" + source: "https://freesound.org/people/pfranzen/sounds/322744/" \ No newline at end of file diff --git a/Resources/Audio/Animals/license.txt b/Resources/Audio/Animals/license.txt deleted file mode 100644 index ea1ba5fbda4..00000000000 --- a/Resources/Audio/Animals/license.txt +++ /dev/null @@ -1,53 +0,0 @@ -monkey_scream.ogg from -https://github.com/goonstation/goonstation/blob/4059e4be90832b02b1228b1bee3db342094e4f1e/sound/voice/screams/monkey_scream.ogg -licensed under CC BY-NC-SA 3.0 - -The following sounds were used from freesound: - - cat_meow.ogg: modified from "Meow 4.wav" by freesound user "TRNGLE" (https://freesound.org/people/TRNGLE/sounds/368006/) licensed under CCBY 3.0. The original audio was trimmed, split to mono, and converted from WAV to OGG format. - - cat_hiss.ogg: modified from "catHisses1.wav" by freesound user "Zabuhailo" (https://freesound.org/people/Zabuhailo/sounds/146963/) licensed under CC0 1.0 (public domain). The original audio was trimmed and converted from WAV to OGG format. - - small_dog_bark_happy.ogg: modified from "Dog bark2.wav" by freesound user "MisterTood" (https://freesound.org/people/MisterTood/sounds/9032/) licensed under CC0 1.0 (public domain). The original audio was trimmed and converted from WAV to OGG format. - - duck_quack_happy.ogg: modified from "Duck Quack - Sound Effect (HD).mp3" by freesound user "Tabby+Gus." (https://freesound.org/people/Tabby+Gus./sounds/515408/) licensed under CC0 1.0 (public domain). The original audio was trimmed, looped, split to mono, and converted from MP3 to OGG format. - - chicken_cluck_happy.ogg: modified from "Chicken Single Alarm Call" by freesound user "Rudmer_Rotteveel" (https://freesound.org/people/Rudmer_Rotteveel/sounds/316920/) licensed under CC0 1.0 (public domain). The original audio was trimmed and converted from WAV to OGG format. - - ferret_happy.ogg: modified from "Ferret" by freesound user "J.Zazvurek" (https://freesound.org/people/J.Zazvurek/sounds/155115/) licensed under CC BY 3.0. The original audio was trimmed and converted from WAV to OGG format. - - mouse_squeak.ogg: modified from "Cartoon - Bat / Mouse Squeak" by freesound user "Breviceps" (https://freesound.org/people/Breviceps/sounds/445958/) licensed under CC0 1.0 (public domain). The original audio was converted from WAV to OGG format. - - sloth_squeak.ogg: modified from "squeakfinal.wav" by freesound user "Higgs01" (https://freesound.org/people/Higgs01/sounds/428114/) licensed under CC0 1.0 (Public domain dedication). The original audio was converted from WAV to OFF format AND converted from stereo to mono. - - parrot_raught.ogg: modified and used from "Parrot 1 raught 2.wav" by freesound user "Coral_Island_Studios" (https://freesound.org/people/Coral_Island_Studios/sounds/432588/) licensed under CC BY 3.0. The original audio was converted from WAV to OGG format. - - fox_squeak.ogg: modified from "Video Game Squeak" by freesound user "Breviceps" (https://freesound.org/people/Breviceps/sounds/468442/) licensed under CC0 1.0. The original audio was converted from WAV to OGG format - - frog_ribbit.ogg: original audio created by freesound user "egomassive" (https://freesound.org/people/egomassive/sounds/536759/). licensed under licensed under CC0 1.0 - - goose_honk.ogg: modified from " Bird Honk - 1" by freesound user "SpaceJoe" (https://freesound.org/people/SpaceJoe/sounds/510940/) licensed under CC0 1.0. The originial audio was converted from WAV to OGG format. - - snake_hiss.ogg: modified from "hissing snake sound effect" by freesound user "Garuda1982" (https://freesound.org/people/Garuda1982/sounds/541656/) licensed under CC BY 4.0. The original audio was convertred from WAV to OGG format. - - pig_oink.ogg: modified from "Pig Oink.wav" by freesound user "qubodup" (https://freesound.org/people/qubodup/sounds/442906/) licensed under CC0 1.0 (public domain). The original audio was converted from WAV to OGG format. - - cerberus.ogg: modified from "DogBARKING.wav" by freesound user "ahill86" (https://freesound.org/people/ahill86/sounds/207124/) licensed under CCO 1.0 (Public domain dedication). The original audio was converted from WAV to OGG format, echoed, amplified and pitched down. - -The following sounds are taken from TGstation github (licensed under CC by 3.0): - - space_dragon_roar.ogg: taken at https://github.com/tgstation/tgstation/commit/d4f678a1772007ff8d7eddd21cf7218c8e07bfc0 - -The following sounds were used from youtube: - - penguin_squawk.ogg: audio is recorded/created by youtube user "ProSounds" (https://youtu.be/Anr35RbBL3Y) licensed under CC BY 3.0. The original audio was trimmed and converted from MP3 to OGG format. - - raccoon_squeak.ogg: audio is recorded by youtube user "jnargus" (https://youtu.be/BGjFP1CP7E0) licensed under CC by 3.0 - - goat_bah.ogg: audio is created by youtube user "Winry Marini" (https://youtu.be/QIhwzsk5bww) licensed under CC BY 3.0 - - lizard_happy.ogg: audio created by youtube user "Nagaty Studio" (https://youtu.be/I7CX0AS8RNI) licensed under CC by 3.0. - - bear.ogg: audio is recorded by "Nagaty Studio" (https://www.youtube.com/watch?v=pz6eZbESlU8) licensed under CC by 3.0. The original audio was reverbed. - - kangaroo_grunt.ogg: audio is recorded/created by Pfranzen "FreeSound.org" (https://freesound.org/people/pfranzen/sounds/322744/) licensed under CC BY 4.0. The original audio was trimmed and renamed. diff --git a/Resources/Audio/Effects/Footsteps/attributions.yml b/Resources/Audio/Effects/Footsteps/attributions.yml index a6dea3f6ed0..17186208644 100644 --- a/Resources/Audio/Effects/Footsteps/attributions.yml +++ b/Resources/Audio/Effects/Footsteps/attributions.yml @@ -32,3 +32,13 @@ license: "CC-BY-SA-3.0" copyright: "Taken and modified from tgstation (clownstep 1 and 2) by brainfood1183 (github)" source: "https://github.com/tgstation/tgstation/tree/f8ee37afc00bce1ad421615eaa0e4cbddd5eea90/sound/effects" + +- files: + - bells1.ogg + - bells2.ogg + - bells3.ogg + - bells4.ogg + - bells5.ogg + license: "CC-BY-SA-4.0" + copyright: "Taken and modified from el1n freesound.org" + source: "https://freesound.org/people/el1n/sounds/442746/" diff --git a/Resources/Audio/Effects/Footsteps/bells1.ogg b/Resources/Audio/Effects/Footsteps/bells1.ogg new file mode 100644 index 00000000000..21638a00b0e Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/bells1.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/bells2.ogg b/Resources/Audio/Effects/Footsteps/bells2.ogg new file mode 100644 index 00000000000..0cbeaa7ab7c Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/bells2.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/bells3.ogg b/Resources/Audio/Effects/Footsteps/bells3.ogg new file mode 100644 index 00000000000..c2ed129bfa8 Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/bells3.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/bells4.ogg b/Resources/Audio/Effects/Footsteps/bells4.ogg new file mode 100644 index 00000000000..bb57c33f793 Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/bells4.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/bells5.ogg b/Resources/Audio/Effects/Footsteps/bells5.ogg new file mode 100644 index 00000000000..b13dba1e430 Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/bells5.ogg differ diff --git a/Resources/Audio/Items/Handcuffs/attributions.yml b/Resources/Audio/Items/Handcuffs/attributions.yml new file mode 100644 index 00000000000..7ba93e57cd3 --- /dev/null +++ b/Resources/Audio/Items/Handcuffs/attributions.yml @@ -0,0 +1,4 @@ +- files: ["ziptie_end.ogg"] + license: "CC-BY-3.0" + copyright: "Taken from cable tie.wav by THE_bizniss on Freesound.org" + source: "https://freesound.org/people/THE_bizniss/sounds/39318/" \ No newline at end of file diff --git a/Resources/Audio/Items/Handcuffs/license.txt b/Resources/Audio/Items/Handcuffs/license.txt deleted file mode 100644 index 92b44380271..00000000000 --- a/Resources/Audio/Items/Handcuffs/license.txt +++ /dev/null @@ -1 +0,0 @@ -ziptie_end.ogg taken from "cable tie.wav" by THE_bizniss of Freesound.org at https://freesound.org/people/THE_bizniss/sounds/39318/ under CC BY 3.0. \ No newline at end of file diff --git a/Resources/Audio/Items/Medical/attributions.yml b/Resources/Audio/Items/Medical/attributions.yml new file mode 100644 index 00000000000..a6b352ef221 --- /dev/null +++ b/Resources/Audio/Items/Medical/attributions.yml @@ -0,0 +1,4 @@ +- files: ["healthscanner.ogg"] + license: "CC-BY-4.0" + copyright: "Taken from FM Synthesis on freesound.org" + source: "https://freesound.org/people/FreqMan/sounds/32683/" \ No newline at end of file diff --git a/Resources/Audio/Items/Medical/license.txt b/Resources/Audio/Items/Medical/license.txt deleted file mode 100644 index e9385756eb0..00000000000 --- a/Resources/Audio/Items/Medical/license.txt +++ /dev/null @@ -1,11 +0,0 @@ -The following sounds were used from freesound: - -herbertboland - heavyskirtmovement.wav - CC BY 3.0 -vinrax - cloth-sounds.mp3 - CC BY-NC 3.0 -lordvanye - skintouching.wav - CC0 1.0 -FM Synthesis - healthscanner.ogg - CC BY 4.0 - -Additional sound effects from https://www.zapsplat.com - -foley-cloth-denim-rip-003.mp3 - -zapsplat_food_bottle_golden_syrup_cap_open_then_close.mp3 diff --git a/Resources/Audio/Items/Toys/licensing.txt b/Resources/Audio/Items/Toys/licensing.txt index 8b68bfa553e..8e0965a91ac 100644 --- a/Resources/Audio/Items/Toys/licensing.txt +++ b/Resources/Audio/Items/Toys/licensing.txt @@ -2,3 +2,4 @@ "skub" is licensed under CC0. "sitcom_laugh" taken from Kinoton at https://freesound.org/people/Kinoton/sounds/371562/ under CC0 1.0, clipped by github Henri215, turned into mono by github lapatison "sitcom_laugh2" taken from mrrap4food at https://freesound.org/people/mrrap4food/sounds/618972/ under CC0 1.0, clipped by Henri215 +"skates" taken from PeteBarry at https://freesound.org/people/PeteBarry/sounds/464857/ under CC BY 4.0, shortened by Brainfood1183 (github). diff --git a/Resources/Audio/Items/Toys/skates.ogg b/Resources/Audio/Items/Toys/skates.ogg new file mode 100644 index 00000000000..9ae127404a7 Binary files /dev/null and b/Resources/Audio/Items/Toys/skates.ogg differ diff --git a/Resources/Audio/Items/attributions.yml b/Resources/Audio/Items/attributions.yml index cb945bd5cae..7822272424b 100644 --- a/Resources/Audio/Items/attributions.yml +++ b/Resources/Audio/Items/attributions.yml @@ -71,4 +71,14 @@ - files: ["candle_blowing.ogg"] license: "CC-BY-NC-3.0" copyright: "Created by Bee09, converted to OGG, cropped and converted to mono by TheShuEd" - source: "https://freesound.org/people/Bee09/sounds/326561/" \ No newline at end of file + source: "https://freesound.org/people/Bee09/sounds/326561/" + +- files: ["pill.ogg"] + license: "CC-BY-NC-3.0" + copyright: "Combined from '437480__ruanza__swallowing.wav' by user RuanZA and part from '330657__diniunicorn__popping-pills.wav' by user diniunicorn. Sources are https://freesound.org/people/RuanZA/sounds/437480/ and https://freesound.org/people/diniunicorn/sounds/330657/ respectively" + source: "https://freesound.org/" + +- files: ["ring.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from /tg/station" + source: "https://github.com/tgstation/tgstation/commit/c61c452d78425d89920b41ed5f95fd190e733a3c" \ No newline at end of file diff --git a/Resources/Audio/Items/license.txt b/Resources/Audio/Items/license.txt deleted file mode 100644 index d23148322ca..00000000000 --- a/Resources/Audio/Items/license.txt +++ /dev/null @@ -1,2 +0,0 @@ -pill.ogg contains audio from '437480__ruanza__swallowing.wav' by user RuanZA, used under CC BY-NC 3.0 (https://freesound.org/people/RuanZA/sounds/437480/), as well as part of '330657__diniunicorn__popping-pills.wav' by user diniunicorn, used under CC0 1.0 (https://freesound.org/people/diniunicorn/sounds/330657/). ring.ogg used under CC-BY-SA-3.0, taken from /tg/station commit https://github.com/tgstation/tgstation/commit/c61c452d78425d89920b41ed5f95fd190e733a3c. - diff --git a/Resources/Audio/Machines/anomaly_sync_connect.ogg b/Resources/Audio/Machines/anomaly_sync_connect.ogg new file mode 100644 index 00000000000..c718eaf4597 Binary files /dev/null and b/Resources/Audio/Machines/anomaly_sync_connect.ogg differ diff --git a/Resources/Audio/Machines/attributions.yml b/Resources/Audio/Machines/attributions.yml index bbf4ea9ac09..3fa3aa06d7a 100644 --- a/Resources/Audio/Machines/attributions.yml +++ b/Resources/Audio/Machines/attributions.yml @@ -46,4 +46,9 @@ - files: ["warning_buzzer.ogg"] license: "CC-BY-SA-3.0" copyright: "Taken from TG station." - source: "https://github.com/tgstation/tgstation/blob/d4f678a1772007ff8d7eddd21cf7218c8e07bfc0/sound/machines/warning-buzzer.ogg" \ No newline at end of file + source: "https://github.com/tgstation/tgstation/blob/d4f678a1772007ff8d7eddd21cf7218c8e07bfc0/sound/machines/warning-buzzer.ogg" + +- files: ["anomaly_sync_connect.ogg"] + license: "CC0-1.0" + copyright: Created by newagesoup, convert to ogg mono by TheShuEd" + source: "https://freesound.org/people/newagesoup/sounds/341172/" \ No newline at end of file diff --git a/Resources/Audio/Misc/attributions.yml b/Resources/Audio/Misc/attributions.yml index fc70e1a9ca2..591c27553c0 100644 --- a/Resources/Audio/Misc/attributions.yml +++ b/Resources/Audio/Misc/attributions.yml @@ -7,3 +7,23 @@ license: "CC-BY-SA-3.0" copyright: "Taken from TG station." source: "https://github.com/tgstation/tgstation/blob/b02b93ce2ab891164511a973493cdf951b4120f7/sound/effects/ninja_greeting.ogg" + +- files: ["epsilon.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Made by dj-34 (https://github.com/dj-34)" + source: "https://github.com/ss220-space/Paradise/blob/05043bcfb35c2e7bcf1efbdbfbf976e1a2504bc2/sound/effects/epsilon.ogg" + +- files: ["siren.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from Parsdise SS13" + source: "https://github.com/ParadiseSS13/Paradise/blob/master/sound/effects/new_siren.ogg" + +- files: ["redalert.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from Citadel Station 13" + source: "https://github.com/Skyrat-SS13/Skyrat13/commit/2d4f2d1b489590b559e4073f41b126cef56f4c50" + +- files: ["bluealert.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from Citadel Station 13" + source: "https://github.com/Skyrat-SS13/Skyrat13/commit/2d4f2d1b489590b559e4073f41b126cef56f4c50" \ No newline at end of file diff --git a/Resources/Audio/Misc/license.txt b/Resources/Audio/Misc/license.txt deleted file mode 100644 index a4f5ac49e36..00000000000 --- a/Resources/Audio/Misc/license.txt +++ /dev/null @@ -1,7 +0,0 @@ -epsilon.ogg made by dj-34 (https://github.com/dj-34) taken from https://github.com/ss220-space/Paradise/blob/05043bcfb35c2e7bcf1efbdbfbf976e1a2504bc2/sound/effects/epsilon.ogg - -siren.ogg taken from https://github.com/ParadiseSS13/Paradise/blob/master/sound/effects/new_siren.ogg - -redalert.ogg was taken from: https://github.com/Skyrat-SS13/Skyrat13/commit/2d4f2d1b489590b559e4073f41b126cef56f4c50 - -bluealert.ogg was taken from: https://github.com/Skyrat-SS13/Skyrat13/commit/2d4f2d1b489590b559e4073f41b126cef56f4c50 \ No newline at end of file diff --git a/Resources/Audio/Weapons/Guns/Gunshots/attributions.yml b/Resources/Audio/Weapons/Guns/Gunshots/attributions.yml index 4864ba4f82d..e3107ed96b6 100644 --- a/Resources/Audio/Weapons/Guns/Gunshots/attributions.yml +++ b/Resources/Audio/Weapons/Guns/Gunshots/attributions.yml @@ -12,3 +12,18 @@ license: "CC0-1.0" copyright: "Grappling hook by 16bitstudios. Converted to .OGG and MONO by metalgearsloth" source: "https://freesound.org/people/16bitstudios/sounds/541975/" + +- files: ["atreides.ogg", "c-20r.ogg", "flaregun.ogg", "mateba.ogg", "minigun.ogg", "mk58.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from CM-SS13" + source: "https://gitlab.com/cmdevs/colonial-warfare/-/tree/32cb5892413243cc74bb2d11df8e3085f8ef1164/sound/weapons" + +- files: ["rocket-launcher.ogg", "taser2.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from tgstation" + source: "https://github.com/tgstation/tgstation/tree/88d7dbfc105fbf40284d7b7c4587f8d23c0ac3ac" + +- files: ["shotgun.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from tgstation" + source: "https://github.com/tgstation/tgstation/blob/5736656139713c802033b9457a2a9d058211bd85/sound/weapons/gun/shotgun/shot.ogg" diff --git a/Resources/Audio/Weapons/Guns/Gunshots/license.txt b/Resources/Audio/Weapons/Guns/Gunshots/license.txt deleted file mode 100644 index 85dd892faba..00000000000 --- a/Resources/Audio/Weapons/Guns/Gunshots/license.txt +++ /dev/null @@ -1,8 +0,0 @@ -atreides.ogg, c-20r.ogg, flaregun.ogg, mateba.ogg, minigun.ogg, mk58.ogg were taken from https://gitlab.com/cmdevs/colonial-warfare/-/tree/32cb5892413243cc74bb2d11df8e3085f8ef1164/sound/weapons -They are licensed under CC-BY-SA 3.0 - -rocket_launcher.ogg and taser2.ogg and kinetic_accel.ogg were taken from https://github.com/tgstation/tgstation/tree/88d7dbfc105fbf40284d7b7c4587f8d23c0ac3ac -It is licensed under CC-BY-SA 3.0 - -shotgun.ogg were taken from https://github.com/tgstation/tgstation/blob/5736656139713c802033b9457a2a9d058211bd85/sound/weapons/gun/shotgun/shot.ogg -It is licensed under CC-BY-SA 3.0 diff --git a/Resources/Audio/Weapons/Guns/Hits/attributions.yml b/Resources/Audio/Weapons/Guns/Hits/attributions.yml new file mode 100644 index 00000000000..297fc9dcf22 --- /dev/null +++ b/Resources/Audio/Weapons/Guns/Hits/attributions.yml @@ -0,0 +1,9 @@ +- files: ["bullet_meat1.ogg", "bullet_meat2.ogg", "bullet_meat3.ogg", "bullet_meat4.ogg", "energy_meat1.ogg", "energy_meat2.ogg", "energy_metal1.ogg", "energy_metal2.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from Citadel Station 13. Remixed to mono where it was stereo by metalgearsloth" + source: "https://github.com/Citadel-Station-13/Citadel-Station-13-RP/tree/cc701aedb633d83eae8339a8b3712ad8ad99cca0/sound" + +- files: ["ric1.ogg", "ric2.ogg", "ric3.ogg", "ric3.ogg", "ric5.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from tgstation" + source: "https://github.com/tgstation/tgstation/tree/7501504b0ea029d2cf1c0336d09db5c0959aa412/sound/weapons/effects" \ No newline at end of file diff --git a/Resources/Audio/Weapons/Guns/Hits/licenses.txt b/Resources/Audio/Weapons/Guns/Hits/licenses.txt deleted file mode 100644 index a7a335fb4a4..00000000000 --- a/Resources/Audio/Weapons/Guns/Hits/licenses.txt +++ /dev/null @@ -1,16 +0,0 @@ -Taken from https://github.com/Citadel-Station-13/Citadel-Station-13-RP/tree/cc701aedb633d83eae8339a8b3712ad8ad99cca0/sound licensed under CC BY-SA 3.0. Remixed to mono where it was stereo by metalgearsloth: -- bullet_meat1.ogg -- bullet_meat2.ogg -- bullet_meat3.ogg -- bullet_meat4.ogg -- energy_meat1.ogg -- energy_meat2.ogg -- energy_metal1.ogg -- energy_metal2.ogg - -Taken from https://github.com/tgstation/tgstation/tree/7501504b0ea029d2cf1c0336d09db5c0959aa412/sound/weapons/effects CC BY-SA 3.0. -- ric1.ogg -- ric2.ogg -- ric3.ogg -- ric4.ogg -- ric5.ogg \ No newline at end of file diff --git a/Resources/Audio/Weapons/Guns/Misc/attributions.yml b/Resources/Audio/Weapons/Guns/Misc/attributions.yml index 066c26206e5..dab5384b8d8 100644 --- a/Resources/Audio/Weapons/Guns/Misc/attributions.yml +++ b/Resources/Audio/Weapons/Guns/Misc/attributions.yml @@ -1,4 +1,9 @@ - files: ["arrow_nock.ogg"] license: "CC-BY-NC-4.0" copyright: "Created by LiamG_SFX, converted to ogg by mirrorcult" - source: "https://freesound.org/people/LiamG_SFX/sounds/322224/" \ No newline at end of file + source: "https://freesound.org/people/LiamG_SFX/sounds/322224/" + +- files: ["selector.ogg"] + license: "CC-BY-NC-SA-3.0" + copyright: "Taken from tgstation" + source: "https://github.com/tgstation/TerraGov-Marine-Corps/blob/0d97ec86c49e2a89409bd3ddf0b7451b3f1c9a0e/sound/weapons/guns/interact/selector.ogg" \ No newline at end of file diff --git a/Resources/Audio/Weapons/Guns/Misc/licenses.txt b/Resources/Audio/Weapons/Guns/Misc/licenses.txt deleted file mode 100644 index 3eecf46587d..00000000000 --- a/Resources/Audio/Weapons/Guns/Misc/licenses.txt +++ /dev/null @@ -1,2 +0,0 @@ -Taken from https://github.com/tgstation/TerraGov-Marine-Corps/blob/0d97ec86c49e2a89409bd3ddf0b7451b3f1c9a0e/sound/weapons/guns/interact/selector.ogg under CC-BY-NC-SA 3.0 -- selector.ogg \ No newline at end of file diff --git a/Resources/Audio/Weapons/Guns/Miss/attributions.yml b/Resources/Audio/Weapons/Guns/Miss/attributions.yml new file mode 100644 index 00000000000..7fd804b9d03 --- /dev/null +++ b/Resources/Audio/Weapons/Guns/Miss/attributions.yml @@ -0,0 +1,9 @@ +- files: ["bullet_miss1.ogg", "bullet_miss2.ogg", "bullet_miss3.ogg", "bullet_miss4.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from CM-SS13" + source: "https://github.com/cmss13-devs/cmss13/tree/0535055a7abcd3016123f2be2cd3db428c122dac/sound/bullets" + +- files: ["energy_miss1.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from CM-SS13" + source: "https://github.com/cmss13-devs/cmss13/tree/0535055a7abcd3016123f2be2cd3db428c122dac/sound/bullets" \ No newline at end of file diff --git a/Resources/Audio/Weapons/Guns/Miss/licenses.txt b/Resources/Audio/Weapons/Guns/Miss/licenses.txt deleted file mode 100644 index 1f6cdc17351..00000000000 --- a/Resources/Audio/Weapons/Guns/Miss/licenses.txt +++ /dev/null @@ -1,2 +0,0 @@ -bullet_miss oggs taken from https://github.com/cmss13-devs/cmss13/tree/0535055a7abcd3016123f2be2cd3db428c122dac/sound/bullets under CC BY-SA 3.0 -energy_miss ogg taken from https://github.com/cmss13-devs/cmss13/tree/0535055a7abcd3016123f2be2cd3db428c122dac/sound/bullets under CC BY-SA 3.0 \ No newline at end of file diff --git a/Resources/Audio/Weapons/Xeno/attributions.yml b/Resources/Audio/Weapons/Xeno/attributions.yml new file mode 100644 index 00000000000..a027105870f --- /dev/null +++ b/Resources/Audio/Weapons/Xeno/attributions.yml @@ -0,0 +1,9 @@ +- files: ["alien_claw_flesh1.ogg", "alien_claw_flesh2.ogg", "alien_claw_flesh3.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from CM-SS13" + source: "https://gitlab.com/cmdevs/colonial-warfare/-/tree/dev/sound/weapons" + +- files: ["alien_spitacid.ogg"] + license: "CC-BY-NC-SA-3.0" + copyright: "Taken from tgstation" + source: "https://github.com/tgstation/TerraGov-Marine-Corps/blob/233891d0e19a002d8307299bfe15206591172784/sound/voice/alien_spitacid.ogg" diff --git a/Resources/Audio/Weapons/Xeno/license.txt b/Resources/Audio/Weapons/Xeno/license.txt deleted file mode 100644 index bb082c7c07f..00000000000 --- a/Resources/Audio/Weapons/Xeno/license.txt +++ /dev/null @@ -1,2 +0,0 @@ -alien_claw_flesh1, alien_claw_flesh2, alien_claw_flesh3 were taken from: https://gitlab.com/cmdevs/colonial-warfare/-/tree/dev/sound/weapons -alien_spitacid was taken from: https://github.com/tgstation/TerraGov-Marine-Corps/blob/233891d0e19a002d8307299bfe15206591172784/sound/voice/alien_spitacid.ogg \ No newline at end of file diff --git a/Resources/Audio/Weapons/attributions.yml b/Resources/Audio/Weapons/attributions.yml index a1e728b5d58..02b1c13d530 100644 --- a/Resources/Audio/Weapons/attributions.yml +++ b/Resources/Audio/Weapons/attributions.yml @@ -32,3 +32,48 @@ license: "CC-BY-SA-3.0" copyright: "User Nimfar11 on GitHub." source: "https://github.com/Nimfar11" + +- files: ["dodgeball.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from tgstation" + source: "https://github.com/tgstation/tgstation/blob/5d264fbea0124e5af511af3fed24203e196d108b/sound/items/dodgeball.ogg" + +- files: ["grille_hit.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from tgstation" + source: "https://github.com/tgstation/tgstation/blob/803ca4537df35cf252b056d8460d510be8a4f353/sound/effects/grillehit.ogg" + +- files: ["slash.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from tgstation" + source: "https://github.com/tgstation/tgstation/blob/5d264fbea0124e5af511af3fed24203e196d108b/sound/weapons/slash.ogg" + +- files: ["tap.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from tgstation" + source: "https://github.com/tgstation/tgstation/blob/803ca4537df35cf252b056d8460d510be8a4f353/sound/weapons/tap.ogg" + +- files: ["boxingpunch1.ogg", "boxingpunch2.ogg", "boxingpunch3.ogg"] + license: "CC-BY-3.0" + copyright: "Taken from Ryan Conway on freesound.org" + source: "https://freesound.org/people/ryanconway/sounds/260739/" + +- files: ["boxingbell.ogg"] + license: "CC0-1.0" + copyright: "Taken from Herkules92 on freesound.org" + source: "https://freesound.org/people/Herkules92/sounds/520998/" + +- files: ["block_metal1.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from Citadel Station 13" + source: "https://github.com/Citadel-Station-13/Citadel-Station-13/commit/31c5996a5db8cce0cb431cb1dc20d99cac83f268" + +- files: ["pierce.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from tgstation" + source: "https://github.com/tgstation/tgstation/commit/106cd26fc00851a51dd362f3131120318d848a53" + +- files: ["rubberhammer.ogg"] + license: "CC0-1.0" + copyright: "Taken from ScreamStudio on freesound.org" + source: "https://freesound.org/people/ScreamStudio/sounds/392617/" diff --git a/Resources/Audio/Weapons/licenses.txt b/Resources/Audio/Weapons/licenses.txt deleted file mode 100644 index 2485a855656..00000000000 --- a/Resources/Audio/Weapons/licenses.txt +++ /dev/null @@ -1,25 +0,0 @@ -dodgeball.ogg taken from https://github.com/tgstation/tgstation/blob/5d264fbea0124e5af511af3fed24203e196d108b/sound/items/dodgeball.ogg under CC BY-SA 3.0 - -grille_hit.ogg taken from https://github.com/tgstation/tgstation/blob/803ca4537df35cf252b056d8460d510be8a4f353/sound/effects/grillehit.ogg under CC BY-SA 3.0 - -slash.ogg taken from https://github.com/tgstation/tgstation/blob/5d264fbea0124e5af511af3fed24203e196d108b/sound/weapons/slash.ogg under CC BY-SA 3.0 - -tap.ogg taken from https://github.com/tgstation/tgstation/blob/803ca4537df35cf252b056d8460d510be8a4f353/sound/weapons/tap.ogg under CC BY-SA 3.0 - -BoxingPunch 1, 2, and 3 taken from Ryan Conway at https://freesound.org/people/ryanconway/sounds/260739/ under CC BY 3.0 - -boxingbell.ogg taken from Herkules92 at https://freesound.org/people/Herkules92/sounds/520998/ under CC0 1.0 - -block_metal1.ogg taken from https://github.com/Citadel-Station-13/Citadel-Station-13/commit/31c5996a5db8cce0cb431cb1dc20d99cac83f268 under CC BY-SA 3.0 - -pierce.ogg taken from: https://github.com/tgstation/tgstation/commit/106cd26fc00851a51dd362f3131120318d848a53 - -rubberhammer.ogg taken from https://freesound.org/people/ScreamStudio/sounds/392617/ under CC0 1.0 - -- files: ["weoweo.ogg"] - license: "SONNISS #GAMEAUDIOGDC BUNDLE LICENSING" - copyright: "Taken from Sonniss.com - GDC 2023 - Systematic Sound - TonalElements Obscurum - Dark Drones" - -- files: ["soup.ogg"] - license: "SONNISS #GAMEAUDIOGDC BUNDLE LICENSING" - copyright: "Taken from Sonniss.com - GDC 2023 - 344 AUdio - Epic Impacts Vol. 1" diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml index a5e13ab040b..92641ad69e7 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -55,3 +55,9 @@ Entries: commands.', type: Tweak} id: 8 time: '2023-10-21T09:53:00.0000000+00:00' +- author: DrSmugleaf + changes: + - {message: 'Fixed the Erase verb not removing all chat messages from the player + in some cases.', type: Fix} + id: 9 + time: '2023-10-30T01:28:00.0000000+00:00' diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 1764305c31c..4ace4dcd663 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,222 +1,4 @@ Entries: -- author: EmoGarbage404 - changes: - - {message: Radios no longer display a popup when messages fail to send., type: Remove} - id: 4602 - time: '2023-08-15T20:56:42.0000000+00:00' -- author: mirrorcult - changes: - - {message: Portal sprites made less bad hopefully, type: Tweak} - - {message: Hand teleporter doafter reduced slightly, type: Tweak} - - {message: Portals can no longer teleport you to other maps, type: Fix} - - {message: Ghosts can now traverse linked portals silently using an altverb, type: Add} - - {message: Portals now snap to grid + show up properly in the entity menu, type: Fix} - id: 4603 - time: '2023-08-15T20:56:14.0000000+00:00' -- author: EmoGarbage404 - changes: - - {message: Cyborgs can't get electrocuted anymore., type: Fix} - id: 4604 - time: '2023-08-15T22:37:34.0000000+00:00' -- author: Fahasor - changes: - - {message: Nanotrasen Department of Economics has reduced glue expenses in jug - production lines. Now labels from jugs can be deleted., type: Fix} - id: 4605 - time: '2023-08-15T22:41:10.0000000+00:00' -- author: EmoGarbage404 - changes: - - {message: Artifacts once again fit in artifact containers., type: Fix} - - {message: Brought crate capacity in line with other storage. (500 -> 30), type: Fix} - - {message: Hamlet's cage is now hamlet-sized and can only fit a single item., type: Fix} - id: 4606 - time: '2023-08-15T22:49:30.0000000+00:00' -- author: Velcroboy - changes: - - {message: Added directional switches, type: Add} - id: 4607 - time: '2023-08-15T23:01:50.0000000+00:00' -- author: Tollhouse - changes: - - {message: Discount Dan has finalized a deal with NT chemistry and Shady Smokes - to bring you a new smoking sensation., type: Add} - id: 4608 - time: '2023-08-16T00:27:18.0000000+00:00' -- author: crazybrain - changes: - - {message: Syndicate pAI's are now equipped with radio transmitters., type: Tweak} - id: 4609 - time: '2023-08-16T06:59:42.0000000+00:00' -- author: Velcroboy - changes: - - {message: Restructured cannabis!, type: Tweak} - id: 4610 - time: '2023-08-16T07:04:26.0000000+00:00' -- author: DrSmugleaf - changes: - - {message: Admin ghosts are now able to interact with user interfaces from any - range., type: Fix} - id: 4611 - time: '2023-08-16T08:03:42.0000000+00:00' -- author: EmoGarbage404 - changes: - - {message: Lockers and crates work again., type: Fix} - id: 4612 - time: '2023-08-16T13:08:53.0000000+00:00' -- author: Ilya246 - changes: - - {message: 'Taxibots, cleanbots, and similar now have binary radio.', type: Add} - id: 4613 - time: '2023-08-16T13:18:57.0000000+00:00' -- author: DogZeroX - changes: - - {message: 'Reworked the loot table from salvage spawners, the stuff you can find - is more varied and valuable overall.', type: Add} - id: 4614 - time: '2023-08-16T19:11:02.0000000+00:00' -- author: DogZeroX - changes: - - {message: Higher rating stock parts are now cheaper to make. Print a bunch of - them and upgrade stuff!, type: Tweak} - id: 4615 - time: '2023-08-16T22:12:09.0000000+00:00' -- author: liltenhead - changes: - - {message: Reduced freedom implanter cost from 8 -> 5 TC., type: Tweak} - id: 4616 - time: '2023-08-17T04:08:47.0000000+00:00' -- author: liltenhead - changes: - - {message: 'Increased crafting costs of the advanced laser, and laser cannon.', - type: Tweak} - id: 4617 - time: '2023-08-17T04:10:06.0000000+00:00' -- author: Ubaser - changes: - - {message: New machine frame sprites, type: Tweak} - id: 4618 - time: '2023-08-17T04:16:13.0000000+00:00' -- author: hord-brayden - changes: - - {message: Whoopsie - Dan's Soaked Cigs finally hired some Quality Control. They've - resolved a small reagent solution in some of their swisher sweets., type: Fix} - id: 4619 - time: '2023-08-17T05:15:39.0000000+00:00' -- author: Equivocateur - changes: - - {message: 'Origin station now features ID Card computer''s in every Command member''s - office, drastically reducing the amount of bureaucracy.', type: Add} - id: 4620 - time: '2023-08-17T10:08:51.0000000+00:00' -- author: chromiumboy and PilgrimViis - changes: - - {message: Lathes and fabricators can now eject unused material sheets., type: Add} - id: 4621 - time: '2023-08-17T17:22:01.0000000+00:00' -- author: metalgearsloth - changes: - - {message: Fix emote sounds., type: Fix} - id: 4622 - time: '2023-08-17T20:40:10.0000000+00:00' -- author: OctoRocket - changes: - - {message: You no longer yell uncontrollably when feeling joy., type: Tweak} - id: 4623 - time: '2023-08-17T22:00:13.0000000+00:00' -- author: Repo - changes: - - {message: 'Janitors have remembered how to wring a mop, mops can transfer chemicals - back to buckets etc again.', type: Fix} - id: 4624 - time: '2023-08-17T22:00:46.0000000+00:00' -- author: DogZeroX - changes: - - {message: Research point requirement has been reduced for a lot of techs., type: Tweak} - id: 4625 - time: '2023-08-18T01:41:53.0000000+00:00' -- author: DogZeroX - changes: - - {message: Added two reboot themes., type: Add} - id: 4626 - time: '2023-08-18T13:58:44.0000000+00:00' -- author: Partmedia - changes: - - {message: Added fun!, type: Add} - - {message: Removed fun!, type: Remove} - - {message: Changed fun!, type: Tweak} - - {message: Fixed fun!, type: Fix} - id: 4627 - time: '2023-08-18T17:22:00.0000000+00:00' -- author: crazybrain - changes: - - {message: More shortcuts to guide entries on various items., type: Tweak} - id: 4628 - time: '2023-08-18T23:53:45.0000000+00:00' -- author: Alekshhh - changes: - - {message: The legendary John Barber came to Centcomm with a business proposal. - All human hairs have been cut with love!, type: Tweak} - id: 4629 - time: '2023-08-19T22:37:56.0000000+00:00' -- author: chromiumboy - changes: - - {message: 'The C.H.I.M.P. handcannon now has an internal power pack, much like - a laser, and different firing modes for the different particle types.', type: Tweak} - - {message: Each anomalous particle type now has a unique color, type: Tweak} - - {message: An upgrade kit for C.H.I.M.P. handcannons was added for purchase to - syndicate scientist uplinks for 4 TC, type: Add} - - {message: All C.H.I.M.P. particle cartridges have been removed from the game, - type: Remove} - - {message: The omega particle cartridge box has been removed from the syndicate - uplink, type: Remove} - id: 4630 - time: '2023-08-19T22:54:53.0000000+00:00' -- author: deltanedas - changes: - - {message: 'Solar Flares can randomly disable up to 2 radio channels, rather than - just service. Syndicate and CentCom channels remain unaffected.', type: Tweak} - id: 4631 - time: '2023-08-19T23:39:36.0000000+00:00' -- author: Morb0 - changes: - - {message: 'Roundstart nukeops greeting sound is back, now they''ll remember their - main objective.', type: Fix} - id: 4632 - time: '2023-08-20T01:07:09.0000000+00:00' -- author: mirrorcult - changes: - - {message: Containment fields now have synced animations, type: Fix} - id: 4633 - time: '2023-08-20T05:33:49.0000000+00:00' -- author: Alekshhh - changes: - - {message: Fixed modern hair trongles, type: Fix} - id: 4634 - time: '2023-08-20T08:54:44.0000000+00:00' -- author: Errant - changes: - - {message: Pressing the "rack gun" key on a gun with an open bolt will now close - the bolt., type: Tweak} - - {message: Ghosts and animals without hands can no longer manipulate gun bolts., - type: Fix} - id: 4635 - time: '2023-08-20T11:42:36.0000000+00:00' -- author: CrigCrag - changes: - - {message: Loneops have grown impatient and may attack a bit earlier in the shift., - type: Tweak} - id: 4636 - time: '2023-08-20T12:12:28.0000000+00:00' -- author: kalane15 - changes: - - {message: 'Crusher can be used with one hand, but with less damage.', type: Tweak} - id: 4637 - time: '2023-08-20T12:13:45.0000000+00:00' -- author: metalgearsloth - changes: - - {message: Buff sniper firerate and nerf damage. Nerf stamina damage a lot., type: Tweak} - id: 4638 - time: '2023-08-20T20:54:22.0000000+00:00' - author: crazybrain changes: - {message: Explosive banana peels now need to be armed before they can be used., @@ -2911,3 +2693,217 @@ Entries: - {message: Candles can now be found in PietyVend., type: Add} id: 5101 time: '2023-11-04T05:53:52.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: Fixed being able to sell the same bounty multiple times., type: Fix} + id: 5102 + time: '2023-11-04T13:19:24.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: Fixed needing to manually deselect to switch between borg modules., + type: Fix} + id: 5103 + time: '2023-11-04T13:29:19.0000000+00:00' +- author: TheEmber + changes: + - {message: Changed vomit probability for soap to 20% and soapy water to 10%., type: Tweak} + id: 5104 + time: '2023-11-04T15:19:30.0000000+00:00' +- author: Ubaser + changes: + - {message: The senior physician now spawns with a medical beret., type: Tweak} + id: 5105 + time: '2023-11-04T15:20:09.0000000+00:00' +- author: themias + changes: + - {message: You can now drag and drop to enter mechs., type: Tweak} + id: 5106 + time: '2023-11-04T15:23:46.0000000+00:00' +- author: daerSeebaer + changes: + - {message: Radiation Shutters (and some other things) are now better at keeping + out radiation., type: Tweak} + id: 5107 + time: '2023-11-04T15:25:56.0000000+00:00' +- author: themias + changes: + - {message: Critical vaccinated crew no longer immune to zombie fists, type: Fix} + id: 5108 + time: '2023-11-04T17:57:21.0000000+00:00' +- author: themias + changes: + - {message: Fixed accidental crayon graffiti when writing on paper, type: Fix} + id: 5109 + time: '2023-11-04T22:44:10.0000000+00:00' +- author: crazybrain + changes: + - {message: Mice no longer eat soap., type: Fix} + id: 5110 + time: '2023-11-05T23:47:19.0000000+00:00' +- author: deltanedas + changes: + - {message: Chemistry bags had their storage rebalanced and can now hold beakers., + type: Tweak} + id: 5111 + time: '2023-11-05T23:49:29.0000000+00:00' +- author: deltanedas + changes: + - {message: Fixed hotplates and some other devices not working., type: Fix} + id: 5112 + time: '2023-11-05T23:49:59.0000000+00:00' +- author: RiceMar + changes: + - {message: Paper is now lathable from the sheet-meister 2000., type: Add} + - {message: Crates of paper can now be purchased from the cargo request computer., + type: Add} + - {message: The sheet-meister 2000 research unlock has moved from the civilian services + tree to the industrial tree., type: Tweak} + id: 5113 + time: '2023-11-06T02:14:03.0000000+00:00' +- author: IProduceWidgets + changes: + - {message: 'Vomit, so much vomit. Now vomiting chems are less awful.', type: Remove} + id: 5114 + time: '2023-11-06T02:16:56.0000000+00:00' +- author: themias + changes: + - {message: 'Bicaridine, Dylovene and Crytobiolin now metabolize at the same rate + for all species.', type: Fix} + id: 5115 + time: '2023-11-06T02:18:21.0000000+00:00' +- author: Tunguso4ka + changes: + - {message: CentCom allocated funds for the purchase of notice boards for kitchens, + type: Add} + id: 5116 + time: '2023-11-06T02:18:39.0000000+00:00' +- author: Ubaser + changes: + - {message: The access configurator now has a proper sprite., type: Tweak} + id: 5117 + time: '2023-11-06T02:21:41.0000000+00:00' +- author: Nimfar11 + changes: + - {message: Adds three new mobs from the Living Light family, type: Add} + id: 5118 + time: '2023-11-06T02:24:15.0000000+00:00' +- author: IProduceWidgets + changes: + - {message: Livestock crates are no longer airtight., type: Tweak} + id: 5119 + time: '2023-11-06T02:27:48.0000000+00:00' +- author: IntegerTempest + changes: + - {message: Added syndicate hud and syndicate visor for nuclear operatives, type: Add} + id: 5120 + time: '2023-11-06T02:36:08.0000000+00:00' +- author: JoeHammad + changes: + - {message: Aspid station has had its cargo department expanded., type: Tweak} + id: 5121 + time: '2023-11-06T02:36:46.0000000+00:00' +- author: ChrisThirtle + changes: + - {message: Fixed certain objects not fitting into crates and lockers due to the + angle of space itself., type: Fix} + id: 5122 + time: '2023-11-06T02:40:25.0000000+00:00' +- author: deltanedas + changes: + - {message: 'Microreactor powercells can be researched under the Tier 3 Portable + Fission technology, they slowly recharge on their own.', type: Add} + id: 5123 + time: '2023-11-06T03:00:12.0000000+00:00' +- author: deltanedas + changes: + - {message: IEDs can be crafted in desperate times to make a small explosion., type: Add} + id: 5124 + time: '2023-11-06T03:04:48.0000000+00:00' +- author: Whisper + changes: + - {message: 'Blood when consumed metabolizes into uncooked proteins, and sates thirst + of non-humans', type: Add} + - {message: Non-humans will have a small amount of hunger sated when consuming uncooked + proteins., type: Add} + - {message: Humans will take poison damage with a chance to vomit when metabolizing + uncooked protein., type: Tweak} + - {message: Humans take less damage from uncooked proteins (2->1), type: Tweak} + - {message: Humans will "feel sick" when they metabolize uncooked proteins., type: Add} + id: 5125 + time: '2023-11-06T03:51:33.0000000+00:00' +- author: TheShuEd + changes: + - {message: Added anomaly synchronizer! It allows you to link anomaly activity to + triggers on different devices., type: Add} + id: 5126 + time: '2023-11-06T04:02:03.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: Fixed a few items with invalid sizes., type: Fix} + id: 5127 + time: '2023-11-06T07:20:50.0000000+00:00' +- author: Tunguso4ka + changes: + - {message: NT found clown and mime lockers in its stockpiles., type: Add} + id: 5128 + time: '2023-11-07T23:38:18.0000000+00:00' +- author: VasilisThePikachu + changes: + - {message: Janibots and medibots cant bleed oil anymore, type: Remove} + - {message: Janibots and medibots health status on the inspection menu uses proper + "robot" terms (will say they are dented etc), type: Fix} + id: 5129 + time: '2023-11-08T01:24:05.0000000+00:00' +- author: Vasilis + changes: + - {message: The cloning pod and medical scanner can now fit through vertical doors., + type: Fix} + id: 5130 + time: '2023-11-08T01:24:25.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: 'Added speed boots! When powered, this research tech allows you to run + significantly faster.', type: Add} + id: 5131 + time: '2023-11-08T01:25:44.0000000+00:00' +- author: Vasilis + changes: + - {message: Characters with the pacifist trait will get their pacifist trait removed + as soon as they turn into a zombie., type: Fix} + id: 5132 + time: '2023-11-08T01:27:50.0000000+00:00' +- author: FluidRock + changes: + - {message: Lizards rediscovered their hunger for crayons., type: Tweak} + id: 5133 + time: '2023-11-08T01:28:37.0000000+00:00' +- author: Darkie + changes: + - {message: Added directional window cracks when damaged., type: Add} + id: 5134 + time: '2023-11-08T01:31:45.0000000+00:00' +- author: PixelTK + changes: + - {message: Arachnids can now weave a simple shield made out of silk., type: Add} + - {message: 'Arachnids now have two additional pocket slots. In exchange, they no + longer have slower hunger.', type: Tweak} + - {message: Arachnids are now the only species that can craft with silk., type: Tweak} + - {message: Arachnids now produce silk more efficiently., type: Tweak} + id: 5135 + time: '2023-11-08T20:18:53.0000000+00:00' +- author: Brandon_H + changes: + - {message: Fixed a spelling mistake in the description of the emergency medipen., + type: Fix} + id: 5136 + time: '2023-11-08T20:23:58.0000000+00:00' +- author: ps3moira + changes: + - {message: Changed electric grill sprites, type: Tweak} + id: 5137 + time: '2023-11-08T20:24:36.0000000+00:00' +- author: KingFroozy + changes: + - {message: Nitrile gloves have got their own sprite., type: Add} + id: 5138 + time: '2023-11-08T20:31:24.0000000+00:00' diff --git a/Resources/Locale/en-US/anomaly/anomaly.ftl b/Resources/Locale/en-US/anomaly/anomaly.ftl index 29d51696944..83b992ce235 100644 --- a/Resources/Locale/en-US/anomaly/anomaly.ftl +++ b/Resources/Locale/en-US/anomaly/anomaly.ftl @@ -25,6 +25,9 @@ anomaly-scanner-particle-unstable = - [color=plum]Unstable type:[/color] {$type} anomaly-scanner-particle-containment = - [color=goldenrod]Containment type:[/color] {$type} anomaly-scanner-pulse-timer = Time until next pulse: [color=gray]{$time}[/color] +anomaly-sync-connected = Anomaly successfully attached +anomaly-sync-disconnected = The connection to the anomaly has been lost! + anomaly-generator-ui-title = Anomaly Generator anomaly-generator-fuel-display = Fuel: anomaly-generator-cooldown = Cooldown: [color=gray]{$time}[/color] diff --git a/Resources/Locale/en-US/clothing/components/toggleable-clothing-component.ftl b/Resources/Locale/en-US/clothing/components/toggleable-clothing-component.ftl index eb342d028d2..746eea4a28f 100644 --- a/Resources/Locale/en-US/clothing/components/toggleable-clothing-component.ftl +++ b/Resources/Locale/en-US/clothing/components/toggleable-clothing-component.ftl @@ -1,2 +1,3 @@ +toggle-clothing-verb-text = Toggle {CAPITALIZE($entity)} -toggleable-clothing-remove-first = You have to unequip {$entity} first. \ No newline at end of file +toggleable-clothing-remove-first = You have to unequip {$entity} first. diff --git a/Resources/Locale/en-US/construction/conditions/crafter-whitelist.ftl b/Resources/Locale/en-US/construction/conditions/crafter-whitelist.ftl deleted file mode 100644 index 646d89ca5eb..00000000000 --- a/Resources/Locale/en-US/construction/conditions/crafter-whitelist.ftl +++ /dev/null @@ -1 +0,0 @@ -construction-step-condition-crafter-whitelist = You need to meet certain requirements. diff --git a/Resources/Locale/en-US/construction/conditions/min-solution.ftl b/Resources/Locale/en-US/construction/conditions/min-solution.ftl new file mode 100644 index 00000000000..884a3519982 --- /dev/null +++ b/Resources/Locale/en-US/construction/conditions/min-solution.ftl @@ -0,0 +1,2 @@ +construction-examine-condition-min-solution = First, add {$quantity}u of {$reagent}. +construction-guide-condition-min-solution = Add {$quantity}u of {$reagent} diff --git a/Resources/Locale/en-US/construction/conditions/solution-empty.ftl b/Resources/Locale/en-US/construction/conditions/solution-empty.ftl new file mode 100644 index 00000000000..0fd577a0f5f --- /dev/null +++ b/Resources/Locale/en-US/construction/conditions/solution-empty.ftl @@ -0,0 +1,3 @@ +# SolutionEmpty +construction-examine-condition-solution-empty = First, empty the contents. +construction-guide-condition-solution-empty = Empty the contents. diff --git a/Resources/Locale/en-US/construction/construction-system.ftl b/Resources/Locale/en-US/construction/construction-system.ftl index 6ba8ae78134..81be8c4ab29 100644 --- a/Resources/Locale/en-US/construction/construction-system.ftl +++ b/Resources/Locale/en-US/construction/construction-system.ftl @@ -4,3 +4,4 @@ construction-system-construct-cannot-start-another-construction = You can't star construction-system-construct-no-materials = You don't have the materials to build that! construction-system-already-building = You are already building that! construction-system-inside-container = You can't build while you're there! +construction-system-cannot-start = You cannot craft this! diff --git a/Resources/Locale/en-US/headset/headset-component.ftl b/Resources/Locale/en-US/headset/headset-component.ftl index 70b83c1e663..5bacf512ea9 100644 --- a/Resources/Locale/en-US/headset/headset-component.ftl +++ b/Resources/Locale/en-US/headset/headset-component.ftl @@ -14,6 +14,7 @@ chat-radio-security = Security chat-radio-service = Service chat-radio-supply = Supply chat-radio-syndicate = Syndicate +chat-radio-freelance = Freelance # not headset but whatever chat-radio-handheld = Handheld diff --git a/Resources/Locale/en-US/machine-linking/transmitter_ports.ftl b/Resources/Locale/en-US/machine-linking/transmitter_ports.ftl index 154f20eee7c..e5f92c5b001 100644 --- a/Resources/Locale/en-US/machine-linking/transmitter_ports.ftl +++ b/Resources/Locale/en-US/machine-linking/transmitter_ports.ftl @@ -45,3 +45,18 @@ signal-port-description-air-warning = This port is invoked with HIGH when in war 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. + +signal-port-name-decaying = Decaying +signal-port-description-decaying = This port is invoked when a bound anomaly starts to decay. + +signal-port-name-stabilize = Stabilize +signal-port-description-stabilize = This port is invoked when a bound anomaly is normalized. + +signal-port-name-growing = Growing +signal-port-description-growing = This port is invoked when a bound anomaly starts to grow. + +signal-port-name-pulse = Pulse +signal-port-description-pulse = This port is invoked when a bound anomaly is pulsing. + +signal-port-name-supercrit = Supercritical +signal-port-description-supercrit = This port is invoked when a bound anomaly explode after supercrit state. \ No newline at end of file diff --git a/Resources/Locale/en-US/materials/materials.ftl b/Resources/Locale/en-US/materials/materials.ftl index abd61d1065f..d515479a0e4 100644 --- a/Resources/Locale/en-US/materials/materials.ftl +++ b/Resources/Locale/en-US/materials/materials.ftl @@ -18,6 +18,7 @@ materials-durathread = durathread materials-plasma = plasma materials-plastic = plastic materials-wood = wood +materials-paper = paper materials-uranium = uranium materials-bananium = bananium materials-meat = meat diff --git a/Resources/Locale/en-US/prototypes/catalog/cargo/cargo-materials.ftl b/Resources/Locale/en-US/prototypes/catalog/cargo/cargo-materials.ftl index 802b71eda9b..88e58b647e8 100644 --- a/Resources/Locale/en-US/prototypes/catalog/cargo/cargo-materials.ftl +++ b/Resources/Locale/en-US/prototypes/catalog/cargo/cargo-materials.ftl @@ -19,6 +19,9 @@ ent-MaterialPlasma = { ent-CrateMaterialPlasma } ent-CardboardMaterial = { ent-CrateMaterialCardboard } .desc = { ent-CrateMaterialCardboard.desc } +ent-PaperMaterial = { ent-CrateMaterialPaper } + .desc = { ent-CrateMaterialPaper.desc } + ent-MaterialFuelTank = { ent-WeldingFuelTankFull } .desc = { ent-WeldingFuelTankFull.desc } diff --git a/Resources/Locale/en-US/prototypes/catalog/fills/crates/materials-crates.ftl b/Resources/Locale/en-US/prototypes/catalog/fills/crates/materials-crates.ftl index 505220730fe..c204215474a 100644 --- a/Resources/Locale/en-US/prototypes/catalog/fills/crates/materials-crates.ftl +++ b/Resources/Locale/en-US/prototypes/catalog/fills/crates/materials-crates.ftl @@ -21,3 +21,6 @@ ent-CrateMaterialPlasma = Solid plasma crate ent-CrateMaterialCardboard = Cardboard crate .desc = 60 pieces of cardboard. + +ent-CrateMaterialPaper = Paper crate + .desc = 90 sheets of paper. diff --git a/Resources/Locale/en-US/reagents/generic.ftl b/Resources/Locale/en-US/reagents/generic.ftl index d41b3ff585b..2f5feff1b3b 100644 --- a/Resources/Locale/en-US/reagents/generic.ftl +++ b/Resources/Locale/en-US/reagents/generic.ftl @@ -7,3 +7,4 @@ generic-reagent-effect-tearing-up = Your eyes start to tear up. generic-reagent-effect-nauseous = You feel nauseous. generic-reagent-effect-parched = You feel parched. generic-reagent-effect-thirsty = You feel thirsty. +generic-reagent-effect-sick = You feel sick after consuming that... diff --git a/Resources/Locale/en-US/research/technologies.ftl b/Resources/Locale/en-US/research/technologies.ftl index cb4f30de6af..7f90f134eaf 100644 --- a/Resources/Locale/en-US/research/technologies.ftl +++ b/Resources/Locale/en-US/research/technologies.ftl @@ -19,6 +19,7 @@ research-technology-advanced-atmospherics = Advanced Atmospherics research-technology-advanced-tools = Advanced Tools research-technology-super-powercells = Super Powercells research-technology-bluespace-storage = Bluespace Storage +research-technology-portable-fission = Portable Fission research-technology-chemistry = Chemistry research-technology-surgical-tools = Surgical Tools @@ -52,7 +53,7 @@ research-technology-advanced-parts = Advanced Parts research-technology-grappling = Grappling research-technology-abnormal-artifact-manipulation = Abnormal Artifact Manipulation research-technology-gravity-manipulation = Gravity Manipulation -research-technology-mobile-anomaly-tech = Mobile Anomaly Tech +research-technology-advanced-anomaly-research = Advanced Anomaly Research research-technology-rped = Rapid Part Exchange research-technology-super-parts = Super Parts @@ -69,3 +70,4 @@ research-technology-meat-manipulation = Meat Manipulation research-technology-honk-mech = H.O.N.K. Mech research-technology-advanced-spray = Advanced Spray research-technology-bluespace-cargo-transport = Bluespace Cargo Transport +research-technology-quantum-fiber-weaving = Quantum Fiber Weaving diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/materials.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/materials.ftl index 926ac24bd4c..afabd5d953b 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/materials.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/materials.ftl @@ -14,3 +14,5 @@ ent-CrateMaterialPlasma = { ent-CratePlasma } .desc = { ent-CratePlasma.desc } ent-CrateMaterialCardboard = { ent-CrateGenericSteel } .desc = { ent-CrateGenericSteel.desc } +ent-CrateMaterialPaper = { ent-CrateGenericSteel } + .desc = { ent-CrateGenericSteel.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/items/toolboxes.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/items/toolboxes.ftl index 6d9c52724be..05c9ffdf51d 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/items/toolboxes.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/items/toolboxes.ftl @@ -10,7 +10,7 @@ ent-ToolboxElectricalTurretFilled = electrical toolbox ent-ToolboxMechanicalFilled = mechanical toolbox .suffix = Filled .desc = { ent-ToolboxMechanical.desc } -ent-ToolboxSyndicateFilled = suspicious toolbox +ent-ToolboxSyndicateFilled = { ent-ToolboxSyndicate } .suffix = Filled .desc = { ent-ToolboxSyndicate.desc } ent-ToolboxGoldFilled = golden toolbox diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/ears/headsets.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/ears/headsets.ftl index 77d35d0b6a9..82b906fc48a 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/ears/headsets.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/ears/headsets.ftl @@ -34,3 +34,5 @@ ent-ClothingHeadsetBrigmedic = brigmedic headset .desc = A headset that helps to hear the death cries. ent-ClothingHeadsetService = service headset .desc = Headset used by the service staff, tasked with keeping the station full, happy and clean. +ent-ClothingHeadsetFreelance = freelancer headset + .desc = This is used by a roaming group of freelancers diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/ears/headsets_alt.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/ears/headsets_alt.ftl index 761d7864115..15208f60eae 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/ears/headsets_alt.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/ears/headsets_alt.ftl @@ -19,3 +19,5 @@ ent-ClothingHeadsetAltScience = research director's over-ear headset .desc = { ent-ClothingHeadsetAlt.desc } ent-ClothingHeadsetAltSyndicate = blood-red over-ear headset .desc = An updated, modular syndicate intercom that fits over the head and takes encryption keys (there are 5 key slots.). +ent-ClothingHeadsetAltFreelancer = freelancer's over-ear headset + .desc = { ent-ClothingHeadsetAlt.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/eyes/hud.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/eyes/hud.ftl index d612e4cd864..b5ec7720a21 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/eyes/hud.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/eyes/hud.ftl @@ -20,3 +20,5 @@ ent-ClothingEyesHudMultiversal = multiversal hud .desc = Filler ent-ClothingEyesHudOmni = omni hud .desc = Filler +ent-ClothingEyesHudSyndicate = syndicate visor + .desc = The syndicate's professional head-up display, designed for better detection of humanoids and their subsequent elimination. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/helmets.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/helmets.ftl index 5f61469e55b..00820e3a541 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/helmets.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/helmets.ftl @@ -41,3 +41,5 @@ ent-ClothingHeadHelmetERTJanitor = ERT janitor helmet .desc = An in-atmosphere helmet worn by janitorial members of the Nanotrasen Emergency Response Team. Has dark purple highlights. ent-ClothingHeadHelmetBone = bone helmet .desc = Cool-looking helmet made of skull of your enemies. +ent-ClothingHeadHelmetPodWars = ironclad II helmet + .desc = An ironclad II helmet, a relic of the pod wars. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/armor.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/armor.ftl index a6ee6a6b632..429ab8a8d73 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/armor.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/armor.ftl @@ -29,3 +29,5 @@ ent-ClothingOuterArmorChangeling = chitinous armor .desc = Inflates the changeling's body into an all-consuming chitinous mass of armor. ent-ClothingOuterArmorBone = bone armor .desc = Sits on you like a second skin. +ent-ClothingOuterArmorPodWars = ironclad II armor + .desc = A repurposed suit of ironclad II armor, a relic of the pod wars. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/misc.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/misc.ftl index 96e8e25aaee..dfccdb99f33 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/misc.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/misc.ftl @@ -10,3 +10,7 @@ ent-ClothingShoesTourist = tourist shoes .desc = These cheap sandals don't look very comfortable. ent-ClothingShoesDameDane = yakuza shoes .desc = At last... +ent-ClothingShoesBootsSpeed = speed boots + .desc = High-tech boots woven with quantum fibers, able to convert electricity into pure speed! +ent-ActionToggleSpeedBoots = Toggle Speed Boots + .desc = Toggles the speed boots on and off. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/specific.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/specific.ftl index d0efeb91539..711aaef5eef 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/specific.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/specific.ftl @@ -27,3 +27,5 @@ ent-ClothingShoesCluwne = cluwne shoes .suffix = Unremoveable ent-ClothingShoesClownLarge = large clown shoes .desc = When you need to stand out in a room full of clowns! +ent-ClothingShoesSkates = roller skates + .desc = Get your skates on! diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/mobs.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/mobs.ftl index 9efc00719ee..47f82ccfc48 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/mobs.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/mobs.ftl @@ -104,3 +104,9 @@ ent-SpawnMobPenguin = Penguin Spawner .desc = { ent-MarkerBase.desc } ent-SpawnMobOreCrab = ore crab spawner .desc = { ent-MarkerBase.desc } +ent-SpawnMobLuminousPerson = luminous person spawner + .desc = { ent-MarkerBase.desc } +ent-SpawnMobLuminousObject = luminous object spawner + .desc = { ent-MarkerBase.desc } +ent-SpawnMobLuminousEntity = luminous entity spawner + .desc = { ent-MarkerBase.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/vehicles.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/vehicles.ftl index 8b1dae2fa36..1f5bed41d23 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/vehicles.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/vehicles.ftl @@ -6,3 +6,7 @@ ent-SpawnVehicleATV = ATV Spawner .desc = { ent-MarkerBase.desc } ent-SpawnVehicleMotobike = Motobike Spawner .desc = { ent-MarkerBase.desc } +ent-SpawnVehicleWheelchair = Wheelchair Spawner + .desc = { ent-MarkerBase.desc } +ent-SpawnVehicleWheelchairFolded = Wheelchair [Folded] Spawner + .desc = { ent-MarkerBase.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/living_light.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/living_light.ftl new file mode 100644 index 00000000000..0182023e47c --- /dev/null +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/living_light.ftl @@ -0,0 +1,8 @@ +ent-MobLivingLight = luminous person + .desc = A blinding figure of pure light, seemingly intangible. +ent-MobLuminousPerson = { ent-MobLivingLight } + .desc = { ent-MobLivingLight.desc } +ent-MobLuminousObject = luminous object + .desc = A small glowing object that causes burns on the skin with its glow. +ent-MobLuminousEntity = luminous entity + .desc = A blinding translucent entity, the bright eye seems dangerous and scalding. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_cans.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_cans.ftl index e733e686781..6e5e4364f03 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_cans.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_cans.ftl @@ -2,6 +2,9 @@ ent-DrinkCanBaseFull = { ent-BaseItem } .desc = { ent-BaseItem.desc } ent-DrinkColaCan = space cola .desc = A refreshing beverage. +ent-DrinkColaCanEmpty = { ent-DrinkColaCan } + .suffix = empty + .desc = { ent-DrinkColaCan.desc } ent-DrinkIcedTeaCan = iced tea can .desc = A refreshing can of iced tea. ent-DrinkLemonLimeCan = lemon-lime can diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/circuitboards/machine/production.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/circuitboards/machine/production.ftl index c4eedb56651..e1d20f4d7a4 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/circuitboards/machine/production.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/circuitboards/machine/production.ftl @@ -26,6 +26,8 @@ ent-TraversalDistorterMachineCircuitboard = traversal distorter machine board .desc = A machine printed circuit board for a traversal distorter. ent-AnomalyVesselCircuitboard = anomaly vessel machine board .desc = A machine printed circuit board for an anomaly vessel. +ent-AnomalySynchronizerCircuitboard = anomaly synchronizer machine board + .desc = A machine printed circuit board for an anomaly synchronizer. ent-APECircuitboard = A.P.E. machine board .desc = A machine printed circuit board for an A.P.E. ent-ThermomachineFreezerMachineCircuitBoard = freezer thermomachine machine board diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/encryption_keys.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/encryption_keys.ftl index cf04f2d551d..0f85cc67d6a 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/encryption_keys.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/encryption_keys.ftl @@ -28,3 +28,5 @@ ent-EncryptionKeySyndie = blood-red encryption key .desc = An encryption key used by... wait... Who is owner of this chip? ent-EncryptionKeyBinary = binary translator key .desc = An encryption key that translates binary signals used by silicons. +ent-EncryptionKeyFreelance = freelancer encryption key + .desc = An encryption key used by freelancers, who may or may not have an affiliation. It looks like its worn out. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/pda.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/pda.ftl index 1dd586bd870..6bc854fd121 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/pda.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/pda.ftl @@ -105,3 +105,5 @@ ent-SeniorPhysicianPDA = senior physician PDA .desc = Smells faintly like iron and chemicals. Has a built-in health analyzer. ent-SeniorOfficerPDA = senior officer PDA .desc = Beaten, battered and broken, but just barely useable. +ent-PiratePDA = pirate PDA + .desc = Yargh! diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/ice_crust.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/ice_crust.ftl new file mode 100644 index 00000000000..3a3a29759e5 --- /dev/null +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/ice_crust.ftl @@ -0,0 +1,2 @@ +ent-IceCrust = ice crust + .desc = It's cold and slippery. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/identification_cards.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/identification_cards.ftl index bb23cfee151..4e8075f5618 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/identification_cards.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/identification_cards.ftl @@ -87,6 +87,8 @@ ent-AtmosIDCard = atmospheric technician ID card .desc = { ent-IDCardStandard.desc } ent-SyndicateIDCard = syndicate ID card .desc = { ent-IDCardStandard.desc } +ent-PirateIDCard = pirate ID card + .desc = { ent-IDCardStandard.desc } ent-PsychologistIDCard = psychologist ID card .desc = { ent-IDCardStandard.desc } ent-ReporterIDCard = reporter ID card diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/power/powercells.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/power/powercells.ftl index 8aa004ebe97..6ad758c27bc 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/power/powercells.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/power/powercells.ftl @@ -26,8 +26,11 @@ ent-PowerCellHyper = hyper-capacity power cell ent-PowerCellHyperPrinted = { ent-PowerCellHyper } .suffix = Empty .desc = { ent-PowerCellHyper.desc } -ent-PowerCellMicroreactor = small microreactor cell - .desc = A rechargeable standardized microreactor cell. Intended for low-power devices, it slowly recharges by itself. +ent-PowerCellMicroreactor = microreactor power cell + .desc = A rechargeable standardized microreactor cell. Has lower capacity but slowly recharges by itself. .suffix = Full +ent-PowerCellMicroreactorPrinted = { ent-PowerCellMicroreactor } + .suffix = Empty + .desc = { ent-PowerCellMicroreactor.desc } ent-PowerCellAntiqueProto = antique power cell prototype .desc = A small cell that self recharges. Used in old laser arms research. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/shields/shields.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/shields/shields.ftl index 69fd3ce2cbc..a8e2c4acc33 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/shields/shields.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/shields/shields.ftl @@ -10,6 +10,8 @@ ent-WoodenBuckler = wooden buckler .desc = A small round wooden makeshift shield. ent-MakeshiftShield = makeshift shield .desc = A rundown looking shield, not good for much. +ent-WebShield = web shield + .desc = A stringy shield. It's weak, and doesn't seem to do well against heat. ent-ClockworkShield = Clockwork Shield .desc = Ratvar oyrffrf lbh jvgu uvf cebgrpgvba. ent-MirrorShield = Mirror Shield diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/chemistry-bottles.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/chemistry-bottles.ftl index 88f9b483beb..ce498a9af9a 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/chemistry-bottles.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/chemistry-bottles.ftl @@ -1,15 +1,17 @@ ent-BaseChemistryEmptyBottle = bottle .desc = A small bottle. -ent-ChemistryEmptyBottle01 = bottle +ent-ChemistryEmptyBottle01 = { ent-BaseChemistryEmptyBottle } .desc = { ent-BaseChemistryEmptyBottle.desc } -ent-ChemistryEmptyBottle02 = bottle +ent-ChemistryEmptyBottle02 = { ent-BaseChemistryEmptyBottle } .desc = { ent-BaseChemistryEmptyBottle.desc } -ent-ChemistryEmptyBottle03 = bottle +ent-ChemistryEmptyBottle03 = { ent-BaseChemistryEmptyBottle } .desc = { ent-BaseChemistryEmptyBottle.desc } -ent-ChemistryEmptyBottle04 = bottle +ent-ChemistryEmptyBottle04 = { ent-BaseChemistryEmptyBottle } .desc = { ent-BaseChemistryEmptyBottle.desc } -ent-EpinephrineChemistryBottle = epinephrine bottle +ent-BaseChemistryBottleFilled = { ent-BaseChemistryEmptyBottle } .desc = { ent-BaseChemistryEmptyBottle.desc } +ent-EpinephrineChemistryBottle = epinephrine bottle + .desc = { ent-BaseChemistryBottleFilled.desc } ent-RobustHarvestChemistryBottle = robust harvest bottle .desc = This will increase the potency of your plants. ent-EZNutrientChemistryBottle = ez nutrient bottle @@ -21,16 +23,16 @@ ent-UnstableMutagenChemistryBottle = unstable mutagen bottle ent-NocturineChemistryBottle = nocturine bottle .desc = This will make someone fall down almost immediately. Hard to overdose on. ent-EphedrineChemistryBottle = ephedrine bottle - .desc = { ent-BaseChemistryEmptyBottle.desc } + .desc = { ent-BaseChemistryBottleFilled.desc } ent-OmnizineChemistryBottle = omnizine bottle - .desc = { ent-BaseChemistryEmptyBottle.desc } + .desc = { ent-BaseChemistryBottleFilled.desc } ent-CognizineChemistryBottle = cognizine bottle - .desc = { ent-BaseChemistryEmptyBottle.desc } + .desc = { ent-BaseChemistryBottleFilled.desc } ent-PaxChemistryBottle = pax bottle - .desc = { ent-BaseChemistryEmptyBottle.desc } + .desc = { ent-BaseChemistryBottleFilled.desc } ent-MuteToxinChemistryBottle = mute toxin bottle - .desc = { ent-BaseChemistryEmptyBottle.desc } + .desc = { ent-BaseChemistryBottleFilled.desc } ent-LeadChemistryBottle = lead bottle - .desc = { ent-BaseChemistryEmptyBottle.desc } + .desc = { ent-BaseChemistryBottleFilled.desc } ent-ToxinChemistryBottle = toxin bottle - .desc = { ent-BaseChemistryEmptyBottle.desc } + .desc = { ent-BaseChemistryBottleFilled.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/hypospray.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/hypospray.ftl index c7e3f0ec188..b6774d7d827 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/hypospray.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/hypospray.ftl @@ -10,7 +10,7 @@ ent-AdminHypo = experimental hypospray ent-ChemicalMedipen = chemical medipen .desc = A sterile injector for rapid administration of drugs to patients. This one can't be refilled. ent-EmergencyMedipen = emergency medipen - .desc = A rapid and safe way to stabilize patients in critical condition for personnel without advanced medical knowledge. Beware, as it's easy to overdose on epinephrine and tranexmic acid. + .desc = A rapid and safe way to stabilize patients in critical condition for personnel without advanced medical knowledge. Beware, as it's easy to overdose on epinephrine and tranexamic acid. ent-AntiPoisonMedipen = poison auto-injector .desc = A rapid dose of anti-poison. Contains ultravasculine and epinephrine. ent-BruteAutoInjector = brute auto-injector @@ -18,7 +18,7 @@ ent-BruteAutoInjector = brute auto-injector ent-BurnAutoInjector = burn auto-injector .desc = A rapid dose of dermaline and leporazine, intended for combat applications ent-RadAutoInjector = rad auto-injector - .desc = A rapid dose of anti-radiation. Contains arithrazine and bicardine. + .desc = A rapid dose of anti-radiation. Contains arithrazine and bicaridine. ent-SpaceMedipen = space medipen .desc = Contains a mix of chemicals that protect you from the deadly effects of space. ent-Stimpack = stimulant injector diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/xenoarchaeology/item_artifacts.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/xenoarchaeology/item_artifacts.ftl index da7a878c7e1..cd0853ddd8c 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/xenoarchaeology/item_artifacts.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/xenoarchaeology/item_artifacts.ftl @@ -14,3 +14,6 @@ ent-VariedXenoArtifactItem = { ent-BaseXenoArtifactItem } .desc = { ent-BaseXenoArtifactItem.desc } ent-ArtifactFragment = artifact fragment .desc = A broken piece of an artifact. You could probably repair it if you had more. +ent-ArtifactFragment1 = { ent-ArtifactFragment } + .suffix = Single + .desc = { ent-ArtifactFragment.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/bombs/ied.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/bombs/ied.ftl new file mode 100644 index 00000000000..ef71e12795c --- /dev/null +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/bombs/ied.ftl @@ -0,0 +1,8 @@ +ent-ImprovisedExplosive = improvised explosive device + .desc = A weak, improvised incendiary device. +ent-ImprovisedExplosiveEmpty = improvised explosive device + .desc = A weak, improvised incendiary device. This one has no fuel. + .suffix = empty +ent-ImprovisedExplosiveFuel = { ent-ImprovisedExplosiveEmpty } + .desc = A weak, improvised incendiary device. This one is missing wires. + .suffix = fuel diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/stations/nanotrasen.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/stations/nanotrasen.ftl index 6b0c4042c09..79cc4ba736d 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/stations/nanotrasen.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/stations/nanotrasen.ftl @@ -4,5 +4,8 @@ ent-StandardNanotrasenStation = { ent-BaseStation } .desc = { ent-BaseStation.desc } ent-NanotrasenCentralCommand = { ent-BaseStation } .desc = { ent-BaseStation.desc } +ent-StandardStationArena = { ent-BaseStation } + .desc = { ent-BaseStation.desc } + .desc = { ent-BaseStation.desc } ent-StandardStationArena = { ent-BaseStation } .desc = { ent-BaseStation.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/access.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/access.ftl index b689b8562d4..56a1765e407 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/access.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/access.ftl @@ -295,15 +295,21 @@ ent-AirlockSyndicateNukeopLocked = { ent-AirlockSyndicate } ent-AirlockExternalShuttleLocked = { ent-AirlockShuttle } .suffix = External, Docking, Locked .desc = { ent-AirlockShuttle.desc } -ent-AirlockExternalShuttleSyndicateLocked = { ent-AirlockShuttle } +ent-AirlockExternalShuttleSyndicateLocked = { ent-AirlockShuttleSyndicate } .suffix = External, Docking, Syndicate, Locked - .desc = { ent-AirlockShuttle.desc } -ent-AirlockExternalShuttleNukeopLocked = { ent-AirlockShuttle } + .desc = { ent-AirlockShuttleSyndicate.desc } +ent-AirlockExternalShuttleNukeopLocked = { ent-AirlockShuttleSyndicate } .suffix = External, Docking, Nukeop, Locked - .desc = { ent-AirlockShuttle.desc } + .desc = { ent-AirlockShuttleSyndicate.desc } ent-AirlockExternalGlassShuttleLocked = { ent-AirlockGlassShuttle } .suffix = External, Glass, Docking, Locked .desc = { ent-AirlockGlassShuttle.desc } +ent-AirlockExternalGlassShuttleSyndicateLocked = { ent-AirlockGlassShuttleSyndicate } + .suffix = Syndicate, Locked, Glass + .desc = { ent-AirlockGlassShuttleSyndicate.desc } +ent-AirlockExternalGlassShuttleNukeopLocked = { ent-AirlockGlassShuttleSyndicate } + .suffix = Nukeop, Locked, Glass + .desc = { ent-AirlockGlassShuttleSyndicate.desc } ent-AirlockExternalGlassShuttleEmergencyLocked = { ent-AirlockGlassShuttle } .suffix = External, Emergency, Glass, Docking, Locked .desc = { ent-AirlockGlassShuttle.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/shuttle.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/shuttle.ftl index bd147157287..27ea1c57700 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/shuttle.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/shuttle.ftl @@ -7,3 +7,9 @@ ent-AirlockGlassShuttle = external airlock ent-AirlockShuttleAssembly = external airlock assembly .desc = An incomplete structure necessary for connecting two space craft together. .suffix = Docking +ent-AirlockGlassShuttleSyndicate = external airlock + .desc = Necessary for connecting two space craft together. + .suffix = Glass, Docking +ent-AirlockShuttleSyndicate = external airlock + .desc = Necessary for connecting two space craft together. + .suffix = Docking diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/anomaly_sync.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/anomaly_sync.ftl new file mode 100644 index 00000000000..e36fa125305 --- /dev/null +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/anomaly_sync.ftl @@ -0,0 +1,2 @@ +ent-MachineAnomalySynchronizer = anomaly synchronizer + .desc = A sophisticated device that reads changes in anomalous waves, and converts them into energy signals. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/closets/lockers/lockers.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/closets/lockers/lockers.ftl index 29927595539..bc060fcd92d 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/closets/lockers/lockers.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/storage/closets/lockers/lockers.ftl @@ -59,3 +59,9 @@ ent-LockerSyndicatePersonal = armory closet ent-LockerBluespaceStation = bluespace locker .desc = Advanced locker technology. .suffix = once to station +ent-LockerClown = clown locker + .desc = { ent-LockerBaseSecure.desc } +ent-LockerMime = mime locker + .desc = { ent-LockerBaseSecure.desc } +ent-LockerRepresentative = representative locker + .desc = { ent-LockerBaseSecure.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/noticeboard.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/noticeboard.ftl new file mode 100644 index 00000000000..63823009e89 --- /dev/null +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/noticeboard.ftl @@ -0,0 +1,2 @@ +ent-NoticeBoard = notice board + .desc = Is there a job for a witcher? diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/grille.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/grille.ftl index 8ed70e2d5c2..3a515825e60 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/grille.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/grille.ftl @@ -2,3 +2,5 @@ ent-Grille = grille .desc = A flimsy framework of iron rods. ent-GrilleBroken = grille .desc = A flimsy framework of iron rods. It has seen better days. +ent-GrilleDiagonal = diagonal grille + .desc = { ent-Grille.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/plasma.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/plasma.ftl index 35691b98f53..4e17688f236 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/plasma.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/plasma.ftl @@ -2,3 +2,6 @@ ent-PlasmaWindow = plasma window .desc = { ent-Window.desc } ent-PlasmaWindowDirectional = directional plasma window .desc = Don't smudge up the glass down there. +ent-PlasmaWindowDiagonal = diagonal plasma window + .suffix = diagonal + .desc = { ent-PlasmaWindow.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/reinforced.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/reinforced.ftl index 4493c83499c..565824fb7e3 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/reinforced.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/reinforced.ftl @@ -4,3 +4,6 @@ ent-TintedWindow = tinted window .desc = { ent-ReinforcedWindow.desc } ent-WindowReinforcedDirectional = directional reinforced window .desc = Don't smudge up the glass down there. +ent-ReinforcedWindowDiagonal = reinforced window diagonal + .suffix = diagonal + .desc = { ent-ReinforcedWindow.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/rplasma.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/rplasma.ftl index 4111175791f..afb665750b9 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/rplasma.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/rplasma.ftl @@ -2,3 +2,6 @@ ent-ReinforcedPlasmaWindow = reinforced plasma window .desc = { ent-Window.desc } ent-PlasmaReinforcedWindowDirectional = directional reinforced plasma window .desc = Don't smudge up the glass down there. +ent-ReinforcedPlasmaWindowDiagonal = diagonal reinforced plasma window + .suffix = diagonal + .desc = { ent-ReinforcedPlasmaWindow.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/ruranium.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/ruranium.ftl index 2695cdac08e..90920b1157c 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/ruranium.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/ruranium.ftl @@ -1,2 +1,5 @@ ent-ReinforcedUraniumWindow = reinforced uranium window .desc = { ent-Window.desc } +ent-ReinforcedUraniumWindowDiagonal = diagonal reinforced uranium window + .suffix = diagonal + .desc = { ent-ReinforcedUraniumWindow.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/shuttle.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/shuttle.ftl index 7b680a83a5a..91abe5df0f0 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/shuttle.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/shuttle.ftl @@ -1,2 +1,5 @@ ent-ShuttleWindow = shuttle window .desc = { ent-Window.desc } +ent-ShuttleWindowDiagonal = diagonal shuttle window + .suffix = diagonal + .desc = { ent-ShuttleWindow.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/uranium.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/uranium.ftl index 9c7b5631cf7..db6079b5082 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/uranium.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/uranium.ftl @@ -1,2 +1,5 @@ ent-UraniumWindow = uranium window .desc = { ent-Window.desc } +ent-UraniumWindowDiagonal = diagonal uranium window + .suffix = diagonal + .desc = { ent-UraniumWindow.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/window.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/window.ftl index 9024751c262..7e12f844a9c 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/window.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/windows/window.ftl @@ -4,3 +4,6 @@ ent-WindowDirectional = directional window .desc = Don't smudge up the glass down there. ent-WindowFrostedDirectional = directional frosted window .desc = Don't smudge up the glass down there. +ent-WindowDiagonal = window diagonal + .suffix = diagonal + .desc = { ent-Window.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/objectives/traitor.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/objectives/traitor.ftl index a094fc09e46..207912dbf79 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/objectives/traitor.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/objectives/traitor.ftl @@ -8,6 +8,8 @@ ent-EscapeShuttleObjective = Escape to centcom alive and unrestrained. .desc = One of our undercover agents will debrief you when you arrive. Don't show up in cuffs. ent-DieObjective = Die a glorious death .desc = Die. + ent-HijackShuttleObjective = Hijack emergency shuttle + .desc = Leave on the shuttle free and clear of the loyal Nanotrasen crew on board. Use ANY methods available to you. Syndicate agents, Nanotrasen enemies, and handcuffed hostages may remain alive on the shuttle. Ignore assistance from anyone other than a support agent. ent-KillRandomPersonObjective = { ent-BaseKillObjective } .desc = Do it however you like, just make sure they don't make it to centcom. ent-KillRandomHeadObjective = { ent-BaseKillObjective } diff --git a/Resources/Locale/ru-RU/anomaly/anomaly.ftl b/Resources/Locale/ru-RU/anomaly/anomaly.ftl index 107c360e5b2..db4514bccc4 100644 --- a/Resources/Locale/ru-RU/anomaly/anomaly.ftl +++ b/Resources/Locale/ru-RU/anomaly/anomaly.ftl @@ -20,6 +20,8 @@ anomaly-scanner-particle-danger = - [color=crimson]Опасный тип:[/color anomaly-scanner-particle-unstable = - [color=plum]Нестабильный тип:[/color] { $type } anomaly-scanner-particle-containment = - [color=goldenrod]Сдерживающий тип:[/color] { $type } anomaly-scanner-pulse-timer = Время до следующего импульса: [color=gray]{ $time }[/color] +anomaly-sync-connected = Anomaly successfully attached +anomaly-sync-disconnected = The connection to the anomaly has been lost! anomaly-generator-ui-title = генератор аномалий anomaly-generator-fuel-display = Топливо: anomaly-generator-cooldown = Перезарядка: [color=gray]{ $time }[/color] diff --git a/Resources/Locale/ru-RU/clothing/components/toggleable-clothing-component.ftl b/Resources/Locale/ru-RU/clothing/components/toggleable-clothing-component.ftl index 560bfd0eb37..b0ba608d53b 100644 --- a/Resources/Locale/ru-RU/clothing/components/toggleable-clothing-component.ftl +++ b/Resources/Locale/ru-RU/clothing/components/toggleable-clothing-component.ftl @@ -1 +1,2 @@ +toggle-clothing-verb-text = Toggle { CAPITALIZE($entity) } toggleable-clothing-remove-first = Сперва снимите { $entity }. diff --git a/Resources/Locale/ru-RU/construction/conditions/min-solution.ftl b/Resources/Locale/ru-RU/construction/conditions/min-solution.ftl new file mode 100644 index 00000000000..93a6c0f5658 --- /dev/null +++ b/Resources/Locale/ru-RU/construction/conditions/min-solution.ftl @@ -0,0 +1,2 @@ +construction-examine-condition-min-solution = First, add { $quantity }u of { $reagent }. +construction-guide-condition-min-solution = Add { $quantity }u of { $reagent } diff --git a/Resources/Locale/ru-RU/construction/conditions/solution-empty.ftl b/Resources/Locale/ru-RU/construction/conditions/solution-empty.ftl new file mode 100644 index 00000000000..0fd577a0f5f --- /dev/null +++ b/Resources/Locale/ru-RU/construction/conditions/solution-empty.ftl @@ -0,0 +1,3 @@ +# SolutionEmpty +construction-examine-condition-solution-empty = First, empty the contents. +construction-guide-condition-solution-empty = Empty the contents. diff --git a/Resources/Locale/ru-RU/construction/construction-system.ftl b/Resources/Locale/ru-RU/construction/construction-system.ftl index 672fde4887a..43de1f47b6d 100644 --- a/Resources/Locale/ru-RU/construction/construction-system.ftl +++ b/Resources/Locale/ru-RU/construction/construction-system.ftl @@ -4,3 +4,4 @@ construction-system-construct-cannot-start-another-construction = Сейчас construction-system-construct-no-materials = У вас недостаточно материалов для постройки этого! construction-system-already-building = Вы уже строите это! construction-system-inside-container = Вы не можете строить, пока находитесь там! +construction-system-cannot-start = You cannot craft this! diff --git a/Resources/Locale/ru-RU/headset/headset-component.ftl b/Resources/Locale/ru-RU/headset/headset-component.ftl index 2d813ce04b5..237b1f5c40c 100644 --- a/Resources/Locale/ru-RU/headset/headset-component.ftl +++ b/Resources/Locale/ru-RU/headset/headset-component.ftl @@ -12,6 +12,7 @@ chat-radio-security = Безопасность chat-radio-service = Сервис chat-radio-supply = Снабжение chat-radio-syndicate = Синдикат +chat-radio-freelance = Freelance # not headset but whatever chat-radio-handheld = Портативный chat-radio-binary = Двоичный diff --git a/Resources/Locale/ru-RU/machine-linking/transmitter_ports.ftl b/Resources/Locale/ru-RU/machine-linking/transmitter_ports.ftl index 9c36ce1f7c0..fde86170e5c 100644 --- a/Resources/Locale/ru-RU/machine-linking/transmitter_ports.ftl +++ b/Resources/Locale/ru-RU/machine-linking/transmitter_ports.ftl @@ -30,3 +30,13 @@ signal-port-name-air-warning = Warning signal-port-description-air-warning = Этот порт задействуется с высоким уровенем сигнала, когда статус Warning, если статус другой, то с низким уровнем. signal-port-name-air-normal = Normal signal-port-description-air-normal = Этот порт задействуется с высоким уровенем сигнала, когда статус Normal, если статус другой, то с низким уровнем. +signal-port-name-decaying = Decaying +signal-port-description-decaying = This port is invoked when a bound anomaly starts to decay. +signal-port-name-stabilize = Stabilize +signal-port-description-stabilize = This port is invoked when a bound anomaly is normalized. +signal-port-name-growing = Growing +signal-port-description-growing = This port is invoked when a bound anomaly starts to grow. +signal-port-name-pulse = Pulse +signal-port-description-pulse = This port is invoked when a bound anomaly is pulsing. +signal-port-name-supercrit = Supercritical +signal-port-description-supercrit = This port is invoked when a bound anomaly explode after supercrit state. diff --git a/Resources/Locale/ru-RU/materials/materials.ftl b/Resources/Locale/ru-RU/materials/materials.ftl index c9c7ec75de2..50791ed4112 100644 --- a/Resources/Locale/ru-RU/materials/materials.ftl +++ b/Resources/Locale/ru-RU/materials/materials.ftl @@ -16,6 +16,7 @@ materials-durathread = дюраткань materials-plasma = плазма materials-plastic = пластик materials-wood = дерево +materials-paper = paper materials-uranium = уран materials-bananium = бананиум materials-meat = мясо diff --git a/Resources/Locale/ru-RU/prototypes/catalog/cargo/cargo-materials.ftl b/Resources/Locale/ru-RU/prototypes/catalog/cargo/cargo-materials.ftl index e3d8395d06f..4e7aade8548 100644 --- a/Resources/Locale/ru-RU/prototypes/catalog/cargo/cargo-materials.ftl +++ b/Resources/Locale/ru-RU/prototypes/catalog/cargo/cargo-materials.ftl @@ -12,6 +12,8 @@ ent-MaterialPlasma = { ent-CrateMaterialPlasma } .desc = { ent-CrateMaterialPlasma.desc } ent-CardboardMaterial = { ent-CrateMaterialCardboard } .desc = { ent-CrateMaterialCardboard.desc } +ent-PaperMaterial = { ent-CrateMaterialPaper } + .desc = { ent-CrateMaterialPaper.desc } ent-MaterialFuelTank = { ent-WeldingFuelTankFull } .desc = { ent-WeldingFuelTankFull.desc } ent-MaterialWaterTank = { ent-WaterTankFull } diff --git a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/materials-crates.ftl b/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/materials-crates.ftl index 314bf43defb..7a6cf5c6b8f 100644 --- a/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/materials-crates.ftl +++ b/Resources/Locale/ru-RU/prototypes/catalog/fills/crates/materials-crates.ftl @@ -14,3 +14,5 @@ ent-CrateMaterialPlasma = ящик твёрдой плазмы .desc = 90 единиц плазмы. ent-CrateMaterialCardboard = ящик картона .desc = 60 единиц картона. +ent-CrateMaterialPaper = Paper crate + .desc = 90 sheets of paper. diff --git a/Resources/Locale/ru-RU/reagents/generic.ftl b/Resources/Locale/ru-RU/reagents/generic.ftl index 95ed4bd3cd8..5570f7aaca9 100644 --- a/Resources/Locale/ru-RU/reagents/generic.ftl +++ b/Resources/Locale/ru-RU/reagents/generic.ftl @@ -7,3 +7,4 @@ generic-reagent-effect-tearing-up = Ваши глаза начинают сле generic-reagent-effect-nauseous = Вы чувствуете тошноту. generic-reagent-effect-parched = Вы чувствуете сухость в горле. generic-reagent-effect-thirsty = Вы испытываете жажду. +generic-reagent-effect-sick = You feel sick after consuming that... diff --git a/Resources/Locale/ru-RU/research/technologies.ftl b/Resources/Locale/ru-RU/research/technologies.ftl index fe4a8678ec2..d7ac4b7224c 100644 --- a/Resources/Locale/ru-RU/research/technologies.ftl +++ b/Resources/Locale/ru-RU/research/technologies.ftl @@ -18,6 +18,7 @@ research-technology-advanced-atmospherics = Продвинутые атмос-т research-technology-advanced-tools = Продвинутые инструменты research-technology-super-powercells = Супербатареи research-technology-bluespace-storage = Блюспейс-хранилище +research-technology-portable-fission = Portable Fission research-technology-chemistry = Химия research-technology-surgical-tools = Хирургические инструменты research-technology-biochemical-stasis = Биохимический стазис @@ -48,6 +49,7 @@ research-technology-advanced-parts = Продвинутые компоненты research-technology-grappling = Технология захвата research-technology-abnormal-artifact-manipulation = Абнормальное манипулирование артефактами research-technology-gravity-manipulation = Манипулирование гравитацией +research-technology-advanced-anomaly-research = Advanced Anomaly Research research-technology-mobile-anomaly-tech = Мобильные аномалии research-technology-rped = Быстрая замена компонентов research-technology-super-parts = Суперкомпоненты @@ -63,4 +65,5 @@ research-technology-advanced-cleaning = Продвинутая уборка research-technology-meat-manipulation = Манипулирование мясом research-technology-honk-mech = Мех Х.О.Н.К. research-technology-advanced-spray = Продвинутые спреи +research-technology-quantum-fiber-weaving = Quantum Fiber Weaving research-technology-bluespace-cargo-transport = Блюспейс-транспортировка грузов diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/materials.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/materials.ftl index 314bf43defb..f96b017f6a7 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/materials.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/materials.ftl @@ -14,3 +14,5 @@ ent-CrateMaterialPlasma = ящик твёрдой плазмы .desc = 90 единиц плазмы. ent-CrateMaterialCardboard = ящик картона .desc = 60 единиц картона. +ent-CrateMaterialPaper = { ent-CrateGenericSteel } + .desc = { ent-CrateGenericSteel.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/ears/headsets.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/ears/headsets.ftl index 24af1f7e59c..fa026ffb7e2 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/ears/headsets.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/ears/headsets.ftl @@ -34,3 +34,5 @@ ent-ClothingHeadsetBrigmedic = гарнитура бригмедика .desc = Гарнитура, которая помогает слушать предсмертные крики. ent-ClothingHeadsetGrey = гарнитура пассажира .desc = { ent-ClothingHeadset.desc } +ent-ClothingHeadsetFreelance = freelancer headset + .desc = This is used by a roaming group of freelancers diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/ears/headsets_alt.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/ears/headsets_alt.ftl index b2b080246f8..bcf919f06b6 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/ears/headsets_alt.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/ears/headsets_alt.ftl @@ -19,3 +19,5 @@ ent-ClothingHeadsetAltCargo = полноразмерная гарнитура К .desc = { ent-ClothingHeadsetAlt.desc } ent-ClothingHeadsetAltSyndicate = полноразмерная кроваво-красная гарнитура .desc = Модифицированный модульный интерком синдиката, надеваемый на голову, и содержащий ключ шифрования. Имеет 5 ячеек для ключей шифрования. +ent-ClothingHeadsetAltFreelancer = freelancer's over-ear headset + .desc = { ent-ClothingHeadsetAlt.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/eyes/hud.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/eyes/hud.ftl index 81010c4eeea..5adaf39daa5 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/eyes/hud.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/eyes/hud.ftl @@ -20,3 +20,5 @@ ent-ClothingEyesHudMultiversal = multiversal hud .desc = Filler ent-ClothingEyesHudOmni = omni hud .desc = Filler +ent-ClothingEyesHudSyndicate = syndicate visor + .desc = The syndicate's professional head-up display, designed for better detection of humanoids and their subsequent elimination. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/helmets.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/helmets.ftl index 642155eaf3a..93d75bede72 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/helmets.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/helmets.ftl @@ -41,3 +41,5 @@ ent-ClothingHeadHelmetLing = хитиновый шлем .desc = Раздувает тело генокрада во всепоглощающий массив хитиновый брони. Обеспечивает высокую защиту от физических повреждений, более низкую от других типов. Его вес замедляет движение генокрада, а его поддержание замедляет выработку химических веществ. ent-ClothingHeadHelmetBone = костяной шлем .desc = Круто выглядящий шлем, сделанный из черепов ваших врагов. +ent-ClothingHeadHelmetPodWars = ironclad II helmet + .desc = An ironclad II helmet, a relic of the pod wars. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/outerclothing/armor.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/outerclothing/armor.ftl index 0347db1856c..30a2aebdc7c 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/outerclothing/armor.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/outerclothing/armor.ftl @@ -29,3 +29,5 @@ ent-ClothingOuterArmorChangeling = хитиновый панцирь .desc = Раздувает тело генокрада во всепоглощающий массив хитиновый брони. Обеспечивает высокую защиту от физических повреждений, более низкую от других типов. Его вес замедляет движение генокрада, а его поддержание замедляет выработку химических веществ. ent-ClothingOuterArmorBone = костяной доспех .desc = Сидит на вас как вторая кожа. +ent-ClothingOuterArmorPodWars = ironclad II armor + .desc = A repurposed suit of ironclad II armor, a relic of the pod wars. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/shoes/misc.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/shoes/misc.ftl index 885f4f670b6..49d3bd303e2 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/shoes/misc.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/shoes/misc.ftl @@ -10,3 +10,7 @@ ent-ClothingShoesTourist = туристическая обувь .desc = Эти дешевые сандалии не выглядят очень удобными. ent-ClothingShoesDameDane = туфли якудзы .desc = В конце концов... +ent-ClothingShoesBootsSpeed = speed boots + .desc = High-tech boots woven with quantum fibers, able to convert electricity into pure speed! +ent-ActionToggleSpeedBoots = Toggle Speed Boots + .desc = Toggles the speed boots on and off. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/shoes/specific.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/shoes/specific.ftl index b9a0086ffad..74d8bf28e3b 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/shoes/specific.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/shoes/specific.ftl @@ -27,3 +27,5 @@ ent-ClothingShoesCluwne = клувеньские туфли .suffix = Неснимаемый ent-ClothingShoesClownLarge = большие клоунские туфли .desc = Когда вам нужно выделиться в комнате, полной клоунов! +ent-ClothingShoesSkates = roller skates + .desc = Get your skates on! diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/effects/chemistry_effects.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/effects/chemistry_effects.ftl index 097d3310f91..f0efdbd2d01 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/effects/chemistry_effects.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/effects/chemistry_effects.ftl @@ -1,7 +1,7 @@ ent-BaseFoam = { "" } .desc = { "" } ent-Smoke = дым - .desc = { ent-BaseFoam.desc } + .desc = { ent-BaseFoam.desc } ent-Foam = пена .desc = { ent-BaseFoam.desc } ent-MetalFoam = металлическая пена diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/mobs.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/mobs.ftl index 11236fb0f8c..0dde544af32 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/mobs.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/mobs.ftl @@ -104,3 +104,9 @@ ent-SpawnMobPenguin = спавнер пингвин .desc = { ent-MarkerBase.desc } ent-SpawnMobOreCrab = спавнер рудный краб .desc = { ent-MarkerBase.desc } +ent-SpawnMobLuminousPerson = luminous person spawner + .desc = { ent-MarkerBase.desc } +ent-SpawnMobLuminousObject = luminous object spawner + .desc = { ent-MarkerBase.desc } +ent-SpawnMobLuminousEntity = luminous entity spawner + .desc = { ent-MarkerBase.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/vehicles.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/vehicles.ftl index 0be6046f3c5..6d9dd8b59b9 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/vehicles.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/vehicles.ftl @@ -6,3 +6,7 @@ ent-SpawnVehicleATV = спавнер квадроцикл .desc = { ent-MarkerBase.desc } ent-SpawnVehicleMotobike = спавнер мотоцикл .desc = { ent-MarkerBase.desc } +ent-SpawnVehicleWheelchair = Wheelchair Spawner + .desc = { ent-MarkerBase.desc } +ent-SpawnVehicleWheelchairFolded = Wheelchair [Folded] Spawner + .desc = { ent-MarkerBase.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/npcs/living_light.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/npcs/living_light.ftl new file mode 100644 index 00000000000..0182023e47c --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/npcs/living_light.ftl @@ -0,0 +1,8 @@ +ent-MobLivingLight = luminous person + .desc = A blinding figure of pure light, seemingly intangible. +ent-MobLuminousPerson = { ent-MobLivingLight } + .desc = { ent-MobLivingLight.desc } +ent-MobLuminousObject = luminous object + .desc = A small glowing object that causes burns on the skin with its glow. +ent-MobLuminousEntity = luminous entity + .desc = A blinding translucent entity, the bright eye seems dangerous and scalding. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_cans.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_cans.ftl index cf93b1766f7..088cb3bfa87 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_cans.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_cans.ftl @@ -2,6 +2,9 @@ ent-DrinkCanBaseFull = { ent-BaseItem } .desc = { ent-BaseItem.desc } ent-DrinkColaCan = космическая кола .desc = Прохладительный напиток. +ent-DrinkColaCanEmpty = { ent-DrinkColaCan } + .suffix = empty + .desc = { ent-DrinkColaCan.desc } ent-DrinkIcedTeaCan = банка холодного чая .desc = Освежающая банка холодного чая. ent-DrinkLemonLimeCan = банка лимон-лайма diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/circuitboards/machine/production.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/circuitboards/machine/production.ftl index 9737be7000f..1278415484d 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/circuitboards/machine/production.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/circuitboards/machine/production.ftl @@ -26,6 +26,8 @@ ent-TraversalDistorterMachineCircuitboard = исказитель обхода ( .desc = Печатная плата для исказителя обхода. ent-AnomalyVesselCircuitboard = сосуд аномалии (машинная плата) .desc = Печатная плата для сосуда аномалии. +ent-AnomalySynchronizerCircuitboard = anomaly synchronizer machine board + .desc = A machine printed circuit board for an anomaly synchronizer. ent-APECircuitboard = М.А.К.А.К. (машинная плата) .desc = Печатная плата для М.А.К.А.К. ent-ThermomachineFreezerMachineCircuitBoard = морозильная термомашина (машинная плата) diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/encryption_keys.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/encryption_keys.ftl index d72377498e1..f71cda676bb 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/encryption_keys.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/encryption_keys.ftl @@ -28,3 +28,5 @@ ent-EncryptionKeySyndie = кроваво-красный ключ шифрова .desc = Ключ шифрования, используемый... секундочку... Кто владелец этого чипа? ent-EncryptionKeyBinary = двоичный ключ шифрования .desc = Ключ шифрования, используемый для преобразования двоичного кода, используемого роботами. +ent-EncryptionKeyFreelance = freelancer encryption key + .desc = An encryption key used by freelancers, who may or may not have an affiliation. It looks like its worn out. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/pda.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/pda.ftl index fb90e358954..cf0c00fd9ae 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/pda.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/pda.ftl @@ -105,3 +105,5 @@ ent-SeniorPhysicianPDA = КПК ведущего врача .desc = Слабо пахнет железом и химикатами. Имеет встроенный анализатор здоровья. ent-SeniorOfficerPDA = КПК инструктора СБ .desc = Побит, помят, поломан, практически не пригоден для использования. +ent-PiratePDA = pirate PDA + .desc = Yargh! diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/ice_crust.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/ice_crust.ftl new file mode 100644 index 00000000000..3a3a29759e5 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/ice_crust.ftl @@ -0,0 +1,2 @@ +ent-IceCrust = ice crust + .desc = It's cold and slippery. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/identification_cards.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/identification_cards.ftl index f7a62cf8ba6..ca3d405df2d 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/identification_cards.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/identification_cards.ftl @@ -87,6 +87,8 @@ ent-AtmosIDCard = ID карта атмосферного техника .desc = { ent-IDCardStandard.desc } ent-SyndicateIDCard = ID карта Синдиката .desc = { ent-IDCardStandard.desc } +ent-PirateIDCard = pirate ID card + .desc = { ent-IDCardStandard.desc } ent-PsychologistIDCard = ID карта психолога .desc = { ent-IDCardStandard.desc } ent-ReporterIDCard = ID карта репортёра diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/power/powercells.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/power/powercells.ftl index bd8cfb34c36..f275769a535 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/power/powercells.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/power/powercells.ftl @@ -29,5 +29,8 @@ ent-PowerCellHyperPrinted = { ent-PowerCellHyper } ent-PowerCellMicroreactor = маленькая микрореакторная батарея .desc = Стандартизированный перезаряжаемый микрореактор. Предназначен для устройств с низким энергопотреблением, он медленно заряжается сам по себе. .suffix = Полный +ent-PowerCellMicroreactorPrinted = { ent-PowerCellMicroreactor } + .suffix = Empty + .desc = { ent-PowerCellMicroreactor.desc } ent-PowerCellAntiqueProto = прототип древней батареи .desc = Маленький самозаряжающийся элемент питания. Использовался в старых разработках лазерного оружия. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/shields/shields.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/shields/shields.ftl index aa58e341489..bf6085e9666 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/shields/shields.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/shields/shields.ftl @@ -10,6 +10,8 @@ ent-WoodenBuckler = деревянный баклер .desc = Небольшой круглый деревянный самодельный щит. ent-MakeshiftShield = импровизированный щит .desc = Ветхий на вид щит, мало на что пригодный. +ent-WebShield = web shield + .desc = A stringy shield. It's weak, and doesn't seem to do well against heat. ent-ClockworkShield = часовой щит .desc = Ratvar oyrffrf lbh jvgu uvf cebgrpgvba. Ратвар благословляет вас Своей защитой. ent-MirrorShield = зеркальный щит diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/chemistry-bottles.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/chemistry-bottles.ftl index 1fefb128729..e5f44cf007b 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/chemistry-bottles.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/chemistry-bottles.ftl @@ -8,6 +8,8 @@ ent-ChemistryEmptyBottle03 = бутылочка .desc = { ent-BaseChemistryEmptyBottle.desc } ent-ChemistryEmptyBottle04 = бутылочка .desc = { ent-BaseChemistryEmptyBottle.desc } +ent-BaseChemistryBottleFilled = { ent-BaseChemistryEmptyBottle } + .desc = { ent-BaseChemistryEmptyBottle.desc } ent-EpinephrineChemistryBottle = бутылочка эпинефрина .desc = { ent-BaseChemistryEmptyBottle.desc } ent-RobustHarvestChemistryBottle = бутылочка robust harvest diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/xenoarchaeology/item_artifacts.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/xenoarchaeology/item_artifacts.ftl index e572c7d4d96..66a82ce2beb 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/xenoarchaeology/item_artifacts.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/xenoarchaeology/item_artifacts.ftl @@ -14,3 +14,6 @@ ent-VariedXenoArtifactItem = { ent-BaseXenoArtifactItem } .desc = { ent-BaseXenoArtifactItem.desc } ent-ArtifactFragment = фрагмент артефакта .desc = Отломанный кусок артефакта. Возможно, найдя ещё, вы сможете его починить. +ent-ArtifactFragment1 = { ent-ArtifactFragment } + .suffix = Single + .desc = { ent-ArtifactFragment.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/bombs/ied.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/bombs/ied.ftl new file mode 100644 index 00000000000..ef71e12795c --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/bombs/ied.ftl @@ -0,0 +1,8 @@ +ent-ImprovisedExplosive = improvised explosive device + .desc = A weak, improvised incendiary device. +ent-ImprovisedExplosiveEmpty = improvised explosive device + .desc = A weak, improvised incendiary device. This one has no fuel. + .suffix = empty +ent-ImprovisedExplosiveFuel = { ent-ImprovisedExplosiveEmpty } + .desc = A weak, improvised incendiary device. This one is missing wires. + .suffix = fuel diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/airlocks/access.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/airlocks/access.ftl index 181d8edd541..e317db696f2 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/airlocks/access.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/airlocks/access.ftl @@ -304,6 +304,12 @@ ent-AirlockExternalShuttleNukeopLocked = { ent-AirlockShuttle } ent-AirlockExternalGlassShuttleLocked = { ent-AirlockGlassShuttle } .suffix = Внешний, Стеклянный, Стыковочный, Закрыт .desc = { ent-AirlockGlassShuttle.desc } +ent-AirlockExternalGlassShuttleSyndicateLocked = { ent-AirlockGlassShuttleSyndicate } + .suffix = Syndicate, Locked, Glass + .desc = { ent-AirlockGlassShuttleSyndicate.desc } +ent-AirlockExternalGlassShuttleNukeopLocked = { ent-AirlockGlassShuttleSyndicate } + .suffix = Nukeop, Locked, Glass + .desc = { ent-AirlockGlassShuttleSyndicate.desc } ent-AirlockExternalGlassShuttleEmergencyLocked = { ent-AirlockGlassShuttle } .suffix = Внешний, ШаттлЭвак, Стеклянный, Стыковочный, Закрыт .desc = { ent-AirlockGlassShuttle.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/airlocks/shuttle.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/airlocks/shuttle.ftl index 5c691c963ad..22855cfbc4a 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/airlocks/shuttle.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/airlocks/shuttle.ftl @@ -7,3 +7,9 @@ ent-AirlockGlassShuttle = стыковочный шлюз ent-AirlockShuttleAssembly = каркас стыковочного шлюза .desc = Незавершенная конструкция, необходимая для соединения двух космических кораблей вместе. .suffix = Стыковочный +ent-AirlockGlassShuttleSyndicate = external airlock + .desc = Necessary for connecting two space craft together. + .suffix = Glass, Docking +ent-AirlockShuttleSyndicate = external airlock + .desc = Necessary for connecting two space craft together. + .suffix = Docking diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/anomaly_sync.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/anomaly_sync.ftl new file mode 100644 index 00000000000..e36fa125305 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/anomaly_sync.ftl @@ -0,0 +1,2 @@ +ent-MachineAnomalySynchronizer = anomaly synchronizer + .desc = A sophisticated device that reads changes in anomalous waves, and converts them into energy signals. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/storage/closets/lockers/lockers.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/storage/closets/lockers/lockers.ftl index 19f5b0e7410..2b683d2dab9 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/storage/closets/lockers/lockers.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/storage/closets/lockers/lockers.ftl @@ -59,3 +59,9 @@ ent-LockerSyndicatePersonal = оружейный шкаф ent-LockerBluespaceStation = блюспейс шкаф .desc = Передовая технология шкафчикостроения. .suffix = once to station +ent-LockerClown = clown locker + .desc = { ent-LockerBaseSecure.desc } +ent-LockerMime = mime locker + .desc = { ent-LockerBaseSecure.desc } +ent-LockerRepresentative = representative locker + .desc = { ent-LockerBaseSecure.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/wallmounts/noticeboard.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/wallmounts/noticeboard.ftl new file mode 100644 index 00000000000..63823009e89 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/wallmounts/noticeboard.ftl @@ -0,0 +1,2 @@ +ent-NoticeBoard = notice board + .desc = Is there a job for a witcher? diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/walls/grille.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/walls/grille.ftl index f73814a0679..725c82c0c56 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/walls/grille.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/walls/grille.ftl @@ -2,3 +2,5 @@ ent-Grille = решётка .desc = Хлипкий каркас из железных прутьев. ent-GrilleBroken = решётка .desc = Хлипкий каркас из железных прутьев. Он видел и лучшие дни. +ent-GrilleDiagonal = diagonal grille + .desc = { ent-Grille.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/windows/plasma.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/windows/plasma.ftl index b9b0887bed8..746fae58db4 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/windows/plasma.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/windows/plasma.ftl @@ -2,3 +2,6 @@ ent-PlasmaWindow = плазменное окно .desc = { ent-Window.desc } ent-PlasmaWindowDirectional = направленное плазменное окно .desc = Смотри не заляпай. +ent-PlasmaWindowDiagonal = diagonal plasma window + .suffix = diagonal + .desc = { ent-PlasmaWindow.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/windows/reinforced.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/windows/reinforced.ftl index 9b7689b5011..518c21b8e34 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/windows/reinforced.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/windows/reinforced.ftl @@ -4,3 +4,6 @@ ent-TintedWindow = тонированное окно .desc = { ent-ReinforcedWindow.desc } ent-WindowReinforcedDirectional = направленное армированное окно .desc = Смотри не заляпай. +ent-ReinforcedWindowDiagonal = reinforced window diagonal + .suffix = diagonal + .desc = { ent-ReinforcedWindow.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/windows/rplasma.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/windows/rplasma.ftl index d448de23009..c550b311a4a 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/windows/rplasma.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/windows/rplasma.ftl @@ -2,3 +2,6 @@ ent-ReinforcedPlasmaWindow = армированное плазменное ок .desc = { ent-Window.desc } ent-PlasmaReinforcedWindowDirectional = направленное армированное плазменное окно .desc = Смотри не заляпай. +ent-ReinforcedPlasmaWindowDiagonal = diagonal reinforced plasma window + .suffix = diagonal + .desc = { ent-ReinforcedPlasmaWindow.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/windows/ruranium.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/windows/ruranium.ftl index 82e9dc445da..7579cb8629f 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/windows/ruranium.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/windows/ruranium.ftl @@ -1,2 +1,5 @@ ent-ReinforcedUraniumWindow = армированное урановое окно .desc = { ent-Window.desc } +ent-ReinforcedUraniumWindowDiagonal = diagonal reinforced uranium window + .suffix = diagonal + .desc = { ent-ReinforcedUraniumWindow.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/windows/shuttle.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/windows/shuttle.ftl index 88baf3d329f..f62bd9bfb24 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/windows/shuttle.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/windows/shuttle.ftl @@ -1,2 +1,5 @@ ent-ShuttleWindow = окно шаттла .desc = { ent-Window.desc } +ent-ShuttleWindowDiagonal = diagonal shuttle window + .suffix = diagonal + .desc = { ent-ShuttleWindow.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/windows/uranium.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/windows/uranium.ftl index 7e1859905b3..e94c1504b1d 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/windows/uranium.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/windows/uranium.ftl @@ -1,2 +1,5 @@ ent-UraniumWindow = урановое окно .desc = { ent-Window.desc } +ent-UraniumWindowDiagonal = diagonal uranium window + .suffix = diagonal + .desc = { ent-UraniumWindow.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/windows/window.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/windows/window.ftl index f41395653f2..9b3e8379299 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/windows/window.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/windows/window.ftl @@ -4,3 +4,6 @@ ent-WindowDirectional = направленное окно .desc = Смотри не заляпай. ent-WindowFrostedDirectional = направленное матовое окно .desc = Смотри не заляпай. +ent-WindowDiagonal = window diagonal + .suffix = diagonal + .desc = { ent-Window.desc } diff --git a/Resources/Maps/Shuttles/pirate.yml b/Resources/Maps/Shuttles/pirate.yml index 3f174fed538..0c81765d18c 100644 --- a/Resources/Maps/Shuttles/pirate.yml +++ b/Resources/Maps/Shuttles/pirate.yml @@ -1,21 +1,25 @@ meta: - format: 5 + format: 6 postmapinit: false tilemap: 0: Space 12: FloorBar - 23: FloorDark - 59: FloorReinforced - 61: FloorShowroom - 69: FloorSteel - 79: FloorTechMaint - 92: FloorWood - 94: Lattice - 95: Plating + 27: FloorDark + 32: FloorDarkMono + 55: FloorHullReinforced + 62: FloorMetalDiamond + 72: FloorReinforced + 75: FloorShowroom + 84: FloorSteel + 89: FloorSteelDirty + 96: FloorTechMaint + 110: FloorWood + 112: Lattice + 113: Plating entities: - proto: "" entities: - - uid: 732 + - uid: 1 components: - type: MetaData - pos: 2.2710133,-2.4148211 @@ -24,19 +28,24 @@ entities: - chunks: -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAAAMAAAAXwAAAF8AAAAXAAAAFwAAABcAAAAXAAAAFwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABFAAAAXwAAAEUAAABfAAAAFwAAABcAAAAXAAAAFwAAABcAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAARQAAAF8AAABFAAAAXwAAABcAAAAXAAAAFwAAABcAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAEUAAABfAAAARQAAAF8AAAAXAAAAFwAAABcAAAAXAAAAFwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAARQAAAF8AAABfAAAAFwAAABcAAAAXAAAAFwAAABcAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABFAAAARQAAAEUAAABFAAAAXwAAAF8AAABfAAAAFwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXAAAAF8AAABfAAAAFwAAABcAAAAXAAAAFwAAABcAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABcAAAAXAAAAFwAAABcAAAAXwAAAF8AAABfAAAAFwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXAAAAFwAAABcAAAAXAAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAFwAAABcAAAAXAAAAFwAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAAXAAAAFwAAABcAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF8AAABfAAAAFwAAABcAAAAXAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAPgAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAGwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAGwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAIAAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAAwAAABfAAAAXwAAAE8AAABPAAAATwAAAE8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABcAAAAXAAAAFwAAAAMAAAAXwAAAF8AAABPAAAATwAAAE8AAABPAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXAAAAFwAAABcAAAADAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAFwAAABcAAAAXAAAAAwAAAAMAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABcAAAAXAAAAFwAAAAMAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAADAAAAAwAAAAMAAAADAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAADAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAADAAAAAAAcQAAAAAANwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAADAAAAAAAcQAAAAAAcQAAAAAANwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAADAAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAADAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + version: 6 0,0: ind: 0,0 - tiles: XwAAAF8AAABFAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABPAAAAXwAAAEUAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAATwAAAF8AAABFAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAE8AAABfAAAARQAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAARQAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAPQAAAD0AAAA9AAAAPQAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAD0AAAA9AAAAPQAAAD0AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAA9AAAAPQAAAD0AAAA9AAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABPAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAF8AAABfAAAATwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAABeAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXgAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: cQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAcQAAAAAAWQAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAGwAAAAAAGwAAAAAAWQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAcQAAAAAAPgAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAAAXwAAAE8AAABPAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAOwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAADsAAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 type: MapGrid - type: Broadphase - - angularDamping: 0.05 + - bodyStatus: InAir + angularDamping: 0.05 linearDamping: 0.05 fixedRotation: False bodyType: Dynamic @@ -54,15 +63,15 @@ entities: color: '#FFFFFFFF' id: Dirt decals: - 134: -4,-4 + 121: -4,-4 - node: color: '#FFFFFFFF' id: DirtHeavy decals: - 89: -9,-1 - 90: -8,-1 - 91: -7,-6 - 103: -9,-5 + 81: -9,-1 + 82: -8,-1 + 83: -7,-6 + 92: -9,-5 - node: cleanable: True color: '#FFFFFFFF' @@ -71,44 +80,55 @@ entities: 5: 1,1 6: 1,1 7: 2,1 - 8: 3,3 - 20: 3,9 - 21: 3,9 - 22: 3,8 - 23: 1,5 - 24: 2,4 - 25: 1,6 - 26: 0,6 - 27: -1,6 - 28: -1,7 - 29: -2,6 - 30: -1,6 - 31: -7,6 - 32: -6,6 - 33: -10,5 - 34: -9,8 - 35: -8,8 - 36: -5,9 - 37: -5,10 - 38: -3,9 - 39: -3,7 - 40: -3,7 - 41: -3,8 - 42: -2,9 - 43: -5,6 - 77: -1,0 - 78: -1,1 - 79: -5,0 + 16: 3,9 + 17: 3,9 + 18: 3,8 + 19: 1,5 + 20: 2,4 + 21: 1,6 + 22: 0,6 + 23: -1,6 + 24: -1,7 + 25: -2,6 + 26: -1,6 + 27: -7,6 + 28: -6,6 + 29: -10,5 + 30: -9,8 + 31: -8,8 + 32: -5,9 + 33: -5,10 + 34: -3,9 + 35: -3,7 + 36: -3,7 + 37: -3,8 + 38: -2,9 + 39: -5,6 + 69: -1,0 + 70: -1,1 + 71: -5,0 + 133: 6,7 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 136: 7,6 + 137: 7,5 + 138: 6,6 + 139: 7,7 + 140: 4,3 + 141: 5,1 - node: color: '#FFFFFFFF' id: DirtLight decals: - 92: -10,-1 - 93: -7,-3 - 94: -6,-3 - 101: 1,7 - 102: 3,6 - 105: -9,-3 + 84: -10,-1 + 85: -7,-3 + 86: -6,-3 + 90: 1,7 + 91: 3,6 + 94: -9,-3 - node: cleanable: True color: '#FFFFFFFF' @@ -117,48 +137,44 @@ entities: 2: -7,3 3: -7,3 4: -8,3 - 11: 1,2 - 12: 3,2 - 13: 3,2 - 14: 1,3 - 15: 2,1 - 16: -9,3 - 17: -9,2 - 18: 2,4 - 19: -8,4 - 61: -10,6 - 62: -9,6 - 63: -3,6 - 64: -4,7 - 65: -2,7 - 66: -3,4 - 67: 3,6 - 68: 4,5 - 69: 1,7 - 70: -3,10 - 71: -3,11 - 72: -2,9 - 73: 3,7 - 74: 4,6 - 75: 4,7 - 76: 3,6 - 122: -3,3 - 123: -2,2 - 124: -2,2 - 125: -2,2 - 126: -4,0 - 131: -9,1 - 132: -9,-1 - 133: -9,-1 + 9: 1,2 + 10: 1,3 + 11: 2,1 + 12: -9,3 + 13: -9,2 + 14: 2,4 + 15: -8,4 + 56: -10,6 + 57: -9,6 + 58: -3,6 + 59: -4,7 + 60: -2,7 + 61: -3,4 + 62: 3,6 + 63: 4,5 + 64: 1,7 + 65: -2,9 + 66: 4,6 + 67: 4,7 + 68: 3,6 + 111: -3,3 + 112: -2,2 + 113: -2,2 + 114: -2,2 + 115: -4,0 + 118: -9,1 + 119: -9,-1 + 120: -9,-1 + 134: 6,5 - node: color: '#FFFFFFFF' id: DirtMedium decals: - 85: -9,1 - 86: -8,1 - 87: -7,-2 - 88: -7,-1 - 104: -9,-4 + 77: -9,1 + 78: -8,1 + 79: -7,-2 + 80: -7,-1 + 93: -9,-4 - node: cleanable: True color: '#FFFFFFFF' @@ -166,82 +182,116 @@ entities: decals: 0: -7,2 1: -9,3 - 9: 3,1 - 10: 2,2 - 44: -4,6 - 45: -5,7 - 46: -2,7 - 47: 2,5 - 48: 3,5 - 49: 3,7 - 50: 2,3 - 51: -9,5 - 52: -8,4 - 53: -8,5 - 54: -7,5 - 55: -7,8 - 56: -8,6 - 57: -8,7 - 58: -4,9 - 59: -3,9 - 60: -2,10 - 80: -5,0 - 81: -2,0 - 82: -3,0 - 83: -1,2 - 84: -1,2 - 127: -3,4 - 128: 2,6 - 129: 3,1 - 130: 3,1 + 8: 2,2 + 40: -4,6 + 41: -5,7 + 42: -2,7 + 43: 2,5 + 44: 3,5 + 45: 2,3 + 46: -9,5 + 47: -8,4 + 48: -8,5 + 49: -7,5 + 50: -7,8 + 51: -8,6 + 52: -8,7 + 53: -4,9 + 54: -3,9 + 55: -2,10 + 72: -5,0 + 73: -2,0 + 74: -3,0 + 75: -1,2 + 76: -1,2 + 116: -3,4 + 117: 2,6 + 135: 6,6 + - node: + color: '#FFFFFF0C' + id: MiniTileOverlay + decals: + 122: -3,10 + 123: -3,9 + 124: -3,7 + 125: -3,6 + 126: -4,6 + 127: -5,6 + 128: -2,6 + 129: -1,6 + 130: -4,10 + 131: -5,10 + - node: + cleanable: True + color: '#FF7F8206' + id: MonoOverlay + decals: + 150: -3,12 + 151: -4,11 + 152: -2,11 + - node: + color: '#FFFFFF0C' + id: OffsetCheckerBOverlay + decals: + 132: 3,7 - node: color: '#FFFFFFFF' id: QuarterTileOverlayGreyscale decals: - 110: -4,3 - 111: -2,2 - 112: -3,2 + 99: -4,3 + 100: -2,2 + 101: -3,2 - node: color: '#FFFFFFFF' id: QuarterTileOverlayGreyscale180 decals: - 108: -4,3 - 109: -3,3 - 113: -4,2 - 114: -3,2 - 119: -2,1 + 97: -4,3 + 98: -3,3 + 102: -4,2 + 103: -3,2 + 108: -2,1 - node: color: '#FFFFFFFF' id: QuarterTileOverlayGreyscale270 decals: - 106: -2,3 - 107: -3,3 - 115: -2,2 - 116: -3,2 - 120: -4,1 + 95: -2,3 + 96: -3,3 + 104: -2,2 + 105: -3,2 + 109: -4,1 - node: color: '#FFFFFFFF' id: QuarterTileOverlayGreyscale90 decals: - 117: -2,3 - 118: -3,1 - 121: -4,1 + 106: -2,3 + 107: -3,1 + 110: -4,1 - node: - angle: -1.5707963267948966 rad + cleanable: True color: '#FFFFFFFF' - id: WarningLine + id: WarnLineE + decals: + 142: 5,3 + 143: 5,2 + 144: 5,1 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WarnLineW decals: - 95: -9,1 - 96: -9,2 - 97: -9,3 + 145: -5,10 + 146: -4,10 + 147: -3,10 + 148: -2,10 + 149: -1,10 - node: - angle: 1.5707963267948966 rad + angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: WarningLine decals: - 98: 3,1 - 99: 3,2 - 100: 3,3 + 87: -9,1 + 88: -9,2 + 89: -9,3 type: DecalGrid - version: 2 data: @@ -263,7 +313,7 @@ entities: -1,2: 0: 65535 -1,3: - 0: 52991 + 0: 53247 0,-3: 0: 65520 0,-2: @@ -276,6 +326,7 @@ entities: 0: 13107 1,-1: 0: 30583 + 1: 34944 0,1: 0: 65535 0,2: @@ -288,10 +339,13 @@ entities: 0: 4369 1,0: 0: 30583 + 1: 34952 1,1: 0: 30583 + 1: 34952 1,2: 0: 4919 + 1: 8 0,4: 0: 127 -1,4: @@ -320,6 +374,12 @@ entities: 0: 65531 -3,3: 0: 14 + 2,0: + 1: 4369 + 2,1: + 1: 4369 + 2,2: + 1: 1 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -336,6 +396,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 type: GridAtmosphere - type: OccluderTree @@ -346,195 +421,216 @@ entities: - type: GasTileOverlay - type: SpreaderGrid - type: GridPathfinding -- proto: AirlockCommand +- proto: AirlockExternalGlassShuttleSyndicateLocked entities: - - uid: 649 + - uid: 2 components: - - rot: -1.5707963267948966 rad - pos: -7.5,7.5 - parent: 732 + - rot: 3.141592653589793 rad + pos: 3.5,15.5 + parent: 1 type: Transform -- proto: AirlockCommandGlass +- proto: AirlockExternalGlassSyndicateLocked entities: - - uid: 481 + - uid: 3 components: - - pos: -2.5,8.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: 3.5,8.5 + parent: 1 type: Transform - - uid: 483 + - uid: 4 components: - - rot: 3.141592653589793 rad - pos: -5.5,10.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: -9.5,2.5 + parent: 1 type: Transform -- proto: AirlockEngineering - entities: - - uid: 101 + - uid: 5 components: - - pos: 1.5,8.5 - parent: 732 + - pos: 6.5,2.5 + parent: 1 type: Transform - - uid: 479 +- proto: AirlockExternalShuttleSyndicateLocked + entities: + - uid: 6 components: - - pos: -5.5,-2.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: -11.5,2.5 + parent: 1 type: Transform - - uid: 480 + - uid: 7 components: - - pos: 2.5,0.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 8.5,2.5 + parent: 1 type: Transform -- proto: AirlockExternalGlass +- proto: AirlockSyndicateGlassLocked entities: - - uid: 3 + - uid: 8 components: - - pos: 4.5,2.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: -7.5,0.5 + parent: 1 type: Transform - - uid: 19 + - uid: 9 components: - - pos: -9.5,2.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: -2.5,8.5 + parent: 1 type: Transform - - uid: 584 + - uid: 10 components: - - rot: 3.141592653589793 rad - pos: 3.5,8.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: 0.5,6.5 + parent: 1 type: Transform -- proto: AirlockGlass - entities: - - uid: 484 + - uid: 11 components: - - pos: -7.5,0.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: -7.5,4.5 + parent: 1 type: Transform - - uid: 487 + - uid: 12 components: - - pos: -7.5,4.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: 2.5,4.5 + parent: 1 type: Transform - - uid: 669 + - uid: 13 components: - - pos: -5.5,6.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: -5.5,6.5 + parent: 1 type: Transform -- proto: AirlockGlassShuttle - entities: - - uid: 130 + - uid: 14 components: - - rot: 3.141592653589793 rad - pos: 3.5,15.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 5.5,6.5 + parent: 1 type: Transform -- proto: AirlockMedicalGlass +- proto: AirlockSyndicateLocked entities: - - uid: 485 + - uid: 15 components: - - pos: 0.5,6.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 type: Transform - - uid: 486 + - uid: 16 components: - - pos: 2.5,4.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: 1.5,8.5 + parent: 1 type: Transform -- proto: AirlockSecurity - entities: - - uid: 482 + - uid: 17 components: - rot: -1.5707963267948966 rad pos: -2.5,5.5 - parent: 732 + parent: 1 type: Transform -- proto: AirlockShuttle - entities: - - uid: 39 + - uid: 18 components: - rot: -1.5707963267948966 rad - pos: -11.5,2.5 - parent: 732 + pos: -5.5,10.5 + parent: 1 type: Transform - - uid: 77 + - uid: 19 components: - - rot: 1.5707963267948966 rad - pos: 6.5,2.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: -7.5,7.5 + parent: 1 + type: Transform + - uid: 20 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 1 type: Transform - proto: APCBasic entities: - - uid: 261 + - uid: 21 components: - pos: -0.5,5.5 - parent: 732 + parent: 1 type: Transform - - uid: 262 + - uid: 22 components: - pos: -9.5,0.5 - parent: 732 + parent: 1 type: Transform - - uid: 263 + - uid: 23 components: - pos: 4.5,8.5 - parent: 732 + parent: 1 type: Transform - - uid: 331 + - uid: 24 components: - pos: 0.5,-0.5 - parent: 732 + parent: 1 type: Transform - proto: AppraisalTool entities: - - uid: 621 + - uid: 25 components: - pos: -7.2760534,-3.5222044 - parent: 732 + parent: 1 type: Transform - - uid: 710 + - uid: 26 components: - pos: -0.67882204,3.741016 - parent: 732 + parent: 1 type: Transform - proto: AtmosDeviceFanTiny entities: - - uid: 147 + - uid: 27 components: - rot: 3.141592653589793 rad pos: 3.5,15.5 - parent: 732 + parent: 1 type: Transform - - uid: 629 + - uid: 28 components: - - pos: 6.5,2.5 - parent: 732 + - pos: -11.5,2.5 + parent: 1 type: Transform - - uid: 655 + - uid: 772 components: - - pos: -11.5,2.5 - parent: 732 + - pos: 8.5,2.5 + parent: 1 type: Transform - proto: Bed entities: - - uid: 637 + - uid: 29 components: - pos: -9.5,9.5 - parent: 732 + parent: 1 + type: Transform + - uid: 30 + components: + - pos: 7.5,5.5 + parent: 1 type: Transform - proto: BedsheetBlack entities: - - uid: 654 + - uid: 31 components: - rot: -1.5707963267948966 rad pos: -9.5,9.5 - parent: 732 + parent: 1 + type: Transform +- proto: BedsheetOrange + entities: + - uid: 32 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,5.5 + parent: 1 type: Transform - proto: BoozeDispenser entities: - - uid: 478 + - uid: 33 components: - rot: 1.5707963267948966 rad pos: -9.5,-3.5 - parent: 732 + parent: 1 type: Transform - containers: ReagentDispenser-beaker: !type:ContainerSlot @@ -556,1154 +652,1026 @@ entities: type: ContainerContainer - proto: BoxLethalshot entities: - - uid: 539 + - uid: 34 components: - pos: -3.588971,4.6360464 - parent: 732 + parent: 1 type: Transform - proto: CableApcExtension entities: - - uid: 108 + - uid: 35 + components: + - pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 36 components: - pos: -0.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 339 + - uid: 37 components: - pos: -0.5,5.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 340 + - uid: 38 components: - pos: -0.5,4.5 - parent: 732 + parent: 1 type: Transform - - uid: 341 + - uid: 39 components: - pos: -1.5,4.5 - parent: 732 + parent: 1 type: Transform - - uid: 342 + - uid: 40 components: - pos: -2.5,4.5 - parent: 732 + parent: 1 type: Transform - - uid: 343 + - uid: 41 components: - pos: -2.5,3.5 - parent: 732 + parent: 1 type: Transform - - uid: 344 + - uid: 42 components: - pos: -2.5,2.5 - parent: 732 + parent: 1 type: Transform - - uid: 345 + - uid: 43 components: - pos: -2.5,1.5 - parent: 732 + parent: 1 type: Transform - - uid: 346 + - uid: 44 components: - pos: -2.5,0.5 - parent: 732 + parent: 1 type: Transform - - uid: 347 + - uid: 45 components: - pos: -3.5,2.5 - parent: 732 + parent: 1 type: Transform - - uid: 348 + - uid: 46 components: - pos: -1.5,2.5 - parent: 732 + parent: 1 type: Transform - - uid: 349 + - uid: 47 components: - pos: -4.5,2.5 - parent: 732 + parent: 1 type: Transform - - uid: 350 + - uid: 48 components: - pos: -0.5,2.5 - parent: 732 + parent: 1 type: Transform - - uid: 351 + - uid: 49 components: - pos: 4.5,8.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 352 + - uid: 50 components: - pos: 4.5,7.5 - parent: 732 + parent: 1 type: Transform - - uid: 353 + - uid: 51 components: - pos: 4.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 354 + - uid: 52 components: - pos: 3.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 355 + - uid: 53 components: - pos: 3.5,8.5 - parent: 732 + parent: 1 type: Transform - - uid: 356 + - uid: 54 components: - pos: 3.5,9.5 - parent: 732 + parent: 1 type: Transform - - uid: 357 + - uid: 55 components: - pos: 3.5,10.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 358 + - uid: 56 components: - pos: 3.5,11.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 359 + - uid: 57 components: - pos: 3.5,12.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 360 + - uid: 58 components: - pos: 3.5,13.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 362 + - uid: 59 components: - pos: 2.5,5.5 - parent: 732 + parent: 1 type: Transform - - uid: 363 + - uid: 60 components: - pos: 2.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 364 + - uid: 61 components: - pos: 2.5,4.5 - parent: 732 + parent: 1 type: Transform - - uid: 365 + - uid: 62 components: - pos: 2.5,3.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 366 + - uid: 63 components: - pos: 2.5,2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 367 + - uid: 64 components: - pos: 3.5,2.5 - parent: 732 + parent: 1 type: Transform - - uid: 368 + - uid: 65 components: - pos: 5.5,2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 369 + - uid: 66 components: - pos: 4.5,2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 370 + - uid: 67 components: - pos: 2.5,1.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 371 + - uid: 68 components: - pos: -1.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 372 + - uid: 69 components: - pos: -2.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 373 + - uid: 70 components: - pos: -3.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 374 + - uid: 71 components: - pos: -4.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 375 + - uid: 72 components: - pos: -2.5,7.5 - parent: 732 + parent: 1 type: Transform - - uid: 376 + - uid: 73 components: - pos: -2.5,8.5 - parent: 732 + parent: 1 type: Transform - - uid: 377 + - uid: 74 components: - pos: -2.5,9.5 - parent: 732 + parent: 1 type: Transform - - uid: 378 + - uid: 75 components: - pos: -2.5,10.5 - parent: 732 + parent: 1 type: Transform - - uid: 379 + - uid: 76 components: - pos: -2.5,11.5 - parent: 732 + parent: 1 type: Transform - - uid: 380 + - uid: 77 components: - pos: -3.5,9.5 - parent: 732 + parent: 1 type: Transform - - uid: 381 + - uid: 78 components: - pos: -4.5,9.5 - parent: 732 + parent: 1 type: Transform - - uid: 382 + - uid: 79 components: - pos: -1.5,9.5 - parent: 732 + parent: 1 type: Transform - - uid: 383 + - uid: 80 components: - pos: -0.5,9.5 - parent: 732 + parent: 1 type: Transform - - uid: 384 + - uid: 81 components: - pos: 0.5,-0.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 385 + - uid: 82 components: - pos: 0.5,-1.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 386 + - uid: 83 components: - pos: 0.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 387 + - uid: 84 components: - pos: 1.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 388 + - uid: 85 components: - pos: 2.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 389 + - uid: 86 components: - pos: 2.5,-1.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 390 + - uid: 87 components: - pos: 2.5,-0.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 391 + - uid: 88 components: - pos: -0.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 392 + - uid: 89 components: - pos: -1.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 393 + - uid: 90 components: - pos: -2.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 394 + - uid: 91 components: - pos: -3.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 395 + - uid: 92 components: - pos: -4.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 396 + - uid: 93 components: - pos: 0.5,-3.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 397 + - uid: 94 components: - pos: -9.5,0.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 398 + - uid: 95 components: - pos: 0.5,-4.5 - parent: 732 + parent: 1 type: Transform - - uid: 399 + - uid: 96 components: - pos: 0.5,-5.5 - parent: 732 + parent: 1 type: Transform - - uid: 400 + - uid: 97 components: - pos: -0.5,-5.5 - parent: 732 + parent: 1 type: Transform - - uid: 401 + - uid: 98 components: - pos: -1.5,-5.5 - parent: 732 + parent: 1 type: Transform - - uid: 402 + - uid: 99 components: - pos: -2.5,-5.5 - parent: 732 + parent: 1 type: Transform - - uid: 403 + - uid: 100 components: - pos: -3.5,-5.5 - parent: 732 + parent: 1 type: Transform - - uid: 404 + - uid: 101 components: - pos: -4.5,-5.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 405 + - uid: 102 components: - pos: 1.5,-5.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 406 + - uid: 103 components: - pos: -9.5,-0.5 - parent: 732 + parent: 1 type: Transform - - uid: 407 + - uid: 104 components: - pos: -8.5,-0.5 - parent: 732 + parent: 1 type: Transform - - uid: 408 + - uid: 105 components: - pos: -7.5,-0.5 - parent: 732 + parent: 1 type: Transform - - uid: 409 + - uid: 106 components: - pos: -7.5,-1.5 - parent: 732 + parent: 1 type: Transform - - uid: 410 + - uid: 107 components: - pos: -7.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 411 + - uid: 108 components: - pos: -7.5,-3.5 - parent: 732 + parent: 1 type: Transform - - uid: 412 + - uid: 109 components: - pos: -7.5,-4.5 - parent: 732 + parent: 1 type: Transform - - uid: 413 + - uid: 110 components: - pos: -6.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 414 + - uid: 111 components: - pos: -7.5,0.5 - parent: 732 + parent: 1 type: Transform - - uid: 415 + - uid: 112 components: - pos: -7.5,1.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 416 + - uid: 113 components: - pos: -7.5,2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 417 + - uid: 114 components: - pos: -7.5,3.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 418 + - uid: 115 components: - pos: -8.5,2.5 - parent: 732 + parent: 1 type: Transform - - uid: 419 + - uid: 116 components: - pos: -9.5,2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 420 + - uid: 117 components: - pos: -10.5,2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 421 + - uid: 118 components: - pos: -7.5,4.5 - parent: 732 + parent: 1 type: Transform - - uid: 422 + - uid: 119 components: - pos: -7.5,5.5 - parent: 732 + parent: 1 type: Transform - - uid: 423 + - uid: 120 components: - pos: -7.5,6.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 424 + - uid: 121 components: - pos: -6.5,6.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 425 + - uid: 122 components: - pos: -7.5,7.5 - parent: 732 + parent: 1 type: Transform - - uid: 426 + - uid: 123 components: - pos: -7.5,8.5 - parent: 732 + parent: 1 type: Transform - - uid: 427 + - uid: 124 components: - pos: -8.5,5.5 - parent: 732 + parent: 1 type: Transform - - uid: 428 + - uid: 125 components: - pos: -9.5,5.5 - parent: 732 + parent: 1 type: Transform - - uid: 429 + - uid: 126 components: - pos: 1.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 430 + - uid: 127 components: - pos: 1.5,7.5 - parent: 732 + parent: 1 type: Transform - - uid: 431 + - uid: 128 components: - pos: 1.5,8.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 432 + - uid: 129 components: - pos: 4.5,5.5 - parent: 732 + parent: 1 type: Transform - - uid: 433 + - uid: 130 components: - pos: 5.5,5.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 434 + - uid: 131 components: - pos: -7.5,9.5 - parent: 732 + parent: 1 type: Transform - - uid: 435 + - uid: 132 components: - pos: -10.5,5.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 436 + - uid: 133 components: - pos: -10.5,-0.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 437 + - uid: 134 components: - pos: -7.5,-5.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 438 + - uid: 135 components: - pos: -8.5,-5.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 439 + - uid: 136 components: - pos: -9.5,-5.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 440 + - uid: 137 components: - pos: 2.5,-5.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 441 + - uid: 138 components: - pos: 3.5,-5.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 442 + - uid: 139 components: - pos: 4.5,-5.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 443 + - uid: 140 components: - pos: 3.5,-0.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 444 + - uid: 141 components: - pos: 4.5,-0.5 - parent: 732 + parent: 1 type: Transform - - uid: 445 + - uid: 142 components: - pos: 5.5,-0.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 541 + - uid: 143 components: - pos: -2.5,-3.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 551 + - uid: 144 components: - pos: -8.5,9.5 - parent: 732 + parent: 1 type: Transform - - uid: 553 + - uid: 145 components: - pos: -2.5,-4.5 - parent: 732 + parent: 1 type: Transform - - uid: 554 + - uid: 146 components: - pos: -5.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 555 + - uid: 147 components: - pos: -2.5,12.5 - parent: 732 + parent: 1 type: Transform - - uid: 563 + - uid: 148 components: - pos: -2.5,-5.5 - parent: 732 + parent: 1 type: Transform - - uid: 564 + - uid: 149 components: - pos: -2.5,-6.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 631 + - uid: 150 components: - pos: -1.5,-6.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 632 + - uid: 151 components: - pos: -2.5,-6.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 633 + - uid: 152 components: - pos: -3.5,-6.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 636 + - uid: 153 components: - pos: -7.5,10.5 - parent: 732 + parent: 1 type: Transform - - uid: 640 + - uid: 154 components: - pos: -9.5,9.5 - parent: 732 + parent: 1 type: Transform - - uid: 641 + - uid: 155 components: - pos: -6.5,9.5 - parent: 732 + parent: 1 type: Transform - - uid: 714 + - uid: 156 components: - pos: 3.5,14.5 - parent: 732 + parent: 1 + type: Transform + - uid: 157 + components: + - pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 158 + components: + - pos: 7.5,2.5 + parent: 1 + type: Transform + - uid: 159 + components: + - pos: 5.5,6.5 + parent: 1 + type: Transform + - uid: 160 + components: + - pos: 6.5,6.5 + parent: 1 + type: Transform + - uid: 161 + components: + - pos: 7.5,6.5 + parent: 1 + type: Transform + - uid: 162 + components: + - pos: 5.5,7.5 + parent: 1 + type: Transform + - uid: 163 + components: + - pos: 5.5,5.5 + parent: 1 + type: Transform + - uid: 164 + components: + - pos: 8.5,6.5 + parent: 1 + type: Transform +- proto: Cablecuffs + entities: + - uid: 165 + components: + - pos: 1.5358834,5.585895 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - proto: CableHV entities: - - uid: 230 + - uid: 166 components: - pos: 1.5,7.5 - parent: 732 + parent: 1 type: Transform - - uid: 269 + - uid: 167 components: - pos: -2.5,-1.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 270 + - uid: 168 components: - pos: -1.5,-1.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 271 + - uid: 169 components: - pos: -0.5,-1.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 272 + - uid: 170 components: - pos: 0.5,-1.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 273 + - uid: 171 components: - pos: 1.5,-1.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 274 + - uid: 172 components: - pos: 1.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 275 + - uid: 173 components: - pos: 2.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 276 + - uid: 174 components: - pos: 3.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 279 + - uid: 175 components: - pos: -3.5,-1.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 280 + - uid: 176 components: - pos: -4.5,-1.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 281 + - uid: 177 components: - pos: -4.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 282 + - uid: 178 components: - pos: -4.5,-3.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 283 + - uid: 179 components: - pos: -4.5,-4.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 284 + - uid: 180 components: - pos: -4.5,-5.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 285 + - uid: 181 components: - pos: -5.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 286 + - uid: 182 components: - pos: -6.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 287 + - uid: 183 components: - pos: -7.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 288 + - uid: 184 components: - pos: -7.5,-1.5 - parent: 732 + parent: 1 type: Transform - - uid: 289 + - uid: 185 components: - pos: -7.5,-0.5 - parent: 732 + parent: 1 type: Transform - - uid: 290 + - uid: 186 components: - pos: -7.5,0.5 - parent: 732 + parent: 1 type: Transform - - uid: 291 + - uid: 187 components: - pos: -7.5,1.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 292 + - uid: 188 components: - pos: -7.5,2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 293 + - uid: 189 components: - pos: -7.5,3.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 294 + - uid: 190 components: - pos: -7.5,4.5 - parent: 732 + parent: 1 type: Transform - - uid: 295 + - uid: 191 components: - pos: -7.5,5.5 - parent: 732 + parent: 1 type: Transform - - uid: 296 + - uid: 192 components: - pos: -7.5,6.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 297 + - uid: 193 components: - pos: -3.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 298 + - uid: 194 components: - pos: -2.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 313 + - uid: 195 components: - pos: 1.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 315 + - uid: 196 components: - pos: 0.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 316 + - uid: 197 components: - pos: 1.5,8.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 318 + - uid: 198 components: - pos: -0.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 326 + - uid: 199 components: - pos: -1.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 488 + - uid: 200 components: - pos: 1.5,9.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 582 + - uid: 201 components: - pos: -4.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 585 + - uid: 202 components: - pos: -5.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 586 + - uid: 203 components: - pos: -6.5,6.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - proto: CableMV entities: - - uid: 300 + - uid: 204 components: - pos: -4.5,-5.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 301 + - uid: 205 components: - pos: -4.5,-4.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 302 + - uid: 206 components: - pos: -4.5,-3.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 303 + - uid: 207 components: - pos: -4.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 304 + - uid: 208 components: - pos: -5.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 305 + - uid: 209 components: - pos: -6.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 306 + - uid: 210 components: - pos: -7.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 307 + - uid: 211 components: - pos: -8.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 308 + - uid: 212 components: - pos: -9.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 309 + - uid: 213 components: - pos: -9.5,-1.5 - parent: 732 + parent: 1 type: Transform - - uid: 310 + - uid: 214 components: - pos: -9.5,-0.5 - parent: 732 + parent: 1 type: Transform - - uid: 311 + - uid: 215 components: - pos: -9.5,0.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 314 + - uid: 216 components: - pos: -8.5,6.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 319 + - uid: 217 components: - pos: 1.5,9.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 320 + - uid: 218 components: - pos: 1.5,8.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 321 + - uid: 219 components: - pos: 1.5,7.5 - parent: 732 + parent: 1 type: Transform - - uid: 322 + - uid: 220 components: - pos: -0.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 323 + - uid: 221 components: - pos: -0.5,5.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 324 + - uid: 222 components: - pos: 0.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 325 + - uid: 223 components: - pos: 1.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 327 + - uid: 224 components: - pos: 2.5,7.5 - parent: 732 + parent: 1 type: Transform - - uid: 328 + - uid: 225 components: - pos: 3.5,7.5 - parent: 732 + parent: 1 type: Transform - - uid: 329 + - uid: 226 components: - pos: 4.5,7.5 - parent: 732 + parent: 1 type: Transform - - uid: 330 + - uid: 227 components: - pos: 4.5,8.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 332 + - uid: 228 components: - pos: -3.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 333 + - uid: 229 components: - pos: -2.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 334 + - uid: 230 components: - pos: -1.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 335 + - uid: 231 components: - pos: -0.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 336 + - uid: 232 components: - pos: 0.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 337 + - uid: 233 components: - pos: 0.5,-1.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 338 + - uid: 234 components: - pos: 0.5,-0.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - proto: CableTerminal entities: - - uid: 268 + - uid: 235 components: - rot: -1.5707963267948966 rad pos: -2.5,-1.5 - parent: 732 + parent: 1 type: Transform - canCollide: False type: Physics @@ -1711,1907 +1679,1959 @@ entities: type: Fixtures - proto: CarpetBlack entities: - - uid: 526 + - uid: 236 components: - pos: -7.5,10.5 - parent: 732 + parent: 1 type: Transform - - uid: 527 + - uid: 237 components: - pos: -7.5,8.5 - parent: 732 + parent: 1 type: Transform - - uid: 528 + - uid: 238 components: - pos: -8.5,9.5 - parent: 732 + parent: 1 type: Transform - - uid: 530 + - uid: 239 components: - pos: -7.5,9.5 - parent: 732 + parent: 1 type: Transform - - uid: 531 + - uid: 240 components: - pos: -8.5,8.5 - parent: 732 + parent: 1 type: Transform - - uid: 532 + - uid: 241 components: - pos: -8.5,10.5 - parent: 732 + parent: 1 type: Transform - - uid: 612 + - uid: 242 components: - pos: -9.5,9.5 - parent: 732 + parent: 1 type: Transform - - uid: 617 + - uid: 243 components: - pos: -9.5,8.5 - parent: 732 + parent: 1 type: Transform - - uid: 638 + - uid: 244 components: - pos: -9.5,10.5 - parent: 732 + parent: 1 type: Transform - proto: Catwalk entities: - - uid: 33 + - uid: 245 components: - rot: 3.141592653589793 rad pos: 3.5,10.5 - parent: 732 + parent: 1 type: Transform - - uid: 86 + - uid: 246 components: - pos: 2.5,-1.5 - parent: 732 + parent: 1 type: Transform - - uid: 92 + - uid: 247 components: - pos: 2.5,-0.5 - parent: 732 + parent: 1 type: Transform - - uid: 491 + - uid: 248 components: - pos: 2.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 492 + - uid: 249 components: - pos: 1.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 493 + - uid: 250 components: - pos: 0.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 494 + - uid: 251 components: - pos: -0.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 495 + - uid: 252 components: - pos: -1.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 496 + - uid: 253 components: - pos: -2.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 497 + - uid: 254 components: - pos: -3.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 498 + - uid: 255 components: - pos: -4.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 499 + - uid: 256 components: - pos: 3.5,11.5 - parent: 732 + parent: 1 type: Transform - - uid: 500 + - uid: 257 components: - pos: 3.5,12.5 - parent: 732 + parent: 1 type: Transform - - uid: 501 + - uid: 258 components: - pos: 3.5,13.5 - parent: 732 - type: Transform - - uid: 502 - components: - - pos: 5.5,2.5 - parent: 732 + parent: 1 type: Transform - - uid: 503 + - uid: 259 components: - pos: -10.5,2.5 - parent: 732 + parent: 1 type: Transform - - uid: 504 + - uid: 260 components: - pos: -7.5,1.5 - parent: 732 + parent: 1 type: Transform - - uid: 506 + - uid: 261 components: - pos: -7.5,3.5 - parent: 732 + parent: 1 type: Transform - - uid: 590 + - uid: 262 components: - rot: 1.5707963267948966 rad pos: -7.5,2.5 - parent: 732 + parent: 1 type: Transform - - uid: 630 + - uid: 263 components: - rot: 3.141592653589793 rad pos: 3.5,14.5 - parent: 732 + parent: 1 type: Transform - - uid: 724 + - uid: 264 components: - pos: -6.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 725 + - uid: 265 components: - pos: -7.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 726 + - uid: 266 components: - pos: -8.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 727 + - uid: 267 components: - pos: -9.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 728 + - uid: 268 components: - pos: 2.5,3.5 - parent: 732 + parent: 1 type: Transform - - uid: 729 + - uid: 269 components: - pos: 2.5,2.5 - parent: 732 + parent: 1 type: Transform - - uid: 730 + - uid: 270 components: - pos: 2.5,1.5 - parent: 732 + parent: 1 + type: Transform + - uid: 271 + components: + - pos: 7.5,2.5 + parent: 1 type: Transform - proto: Chair entities: - - uid: 102 + - uid: 272 components: - rot: -1.5707963267948966 rad pos: -3.5,9.5 - parent: 732 + parent: 1 type: Transform - - uid: 611 + - uid: 273 components: - pos: -1.5,7.5 - parent: 732 + parent: 1 type: Transform - proto: ChairPilotSeat entities: - - uid: 20 + - uid: 274 components: - - pos: -2.5,11.5 - parent: 732 + - rot: 3.141592653589793 rad + pos: -2.5,12.5 + parent: 1 type: Transform - - uid: 153 + - uid: 275 components: - - pos: -1.5,11.5 - parent: 732 + - rot: 3.141592653589793 rad + pos: -3.5,11.5 + parent: 1 type: Transform - - uid: 570 + - uid: 276 components: - - pos: -3.5,11.5 - parent: 732 + - rot: 3.141592653589793 rad + pos: -1.5,11.5 + parent: 1 type: Transform - proto: ClosetEmergencyFilledRandom entities: - - uid: 519 + - uid: 277 components: - pos: -10.5,3.5 - parent: 732 + parent: 1 type: Transform - - uid: 522 + - uid: 278 components: - - pos: 5.5,3.5 - parent: 732 + - pos: 7.5,3.5 + parent: 1 type: Transform - proto: ClothingBeltUtilityFilled entities: - - uid: 723 + - uid: 279 components: - pos: -2.4051805,-3.3849664 - parent: 732 + parent: 1 type: Transform - proto: ClothingHandsGlovesLatex entities: - - uid: 596 + - uid: 280 components: - pos: 3.8298292,5.5017543 - parent: 732 + parent: 1 type: Transform - canCollide: False type: Physics - proto: ClothingHeadHatPirate entities: - - uid: 547 + - uid: 281 components: - pos: -6.554,8.790821 - parent: 732 + parent: 1 type: Transform - proto: ClothingHeadHatPirateTricord entities: - - uid: 648 + - uid: 282 components: - pos: -0.664912,7.833114 - parent: 732 - type: Transform - - uid: 675 - components: - - pos: -0.5071249,9.853321 - parent: 732 + parent: 1 type: Transform - proto: ClothingHeadHatWelding entities: - - uid: 592 + - uid: 283 components: - pos: -6.50084,2.62934 - parent: 732 + parent: 1 type: Transform - canCollide: False type: Physics +- proto: ClothingHeadHelmetPodWars + entities: + - uid: 284 + components: + - pos: -4.5001793,0.72629523 + parent: 1 + type: Transform + - uid: 285 + components: + - pos: -4.7293463,0.43462825 + parent: 1 + type: Transform - proto: ClothingMaskBreath entities: - - uid: 589 + - uid: 286 components: - pos: 1.4823287,2.5088873 - parent: 732 + parent: 1 type: Transform - - uid: 613 + - uid: 287 components: - pos: 1.6489947,2.6338873 - parent: 732 + parent: 1 type: Transform - - uid: 614 + - uid: 288 components: - pos: 1.2739947,2.6963873 - parent: 732 + parent: 1 type: Transform - proto: ClothingNeckCloakPirateCap entities: - - uid: 678 + - uid: 289 components: - pos: -6.52275,8.478321 - parent: 732 + parent: 1 type: Transform -- proto: ClothingOuterCoatGentle +- proto: ClothingOuterArmorBasic entities: - - uid: 676 + - uid: 290 + components: + - pos: -0.4558921,0.70815384 + parent: 1 + type: Transform + - uid: 291 + components: + - pos: -0.5808921,0.52065384 + parent: 1 + type: Transform + - uid: 292 + components: + - pos: -0.5965171,0.39565372 + parent: 1 + type: Transform +- proto: ClothingOuterArmorPodWars + entities: + - uid: 293 + components: + - pos: -4.6251793,0.7317376 + parent: 1 + type: Transform + - uid: 294 components: - - pos: -0.4289999,9.618946 - parent: 732 + - pos: -4.6876793,0.56995964 + parent: 1 type: Transform - proto: ClothingOuterCoatPirate entities: - - uid: 679 + - uid: 295 components: - pos: -6.27275,8.540821 - parent: 732 + parent: 1 + type: Transform +- proto: ClothingOuterCoatSyndieCapArmored + entities: + - uid: 296 + components: + - pos: -0.47831082,10.750551 + parent: 1 type: Transform - proto: ClothingShoesBootsMag entities: - - uid: 537 + - uid: 297 components: - pos: -0.55260205,3.4916167 - parent: 732 + parent: 1 type: Transform - - uid: 677 + - uid: 298 components: - pos: -0.55260205,3.4916167 - parent: 732 + parent: 1 type: Transform - - uid: 680 + - uid: 299 components: - pos: -0.55260205,3.4916167 - parent: 732 + parent: 1 type: Transform - - uid: 681 + - uid: 300 components: - pos: -0.55260205,3.4916167 - parent: 732 + parent: 1 type: Transform - - uid: 682 + - uid: 301 components: - pos: -0.55260205,3.4916167 - parent: 732 + parent: 1 type: Transform - - uid: 683 + - uid: 302 components: - pos: -0.55260205,3.4916167 - parent: 732 + parent: 1 type: Transform - - uid: 684 + - uid: 303 components: - pos: -0.55260205,3.4916167 - parent: 732 + parent: 1 type: Transform - - uid: 685 + - uid: 304 components: - pos: -0.55260205,3.4916167 - parent: 732 + parent: 1 type: Transform - proto: ClothingUniformJumpsuitPirate entities: - - uid: 579 + - uid: 305 components: - pos: -0.477412,7.442489 - parent: 732 + parent: 1 type: Transform - - uid: 647 + - uid: 306 components: - pos: -0.305537,7.583114 - parent: 732 + parent: 1 type: Transform - proto: ComputerIFFSyndicate entities: - - uid: 580 + - uid: 307 components: - pos: -1.5,12.5 - parent: 732 + parent: 1 type: Transform - proto: ComputerRadar entities: - - uid: 160 + - uid: 308 components: - pos: -3.5,12.5 - parent: 732 + parent: 1 type: Transform -- proto: ComputerShuttleSyndie +- proto: ComputerShuttle entities: - - uid: 60 + - uid: 309 components: - - pos: -2.5,12.5 - parent: 732 + - pos: -2.5,13.5 + parent: 1 type: Transform - proto: CratePirateChest entities: - - uid: 569 + - uid: 310 components: - pos: -2.5,0.5 - parent: 732 + parent: 1 type: Transform - proto: CratePirateChestCaptain entities: - - uid: 639 + - uid: 311 components: - pos: -9.5,8.5 - parent: 732 + parent: 1 type: Transform - proto: CratePrivateSecure entities: - - uid: 544 + - uid: 312 components: - pos: -0.5,4.5 - parent: 732 + parent: 1 type: Transform - proto: CrowbarRed entities: - - uid: 635 + - uid: 313 components: - pos: -8.437552,-4.4587874 - parent: 732 + parent: 1 type: Transform - canCollide: False type: Physics - proto: DrinkBottleAle entities: - - uid: 514 + - uid: 314 components: - pos: -9.517828,-1.2026272 - parent: 732 + parent: 1 type: Transform - canCollide: False type: Physics - proto: DrinkCognacBottleFull entities: - - uid: 513 + - uid: 315 components: - pos: -9.455328,-1.4370022 - parent: 732 + parent: 1 type: Transform - canCollide: False type: Physics - proto: DrinkGlass entities: - - uid: 558 + - uid: 316 components: - pos: -7.3675203,-2.6619558 - parent: 732 + parent: 1 type: Transform - canCollide: False type: Physics - - uid: 559 + - uid: 317 components: - pos: -7.4925203,-2.2557058 - parent: 732 + parent: 1 type: Transform - canCollide: False type: Physics - - uid: 560 + - uid: 318 components: - pos: -7.2581453,-1.2869558 - parent: 732 + parent: 1 type: Transform - canCollide: False type: Physics - proto: DrinkGrogGlass entities: - - uid: 591 + - uid: 319 components: - pos: -7.611698,-3.9578404 - parent: 732 + parent: 1 type: Transform - - uid: 620 + - uid: 320 components: - pos: -7.580448,-1.5984654 - parent: 732 + parent: 1 type: Transform - proto: DrinkShaker entities: - - uid: 511 + - uid: 321 components: - pos: -9.676509,-1.6372542 - parent: 732 + parent: 1 type: Transform - canCollide: False type: Physics - proto: DrinkWhiskeyBottleFull entities: - - uid: 557 + - uid: 322 components: - pos: -7.6487703,-3.1932058 - parent: 732 + parent: 1 type: Transform - canCollide: False type: Physics - proto: DrinkWineBottleFull entities: - - uid: 512 + - uid: 323 components: - pos: -9.720953,-1.2651272 - parent: 732 + parent: 1 type: Transform - canCollide: False type: Physics - proto: FaxMachineSyndie entities: - - uid: 533 + - uid: 324 components: - pos: -9.5,10.5 - parent: 732 + parent: 1 type: Transform - name: pirate fax type: FaxMachine - proto: FireExtinguisher entities: - - uid: 577 + - uid: 325 components: - pos: -4.625556,7.7085676 - parent: 732 + parent: 1 type: Transform - canCollide: False type: Physics - - uid: 578 + - uid: 326 components: - pos: -4.391181,7.6616926 - parent: 732 + parent: 1 type: Transform - canCollide: False type: Physics - proto: Fireplace entities: - - uid: 603 + - uid: 327 components: - pos: -7.5,10.5 - parent: 732 + parent: 1 type: Transform - proto: GasMixerFlipped entities: - - uid: 191 + - uid: 328 components: - rot: 1.5707963267948966 rad pos: 1.5,-3.5 - parent: 732 + parent: 1 type: Transform - inletTwoConcentration: 0.22000003 inletOneConcentration: 0.78 type: GasMixer - proto: GasPassiveVent entities: - - uid: 201 + - uid: 329 components: - rot: -1.5707963267948966 rad pos: 4.5,-1.5 - parent: 732 + parent: 1 type: Transform - - uid: 202 + - uid: 330 components: - rot: -1.5707963267948966 rad pos: 4.5,-0.5 - parent: 732 + parent: 1 type: Transform - - uid: 688 + - uid: 331 components: - rot: 3.141592653589793 rad pos: 2.5,-7.5 - parent: 732 + parent: 1 type: Transform - - uid: 689 + - uid: 332 components: - rot: 3.141592653589793 rad pos: -6.5,-7.5 - parent: 732 + parent: 1 type: Transform - - uid: 705 + - uid: 333 components: - rot: 1.5707963267948966 rad pos: -11.5,10.5 - parent: 732 + parent: 1 type: Transform - proto: GasPipeBend entities: - - uid: 190 + - uid: 334 components: - rot: -1.5707963267948966 rad pos: 2.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 197 + - uid: 335 components: - rot: 1.5707963267948966 rad pos: 2.5,-1.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 198 + - uid: 336 components: - rot: 1.5707963267948966 rad pos: 0.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 214 + - uid: 337 components: - pos: -2.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 219 + - uid: 338 components: - rot: 3.141592653589793 rad pos: -7.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 246 + - uid: 339 components: - rot: 3.141592653589793 rad pos: 2.5,-0.5 - parent: 732 - type: Transform - - enabled: True - type: AmbientSound - - uid: 646 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 706 + - uid: 340 components: - rot: 1.5707963267948966 rad pos: -7.5,8.5 - parent: 732 + parent: 1 type: Transform - proto: GasPipeFourway entities: - - uid: 228 + - uid: 341 components: - pos: -7.5,6.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 233 + - uid: 342 components: - pos: -2.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 254 + - uid: 343 components: - pos: 2.5,6.5 - parent: 732 + parent: 1 type: Transform - proto: GasPipeStraight entities: - - uid: 115 + - uid: 344 components: - rot: 1.5707963267948966 rad pos: 3.5,-1.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 199 + - uid: 345 components: - rot: 1.5707963267948966 rad pos: 1.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 212 + - uid: 346 components: - rot: -1.5707963267948966 rad pos: -1.5,-3.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 215 + - uid: 347 components: - rot: -1.5707963267948966 rad pos: -3.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 216 + - uid: 348 components: - rot: -1.5707963267948966 rad pos: -4.5,-2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 217 + - uid: 349 components: - rot: -1.5707963267948966 rad pos: -5.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 218 + - uid: 350 components: - rot: -1.5707963267948966 rad pos: -6.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 221 + - uid: 351 components: - rot: 3.141592653589793 rad pos: -7.5,-0.5 - parent: 732 + parent: 1 type: Transform - - uid: 222 + - uid: 352 components: - rot: 3.141592653589793 rad pos: -7.5,0.5 - parent: 732 + parent: 1 type: Transform - - uid: 223 + - uid: 353 components: - rot: 3.141592653589793 rad pos: -7.5,1.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 225 + - uid: 354 components: - pos: -7.5,3.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 226 + - uid: 355 components: - pos: -7.5,4.5 - parent: 732 + parent: 1 type: Transform - - uid: 227 + - uid: 356 components: - pos: -7.5,5.5 - parent: 732 + parent: 1 type: Transform - - uid: 229 + - uid: 357 components: - rot: -1.5707963267948966 rad pos: -6.5,6.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 231 + - uid: 358 components: - rot: -1.5707963267948966 rad pos: -4.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 232 + - uid: 359 components: - rot: -1.5707963267948966 rad pos: -3.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 235 + - uid: 360 components: - rot: 1.5707963267948966 rad pos: -1.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 236 + - uid: 361 components: - rot: 1.5707963267948966 rad pos: -0.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 237 + - uid: 362 components: - rot: 1.5707963267948966 rad pos: 0.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 238 + - uid: 363 components: - rot: 1.5707963267948966 rad pos: 1.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 240 + - uid: 364 components: - pos: 2.5,5.5 - parent: 732 + parent: 1 type: Transform - - uid: 241 + - uid: 365 components: - pos: 2.5,4.5 - parent: 732 + parent: 1 type: Transform - - uid: 242 + - uid: 366 components: - pos: 2.5,3.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 244 + - uid: 367 components: - rot: 3.141592653589793 rad pos: 2.5,1.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 245 + - uid: 368 components: - rot: 3.141592653589793 rad pos: 2.5,0.5 - parent: 732 + parent: 1 type: Transform - - uid: 247 + - uid: 369 components: - rot: 1.5707963267948966 rad pos: 3.5,-0.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 248 + - uid: 370 components: - pos: -2.5,5.5 - parent: 732 + parent: 1 type: Transform - - uid: 249 + - uid: 371 components: - pos: -2.5,4.5 - parent: 732 + parent: 1 type: Transform - - uid: 250 + - uid: 372 components: - pos: -2.5,3.5 - parent: 732 + parent: 1 type: Transform - - uid: 251 + - uid: 373 components: - rot: 3.141592653589793 rad pos: -2.5,2.5 - parent: 732 + parent: 1 type: Transform - - uid: 259 + - uid: 374 components: - rot: 3.141592653589793 rad pos: -2.5,8.5 - parent: 732 + parent: 1 type: Transform - - uid: 317 + - uid: 375 components: - rot: -1.5707963267948966 rad pos: -5.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 643 + - uid: 376 components: - rot: 3.141592653589793 rad pos: 3.5,7.5 - parent: 732 + parent: 1 type: Transform - - uid: 644 + - uid: 377 components: - rot: 3.141592653589793 rad pos: 3.5,8.5 - parent: 732 + parent: 1 type: Transform - - uid: 686 + - uid: 378 components: - pos: 2.5,-5.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 687 + - uid: 379 components: - pos: 2.5,-6.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 690 + - uid: 380 components: - rot: 3.141592653589793 rad pos: -6.5,-6.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 691 + - uid: 381 components: - rot: 3.141592653589793 rad pos: -6.5,-5.5 - parent: 732 + parent: 1 type: Transform - - uid: 692 + - uid: 382 components: - rot: 3.141592653589793 rad pos: -6.5,-4.5 - parent: 732 + parent: 1 type: Transform - - uid: 693 + - uid: 383 components: - rot: 3.141592653589793 rad pos: -6.5,-3.5 - parent: 732 + parent: 1 type: Transform - - uid: 694 + - uid: 384 components: - rot: 3.141592653589793 rad pos: -6.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 695 + - uid: 385 components: - rot: 3.141592653589793 rad pos: -6.5,-1.5 - parent: 732 + parent: 1 type: Transform - - uid: 699 + - uid: 386 components: - rot: 3.141592653589793 rad pos: -7.5,7.5 - parent: 732 + parent: 1 type: Transform - - uid: 701 + - uid: 387 components: - rot: -1.5707963267948966 rad pos: -7.5,10.5 - parent: 732 + parent: 1 type: Transform - - uid: 702 + - uid: 388 components: - rot: -1.5707963267948966 rad pos: -8.5,10.5 - parent: 732 + parent: 1 type: Transform - - uid: 703 + - uid: 389 components: - rot: -1.5707963267948966 rad pos: -9.5,10.5 - parent: 732 + parent: 1 type: Transform - - uid: 704 + - uid: 390 components: - rot: -1.5707963267948966 rad pos: -10.5,10.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 708 + - uid: 391 components: - rot: -1.5707963267948966 rad pos: -4.5,10.5 - parent: 732 + parent: 1 type: Transform - - uid: 709 + - uid: 392 components: - rot: -1.5707963267948966 rad pos: -5.5,10.5 - parent: 732 + parent: 1 type: Transform - - uid: 717 + - uid: 393 components: - rot: 3.141592653589793 rad pos: -2.5,1.5 - parent: 732 + parent: 1 + type: Transform + - uid: 394 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 395 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,6.5 + parent: 1 + type: Transform + - uid: 396 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,6.5 + parent: 1 type: Transform - proto: GasPipeTJunction entities: - - uid: 196 + - uid: 397 + components: + - rot: 3.141592653589793 rad + pos: 3.5,6.5 + parent: 1 + type: Transform + - uid: 398 components: - rot: 3.141592653589793 rad pos: 0.5,-3.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 213 + - uid: 399 components: - rot: 1.5707963267948966 rad pos: -2.5,-3.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 220 + - uid: 400 components: - rot: -1.5707963267948966 rad pos: -7.5,-1.5 - parent: 732 + parent: 1 type: Transform - - uid: 224 + - uid: 401 components: - rot: -1.5707963267948966 rad pos: -7.5,2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 234 + - uid: 402 components: - rot: -1.5707963267948966 rad pos: -2.5,7.5 - parent: 732 + parent: 1 type: Transform - - uid: 505 + - uid: 403 components: - rot: 1.5707963267948966 rad pos: 2.5,2.5 - parent: 732 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 707 + - uid: 404 components: - pos: -6.5,10.5 - parent: 732 + parent: 1 type: Transform - proto: GasPort entities: - - uid: 205 + - uid: 405 components: - rot: -1.5707963267948966 rad pos: 3.5,-3.5 - parent: 732 + parent: 1 type: Transform - - uid: 206 + - uid: 406 components: - rot: 3.141592653589793 rad pos: 1.5,-5.5 - parent: 732 + parent: 1 type: Transform - proto: GasPressurePump entities: - - uid: 203 + - uid: 407 components: - rot: 3.141592653589793 rad pos: 1.5,-4.5 - parent: 732 + parent: 1 type: Transform - - uid: 204 + - uid: 408 components: - rot: -1.5707963267948966 rad pos: 2.5,-3.5 - parent: 732 + parent: 1 type: Transform - - uid: 211 + - uid: 409 components: - rot: -1.5707963267948966 rad pos: -0.5,-3.5 - parent: 732 + parent: 1 type: Transform - proto: GasVentPump entities: - - uid: 239 + - uid: 410 components: - pos: 2.5,7.5 - parent: 732 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - - uid: 243 + - uid: 411 components: - rot: -1.5707963267948966 rad pos: 3.5,2.5 - parent: 732 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - - uid: 252 + - uid: 412 components: - rot: 1.5707963267948966 rad pos: -3.5,7.5 - parent: 732 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - - uid: 253 + - uid: 413 components: - rot: 1.5707963267948966 rad pos: -8.5,6.5 - parent: 732 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - - uid: 255 + - uid: 414 components: - rot: 1.5707963267948966 rad pos: -8.5,2.5 - parent: 732 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - - uid: 257 + - uid: 415 components: - rot: 1.5707963267948966 rad pos: -8.5,-1.5 - parent: 732 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - - uid: 258 + - uid: 416 components: - rot: 3.141592653589793 rad pos: -2.5,-4.5 - parent: 732 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - - uid: 260 + - uid: 417 components: - pos: -2.5,9.5 - parent: 732 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - - uid: 660 + - uid: 418 components: - pos: 3.5,9.5 - parent: 732 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - - uid: 700 + - uid: 419 components: - rot: -1.5707963267948966 rad pos: -6.5,8.5 - parent: 732 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - - uid: 718 + - uid: 420 components: - rot: 3.141592653589793 rad pos: -2.5,0.5 - parent: 732 + parent: 1 + type: Transform + - uid: 421 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,6.5 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - proto: GasVentScrubber entities: - - uid: 645 + - uid: 422 components: - pos: 2.5,-4.5 - parent: 732 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - - uid: 696 + - uid: 423 components: - pos: -6.5,-0.5 - parent: 732 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - - uid: 697 + - uid: 424 components: - rot: -1.5707963267948966 rad pos: -3.5,10.5 - parent: 732 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - - uid: 698 + - uid: 425 components: - rot: 3.141592653589793 rad pos: -6.5,9.5 - parent: 732 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - proto: GeneratorBasic15kW entities: - - uid: 55 + - uid: 426 components: - pos: 0.5,-1.5 - parent: 732 + parent: 1 type: Transform - - uid: 265 + - uid: 427 components: - pos: -0.5,-1.5 - parent: 732 + parent: 1 type: Transform - - uid: 266 + - uid: 428 components: - pos: -1.5,-1.5 - parent: 732 + parent: 1 type: Transform - proto: GeneratorWallmountAPU entities: - - uid: 264 + - uid: 429 components: - pos: 3.5,-2.5 - parent: 732 + parent: 1 type: Transform - proto: GravityGeneratorMini entities: - - uid: 361 + - uid: 430 components: - pos: -1.5,-5.5 - parent: 732 + parent: 1 type: Transform - proto: Grille entities: - - uid: 11 + - uid: 431 components: - - pos: -3.5,13.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: -4.5,13.5 + parent: 1 type: Transform - - uid: 18 - components: - - pos: -0.5,12.5 - parent: 732 - type: Transform - - uid: 31 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,3.5 - parent: 732 - type: Transform - - uid: 36 - components: - - pos: -4.5,12.5 - parent: 732 - type: Transform - - uid: 45 - components: - - pos: -2.5,13.5 - parent: 732 - type: Transform - - uid: 47 + - uid: 432 components: - pos: 0.5,12.5 - parent: 732 - type: Transform - - uid: 50 - components: - - pos: 0.5,11.5 - parent: 732 + parent: 1 type: Transform - - uid: 89 + - uid: 433 components: - pos: -5.5,12.5 - parent: 732 + parent: 1 type: Transform - - uid: 105 + - uid: 434 components: - rot: -1.5707963267948966 rad pos: -11.5,3.5 - parent: 732 + parent: 1 type: Transform - - uid: 150 + - uid: 435 components: - rot: -1.5707963267948966 rad - pos: 6.5,1.5 - parent: 732 - type: Transform - - uid: 151 - components: - - pos: -0.5,13.5 - parent: 732 - type: Transform - - uid: 152 - components: - - pos: -1.5,13.5 - parent: 732 + pos: -0.5,13.5 + parent: 1 type: Transform - - uid: 188 + - uid: 436 components: - pos: -10.5,8.5 - parent: 732 + parent: 1 type: Transform - - uid: 299 + - uid: 437 components: - pos: 4.5,11.5 - parent: 732 + parent: 1 type: Transform - - uid: 462 + - uid: 438 components: - pos: 2.5,12.5 - parent: 732 + parent: 1 type: Transform - - uid: 489 + - uid: 439 components: - pos: 3.5,-1.5 - parent: 732 + parent: 1 type: Transform - - uid: 490 + - uid: 440 components: - pos: 3.5,-0.5 - parent: 732 + parent: 1 type: Transform - - uid: 508 + - uid: 441 components: - pos: 2.5,11.5 - parent: 732 + parent: 1 type: Transform - - uid: 509 + - uid: 442 components: - pos: 4.5,13.5 - parent: 732 + parent: 1 type: Transform - - uid: 510 + - uid: 443 components: - pos: 4.5,12.5 - parent: 732 + parent: 1 type: Transform - - uid: 550 + - uid: 444 components: - pos: -10.5,10.5 - parent: 732 + parent: 1 type: Transform - - uid: 552 + - uid: 445 components: - pos: -10.5,9.5 - parent: 732 + parent: 1 type: Transform - - uid: 601 + - uid: 446 components: - - pos: -4.5,13.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: -1.5,13.5 + parent: 1 type: Transform - - uid: 653 + - uid: 447 components: - pos: 2.5,13.5 - parent: 732 + parent: 1 type: Transform - - uid: 672 + - uid: 448 components: - rot: -1.5707963267948966 rad pos: -11.5,1.5 - parent: 732 + parent: 1 type: Transform - - uid: 715 + - uid: 449 components: - rot: 3.141592653589793 rad pos: 2.5,14.5 - parent: 732 + parent: 1 type: Transform - - uid: 716 + - uid: 450 components: - rot: 3.141592653589793 rad pos: 4.5,14.5 - parent: 732 + parent: 1 + type: Transform + - uid: 451 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,13.5 + parent: 1 + type: Transform + - uid: 452 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,14.5 + parent: 1 + type: Transform + - uid: 453 + components: + - rot: 3.141592653589793 rad + pos: 8.5,6.5 + parent: 1 + type: Transform + - uid: 454 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,3.5 + parent: 1 + type: Transform + - uid: 455 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,1.5 + parent: 1 + type: Transform +- proto: GrilleDiagonal + entities: + - uid: 456 + components: + - pos: -5.5,13.5 + parent: 1 + type: Transform + - uid: 457 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,13.5 + parent: 1 + type: Transform + - uid: 458 + components: + - pos: -3.5,14.5 + parent: 1 + type: Transform + - uid: 459 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,14.5 + parent: 1 type: Transform - proto: Gyroscope entities: - - uid: 467 + - uid: 460 components: - pos: -2.5,-5.5 - parent: 732 + parent: 1 type: Transform - - uid: 469 + - uid: 461 components: - pos: -3.5,-5.5 - parent: 732 + parent: 1 type: Transform - proto: HandheldHealthAnalyzer entities: - - uid: 597 + - uid: 462 components: - pos: 3.4609303,5.7205043 - parent: 732 + parent: 1 type: Transform - canCollide: False type: Physics - proto: Lighter entities: - - uid: 518 + - uid: 463 components: - pos: -7.3640995,-4.4362655 - parent: 732 + parent: 1 type: Transform - canCollide: False type: Physics -- proto: MagazineBoxMagnumHighVelocity +- proto: MagazineBoxAntiMateriel entities: - - uid: 671 + - uid: 464 + components: + - pos: -4.7390633,3.4536512 + parent: 1 + type: Transform +- proto: MagazineBoxMagnum + entities: + - uid: 465 components: - pos: -4.394046,3.4745688 - parent: 732 + parent: 1 type: Transform - proto: MedkitFilled entities: - - uid: 593 + - uid: 466 components: - pos: 4.3572884,5.694452 - parent: 732 + parent: 1 type: Transform - - uid: 595 + - uid: 467 components: - pos: 4.548579,5.6111293 - parent: 732 + parent: 1 type: Transform - canCollide: False type: Physics - proto: MedkitOxygenFilled entities: - - uid: 594 + - uid: 468 components: - pos: 4.579829,7.5955043 - parent: 732 + parent: 1 type: Transform - canCollide: False type: Physics - proto: NitrogenCanister entities: - - uid: 207 + - uid: 469 components: - pos: 3.5,-3.5 - parent: 732 + parent: 1 type: Transform - proto: OxygenCanister entities: - - uid: 208 + - uid: 470 components: - pos: 1.5,-5.5 - parent: 732 - type: Transform - - uid: 520 - components: - - pos: 5.5,1.5 - parent: 732 + parent: 1 type: Transform - - uid: 521 + - uid: 471 components: - pos: -10.5,1.5 - parent: 732 + parent: 1 type: Transform - - uid: 605 + - uid: 472 components: - pos: -9.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 606 + - uid: 473 components: - pos: -4.5,-1.5 - parent: 732 + parent: 1 + type: Transform + - uid: 474 + components: + - pos: 7.5,1.5 + parent: 1 type: Transform - proto: PaperBin5 entities: - - uid: 731 + - uid: 475 components: - - pos: -0.5,10.5 - parent: 732 + - pos: -0.5,11.5 + parent: 1 type: Transform - proto: Pen entities: - - uid: 664 + - uid: 476 components: - pos: -8.966801,10.694164 - parent: 732 - type: Transform -- proto: PersonalAI - entities: - - uid: 278 - components: - - flags: SessionSpecific - type: MetaData - - pos: -4.4466166,11.478956 - parent: 732 + parent: 1 type: Transform - proto: PosterContrabandRevolt entities: - - uid: 109 + - uid: 477 components: - rot: 3.141592653589793 rad pos: 0.5,2.5 - parent: 732 + parent: 1 type: Transform - proto: PosterContrabandRevolver entities: - - uid: 148 + - uid: 478 components: - rot: 3.141592653589793 rad pos: -3.5,5.5 - parent: 732 + parent: 1 type: Transform - proto: PosterContrabandRise entities: - - uid: 169 + - uid: 479 components: - rot: 3.141592653589793 rad pos: -5.5,2.5 - parent: 732 + parent: 1 type: Transform - proto: PosterContrabandSmoke entities: - - uid: 604 + - uid: 480 components: - pos: -8.5,7.5 - parent: 732 + parent: 1 type: Transform - proto: PosterContrabandSyndicateRecruitment entities: - - uid: 110 + - uid: 481 components: - rot: 3.141592653589793 rad pos: -2.5,-0.5 - parent: 732 + parent: 1 type: Transform - proto: PosterLegitUeNo entities: - - uid: 610 + - uid: 482 components: - pos: -9.5,3.5 - parent: 732 + parent: 1 type: Transform - proto: PowerCellRecharger entities: - - uid: 719 + - uid: 483 components: - rot: 3.141592653589793 rad pos: -4.5,9.5 - parent: 732 + parent: 1 type: Transform - - uid: 722 + - uid: 484 components: - rot: 3.141592653589793 rad pos: -1.5,-3.5 - parent: 732 + parent: 1 type: Transform - proto: PoweredSmallLight entities: - - uid: 446 + - uid: 485 + components: + - rot: 3.141592653589793 rad + pos: 3.5,5.5 + parent: 1 + type: Transform + - uid: 486 components: - pos: 0.5,-1.5 - parent: 732 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 447 + - uid: 487 components: - pos: -2.5,-1.5 - parent: 732 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 448 + - uid: 488 components: - rot: 1.5707963267948966 rad pos: -9.5,-0.5 - parent: 732 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 449 + - uid: 489 components: - rot: 3.141592653589793 rad pos: -7.5,-4.5 - parent: 732 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 450 + - uid: 490 components: - pos: -10.5,3.5 - parent: 732 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 451 - components: - - pos: 5.5,3.5 - parent: 732 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 452 + - uid: 491 components: - - rot: -1.5707963267948966 rad - pos: 3.5,3.5 - parent: 732 + - rot: 3.141592653589793 rad + pos: 7.5,1.5 + parent: 1 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 453 + - uid: 492 components: - rot: 1.5707963267948966 rad pos: -8.5,3.5 - parent: 732 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 454 + - uid: 493 components: - rot: 3.141592653589793 rad pos: -4.5,9.5 - parent: 732 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 455 + - uid: 494 components: - rot: 3.141592653589793 rad pos: -0.5,9.5 - parent: 732 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 456 + - uid: 495 components: - rot: 1.5707963267948966 rad pos: -4.5,2.5 - parent: 732 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 457 + - uid: 496 components: - rot: -1.5707963267948966 rad pos: -0.5,2.5 - parent: 732 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 458 + - uid: 497 components: - rot: 3.141592653589793 rad pos: -2.5,0.5 - parent: 732 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 459 + - uid: 498 components: - pos: 2.5,7.5 - parent: 732 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 460 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,6.5 - parent: 732 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 461 + - uid: 499 components: - rot: -1.5707963267948966 rad pos: 3.5,11.5 - parent: 732 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 463 + - uid: 500 components: - rot: 1.5707963267948966 rad pos: -9.5,6.5 - parent: 732 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 464 + - uid: 501 components: - rot: -1.5707963267948966 rad pos: -6.5,5.5 - parent: 732 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 465 + - uid: 502 components: - pos: -4.5,7.5 - parent: 732 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 466 + - uid: 503 components: - pos: -0.5,7.5 - parent: 732 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 549 + - uid: 504 components: - rot: -1.5707963267948966 rad pos: -6.5,9.5 - parent: 732 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 599 + - uid: 505 components: - pos: -8.5,10.5 - parent: 732 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver + - uid: 506 + components: + - rot: 3.141592653589793 rad + pos: 6.5,5.5 + parent: 1 + type: Transform + - uid: 507 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 508 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + type: Transform - proto: Rack entities: - - uid: 256 + - uid: 509 components: - pos: -6.5,2.5 - parent: 732 + parent: 1 type: Transform - - uid: 615 + - uid: 510 components: - pos: 1.5,2.5 - parent: 732 + parent: 1 type: Transform -- proto: ReinforcedPlasmaWindow +- proto: RandomPosterContraband entities: - - uid: 194 + - uid: 511 components: - - rot: 1.5707963267948966 rad - pos: 3.5,-0.5 - parent: 732 + - pos: 3.5,4.5 + parent: 1 type: Transform - - uid: 195 + - uid: 512 components: - - rot: 1.5707963267948966 rad - pos: 3.5,-1.5 - parent: 732 + - pos: -1.5,8.5 + parent: 1 type: Transform -- proto: RollerBed +- proto: ReinforcedPlasmaWindow entities: - - uid: 571 + - uid: 513 components: - - pos: 4.360234,6.581131 - parent: 732 + - pos: 8.5,3.5 + parent: 1 type: Transform - - canCollide: False - type: Physics -- proto: ShuttleWindow - entities: - - uid: 2 + - uid: 514 components: - - rot: 1.5707963267948966 rad + - pos: -2.5,14.5 + parent: 1 + type: Transform + - uid: 515 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,13.5 + parent: 1 + type: Transform + - uid: 516 + components: + - rot: -1.5707963267948966 rad pos: -1.5,13.5 - parent: 732 + parent: 1 type: Transform - - uid: 15 + - uid: 517 components: - rot: 1.5707963267948966 rad - pos: -10.5,8.5 - parent: 732 + pos: 3.5,-0.5 + parent: 1 type: Transform - - uid: 17 + - uid: 518 components: - rot: 1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 1 + type: Transform + - uid: 519 + components: + - rot: -1.5707963267948966 rad pos: 4.5,11.5 - parent: 732 + parent: 1 type: Transform - - uid: 21 + - uid: 520 components: - - rot: 1.5707963267948966 rad - pos: 4.5,12.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: 4.5,13.5 + parent: 1 type: Transform - - uid: 29 + - uid: 521 components: - - rot: 1.5707963267948966 rad - pos: -3.5,13.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: 4.5,12.5 + parent: 1 type: Transform - - uid: 32 + - uid: 522 components: - - rot: 1.5707963267948966 rad - pos: 2.5,13.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: 2.5,12.5 + parent: 1 type: Transform - - uid: 43 + - uid: 523 components: - - rot: 1.5707963267948966 rad + - rot: -1.5707963267948966 rad pos: -4.5,13.5 - parent: 732 + parent: 1 type: Transform - - uid: 46 + - uid: 524 components: - - pos: -5.5,12.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: -10.5,10.5 + parent: 1 type: Transform - - uid: 53 + - uid: 525 components: - - rot: 3.141592653589793 rad - pos: 2.5,14.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: 0.5,12.5 + parent: 1 type: Transform - - uid: 58 + - uid: 526 components: - - rot: 1.5707963267948966 rad - pos: -0.5,12.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: 2.5,11.5 + parent: 1 type: Transform - - uid: 88 + - uid: 527 components: - - rot: 1.5707963267948966 rad - pos: -10.5,10.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: 2.5,13.5 + parent: 1 type: Transform - - uid: 94 + - uid: 528 components: - rot: -1.5707963267948966 rad - pos: 6.5,3.5 - parent: 732 + pos: -10.5,8.5 + parent: 1 type: Transform - - uid: 119 + - uid: 529 components: - - rot: 1.5707963267948966 rad - pos: -2.5,13.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: 2.5,14.5 + parent: 1 type: Transform - - uid: 121 + - uid: 530 components: - rot: -1.5707963267948966 rad - pos: 6.5,1.5 - parent: 732 + pos: -3.5,13.5 + parent: 1 type: Transform - - uid: 131 + - uid: 531 components: - - rot: 1.5707963267948966 rad - pos: -0.5,13.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: -10.5,9.5 + parent: 1 type: Transform - - uid: 132 + - uid: 532 components: - - rot: 1.5707963267948966 rad - pos: 0.5,12.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: -5.5,12.5 + parent: 1 type: Transform - - uid: 140 + - uid: 533 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,14.5 + parent: 1 + type: Transform + - uid: 534 components: - rot: -1.5707963267948966 rad pos: -11.5,1.5 - parent: 732 + parent: 1 type: Transform - - uid: 145 + - uid: 535 components: - - rot: 1.5707963267948966 rad - pos: 0.5,11.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: -11.5,3.5 + parent: 1 type: Transform - - uid: 162 + - uid: 536 components: - rot: 1.5707963267948966 rad - pos: -10.5,9.5 - parent: 732 + pos: 5.5,7.5 + parent: 1 type: Transform - - uid: 171 + - uid: 537 components: - rot: 1.5707963267948966 rad - pos: -4.5,12.5 - parent: 732 + pos: 5.5,5.5 + parent: 1 type: Transform - - uid: 183 + - uid: 538 components: - - rot: 1.5707963267948966 rad - pos: 2.5,11.5 - parent: 732 + - rot: 3.141592653589793 rad + pos: 8.5,6.5 + parent: 1 type: Transform - - uid: 189 + - uid: 539 components: - - rot: 1.5707963267948966 rad - pos: 4.5,13.5 - parent: 732 + - pos: 8.5,1.5 + parent: 1 type: Transform - - uid: 200 +- proto: ReinforcedPlasmaWindowDiagonal + entities: + - uid: 540 + components: + - pos: -5.5,13.5 + parent: 1 + type: Transform + - uid: 541 components: - rot: -1.5707963267948966 rad - pos: -11.5,3.5 - parent: 732 + pos: -1.5,14.5 + parent: 1 type: Transform - - uid: 642 + - uid: 542 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,13.5 + parent: 1 + type: Transform + - uid: 543 + components: + - pos: -3.5,14.5 + parent: 1 + type: Transform +- proto: RollerBed + entities: + - uid: 544 + components: + - pos: 1.5516887,5.6169386 + parent: 1 + type: Transform +- proto: SignPrison + entities: + - uid: 545 components: - rot: 1.5707963267948966 rad - pos: 2.5,12.5 - parent: 732 + pos: 5.5,7.5 + parent: 1 type: Transform - - uid: 711 + - uid: 546 components: - - rot: 3.141592653589793 rad - pos: 4.5,14.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 5.5,5.5 + parent: 1 type: Transform - proto: SinkWide entities: - - uid: 598 + - uid: 547 components: - rot: 1.5707963267948966 rad pos: -9.5,-4.5 - parent: 732 + parent: 1 type: Transform - proto: SMESBasic entities: - - uid: 267 + - uid: 548 components: - pos: -3.5,-1.5 - parent: 732 + parent: 1 type: Transform - proto: soda_dispenser entities: - - uid: 477 + - uid: 549 components: - rot: 1.5707963267948966 rad pos: -9.5,-2.5 - parent: 732 + parent: 1 type: Transform - containers: ReagentDispenser-beaker: !type:ContainerSlot @@ -3633,1195 +3653,1341 @@ entities: type: ContainerContainer - proto: SpawnPointPirates entities: - - uid: 548 + - uid: 550 components: - pos: 0.5,-3.5 - parent: 732 + parent: 1 type: Transform - - uid: 587 + - uid: 551 components: - pos: -8.5,9.5 - parent: 732 + parent: 1 type: Transform - - uid: 657 + - uid: 552 components: - pos: -7.5,2.5 - parent: 732 + parent: 1 type: Transform - - uid: 658 + - uid: 553 components: - pos: -7.5,5.5 - parent: 732 + parent: 1 type: Transform - - uid: 659 + - uid: 554 components: - pos: -2.5,10.5 - parent: 732 + parent: 1 type: Transform - - uid: 661 + - uid: 555 components: - pos: 2.5,2.5 - parent: 732 - type: Transform - - uid: 662 - components: - - pos: -1.5,-3.5 - parent: 732 + parent: 1 type: Transform - - uid: 663 + - uid: 556 components: - pos: -8.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 674 + - uid: 557 components: - pos: 2.5,6.5 - parent: 732 + parent: 1 + type: Transform + - uid: 558 + components: + - pos: -3.5,-3.5 + parent: 1 type: Transform - proto: StoolBar entities: - - uid: 471 + - uid: 559 components: - rot: -1.5707963267948966 rad pos: -6.5,-3.5 - parent: 732 + parent: 1 type: Transform - - uid: 472 + - uid: 560 components: - rot: -1.5707963267948966 rad pos: -6.5,-4.5 - parent: 732 + parent: 1 type: Transform - - uid: 473 + - uid: 561 components: - rot: -1.5707963267948966 rad pos: -6.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 474 + - uid: 562 components: - rot: -1.5707963267948966 rad pos: -6.5,-1.5 - parent: 732 + parent: 1 type: Transform - proto: StorageCanister entities: - - uid: 210 + - uid: 563 components: - pos: 4.5,-3.5 - parent: 732 + parent: 1 type: Transform - proto: SubstationBasic entities: - - uid: 165 + - uid: 564 components: - pos: 1.5,9.5 - parent: 732 + parent: 1 type: Transform - - uid: 277 + - uid: 565 components: - pos: -4.5,-5.5 - parent: 732 + parent: 1 type: Transform - proto: SuitStorageEVAPirate entities: - - uid: 91 - components: - - pos: -4.5,0.5 - parent: 732 - type: Transform - - uid: 523 + - uid: 566 components: - pos: -4.5,2.5 - parent: 732 + parent: 1 type: Transform - - uid: 524 + - uid: 567 components: - pos: -0.5,1.5 - parent: 732 - type: Transform - - uid: 525 - components: - - pos: 0.5,-5.5 - parent: 732 + parent: 1 type: Transform - - uid: 529 + - uid: 568 components: - pos: -0.5,2.5 - parent: 732 + parent: 1 type: Transform - - uid: 545 + - uid: 569 components: - pos: -4.5,1.5 - parent: 732 + parent: 1 type: Transform - - uid: 556 + - uid: 570 components: - - pos: -0.5,0.5 - parent: 732 + - pos: 4.5,1.5 + parent: 1 type: Transform - - uid: 567 + - uid: 571 components: - - pos: -0.5,-5.5 - parent: 732 + - pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 572 + components: + - pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 573 + components: + - pos: 5.5,1.5 + parent: 1 type: Transform - proto: SuitStoragePirateCap entities: - - uid: 546 + - uid: 574 components: - pos: -8.5,8.5 - parent: 732 + parent: 1 + type: Transform +- proto: SyndicatePersonalAI + entities: + - uid: 575 + components: + - pos: -4.477404,12.530636 + parent: 1 type: Transform - proto: Table entities: - - uid: 173 + - uid: 576 components: - pos: -7.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 175 + - uid: 577 components: - pos: -7.5,-1.5 - parent: 732 + parent: 1 type: Transform - - uid: 176 + - uid: 578 components: - pos: -7.5,-3.5 - parent: 732 + parent: 1 type: Transform - - uid: 177 + - uid: 579 components: - pos: -7.5,-4.5 - parent: 732 + parent: 1 type: Transform - - uid: 470 + - uid: 580 components: - pos: -9.5,-3.5 - parent: 732 + parent: 1 type: Transform - - uid: 475 + - uid: 581 components: - pos: -9.5,-1.5 - parent: 732 + parent: 1 type: Transform - - uid: 476 + - uid: 582 components: - pos: -9.5,-2.5 - parent: 732 + parent: 1 type: Transform - - uid: 534 + - uid: 583 components: - pos: -4.5,3.5 - parent: 732 + parent: 1 type: Transform - - uid: 535 + - uid: 584 components: - pos: -4.5,4.5 - parent: 732 + parent: 1 type: Transform - - uid: 536 + - uid: 585 components: - pos: -3.5,4.5 - parent: 732 + parent: 1 type: Transform - - uid: 540 + - uid: 586 components: - pos: -0.5,3.5 - parent: 732 + parent: 1 type: Transform - - uid: 572 + - uid: 587 components: - pos: 4.5,5.5 - parent: 732 + parent: 1 type: Transform - - uid: 573 + - uid: 588 components: - pos: 3.5,5.5 - parent: 732 + parent: 1 type: Transform - - uid: 574 + - uid: 589 components: - pos: 4.5,7.5 - parent: 732 + parent: 1 type: Transform - - uid: 575 + - uid: 590 components: - pos: -4.5,7.5 - parent: 732 + parent: 1 type: Transform - - uid: 576 + - uid: 591 components: - pos: -0.5,7.5 - parent: 732 + parent: 1 type: Transform - - uid: 720 + - uid: 592 components: - rot: 3.141592653589793 rad pos: -1.5,-3.5 - parent: 732 + parent: 1 type: Transform - - uid: 721 + - uid: 593 components: - rot: 3.141592653589793 rad pos: -2.5,-3.5 - parent: 732 + parent: 1 type: Transform - proto: TableReinforced entities: - - uid: 44 + - uid: 594 components: - - pos: -0.5,10.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: -4.5,12.5 + parent: 1 type: Transform - - uid: 73 + - uid: 595 components: - - pos: -0.5,11.5 - parent: 732 + - pos: -4.5,0.5 + parent: 1 type: Transform - - uid: 143 + - uid: 596 components: - - pos: -0.5,9.5 - parent: 732 + - pos: -0.5,0.5 + parent: 1 type: Transform - - uid: 159 + - uid: 597 + components: + - pos: -0.5,10.5 + parent: 1 + type: Transform + - uid: 598 + components: + - pos: -0.5,11.5 + parent: 1 + type: Transform + - uid: 599 components: - pos: -4.5,9.5 - parent: 732 + parent: 1 type: Transform - - uid: 312 + - uid: 600 components: - - pos: -4.5,11.5 - parent: 732 + - pos: -0.5,12.5 + parent: 1 type: Transform - proto: TableWood entities: - - uid: 650 + - uid: 601 components: - rot: -1.5707963267948966 rad pos: -9.5,10.5 - parent: 732 + parent: 1 type: Transform - - uid: 651 + - uid: 602 components: - rot: -1.5707963267948966 rad pos: -8.5,10.5 - parent: 732 + parent: 1 type: Transform - - uid: 665 + - uid: 603 components: - pos: -6.5,8.5 - parent: 732 + parent: 1 type: Transform - proto: Thruster entities: - - uid: 27 + - uid: 604 components: - rot: 3.141592653589793 rad pos: -2.5,-7.5 - parent: 732 + parent: 1 type: Transform - - uid: 40 + - uid: 605 components: - pos: -7.5,12.5 - parent: 732 + parent: 1 type: Transform - - uid: 180 + - uid: 606 components: - rot: 3.141592653589793 rad pos: 3.5,-6.5 - parent: 732 + parent: 1 type: Transform - - uid: 182 + - uid: 607 components: - rot: 3.141592653589793 rad pos: -8.5,-6.5 - parent: 732 + parent: 1 type: Transform - - uid: 515 + - uid: 608 components: - - pos: 5.5,9.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: 5.5,9.5 + parent: 1 type: Transform - - uid: 542 + - uid: 609 components: - rot: 3.141592653589793 rad pos: 4.5,-6.5 - parent: 732 + parent: 1 type: Transform - - uid: 543 + - uid: 610 components: - rot: 3.141592653589793 rad pos: -9.5,-6.5 - parent: 732 + parent: 1 type: Transform - - uid: 622 + - uid: 611 components: - pos: 1.5,11.5 - parent: 732 + parent: 1 type: Transform - - uid: 624 + - uid: 612 components: - rot: 1.5707963267948966 rad pos: -11.5,6.5 - parent: 732 + parent: 1 type: Transform - - uid: 625 + - uid: 613 components: - rot: 1.5707963267948966 rad pos: -11.5,-1.5 - parent: 732 + parent: 1 type: Transform - - uid: 626 + - uid: 614 components: - rot: -1.5707963267948966 rad - pos: 6.5,-1.5 - parent: 732 + pos: 7.5,-1.5 + parent: 1 type: Transform - - uid: 627 + - uid: 748 components: - - rot: -1.5707963267948966 rad - pos: 6.5,6.5 - parent: 732 + - pos: -8.5,12.5 + parent: 1 + type: Transform +- proto: ToolboxElectricalTurret + entities: + - uid: 615 + components: + - name: turret box + type: MetaData + - pos: -1.4007742,4.714716 + parent: 1 + type: Transform + - uid: 616 + components: + - name: turret box + type: MetaData + - pos: -1.6820242,4.308466 + parent: 1 type: Transform - proto: VendingMachineCigs entities: - - uid: 516 + - uid: 617 components: - flags: SessionSpecific name: cigarette machine type: MetaData - pos: -6.5,-5.5 - parent: 732 + parent: 1 type: Transform - proto: VendingMachineSovietSoda entities: - - uid: 517 + - uid: 618 components: - flags: SessionSpecific type: MetaData - pos: -9.5,-0.5 - parent: 732 + parent: 1 type: Transform - proto: VendingMachineTankDispenserEVA entities: - - uid: 583 + - uid: 619 components: - flags: SessionSpecific type: MetaData - pos: -9.5,5.5 - parent: 732 + parent: 1 type: Transform - - uid: 616 + - uid: 620 components: - flags: SessionSpecific type: MetaData - pos: 1.5,3.5 - parent: 732 + parent: 1 type: Transform - proto: VendingMachineYouTool entities: - - uid: 468 + - uid: 621 components: - flags: SessionSpecific type: MetaData - pos: -6.5,3.5 - parent: 732 + parent: 1 type: Transform -- proto: WallReinforced +- proto: WallPlastitanium entities: - - uid: 13 + - uid: 622 components: - rot: 3.141592653589793 rad - pos: 0.5,4.5 - parent: 732 + pos: 7.5,4.5 + parent: 1 type: Transform - - uid: 16 + - uid: 623 components: - rot: 3.141592653589793 rad - pos: 0.5,1.5 - parent: 732 + pos: 6.5,8.5 + parent: 1 type: Transform - - uid: 48 + - uid: 624 components: - rot: 3.141592653589793 rad - pos: 0.5,3.5 - parent: 732 + pos: 6.5,4.5 + parent: 1 type: Transform - - uid: 54 + - uid: 625 components: - rot: 3.141592653589793 rad - pos: 0.5,2.5 - parent: 732 + pos: 7.5,8.5 + parent: 1 type: Transform - - uid: 59 + - uid: 626 + components: + - pos: 7.5,0.5 + parent: 1 + type: Transform + - uid: 627 components: - rot: 3.141592653589793 rad + pos: 8.5,7.5 + parent: 1 + type: Transform + - uid: 628 + components: + - pos: 8.5,4.5 + parent: 1 + type: Transform + - uid: 629 + components: + - pos: 6.5,0.5 + parent: 1 + type: Transform + - uid: 630 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 631 + components: + - pos: 0.5,11.5 + parent: 1 + type: Transform + - uid: 632 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 633 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 634 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 635 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 636 + components: + - rot: 1.5707963267948966 rad pos: 0.5,5.5 - parent: 732 + parent: 1 type: Transform - - uid: 68 + - uid: 637 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: -0.5,5.5 - parent: 732 + parent: 1 type: Transform - - uid: 100 + - uid: 638 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: -5.5,1.5 - parent: 732 + parent: 1 type: Transform - - uid: 104 + - uid: 639 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: -5.5,3.5 - parent: 732 + parent: 1 type: Transform - - uid: 106 + - uid: 640 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: -5.5,0.5 - parent: 732 + parent: 1 type: Transform - - uid: 111 + - uid: 641 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: -4.5,5.5 - parent: 732 + parent: 1 type: Transform - - uid: 112 + - uid: 642 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: -3.5,5.5 - parent: 732 + parent: 1 type: Transform - - uid: 123 + - uid: 643 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: -0.5,-0.5 - parent: 732 + parent: 1 type: Transform - - uid: 124 + - uid: 644 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: 0.5,-0.5 - parent: 732 + parent: 1 type: Transform - - uid: 125 + - uid: 645 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: 0.5,0.5 - parent: 732 + parent: 1 type: Transform - - uid: 154 + - uid: 646 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: -2.5,-0.5 - parent: 732 + parent: 1 type: Transform - - uid: 155 + - uid: 647 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: -3.5,-0.5 - parent: 732 + parent: 1 type: Transform - - uid: 156 + - uid: 648 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: -4.5,-0.5 - parent: 732 + parent: 1 type: Transform - - uid: 161 + - uid: 649 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: -1.5,5.5 - parent: 732 + parent: 1 type: Transform - - uid: 163 + - uid: 650 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: -5.5,-0.5 - parent: 732 + parent: 1 type: Transform - - uid: 566 + - uid: 651 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: -5.5,4.5 - parent: 732 + parent: 1 type: Transform - - uid: 602 + - uid: 652 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: -1.5,-0.5 - parent: 732 + parent: 1 type: Transform - - uid: 607 + - uid: 653 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: -5.5,5.5 - parent: 732 + parent: 1 type: Transform - - uid: 609 + - uid: 654 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: -5.5,2.5 - parent: 732 + parent: 1 type: Transform -- proto: WallShuttle - entities: - - uid: 1 + - uid: 655 components: - rot: 1.5707963267948966 rad pos: 0.5,9.5 - parent: 732 + parent: 1 type: Transform - - uid: 4 + - uid: 656 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: 4.5,4.5 - parent: 732 + parent: 1 type: Transform - - uid: 5 - components: - - pos: 4.5,-5.5 - parent: 732 - type: Transform - - uid: 6 + - uid: 657 components: - - pos: 2.5,10.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 1 type: Transform - - uid: 7 + - uid: 658 components: - - pos: 5.5,-1.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 2.5,10.5 + parent: 1 type: Transform - - uid: 8 + - uid: 659 components: - - pos: -9.5,1.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -9.5,1.5 + parent: 1 type: Transform - - uid: 9 + - uid: 660 components: - - pos: -6.5,0.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -6.5,0.5 + parent: 1 type: Transform - - uid: 10 + - uid: 661 components: - - pos: -7.5,-5.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -7.5,-5.5 + parent: 1 type: Transform - - uid: 12 + - uid: 662 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: 3.5,0.5 - parent: 732 + parent: 1 type: Transform - - uid: 14 + - uid: 663 components: - rot: 1.5707963267948966 rad pos: -5.5,9.5 - parent: 732 + parent: 1 type: Transform - - uid: 22 + - uid: 664 components: - rot: 1.5707963267948966 rad pos: -6.5,-6.5 - parent: 732 + parent: 1 type: Transform - - uid: 23 + - uid: 665 components: - - pos: -10.5,-1.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -10.5,-1.5 + parent: 1 type: Transform - - uid: 24 + - uid: 666 components: - - pos: -10.5,-2.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -10.5,-2.5 + parent: 1 type: Transform - - uid: 25 + - uid: 667 components: - - pos: -10.5,-5.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -10.5,-5.5 + parent: 1 type: Transform - - uid: 26 + - uid: 668 components: - - pos: -8.5,-5.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -8.5,-5.5 + parent: 1 type: Transform - - uid: 30 + - uid: 669 components: - - pos: 0.5,7.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 0.5,7.5 + parent: 1 type: Transform - - uid: 34 + - uid: 670 components: - rot: 1.5707963267948966 rad pos: -5.5,11.5 - parent: 732 + parent: 1 type: Transform - - uid: 35 - components: - - pos: 5.5,8.5 - parent: 732 - type: Transform - - uid: 38 + - uid: 671 components: - - pos: -9.5,-5.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -9.5,-5.5 + parent: 1 type: Transform - - uid: 41 + - uid: 672 components: - - pos: -6.5,4.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -6.5,4.5 + parent: 1 type: Transform - - uid: 42 + - uid: 673 components: - rot: 1.5707963267948966 rad pos: -10.5,11.5 - parent: 732 + parent: 1 type: Transform - - uid: 49 + - uid: 674 components: - - pos: 1.5,-6.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 1 type: Transform - - uid: 51 + - uid: 675 components: - rot: 1.5707963267948966 rad pos: 0.5,10.5 - parent: 732 + parent: 1 type: Transform - - uid: 52 + - uid: 676 components: - rot: 1.5707963267948966 rad pos: -5.5,-6.5 - parent: 732 + parent: 1 type: Transform - - uid: 56 + - uid: 677 components: - - pos: 3.5,-5.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 1 type: Transform - - uid: 57 + - uid: 678 components: - - pos: 2.5,-6.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 1 type: Transform - - uid: 61 + - uid: 679 components: - rot: 1.5707963267948966 rad pos: -8.5,11.5 - parent: 732 + parent: 1 type: Transform - - uid: 62 + - uid: 680 components: - - pos: 2.5,-5.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 1 type: Transform - - uid: 64 + - uid: 681 components: - rot: 1.5707963267948966 rad pos: -7.5,11.5 - parent: 732 + parent: 1 type: Transform - - uid: 65 + - uid: 682 components: - - pos: -10.5,-0.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -10.5,-0.5 + parent: 1 type: Transform - - uid: 66 + - uid: 683 components: - - pos: -9.5,0.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -9.5,0.5 + parent: 1 type: Transform - - uid: 67 + - uid: 684 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: 1.5,0.5 - parent: 732 + parent: 1 type: Transform - - uid: 69 + - uid: 685 components: - - pos: -5.5,-4.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 1 type: Transform - - uid: 70 + - uid: 686 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: 3.5,4.5 - parent: 732 + parent: 1 type: Transform - - uid: 71 - components: - - pos: -5.5,-1.5 - parent: 732 - type: Transform - - uid: 72 + - uid: 687 components: - - pos: -6.5,7.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 1 type: Transform - - uid: 74 + - uid: 688 components: - - pos: 0.5,-6.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -6.5,7.5 + parent: 1 type: Transform - - uid: 76 + - uid: 689 components: - - pos: -0.5,8.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 1 type: Transform - - uid: 78 + - uid: 690 components: - - pos: -2.5,-6.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -0.5,8.5 + parent: 1 type: Transform - - uid: 79 + - uid: 691 components: - - pos: 5.5,5.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 1 type: Transform - - uid: 80 + - uid: 692 components: - - pos: -5.5,-5.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 1 type: Transform - - uid: 81 + - uid: 693 components: - - pos: -0.5,-6.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 1 type: Transform - - uid: 82 + - uid: 694 components: - - pos: 2.5,9.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 2.5,9.5 + parent: 1 type: Transform - - uid: 83 + - uid: 695 components: - - pos: 5.5,6.5 - parent: 732 + - pos: 6.5,3.5 + parent: 1 type: Transform - - uid: 84 + - uid: 696 components: - - pos: 5.5,-3.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 1 type: Transform - - uid: 85 + - uid: 697 components: - - pos: -1.5,-6.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 1 type: Transform - - uid: 90 + - uid: 698 components: - - pos: -5.5,-3.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 1 type: Transform - - uid: 95 + - uid: 699 components: - - pos: -8.5,0.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -8.5,0.5 + parent: 1 type: Transform - - uid: 97 + - uid: 700 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: 5.5,0.5 - parent: 732 - type: Transform - - uid: 99 - components: - - pos: -3.5,-6.5 - parent: 732 - type: Transform - - uid: 103 - components: - - pos: -3.5,8.5 - parent: 732 + parent: 1 type: Transform - - uid: 107 - components: - - pos: -8.5,4.5 - parent: 732 - type: Transform - - uid: 113 + - uid: 701 components: - - pos: 5.5,-0.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 1 type: Transform - - uid: 114 + - uid: 702 components: - - pos: -10.5,5.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1 type: Transform - - uid: 116 + - uid: 703 components: - - pos: -9.5,3.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -8.5,4.5 + parent: 1 type: Transform - - uid: 117 + - uid: 704 components: - - pos: -10.5,4.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -10.5,5.5 + parent: 1 type: Transform - - uid: 118 + - uid: 705 components: - - rot: 3.141592653589793 rad - pos: 4.5,1.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -9.5,3.5 + parent: 1 type: Transform - - uid: 120 + - uid: 706 components: - - pos: -10.5,7.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -10.5,4.5 + parent: 1 type: Transform - - uid: 122 + - uid: 707 components: - - rot: 3.141592653589793 rad - pos: 5.5,4.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -10.5,7.5 + parent: 1 type: Transform - - uid: 126 + - uid: 708 components: - - pos: -1.5,8.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -1.5,8.5 + parent: 1 type: Transform - - uid: 127 + - uid: 709 components: - rot: 1.5707963267948966 rad pos: -9.5,11.5 - parent: 732 + parent: 1 type: Transform - - uid: 128 + - uid: 710 components: - rot: 1.5707963267948966 rad pos: -6.5,11.5 - parent: 732 + parent: 1 type: Transform - - uid: 129 + - uid: 711 components: - - pos: 4.5,8.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 4.5,8.5 + parent: 1 type: Transform - - uid: 133 + - uid: 712 components: - rot: 1.5707963267948966 rad pos: -4.5,-6.5 - parent: 732 + parent: 1 type: Transform - - uid: 134 + - uid: 713 components: - - pos: 0.5,8.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 0.5,8.5 + parent: 1 type: Transform - - uid: 135 + - uid: 714 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: 4.5,0.5 - parent: 732 + parent: 1 type: Transform - - uid: 136 + - uid: 715 components: - - pos: -10.5,0.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -10.5,0.5 + parent: 1 type: Transform - - uid: 137 + - uid: 716 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: 1.5,4.5 - parent: 732 + parent: 1 type: Transform - - uid: 138 + - uid: 717 components: - - pos: 4.5,9.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 4.5,9.5 + parent: 1 type: Transform - - uid: 139 + - uid: 718 components: - - pos: -9.5,4.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -9.5,4.5 + parent: 1 type: Transform - - uid: 141 + - uid: 719 components: - - rot: 3.141592653589793 rad - pos: 4.5,3.5 - parent: 732 + - pos: 5.5,8.5 + parent: 1 type: Transform - - uid: 142 + - uid: 720 components: - - pos: 5.5,7.5 - parent: 732 + - pos: 6.5,1.5 + parent: 1 type: Transform - - uid: 144 + - uid: 721 components: - - pos: -7.5,-6.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -7.5,-6.5 + parent: 1 type: Transform - - uid: 146 + - uid: 722 components: - - pos: 2.5,8.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 2.5,8.5 + parent: 1 type: Transform - - uid: 149 + - uid: 723 components: - - pos: -5.5,8.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -5.5,8.5 + parent: 1 type: Transform - - uid: 157 + - uid: 724 components: - - pos: -4.5,8.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -4.5,8.5 + parent: 1 type: Transform - - uid: 158 + - uid: 725 components: - - pos: -8.5,7.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -8.5,7.5 + parent: 1 type: Transform - - uid: 164 + - uid: 726 components: - - pos: 5.5,-4.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 1 type: Transform - - uid: 166 + - uid: 727 components: - - pos: 4.5,10.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 4.5,10.5 + parent: 1 type: Transform - - uid: 167 + - uid: 728 components: - - pos: -10.5,6.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -10.5,6.5 + parent: 1 type: Transform - - uid: 170 + - uid: 729 components: - - pos: -5.5,7.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -5.5,7.5 + parent: 1 type: Transform - - uid: 172 + - uid: 730 components: - - pos: -10.5,-4.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -10.5,-4.5 + parent: 1 type: Transform - - uid: 174 + - uid: 731 components: - - pos: -10.5,-3.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -10.5,-3.5 + parent: 1 type: Transform - - uid: 178 + - uid: 732 components: - - pos: 3.5,-2.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 1 type: Transform - - uid: 179 + - uid: 733 components: - - pos: 4.5,-2.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 1 type: Transform - - uid: 192 + - uid: 734 components: - - pos: 5.5,-5.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 1 type: Transform - - uid: 209 + - uid: 735 components: - - pos: 5.5,-2.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 type: Transform - - uid: 507 + - uid: 736 components: - - rot: -1.5707963267948966 rad + - rot: 1.5707963267948966 rad pos: -9.5,7.5 - parent: 732 + parent: 1 type: Transform - - uid: 600 + - uid: 737 components: - - pos: 1.5,10.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: 1.5,10.5 + parent: 1 type: Transform - - uid: 712 + - uid: 738 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: 2.5,15.5 - parent: 732 + parent: 1 type: Transform - - uid: 713 + - uid: 739 components: - - rot: 3.141592653589793 rad + - rot: 1.5707963267948966 rad pos: 4.5,15.5 - parent: 732 + parent: 1 type: Transform -- proto: WallShuttleDiagonal - entities: - - uid: 37 + - uid: 740 components: - - rot: 1.5707963267948966 rad - pos: -10.5,-6.5 - parent: 732 + - rot: 3.141592653589793 rad + pos: 6.5,-2.5 + parent: 1 type: Transform - - uid: 63 + - uid: 741 components: - - rot: 1.5707963267948966 rad - pos: -11.5,0.5 - parent: 732 + - rot: 3.141592653589793 rad + pos: 8.5,5.5 + parent: 1 type: Transform - - uid: 75 + - uid: 742 components: - - rot: -1.5707963267948966 rad - pos: -6.5,12.5 - parent: 732 + - rot: 3.141592653589793 rad + pos: 6.5,-1.5 + parent: 1 type: Transform - - uid: 87 + - uid: 743 components: - - pos: -8.5,12.5 - parent: 732 + - rot: 3.141592653589793 rad + pos: 6.5,-0.5 + parent: 1 type: Transform - - uid: 93 +- proto: WallPlastitaniumDiagonal + entities: + - uid: 744 components: - rot: -1.5707963267948966 rad - pos: 6.5,4.5 - parent: 732 + pos: 8.5,8.5 + parent: 1 type: Transform - - uid: 96 + - uid: 745 components: - - pos: -11.5,4.5 - parent: 732 + - rot: 3.141592653589793 rad + pos: 7.5,-2.5 + parent: 1 type: Transform - - uid: 98 + - uid: 746 components: - rot: 3.141592653589793 rad - pos: 6.5,-2.5 - parent: 732 + pos: -1.5,-7.5 + parent: 1 type: Transform - - uid: 168 + - uid: 747 components: - - rot: 3.141592653589793 rad - pos: 6.5,0.5 - parent: 732 + - rot: 1.5707963267948966 rad + pos: -11.5,-2.5 + parent: 1 type: Transform - - uid: 181 + - uid: 749 components: - rot: -1.5707963267948966 rad - pos: 6.5,7.5 - parent: 732 + pos: -6.5,12.5 + parent: 1 type: Transform - - uid: 184 + - uid: 750 components: - - pos: -11.5,7.5 - parent: 732 + - pos: -11.5,-0.5 + parent: 1 type: Transform - - uid: 185 + - uid: 751 components: - rot: 3.141592653589793 rad - pos: 6.5,5.5 - parent: 732 + pos: 5.5,-6.5 + parent: 1 type: Transform - - uid: 186 + - uid: 752 + components: + - pos: -11.5,7.5 + parent: 1 + type: Transform + - uid: 753 + components: + - pos: -11.5,4.5 + parent: 1 + type: Transform + - uid: 754 components: - rot: 1.5707963267948966 rad pos: -11.5,5.5 - parent: 732 + parent: 1 type: Transform - - uid: 187 + - uid: 755 components: - rot: 1.5707963267948966 rad - pos: -11.5,-2.5 - parent: 732 + pos: -3.5,-7.5 + parent: 1 type: Transform - - uid: 193 + - uid: 756 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,0.5 + parent: 1 + type: Transform + - uid: 757 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-6.5 + parent: 1 + type: Transform + - uid: 758 components: - rot: 3.141592653589793 rad - pos: 5.5,-6.5 - parent: 732 + pos: 8.5,0.5 + parent: 1 type: Transform - - uid: 608 + - uid: 759 components: - rot: -1.5707963267948966 rad - pos: 6.5,-0.5 - parent: 732 + pos: 7.5,-0.5 + parent: 1 type: Transform - - uid: 618 + - uid: 773 components: - - rot: 3.141592653589793 rad - pos: -1.5,-7.5 - parent: 732 + - pos: -9.5,12.5 + parent: 1 type: Transform - - uid: 623 + - uid: 774 components: - - pos: -11.5,-0.5 - parent: 732 + - rot: -1.5707963267948966 rad + pos: 5.5,10.5 + parent: 1 type: Transform - - uid: 628 +- proto: WardrobePrisonFilled + entities: + - uid: 760 components: - - rot: 1.5707963267948966 rad - pos: -3.5,-7.5 - parent: 732 + - pos: 7.5,7.5 + parent: 1 type: Transform - proto: WaterTankFull entities: - - uid: 562 + - uid: 761 components: - pos: 1.5,1.5 - parent: 732 + parent: 1 type: Transform - proto: WeaponCapacitorRecharger entities: - - uid: 28 + - uid: 762 components: - - pos: -0.5,11.5 - parent: 732 + - pos: -0.5,12.5 + parent: 1 type: Transform - proto: WeaponLaserGun entities: - - uid: 652 + - uid: 763 components: - pos: -8.532435,10.5924015 - parent: 732 + parent: 1 type: Transform -- proto: WeaponRevolverPirate +- proto: WeaponMakeshiftLaser entities: - - uid: 538 + - uid: 764 components: - - pos: -4.573346,4.0735464 - parent: 732 + - pos: -4.4356194,4.035976 + parent: 1 type: Transform - - uid: 670 + - uid: 765 + components: + - pos: -4.3887444,4.004726 + parent: 1 + type: Transform +- proto: WeaponRevolverPirate + entities: + - uid: 766 components: - - pos: -4.498213,3.6620688 - parent: 732 + - pos: -4.5137444,4.332851 + parent: 1 type: Transform - proto: WeaponShotgunBlunderbuss entities: - - uid: 565 + - uid: 767 components: - - pos: -4.4169397,4.4548354 - parent: 732 + - pos: -4.4981194,4.692226 + parent: 1 type: Transform - - uid: 581 + - uid: 768 components: - pos: -4.5263147,4.6892104 - parent: 732 + parent: 1 type: Transform - proto: WelderMini entities: - - uid: 588 + - uid: 769 components: - pos: -6.391465,2.47309 - parent: 732 + parent: 1 type: Transform - canCollide: False type: Physics - proto: WeldingFuelTankFull entities: - - uid: 561 + - uid: 770 components: - pos: -6.5,1.5 - parent: 732 + parent: 1 type: Transform - proto: Wrench entities: - - uid: 634 + - uid: 771 components: - pos: 2.4808617,-4.4780817 - parent: 732 + parent: 1 type: Transform - canCollide: False type: Physics diff --git a/Resources/Maps/Shuttles/striker.yml b/Resources/Maps/Shuttles/striker.yml index 2601c78160a..d0832b066cf 100644 --- a/Resources/Maps/Shuttles/striker.yml +++ b/Resources/Maps/Shuttles/striker.yml @@ -2605,4 +2605,4 @@ entities: - pos: 1.60798,-0.3062118 parent: 325 type: Transform -... +... \ No newline at end of file diff --git a/Resources/Maps/aspid.yml b/Resources/Maps/aspid.yml index a4a11f51c88..5cefcbd6587 100644 --- a/Resources/Maps/aspid.yml +++ b/Resources/Maps/aspid.yml @@ -1,124906 +1,119893 @@ -meta: - format: 6 - postmapinit: false -tilemap: - 0: Space - 1: FloorArcadeBlue - 15: FloorBlueCircuit - 18: 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 - 51: FloorGreenCircuit - 55: FloorHydro - 59: FloorLino - 61: FloorMetalDiamond - 62: FloorMime - 63: FloorMono - 69: FloorPlastic - 71: FloorReinforced - 83: FloorSteel - 85: FloorSteelCheckerLight - 88: FloorSteelDirty - 89: FloorSteelHerringbone - 90: FloorSteelMini - 91: FloorSteelMono - 92: FloorSteelOffset - 93: FloorSteelPavement - 94: FloorSteelPavementVertical - 95: FloorTechMaint - 96: FloorTechMaint2 - 99: FloorWhite - 100: FloorWhiteDiagonal - 101: FloorWhiteDiagonalMini - 103: FloorWhiteMini - 104: FloorWhiteMono - 108: FloorWhitePlastic - 109: FloorWood - 110: FloorWoodTile - 111: Lattice - 112: 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: cAAAAAAAWwAAAAACWwAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAABYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAACWwAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAADUwAAAAABWwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABWgAAAAACWgAAAAAAWgAAAAABWgAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAWwAAAAADWwAAAAACWgAAAAAAWgAAAAABWgAAAAADWgAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABKgAAAAAAUwAAAAADUwAAAAABKgAAAAAAcAAAAAAAWwAAAAAAWwAAAAABUwAAAAABUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAADWwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAADcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAABKgAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAABcAAAAAAAcAAAAAAAJgAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAABGgAAAAAAGgAAAAABGgAAAAADGgAAAAACGgAAAAACGgAAAAABGgAAAAADGgAAAAADGgAAAAADGgAAAAADGgAAAAAAJgAAAAAAcAAAAAAAGgAAAAACKgAAAAAAGgAAAAACGgAAAAABKgAAAAAAGgAAAAAAGgAAAAABKgAAAAAAGgAAAAAAGgAAAAADKgAAAAAAGgAAAAAAGgAAAAACKgAAAAAAJgAAAAAAJgAAAAAAGgAAAAACGgAAAAAAGgAAAAABGgAAAAACGgAAAAAAGgAAAAABGgAAAAABGgAAAAABGgAAAAADGgAAAAADGgAAAAACGgAAAAADGgAAAAAAGgAAAAABJgAAAAAAcAAAAAAAGgAAAAABKgAAAAAAGgAAAAABGgAAAAACKgAAAAAAGgAAAAABGgAAAAACKgAAAAAAGgAAAAADGgAAAAABKgAAAAAAGgAAAAABGgAAAAADKgAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAAAGgAAAAADGgAAAAADGgAAAAACGgAAAAAAGgAAAAACGgAAAAADGgAAAAAAGgAAAAADGgAAAAADGgAAAAADGgAAAAADEgAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAADGgAAAAAAGgAAAAADGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAADGgAAAAADGgAAAAAAGgAAAAADGgAAAAAA - version: 6 - -1,0: - ind: -1,0 - tiles: EgAAAAAAEgAAAAAAGgAAAAADKgAAAAAAGgAAAAACGgAAAAADKgAAAAAAGgAAAAADGgAAAAADKgAAAAAAGgAAAAACGgAAAAAAcAAAAAAAGgAAAAADGgAAAAABKgAAAAAAEgAAAAAAcAAAAAAAHwAAAAACGgAAAAABGgAAAAAAGgAAAAABGgAAAAADGgAAAAABGgAAAAACGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAADGgAAAAAAGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAGgAAAAACKgAAAAAAGgAAAAACGgAAAAABKgAAAAAAGgAAAAAAGgAAAAAAKgAAAAAAGgAAAAADGgAAAAADKgAAAAAAGgAAAAADGgAAAAACKgAAAAAAPgAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAACGgAAAAABGgAAAAAAGgAAAAACGgAAAAAAGgAAAAABGgAAAAAAGgAAAAADGgAAAAACGgAAAAADGgAAAAABGgAAAAADPgAAAAAAPgAAAAAAGgAAAAADGgAAAAADGgAAAAADGgAAAAAAbQAAAAADbQAAAAABbQAAAAACbQAAAAAAbQAAAAABbQAAAAADGgAAAAABGgAAAAACGgAAAAABGgAAAAABPgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAAAbQAAAAADbQAAAAABbQAAAAADbQAAAAACKgAAAAAAGgAAAAADGgAAAAACKgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbQAAAAABbQAAAAAAbQAAAAADbQAAAAACbQAAAAABbQAAAAABGgAAAAABGgAAAAABGgAAAAACGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAADbQAAAAACbQAAAAABbQAAAAAAbQAAAAAAbQAAAAABKgAAAAAAGgAAAAABGgAAAAADKgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAAAbQAAAAACbQAAAAABbQAAAAABbQAAAAABbQAAAAADbQAAAAAAGgAAAAABGgAAAAACGgAAAAABGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAABGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAGgAAAAAAKgAAAAAAGgAAAAADGgAAAAACKgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAAAGgAAAAACGgAAAAADYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAACWwAAAAABcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAD - version: 6 - 0,-1: - ind: 0,-1 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAACcAAAAAAADwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAWgAAAAADWgAAAAACWgAAAAABWgAAAAABUwAAAAABUwAAAAABcAAAAAAAHwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAABWgAAAAABWgAAAAACWgAAAAABWgAAAAADUwAAAAAAUwAAAAABcAAAAAAADwAAAAAAUwAAAAAAUwAAAAACKgAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACWgAAAAACWgAAAAAAWgAAAAACWgAAAAAAUwAAAAADUwAAAAADcAAAAAAAXwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAABcAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAAAcAAAAAAAXwAAAAAAUwAAAAABcAAAAAAAUwAAAAACUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAADWwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAAAcAAAAAAAHwAAAAADGgAAAAABcAAAAAAAGgAAAAACGgAAAAACGgAAAAABGgAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAGgAAAAAAGgAAAAADKgAAAAAAGgAAAAADWwAAAAABYwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAACGgAAAAAAcAAAAAAAYwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACKgAAAAAAGgAAAAAAcAAAAAAAYwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAAAGgAAAAAAcAAAAAAAYwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAABGgAAAAADcAAAAAAAYwAAAAAAVQAAAAAAVQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAA - version: 6 - 0,0: - ind: 0,0 - tiles: GgAAAAADGgAAAAACKgAAAAAAGgAAAAACcAAAAAAAYwAAAAAAVQAAAAAAVQAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAGgAAAAAAGgAAAAAAGgAAAAADGgAAAAACcAAAAAAAYwAAAAAAVQAAAAAAVQAAAAAAYwAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAGgAAAAABGgAAAAADKgAAAAAAHwAAAAABcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAYAAAAAAAcAAAAAAAXwAAAAAAGgAAAAAAGgAAAAABGgAAAAACGgAAAAAAWwAAAAABcAAAAAAAGgAAAAADGgAAAAADGgAAAAACcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAADGgAAAAADcAAAAAAAGgAAAAADGgAAAAACGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAABKgAAAAAAGgAAAAAAHwAAAAAAGgAAAAADGgAAAAABGgAAAAACGgAAAAADGgAAAAADGgAAAAABGgAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAADGgAAAAADcAAAAAAAGgAAAAAAGgAAAAACHgAAAAADHgAAAAADHgAAAAACGgAAAAACGgAAAAABYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABKgAAAAAAGgAAAAADcAAAAAAAGgAAAAACGgAAAAACHgAAAAAAHgAAAAABHgAAAAADGgAAAAACHwAAAAABcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAAAGgAAAAAAcAAAAAAAGgAAAAABGgAAAAABHgAAAAAAHgAAAAABHgAAAAACGgAAAAABGgAAAAABcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADGgAAAAADGgAAAAADGgAAAAABGgAAAAABcAAAAAAAGgAAAAACGgAAAAABHgAAAAADHgAAAAABHgAAAAAAGgAAAAADGgAAAAADWwAAAAACUwAAAAAAUwAAAAADUwAAAAACGgAAAAAAGgAAAAACKgAAAAAAGgAAAAADcAAAAAAAGgAAAAAAGgAAAAABGgAAAAACGgAAAAADGgAAAAADGgAAAAACGgAAAAACcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAGgAAAAAAGgAAAAACGgAAAAABGgAAAAADcAAAAAAAGgAAAAADGgAAAAADGgAAAAAAGgAAAAACGgAAAAACGgAAAAADGgAAAAADcAAAAAAANwAAAAAANwAAAAAANwAAAAAAcAAAAAAAWwAAAAACWwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAD - version: 6 - -1,1: - ind: -1,1 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAUwAAAAACUwAAAAACGgAAAAACHwAAAAADcAAAAAAAUwAAAAABUwAAAAACHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAADGgAAAAACHwAAAAACcAAAAAAAUwAAAAABUwAAAAADHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAABKgAAAAAAGgAAAAAAHwAAAAACcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAZwAAAAAAZwAAAAACZwAAAAACcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAACGgAAAAADHwAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACGgAAAAABcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAYwAAAAAAYwAAAAADYwAAAAABYwAAAAADYwAAAAACcAAAAAAAUwAAAAADKgAAAAAAGgAAAAACcAAAAAAAHgAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAADWwAAAAABYwAAAAACZwAAAAABZwAAAAABZwAAAAAAYwAAAAADcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAHgAAAAACUwAAAAACUwAAAAAAUwAAAAACWwAAAAACcAAAAAAAYwAAAAACZwAAAAACZwAAAAADZwAAAAACYwAAAAABcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAAAcAAAAAAAYwAAAAABYwAAAAADYwAAAAADYwAAAAABYwAAAAADcAAAAAAAUwAAAAACKgAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAHwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAABcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAACZwAAAAADGgAAAAABGgAAAAADcAAAAAAAGgAAAAABGgAAAAACGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAACKgAAAAAAZwAAAAADGgAAAAACGgAAAAABcAAAAAAAGgAAAAADGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAACGgAAAAADHwAAAAACcAAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAACUwAAAAADWwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADKgAAAAAAUwAAAAAAUwAAAAADUwAAAAADcAAAAAAAGgAAAAABGgAAAAACGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAB - version: 6 - 0,1: - ind: 0,1 - tiles: UwAAAAADcAAAAAAAUwAAAAABUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAAAaAAAAAAAYwAAAAABYwAAAAACYwAAAAADYwAAAAADYwAAAAABYwAAAAABYwAAAAACYwAAAAACYwAAAAABYwAAAAADUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAADaAAAAAACYwAAAAADYwAAAAACYwAAAAAAYwAAAAAAYwAAAAADYwAAAAADYwAAAAAAYwAAAAAAYwAAAAACYwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAYwAAAAACYwAAAAADYwAAAAAAYwAAAAABYwAAAAABYwAAAAACYwAAAAADYwAAAAACYwAAAAABYwAAAAABUwAAAAACcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAYwAAAAABYwAAAAACYwAAAAABYwAAAAAAYwAAAAAAYwAAAAADYwAAAAABYwAAAAAAYwAAAAACYwAAAAADUwAAAAACcAAAAAAAYwAAAAABYwAAAAADYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAaAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAACcAAAAAAAYwAAAAAAZwAAAAAAZwAAAAADYwAAAAAAYwAAAAADYwAAAAACYwAAAAADYwAAAAADYwAAAAABYwAAAAAAYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAYwAAAAABZwAAAAABZwAAAAAAZwAAAAACYwAAAAABYwAAAAADYwAAAAABYwAAAAABYwAAAAADZAAAAAACYwAAAAACcAAAAAAAYAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAYwAAAAABZwAAAAADZwAAAAADZwAAAAACYwAAAAADYwAAAAADYwAAAAADcAAAAAAAYwAAAAACZAAAAAABYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAYwAAAAAAYwAAAAABYwAAAAACYwAAAAADYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAZAAAAAAAYwAAAAACcAAAAAAAXwAAAAAAXwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAaAAAAAACcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAADZAAAAAAAYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAcAAAAAAAYwAAAAABYwAAAAAAYwAAAAAAYwAAAAABYwAAAAAAZAAAAAAAYwAAAAABcAAAAAAAYwAAAAADYwAAAAABUwAAAAADcAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAcAAAAAAAYwAAAAADYwAAAAABYwAAAAAAYwAAAAADYwAAAAAAYwAAAAACYwAAAAADaAAAAAACYwAAAAACZQAAAAADUwAAAAADcAAAAAAAZwAAAAAAZwAAAAAAYwAAAAADcAAAAAAAaAAAAAADaAAAAAACcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAADUwAAAAABcAAAAAAAZwAAAAAAZwAAAAAAYwAAAAAAYwAAAAAAYwAAAAADYwAAAAADcAAAAAAAGgAAAAABGgAAAAACGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAZwAAAAAAZwAAAAAAZAAAAAABZAAAAAADZAAAAAABYwAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAABGgAAAAACHwAAAAADbQAAAAAAbQAAAAAC - version: 6 - 1,0: - ind: 1,0 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAKgAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAACcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAUwAAAAACWwAAAAACWwAAAAABUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAWwAAAAACcAAAAAAAUwAAAAABUwAAAAABKgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAWwAAAAADcAAAAAAAUwAAAAACUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAWwAAAAABWwAAAAADUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACKgAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAACbQAAAAADbQAAAAACbQAAAAADcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAbQAAAAABbQAAAAABbQAAAAABbQAAAAACbQAAAAAAGgAAAAAAUwAAAAABUwAAAAADKgAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAbQAAAAAAbQAAAAABbQAAAAAAbQAAAAACbQAAAAABcAAAAAAAUwAAAAABUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAKgAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAAC - version: 6 - 1,-1: - ind: 1,-1 - tiles: DwAAAAAADwAAAAAAHgAAAAAAHgAAAAABDwAAAAAADwAAAAAADwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAAAHwAAAAABHgAAAAADHgAAAAABHwAAAAAAHwAAAAABHwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADwAAAAAADwAAAAAAHgAAAAACHgAAAAABDwAAAAAADwAAAAAADwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAACGgAAAAACcAAAAAAAXwAAAAAAGgAAAAABHwAAAAABHwAAAAABGgAAAAACXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAACGgAAAAAAGgAAAAABcAAAAAAAXwAAAAAAGgAAAAACGgAAAAACGgAAAAAAGgAAAAABXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAAAGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAABHwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAHwAAAAABcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAKgAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAADcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAANwAAAAAAUwAAAAABNwAAAAAAUwAAAAAANwAAAAAAUwAAAAAANwAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAABNwAAAAAAUwAAAAADNwAAAAAAUwAAAAAANwAAAAAAUwAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAUwAAAAACUwAAAAABKgAAAAAANwAAAAAAWwAAAAAANwAAAAAAUwAAAAAANwAAAAAAUwAAAAABNwAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAUwAAAAADNwAAAAAAUwAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAUwAAAAAAUwAAAAABKgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAB - version: 6 - 1,1: - ind: 1,1 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAACYwAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAADWQAAAAABLQAAAAABLQAAAAACcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAYwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXQAAAAABXQAAAAADXQAAAAACWQAAAAADWQAAAAACLQAAAAADLQAAAAADcAAAAAAAUwAAAAABUwAAAAABKgAAAAAAYwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXQAAAAABXQAAAAAAWQAAAAACWQAAAAADWQAAAAACXgAAAAABXgAAAAABWwAAAAAAUwAAAAAAUwAAAAADUwAAAAABYwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAALQAAAAADLQAAAAABLQAAAAABWQAAAAABXgAAAAACXgAAAAACXgAAAAACWwAAAAAAUwAAAAADUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALQAAAAACLQAAAAABLQAAAAACXgAAAAABXgAAAAABXgAAAAABXgAAAAADWwAAAAACUwAAAAACUwAAAAACKgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALQAAAAADLQAAAAAALQAAAAABXgAAAAAAXgAAAAACXgAAAAABXgAAAAADcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXgAAAAACWwAAAAABcAAAAAAAUwAAAAADUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADKgAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAbAAAAAACbAAAAAABbAAAAAADIwAAAAADIwAAAAACcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAWwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAACYwAAAAAAcAAAAAAAbAAAAAABbAAAAAAAbAAAAAACIwAAAAACIwAAAAACYAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACKgAAAAAAYwAAAAADaAAAAAAAbAAAAAAAbAAAAAADbAAAAAAAIwAAAAADIwAAAAADcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAABUwAAAAACaAAAAAABcAAAAAAAbAAAAAADbAAAAAACbAAAAAACIwAAAAACIwAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAKgAAAAAAbQAAAAACcAAAAAAAIwAAAAADIwAAAAACIwAAAAADIwAAAAABcAAAAAAAWwAAAAAAUwAAAAABWwAAAAADWwAAAAACWwAAAAADcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAA - version: 6 - -2,-1: - ind: -2,-1 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAGgAAAAADcAAAAAAAUwAAAAABUwAAAAABUwAAAAACXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAWwAAAAACWwAAAAACUwAAAAAAUwAAAAABUwAAAAADKQAAAAAAKQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAACKgAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAJgAAAAAAJgAAAAAAKgAAAAAAUwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJgAAAAAAJgAAAAAAUwAAAAABUwAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJgAAAAAAJgAAAAAAUwAAAAAAUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJgAAAAAAJgAAAAAAKgAAAAAAUwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAEgAAAAAAEgAAAAAA - version: 6 - -2,1: - ind: -2,1 - tiles: UwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAACUwAAAAACcAAAAAAAGgAAAAAAGgAAAAACGgAAAAABKgAAAAAAUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACHwAAAAAAGgAAAAADGgAAAAABGgAAAAADUwAAAAABUwAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAAAbQAAAAADcAAAAAAAUwAAAAACUwAAAAABHwAAAAABGgAAAAACGgAAAAAAGgAAAAABUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAAAbQAAAAADcAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAADKgAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACUwAAAAADWwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAADUwAAAAADHgAAAAACcAAAAAAAGgAAAAABGgAAAAABUwAAAAADUwAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAUwAAAAACUwAAAAABHgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAKgAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKgAAAAAAUwAAAAACcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKgAAAAAAUwAAAAACUwAAAAAAUwAAAAADXAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAABcAAAAAAAUwAAAAACXAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAA - version: 6 - -2,0: - ind: -2,0 - tiles: UwAAAAABUwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAKgAAAAAAUwAAAAACYAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARQAAAAACPgAAAAAAKgAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARQAAAAAAPgAAAAAAUwAAAAABUwAAAAABcAAAAAAAGgAAAAAAbQAAAAABbQAAAAADbQAAAAACbQAAAAABbQAAAAABbQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYAAAAAAARQAAAAADPgAAAAAAUwAAAAADUwAAAAAAcAAAAAAAGgAAAAAAbQAAAAABbQAAAAADbQAAAAACbQAAAAABbQAAAAAAbQAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKgAAAAAAUwAAAAACcAAAAAAAGgAAAAAAbQAAAAABbQAAAAABbQAAAAACbQAAAAAAbQAAAAAAbQAAAAACYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAGgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAABbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAGgAAAAAAbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAABcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAKgAAAAAAUwAAAAABGgAAAAAAGgAAAAAAbQAAAAAAbQAAAAADbQAAAAABbQAAAAABbQAAAAADbQAAAAADcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAXwAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAADUwAAAAACUwAAAAADKgAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAAD - version: 6 - 2,-1: - ind: 2,-1 - tiles: cAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAABUwAAAAACcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 2,0: - ind: 2,0 - tiles: UwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADWwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAAD - version: 6 - 2,1: - ind: 2,1 - tiles: UwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -3,-1: - ind: -3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAACUwAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAHwAAAAACHwAAAAACRwAAAAAARwAAAAAAHwAAAAACHwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAGgAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAADHwAAAAACRwAAAAAARwAAAAAAHwAAAAABHwAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAACHwAAAAADRwAAAAAARwAAAAAAHwAAAAAAHwAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAABcAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAHwAAAAABHwAAAAADRwAAAAAARwAAAAAAHwAAAAABHwAAAAADcAAAAAAAGgAAAAACGgAAAAACGgAAAAACHwAAAAADUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAABHwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAAAcAAAAAAAUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAACWwAAAAACcAAAAAAAGgAAAAACGgAAAAAAGgAAAAACUwAAAAADUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAACHwAAAAACGgAAAAADGgAAAAABGgAAAAADUwAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAACcAAAAAAAGgAAAAAAGgAAAAADGgAAAAAAcAAAAAAAUwAAAAAC - version: 6 - -3,0: - ind: -3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAADUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAABWwAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAABUwAAAAACUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAACcAAAAAAAWwAAAAACcAAAAAAAcAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAABUwAAAAADUwAAAAADUwAAAAACcAAAAAAAUwAAAAACUwAAAAABWwAAAAABUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAADWwAAAAABUwAAAAACUwAAAAADcAAAAAAAWwAAAAADUwAAAAACWwAAAAACUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAABWwAAAAACUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAADbQAAAAACcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAAAWwAAAAAAUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAACbQAAAAABcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAADbQAAAAACWwAAAAABUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAAAcAAAAAAAUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAABbQAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADHwAAAAABGgAAAAABGgAAAAABGgAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAADcAAAAAAAUwAAAAABUwAAAAABUwAAAAACcAAAAAAAGgAAAAABGgAAAAAAGgAAAAACcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACWwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAADUwAAAAAD - version: 6 - -3,1: - ind: -3,1 - tiles: IQAAAAAAIQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAAAcAAAAAAAGgAAAAAAHwAAAAABcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAABcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAACGgAAAAABGgAAAAACGgAAAAACYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAHwAAAAADHwAAAAADHwAAAAACGgAAAAACGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAADGgAAAAAAGgAAAAABGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAADAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAHwAAAAAAHwAAAAAAHwAAAAADGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAADGgAAAAAAGgAAAAAAGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAABGgAAAAABGgAAAAADGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABAAAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAABGgAAAAAAGgAAAAACGgAAAAAAGgAAAAACGgAAAAADGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACAAAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAABGgAAAAADGgAAAAACGgAAAAACGgAAAAACGgAAAAACGgAAAAABGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAB - version: 6 - 3,0: - ind: 3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAADYAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAADYAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 3,1: - ind: 3,1 - tiles: YAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 2,2: - ind: 2,2 - tiles: UwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAACLQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAAALQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAABGgAAAAABcAAAAAAAUwAAAAACUwAAAAACGgAAAAACGgAAAAABKgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAGgAAAAACGgAAAAADGgAAAAACGgAAAAAAHwAAAAABUwAAAAACUwAAAAADGgAAAAACGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAABGgAAAAAAcAAAAAAAUwAAAAACUwAAAAADGgAAAAADGgAAAAACKgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAACbQAAAAADbQAAAAABbQAAAAABbQAAAAADbQAAAAABcAAAAAAAIQAAAAADIQAAAAACKgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAACbQAAAAACbQAAAAADcAAAAAAAbQAAAAACbQAAAAACcAAAAAAA - version: 6 - 3,2: - ind: 3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAADYAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAABYAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAADcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 1,2: - ind: 1,2 - tiles: bQAAAAADcAAAAAAAIwAAAAACIwAAAAAAIwAAAAABIwAAAAACcAAAAAAAWwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAADWwAAAAAAUwAAAAACUwAAAAABUwAAAAAAbQAAAAACcAAAAAAAIwAAAAABIwAAAAADIwAAAAAAIwAAAAABcAAAAAAAWwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABWwAAAAABUwAAAAADUwAAAAAAKgAAAAAAbQAAAAAAcAAAAAAAIwAAAAACIwAAAAAAIwAAAAAAIwAAAAAAcAAAAAAAWwAAAAACUwAAAAACUwAAAAACUwAAAAAAWwAAAAABcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAABWwAAAAADcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAABWwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACKgAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAABWwAAAAACcAAAAAAAUwAAAAABUwAAAAAAZwAAAAADZwAAAAACZwAAAAABUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAALQAAAAACXgAAAAAAXgAAAAACcAAAAAAAUwAAAAADUwAAAAACZwAAAAACZwAAAAACZwAAAAABUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAALQAAAAABXgAAAAAAXgAAAAABcAAAAAAAUwAAAAADUwAAAAADZwAAAAAAZwAAAAABZwAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAACWwAAAAADcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKgAAAAAAGgAAAAABGgAAAAABIgAAAAACIgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAACIgAAAAACIgAAAAABbAAAAAAAbAAAAAACbAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAKgAAAAAAGgAAAAABGgAAAAAAIgAAAAABIgAAAAABcAAAAAAAbAAAAAADbAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAIgAAAAADIgAAAAADcAAAAAAAbAAAAAACbAAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAADbQAAAAABKgAAAAAAIQAAAAADIQAAAAADHQAAAAAAHQAAAAAA - version: 6 - 3,-1: - ind: 3,-1 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -4,-1: - ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -4,0: - ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAACUwAAAAACUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAACUwAAAAADUwAAAAAA - version: 6 - -4,1: - ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIQAAAAABIQAAAAADIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 0,2: - ind: 0,2 - tiles: UwAAAAAAcAAAAAAAZwAAAAAAZwAAAAAAZAAAAAACZAAAAAADZAAAAAAAYwAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAABGgAAAAABcAAAAAAAbQAAAAACbQAAAAACUwAAAAACcAAAAAAAZwAAAAAAZwAAAAAAZAAAAAADZAAAAAAAZAAAAAADYwAAAAADcAAAAAAAGgAAAAADGgAAAAADGgAAAAACGgAAAAACcAAAAAAAbQAAAAABbQAAAAACUwAAAAAAcAAAAAAAZwAAAAAAZwAAAAAAYwAAAAAAYwAAAAADYwAAAAADaAAAAAADcAAAAAAAGgAAAAADGgAAAAAAGgAAAAACGgAAAAAAcAAAAAAAbQAAAAADbQAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAADbQAAAAADUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAMwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAAAHwAAAAADGgAAAAABHwAAAAAAHgAAAAADHgAAAAABcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABHwAAAAADGgAAAAADHwAAAAABHgAAAAADHgAAAAABcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAB - version: 6 - -1,2: - ind: -1,2 - tiles: PQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAABcAAAAAAAGgAAAAAAGgAAAAABGgAAAAACcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAADPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAABHwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADKgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADWwAAAAAAWwAAAAACWwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAADKgAAAAAAUwAAAAABcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADcAAAAAAAUwAAAAACKgAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAADcAAAAAAAUwAAAAAAKgAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAD - version: 6 - -2,2: - ind: -2,2 - tiles: UwAAAAABUwAAAAADcAAAAAAAUwAAAAAAXAAAAAAAUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAACKgAAAAAAUwAAAAABUwAAAAADUwAAAAAAXAAAAAAAUwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAABcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAABcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAKgAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAACWwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAABWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAACcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAACWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAWAAAAAAAWAAAAAAAHwAAAAADGgAAAAABGgAAAAAAHwAAAAABGgAAAAADGgAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAA - version: 6 - -3,2: - ind: -3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAABIQAAAAACIQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALQAAAAABLQAAAAACLQAAAAABLQAAAAADUwAAAAACUwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAALQAAAAAALQAAAAABLQAAAAAALQAAAAACUwAAAAADUwAAAAACcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADcAAAAAAAbwAAAAAAcAAAAAAAbQAAAAADbQAAAAADcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAACcAAAAAAAbwAAAAAAcAAAAAAAbQAAAAABbQAAAAACbQAAAAACWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAAAUwAAAAADWwAAAAACUwAAAAADYAAAAAAAUwAAAAACcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAJQAAAAAAWAAAAAAAJQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbQAAAAADbQAAAAACbQAAAAABWAAAAAAAJQAAAAADWAAAAAAAJQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbQAAAAACbQAAAAADcAAAAAAAWAAAAAAAJQAAAAABWAAAAAAAJQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAA - version: 6 - -4,2: - ind: -4,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIQAAAAABIQAAAAAAIQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAACUwAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAACUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAACUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAA - version: 6 - 0,-2: - ind: 0,-2 - tiles: bwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAACHwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAWwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAACGgAAAAABcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAGgAAAAAAHgAAAAACHgAAAAAAGgAAAAADWwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAGgAAAAABHgAAAAABHgAAAAAAGgAAAAAAWwAAAAABUwAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAACGgAAAAACcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAABHwAAAAABHwAAAAABcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAABHwAAAAADcAAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAAAGgAAAAAAWwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAADWwAAAAABcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAABGgAAAAABXwAAAAAAcAAAAAAAXwAAAAAAGgAAAAAAGgAAAAADXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAAAGgAAAAABXwAAAAAAcAAAAAAAXwAAAAAAGgAAAAACGgAAAAABXwAAAAAAcAAAAAAADwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAACWwAAAAABcAAAAAAAcAAAAAAAHwAAAAAB - version: 6 - -1,-2: - ind: -1,-2 - tiles: cAAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAAAHwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAADHwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAACGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAABGgAAAAACGgAAAAADHwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAAAGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA - version: 6 - -3,3: - ind: -3,3 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADcAAAAAAAbQAAAAADbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAADcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACcAAAAAAAbQAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -4,3: - ind: -4,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -2,3: - ind: -2,3 - tiles: WAAAAAAAWAAAAAAAHwAAAAACGgAAAAACGgAAAAABHwAAAAAAGgAAAAAAGgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADWAAAAAAAWAAAAAAAcAAAAAAAHwAAAAACHwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAACcAAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAACbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAWwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADbQAAAAADcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbQAAAAABbQAAAAAAbQAAAAADcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAADbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAABbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA - version: 6 - -1,3: - ind: -1,3 - tiles: cAAAAAAAGgAAAAABGgAAAAAAGgAAAAADGgAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAAAHwAAAAACGgAAAAADGgAAAAADHwAAAAAAUwAAAAADUwAAAAADcAAAAAAAGgAAAAACHgAAAAAAHgAAAAACGgAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAHwAAAAABHwAAAAABcAAAAAAAUwAAAAADKgAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAACGgAAAAABcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAACHwAAAAABGgAAAAAAGgAAAAABHwAAAAACUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAADcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAGgAAAAAAGgAAAAACcAAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAADUwAAAAAAUwAAAAAAUwAAAAABKgAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAGgAAAAACGgAAAAABGgAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAABHwAAAAAAGgAAAAAAGgAAAAADcAAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAGgAAAAAAGgAAAAACcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAKgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAAAcAAAAAAAGgAAAAABGgAAAAABcAAAAAAAWwAAAAABUwAAAAADUwAAAAAAUwAAAAACGgAAAAACGgAAAAAAGgAAAAACcAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACHgAAAAAAHgAAAAAAGgAAAAAAHwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABHwAAAAADGgAAAAABGgAAAAADHwAAAAABcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADGgAAAAACGgAAAAACGgAAAAABcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAABcAAAAAAAGgAAAAADGgAAAAAAHwAAAAACcAAAAAAAcAAAAAAAUwAAAAABKgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABHwAAAAADcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAADGgAAAAADGgAAAAAAGgAAAAADGgAAAAADHwAAAAABcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAHwAAAAAAGgAAAAACGgAAAAADGgAAAAADGgAAAAAAHwAAAAACcAAAAAAAcAAAAAAAUwAAAAACKgAAAAAA - version: 6 - 0,3: - ind: 0,3 - tiles: UwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAMwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAABcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABcAAAAAAAHwAAAAAAGgAAAAAAGgAAAAACGgAAAAAAGgAAAAACGgAAAAAAGgAAAAADGgAAAAADGgAAAAAAGgAAAAABGgAAAAABcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADHwAAAAADGgAAAAABGgAAAAACGgAAAAAAGgAAAAABGwAAAAABGwAAAAABGwAAAAADGwAAAAACGwAAAAAAGwAAAAACGgAAAAACcAAAAAAAUwAAAAADUwAAAAADUwAAAAABcAAAAAAAGgAAAAADGgAAAAAAGgAAAAACGgAAAAABGwAAAAACGwAAAAACGwAAAAAAGwAAAAABGwAAAAACGwAAAAAAGgAAAAADcAAAAAAAUwAAAAACUwAAAAADUwAAAAABcAAAAAAAGgAAAAADGgAAAAABGgAAAAADGgAAAAABGgAAAAABGgAAAAACGgAAAAAAGgAAAAADGgAAAAAAGgAAAAABGgAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABHwAAAAABGgAAAAADGgAAAAADGgAAAAACbQAAAAACbQAAAAABbQAAAAADbQAAAAAAbQAAAAADbQAAAAABbQAAAAADbQAAAAADcAAAAAAAUwAAAAACUwAAAAACUwAAAAACcAAAAAAAGgAAAAABGgAAAAAAGgAAAAAAbQAAAAABbgAAAAAAbgAAAAABbQAAAAABbQAAAAADbgAAAAADbgAAAAACbQAAAAACcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAADbQAAAAAAbQAAAAABbQAAAAAAbQAAAAADbQAAAAAAYAAAAAAAUwAAAAACcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAbQAAAAABbQAAAAABbgAAAAABbgAAAAABbgAAAAAAbgAAAAADbQAAAAABbQAAAAAAcAAAAAAAUwAAAAADcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAbQAAAAACbQAAAAACbgAAAAABbQAAAAABbQAAAAABbgAAAAABbQAAAAAAbQAAAAAAcAAAAAAAUwAAAAACcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAABbQAAAAADbQAAAAAAbQAAAAACbQAAAAABbQAAAAABcAAAAAAAUwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA - version: 6 - 1,3: - ind: 1,3 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAGgAAAAACGgAAAAADGgAAAAABIgAAAAACIgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAACcAAAAAAAKgAAAAAAGgAAAAABGgAAAAAAIgAAAAAAIgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAHwAAAAAAGgAAAAABcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIwAAAAAAIwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIwAAAAADKgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAIwAAAAABKgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 2,3: - ind: 2,3 - tiles: GgAAAAAAGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAbQAAAAACbQAAAAABbQAAAAABbQAAAAACcAAAAAAAbQAAAAACbQAAAAADcAAAAAAAGgAAAAACGgAAAAACKgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAADbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAAAbQAAAAACcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAABbQAAAAADbQAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAIwAAAAABIwAAAAADIwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAKgAAAAAAIwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAIwAAAAABKgAAAAAAIwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,4: - ind: -1,4 - tiles: XwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAHwAAAAAAGgAAAAABHwAAAAABHwAAAAADGgAAAAACHwAAAAACcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACKgAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAGgAAAAABUwAAAAACUwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAHwAAAAADUwAAAAABUwAAAAABbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAZwAAAAADZwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAADcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAZwAAAAABZwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAABbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAZwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAACbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAABHwAAAAACbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbQAAAAABbQAAAAADbQAAAAABbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbQAAAAACbQAAAAABbQAAAAAAbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAAAGgAAAAACGgAAAAACGgAAAAAAGgAAAAAAGgAAAAADGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAACGgAAAAADGgAAAAACGgAAAAAAGgAAAAADGgAAAAACGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAADKgAAAAAAGgAAAAACGgAAAAABGgAAAAADGgAAAAADGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAADKgAAAAAAGgAAAAADKgAAAAAAGgAAAAACKgAAAAAA - version: 6 - -2,4: - ind: -2,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 0,4: - ind: 0,4 - tiles: UwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAADcAAAAAAAbwAAAAAAbwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAADKgAAAAAAUwAAAAACUwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAABUwAAAAAAKgAAAAAAUwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAHwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAKgAAAAAAUwAAAAAAUwAAAAACcAAAAAAAbwAAAAAAAAAAAAAAGgAAAAADcAAAAAAAGgAAAAACGgAAAAADGgAAAAACGgAAAAACGgAAAAACGgAAAAABcAAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAACcAAAAAAAbwAAAAAAAAAAAAAAGgAAAAADcAAAAAAAGgAAAAABGgAAAAADbQAAAAABbQAAAAADbQAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAHwAAAAACcAAAAAAAGgAAAAADGgAAAAAAbQAAAAADbQAAAAACbQAAAAACGgAAAAADcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAGgAAAAABcAAAAAAAGgAAAAADGgAAAAADbQAAAAAAbQAAAAABbQAAAAACGgAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAGgAAAAACcAAAAAAAGgAAAAADGgAAAAACGgAAAAABGgAAAAACGgAAAAABGgAAAAADcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAHwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAACGgAAAAACGgAAAAADGgAAAAADGgAAAAABGgAAAAACGgAAAAABcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABGgAAAAACGgAAAAAAGgAAAAABGgAAAAAAGgAAAAABGgAAAAABGgAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABGgAAAAADGgAAAAABGgAAAAADKgAAAAAAGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABKgAAAAAAGgAAAAABKgAAAAAAGgAAAAACGgAAAAABGgAAAAADcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 1,4: - ind: 1,4 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,5: - ind: -1,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAACKgAAAAAAGgAAAAAAGgAAAAACGgAAAAACKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAGgAAAAADKgAAAAAAGgAAAAADGgAAAAABGgAAAAAAGgAAAAADGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAACKgAAAAAAGgAAAAAAGgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKgAAAAAAGgAAAAAAGgAAAAADKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 0,5: - ind: 0,5 - tiles: GgAAAAABGgAAAAABGgAAAAADKgAAAAAAGgAAAAABGgAAAAADGgAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABGgAAAAACGgAAAAACGgAAAAABKgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADGgAAAAABKgAAAAAAGgAAAAADGgAAAAADGgAAAAABcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAABKgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -3,-2: - ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAADcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbQAAAAAAbQAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbQAAAAAAbQAAAAABbQAAAAAAbQAAAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA - version: 6 - -2,-2: - ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAHwAAAAADcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAHwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABWwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAADGgAAAAABHwAAAAADUwAAAAABUwAAAAACUwAAAAABXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAGgAAAAADcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAGgAAAAABcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAC - version: 6 - 1,-2: - ind: 1,-2 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAHwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAHwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAADGgAAAAACcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADHgAAAAAAGgAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAHgAAAAABGgAAAAACcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABHgAAAAABGgAAAAACcAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAADwAAAAAADwAAAAAAHgAAAAADHgAAAAACDwAAAAAADwAAAAAADwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAAAHwAAAAADHgAAAAADHgAAAAAAHwAAAAACHwAAAAABHwAAAAACcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAA - version: 6 - 2,-2: - ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 1,-3: - ind: 1,-3 - tiles: bwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAADcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAABcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAWAAAAAAAWAAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 0,-3: - ind: 0,-3 - tiles: cAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAGgAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAGgAAAAADRwAAAAAAcAAAAAAAcAAAAAAARwAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAZwAAAAADcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAGgAAAAADRwAAAAAAcAAAAAAAcAAAAAAARwAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAZwAAAAABcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAGgAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAAGgAAAAABcAAAAAAAcAAAAAAAHwAAAAABcAAAAAAAcAAAAAAAYAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAADcAAAAAAAGgAAAAAAGgAAAAADcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAHwAAAAABHwAAAAAAGgAAAAACGgAAAAABHwAAAAABHwAAAAADcAAAAAAAUwAAAAADUwAAAAADUwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAABHwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAADWwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAACWwAAAAACcAAAAAAAcAAAAAAA - version: 6 - -1,-3: - ind: -1,-3 - tiles: cAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAYAAAAAAAGgAAAAADGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA - version: 6 - -2,-3: - ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAZwAAAAAAZwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAZwAAAAAAZwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA - version: 6 - -1,-4: - ind: -1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA - version: 6 - 0,-4: - ind: 0,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,-5: - ind: -1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 0,-5: - ind: 0,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 3,3: - ind: 3,3 - tiles: bwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 2,4: - ind: 2,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 3,4: - ind: 3,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -3,4: - ind: -3,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -4,4: - ind: -4,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - 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: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAIwAAAAABIwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWwAAAAAAIwAAAAACIwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAWwAAAAADIwAAAAADWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIwAAAAADIwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAHwAAAAACIwAAAAAAHwAAAAACIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAIwAAAAADIwAAAAAB - version: 6 - -1,0: - ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAHwAAAAADIwAAAAAAHwAAAAACIwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAADGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 0,0: - ind: 0,0 - tiles: HwAAAAADIwAAAAAAHwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 0,-1: - ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABWwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAWwAAAAADcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACIwAAAAAAHwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADcAAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - 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: -66676.36 - state: Closing - type: Door - - links: - - 8738 - type: DeviceLinkSink - - uid: 2814 - components: - - pos: -11.5,-27.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -66676.36 - state: Closing - type: Door - - links: - - 8738 - type: DeviceLinkSink - - uid: 2821 - components: - - pos: -11.5,-28.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -66676.36 - state: Closing - type: Door - - links: - - 8738 - type: DeviceLinkSink - - uid: 2822 - components: - - pos: -11.5,-29.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -66676.36 - 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: -65669.61 - state: Closing - type: Door - - links: - - 17649 - type: DeviceLinkSink - - uid: 4205 - components: - - pos: 14.5,-23.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -65692.28 - 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: ClosetChefFilled - entities: - - uid: 2695 - components: - - pos: 8.5,0.5 - parent: 1 - type: Transform -- 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: - - pos: -19.5,44.5 - parent: 1 - type: Transform - - uid: 4384 - components: - - pos: -19.5,45.5 - parent: 1 - type: Transform - - uid: 4386 - components: - - 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.309154,2.9839857 - 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.65722,2.8053331 - 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: -484053.5 - 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: - - name: Comms SMES - type: MetaData - - pos: 15.5,-11.5 - parent: 1 - type: Transform - - uid: 3831 - components: - - name: Engi SMES 4 - type: MetaData - - pos: 8.5,-29.5 - parent: 1 - type: Transform - - uid: 3832 - components: - - name: Engi SMES 2 - type: MetaData - - pos: 6.5,-29.5 - parent: 1 - type: Transform - - uid: 6507 - components: - - name: Engi SMES 1 - type: MetaData - - pos: 5.5,-29.5 - parent: 1 - type: Transform - - uid: 6575 - components: - - name: Engi SMES 3 - type: MetaData - - pos: 7.5,-29.5 - parent: 1 - type: Transform - - uid: 8011 - components: - - name: North West Solars SMES - type: MetaData - - pos: -39.5,55.5 - parent: 1 - type: Transform - - uid: 14044 - components: - - name: North East Solars SMES - type: MetaData - - 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: - - name: Engineering Substation 1 - type: MetaData - - pos: 8.5,-17.5 - parent: 1 - type: Transform - - uid: 4187 - components: - - name: Engineering Substation 2 - type: MetaData - - pos: 8.5,-18.5 - parent: 1 - type: Transform - - uid: 4584 - components: - - name: Salvage & Science Substation - type: MetaData - - pos: -21.5,30.5 - parent: 1 - type: Transform - - uid: 4585 - components: - - name: Cargo Substation - type: MetaData - - pos: -25.5,-15.5 - parent: 1 - type: Transform - - uid: 4587 - components: - - name: Security Substation - type: MetaData - - pos: -24.5,50.5 - parent: 1 - type: Transform - - uid: 4588 - components: - - name: North East Section Substation - type: MetaData - - pos: 20.5,54.5 - parent: 1 - type: Transform - - uid: 4589 - components: - - name: Medical Substation - type: MetaData - - pos: 16.5,25.5 - parent: 1 - type: Transform - - uid: 4590 - components: - - name: Kitchen & Botany Substation - type: MetaData - - pos: 17.5,4.5 - parent: 1 - type: Transform - - uid: 4591 - components: - - name: Library & Bar Substation - type: MetaData - - pos: -25.5,-0.5 - parent: 1 - type: Transform - - uid: 4594 - components: - - name: South East Section Substation - type: MetaData - - pos: 26.5,-18.5 - parent: 1 - type: Transform - - uid: 4931 - components: - - name: Bridge Substation - type: MetaData - - pos: -3.5,74.5 - parent: 1 - type: Transform - - uid: 9403 - components: - - name: GravGen Substation - type: MetaData - - pos: -23.5,-18.5 - parent: 1 - type: Transform - - uid: 18472 - components: - - name: Comms Substation - type: MetaData - - 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: 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 -... +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 1: FloorArcadeBlue + 15: FloorBlueCircuit + 18: 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 + 51: FloorGreenCircuit + 55: FloorHydro + 59: FloorLino + 61: FloorMetalDiamond + 62: FloorMime + 63: FloorMono + 69: FloorPlastic + 71: FloorReinforced + 83: FloorSteel + 85: FloorSteelCheckerLight + 88: FloorSteelDirty + 89: FloorSteelHerringbone + 90: FloorSteelMini + 91: FloorSteelMono + 92: FloorSteelOffset + 93: FloorSteelPavement + 94: FloorSteelPavementVertical + 95: FloorTechMaint + 96: FloorTechMaint2 + 99: FloorWhite + 100: FloorWhiteDiagonal + 101: FloorWhiteDiagonalMini + 103: FloorWhiteMini + 104: FloorWhiteMono + 108: FloorWhitePlastic + 109: FloorWood + 110: FloorWoodTile + 111: Lattice + 112: 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: cAAAAAAAWwAAAAACWwAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAABYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAACWwAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAADUwAAAAABWwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABWgAAAAACWgAAAAAAWgAAAAABWgAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAWwAAAAADWwAAAAACWgAAAAAAWgAAAAABWgAAAAADWgAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABKgAAAAAAUwAAAAADUwAAAAABKgAAAAAAcAAAAAAAWwAAAAAAWwAAAAABUwAAAAABUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAADWwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAADcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAABKgAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAABcAAAAAAAcAAAAAAAJgAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAABGgAAAAAAGgAAAAABGgAAAAADGgAAAAACGgAAAAACGgAAAAABGgAAAAADGgAAAAADGgAAAAADGgAAAAADGgAAAAAAJgAAAAAAcAAAAAAAGgAAAAACKgAAAAAAGgAAAAACGgAAAAABKgAAAAAAGgAAAAAAGgAAAAABKgAAAAAAGgAAAAAAGgAAAAADKgAAAAAAGgAAAAAAGgAAAAACKgAAAAAAJgAAAAAAJgAAAAAAGgAAAAACGgAAAAAAGgAAAAABGgAAAAACGgAAAAAAGgAAAAABGgAAAAABGgAAAAABGgAAAAADGgAAAAADGgAAAAACGgAAAAADGgAAAAAAGgAAAAABJgAAAAAAcAAAAAAAGgAAAAABKgAAAAAAGgAAAAABGgAAAAACKgAAAAAAGgAAAAABGgAAAAACKgAAAAAAGgAAAAADGgAAAAABKgAAAAAAGgAAAAABGgAAAAADKgAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAAAGgAAAAADGgAAAAADGgAAAAACGgAAAAAAGgAAAAACGgAAAAADGgAAAAAAGgAAAAADGgAAAAADGgAAAAADGgAAAAADEgAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAADGgAAAAAAGgAAAAADGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAADGgAAAAADGgAAAAAAGgAAAAADGgAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: EgAAAAAAEgAAAAAAGgAAAAADKgAAAAAAGgAAAAACGgAAAAADKgAAAAAAGgAAAAADGgAAAAADKgAAAAAAGgAAAAACGgAAAAAAcAAAAAAAGgAAAAADGgAAAAABKgAAAAAAEgAAAAAAcAAAAAAAHwAAAAACGgAAAAABGgAAAAAAGgAAAAABGgAAAAADGgAAAAABGgAAAAACGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAADGgAAAAAAGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAGgAAAAACKgAAAAAAGgAAAAACGgAAAAABKgAAAAAAGgAAAAAAGgAAAAAAKgAAAAAAGgAAAAADGgAAAAADKgAAAAAAGgAAAAADGgAAAAACKgAAAAAAPgAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAACGgAAAAABGgAAAAAAGgAAAAACGgAAAAAAGgAAAAABGgAAAAAAGgAAAAADGgAAAAACGgAAAAADGgAAAAABGgAAAAADPgAAAAAAPgAAAAAAGgAAAAADGgAAAAADGgAAAAADGgAAAAAAbQAAAAADbQAAAAABbQAAAAACbQAAAAAAbQAAAAABbQAAAAADGgAAAAABGgAAAAACGgAAAAABGgAAAAABPgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAAAbQAAAAADbQAAAAABbQAAAAADbQAAAAACKgAAAAAAGgAAAAADGgAAAAACKgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbQAAAAABbQAAAAAAbQAAAAADbQAAAAACbQAAAAABbQAAAAABGgAAAAABGgAAAAABGgAAAAACGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAADbQAAAAACbQAAAAABbQAAAAAAbQAAAAAAbQAAAAABKgAAAAAAGgAAAAABGgAAAAADKgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAAAbQAAAAACbQAAAAABbQAAAAABbQAAAAABbQAAAAADbQAAAAAAGgAAAAABGgAAAAACGgAAAAABGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAABGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAGgAAAAAAKgAAAAAAGgAAAAADGgAAAAACKgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAAAGgAAAAACGgAAAAADYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAACWwAAAAABcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAD + version: 6 + 0,-1: + ind: 0,-1 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAACcAAAAAAADwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAWgAAAAADWgAAAAACWgAAAAABWgAAAAABUwAAAAABUwAAAAABcAAAAAAAHwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAABWgAAAAABWgAAAAACWgAAAAABWgAAAAADUwAAAAAAUwAAAAABcAAAAAAADwAAAAAAUwAAAAAAUwAAAAACKgAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACWgAAAAACWgAAAAAAWgAAAAACWgAAAAAAUwAAAAADUwAAAAADcAAAAAAAXwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAABcAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAAAcAAAAAAAXwAAAAAAUwAAAAABcAAAAAAAUwAAAAACUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAADWwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAAAcAAAAAAAHwAAAAADGgAAAAABcAAAAAAAGgAAAAACGgAAAAACGgAAAAABGgAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAGgAAAAAAGgAAAAADKgAAAAAAGgAAAAADWwAAAAABYwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAACGgAAAAAAcAAAAAAAYwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACKgAAAAAAGgAAAAAAcAAAAAAAYwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAAAGgAAAAAAcAAAAAAAYwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAABGgAAAAADcAAAAAAAYwAAAAAAVQAAAAAAVQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: GgAAAAADGgAAAAACKgAAAAAAGgAAAAACcAAAAAAAYwAAAAAAVQAAAAAAVQAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAGgAAAAAAGgAAAAAAGgAAAAADGgAAAAACcAAAAAAAYwAAAAAAVQAAAAAAVQAAAAAAYwAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAGgAAAAABGgAAAAADKgAAAAAAHwAAAAABcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAYAAAAAAAcAAAAAAAXwAAAAAAGgAAAAAAGgAAAAABGgAAAAACGgAAAAAAWwAAAAABcAAAAAAAGgAAAAADGgAAAAADGgAAAAACcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAADGgAAAAADcAAAAAAAGgAAAAADGgAAAAACGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAABKgAAAAAAGgAAAAAAHwAAAAAAGgAAAAADGgAAAAABGgAAAAACGgAAAAADGgAAAAADGgAAAAABGgAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAADGgAAAAADcAAAAAAAGgAAAAAAGgAAAAACHgAAAAADHgAAAAADHgAAAAACGgAAAAACGgAAAAABYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABKgAAAAAAGgAAAAADcAAAAAAAGgAAAAACGgAAAAACHgAAAAAAHgAAAAABHgAAAAADGgAAAAACHwAAAAABcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAAAGgAAAAAAcAAAAAAAGgAAAAABGgAAAAABHgAAAAAAHgAAAAABHgAAAAACGgAAAAABGgAAAAABcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADGgAAAAADGgAAAAADGgAAAAABGgAAAAABcAAAAAAAGgAAAAACGgAAAAABHgAAAAADHgAAAAABHgAAAAAAGgAAAAADGgAAAAADWwAAAAACUwAAAAAAUwAAAAADUwAAAAACGgAAAAAAGgAAAAACKgAAAAAAGgAAAAADcAAAAAAAGgAAAAAAGgAAAAABGgAAAAACGgAAAAADGgAAAAADGgAAAAACGgAAAAACcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAGgAAAAAAGgAAAAACGgAAAAABGgAAAAADcAAAAAAAGgAAAAADGgAAAAADGgAAAAAAGgAAAAACGgAAAAACGgAAAAADGgAAAAADcAAAAAAANwAAAAAANwAAAAAANwAAAAAAcAAAAAAAWwAAAAACWwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAD + version: 6 + -1,1: + ind: -1,1 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAUwAAAAACUwAAAAACGgAAAAACHwAAAAADcAAAAAAAUwAAAAABUwAAAAACHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAADGgAAAAACHwAAAAACcAAAAAAAUwAAAAABUwAAAAADHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAABKgAAAAAAGgAAAAAAHwAAAAACcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAZwAAAAAAZwAAAAACZwAAAAACcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAACGgAAAAADHwAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACGgAAAAABcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAYwAAAAAAYwAAAAADYwAAAAABYwAAAAADYwAAAAACcAAAAAAAUwAAAAADKgAAAAAAGgAAAAACcAAAAAAAHgAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAADWwAAAAABYwAAAAACZwAAAAABZwAAAAABZwAAAAAAYwAAAAADcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAHgAAAAACUwAAAAACUwAAAAAAUwAAAAACWwAAAAACcAAAAAAAYwAAAAACZwAAAAACZwAAAAADZwAAAAACYwAAAAABcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAAAcAAAAAAAYwAAAAABYwAAAAADYwAAAAADYwAAAAABYwAAAAADcAAAAAAAUwAAAAACKgAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAHwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAABcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAACZwAAAAADGgAAAAABGgAAAAADcAAAAAAAGgAAAAABGgAAAAACGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAACKgAAAAAAZwAAAAADGgAAAAACGgAAAAABcAAAAAAAGgAAAAADGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAACGgAAAAADHwAAAAACcAAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAACUwAAAAADWwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADKgAAAAAAUwAAAAAAUwAAAAADUwAAAAADcAAAAAAAGgAAAAABGgAAAAACGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAB + version: 6 + 0,1: + ind: 0,1 + tiles: UwAAAAADcAAAAAAAUwAAAAABUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAAAaAAAAAAAYwAAAAABYwAAAAACYwAAAAADYwAAAAADYwAAAAABYwAAAAABYwAAAAACYwAAAAACYwAAAAABYwAAAAADUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAADaAAAAAACYwAAAAADYwAAAAACYwAAAAAAYwAAAAAAYwAAAAADYwAAAAADYwAAAAAAYwAAAAAAYwAAAAACYwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAYwAAAAACYwAAAAADYwAAAAAAYwAAAAABYwAAAAABYwAAAAACYwAAAAADYwAAAAACYwAAAAABYwAAAAABUwAAAAACcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAYwAAAAABYwAAAAACYwAAAAABYwAAAAAAYwAAAAAAYwAAAAADYwAAAAABYwAAAAAAYwAAAAACYwAAAAADUwAAAAACcAAAAAAAYwAAAAABYwAAAAADYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAaAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAACcAAAAAAAYwAAAAAAZwAAAAAAZwAAAAADYwAAAAAAYwAAAAADYwAAAAACYwAAAAADYwAAAAADYwAAAAABYwAAAAAAYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAYwAAAAABZwAAAAABZwAAAAAAZwAAAAACYwAAAAABYwAAAAADYwAAAAABYwAAAAABYwAAAAADZAAAAAACYwAAAAACcAAAAAAAYAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAYwAAAAABZwAAAAADZwAAAAADZwAAAAACYwAAAAADYwAAAAADYwAAAAADcAAAAAAAYwAAAAACZAAAAAABYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAYwAAAAAAYwAAAAABYwAAAAACYwAAAAADYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAZAAAAAAAYwAAAAACcAAAAAAAXwAAAAAAXwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAaAAAAAACcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAADZAAAAAAAYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAcAAAAAAAYwAAAAABYwAAAAAAYwAAAAAAYwAAAAABYwAAAAAAZAAAAAAAYwAAAAABcAAAAAAAYwAAAAADYwAAAAABUwAAAAADcAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAcAAAAAAAYwAAAAADYwAAAAABYwAAAAAAYwAAAAADYwAAAAAAYwAAAAACYwAAAAADaAAAAAACYwAAAAACZQAAAAADUwAAAAADcAAAAAAAZwAAAAAAZwAAAAAAYwAAAAADcAAAAAAAaAAAAAADaAAAAAACcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAADUwAAAAABcAAAAAAAZwAAAAAAZwAAAAAAYwAAAAAAYwAAAAAAYwAAAAADYwAAAAADcAAAAAAAGgAAAAABGgAAAAACGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAZwAAAAAAZwAAAAAAZAAAAAABZAAAAAADZAAAAAABYwAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAABGgAAAAACHwAAAAADbQAAAAAAbQAAAAAC + version: 6 + 1,0: + ind: 1,0 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAKgAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAACcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAUwAAAAACWwAAAAACWwAAAAABUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAWwAAAAACcAAAAAAAUwAAAAABUwAAAAABKgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAWwAAAAADcAAAAAAAUwAAAAACUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAWwAAAAABWwAAAAADUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACKgAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAACbQAAAAADbQAAAAACbQAAAAADcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAbQAAAAABbQAAAAABbQAAAAABbQAAAAACbQAAAAAAGgAAAAAAUwAAAAABUwAAAAADKgAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAbQAAAAAAbQAAAAABbQAAAAAAbQAAAAACbQAAAAABcAAAAAAAUwAAAAABUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAKgAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAAC + version: 6 + 1,-1: + ind: 1,-1 + tiles: DwAAAAAADwAAAAAAHgAAAAAAHgAAAAABDwAAAAAADwAAAAAADwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAAAHwAAAAABHgAAAAADHgAAAAABHwAAAAAAHwAAAAABHwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADwAAAAAADwAAAAAAHgAAAAACHgAAAAABDwAAAAAADwAAAAAADwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAACGgAAAAACcAAAAAAAXwAAAAAAGgAAAAABHwAAAAABHwAAAAABGgAAAAACXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAACGgAAAAAAGgAAAAABcAAAAAAAXwAAAAAAGgAAAAACGgAAAAACGgAAAAAAGgAAAAABXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAAAGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAABHwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAHwAAAAABcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAKgAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAADcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAANwAAAAAAUwAAAAABNwAAAAAAUwAAAAAANwAAAAAAUwAAAAAANwAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAABNwAAAAAAUwAAAAADNwAAAAAAUwAAAAAANwAAAAAAUwAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAUwAAAAACUwAAAAABKgAAAAAANwAAAAAAWwAAAAAANwAAAAAAUwAAAAAANwAAAAAAUwAAAAABNwAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAUwAAAAADNwAAAAAAUwAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAUwAAAAAAUwAAAAABKgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAB + version: 6 + 1,1: + ind: 1,1 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAACYwAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAADWQAAAAABLQAAAAABLQAAAAACcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAYwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXQAAAAABXQAAAAADXQAAAAACWQAAAAADWQAAAAACLQAAAAADLQAAAAADcAAAAAAAUwAAAAABUwAAAAABKgAAAAAAYwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXQAAAAABXQAAAAAAWQAAAAACWQAAAAADWQAAAAACXgAAAAABXgAAAAABWwAAAAAAUwAAAAAAUwAAAAADUwAAAAABYwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAALQAAAAADLQAAAAABLQAAAAABWQAAAAABXgAAAAACXgAAAAACXgAAAAACWwAAAAAAUwAAAAADUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALQAAAAACLQAAAAABLQAAAAACXgAAAAABXgAAAAABXgAAAAABXgAAAAADWwAAAAACUwAAAAACUwAAAAACKgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALQAAAAADLQAAAAAALQAAAAABXgAAAAAAXgAAAAACXgAAAAABXgAAAAADcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXgAAAAACWwAAAAABcAAAAAAAUwAAAAADUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADKgAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAbAAAAAACbAAAAAABbAAAAAADIwAAAAADIwAAAAACcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAWwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAACYwAAAAAAcAAAAAAAbAAAAAABbAAAAAAAbAAAAAACIwAAAAACIwAAAAACYAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACKgAAAAAAYwAAAAADaAAAAAAAbAAAAAAAbAAAAAADbAAAAAAAIwAAAAADIwAAAAADcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAABUwAAAAACaAAAAAABcAAAAAAAbAAAAAADbAAAAAACbAAAAAACIwAAAAACIwAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAKgAAAAAAbQAAAAACcAAAAAAAIwAAAAADIwAAAAACIwAAAAADIwAAAAABcAAAAAAAWwAAAAAAUwAAAAABWwAAAAADWwAAAAACWwAAAAADcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAA + version: 6 + -2,-1: + ind: -2,-1 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAGgAAAAADcAAAAAAAUwAAAAABUwAAAAABUwAAAAACXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAWwAAAAACWwAAAAACUwAAAAAAUwAAAAABUwAAAAADKQAAAAAAKQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAACKgAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAJgAAAAAAJgAAAAAAKgAAAAAAUwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJgAAAAAAJgAAAAAAUwAAAAABUwAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJgAAAAAAJgAAAAAAUwAAAAAAUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJgAAAAAAJgAAAAAAKgAAAAAAUwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAEgAAAAAAEgAAAAAA + version: 6 + -2,1: + ind: -2,1 + tiles: UwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAACUwAAAAACcAAAAAAAGgAAAAAAGgAAAAACGgAAAAABKgAAAAAAUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACHwAAAAAAGgAAAAADGgAAAAABGgAAAAADUwAAAAABUwAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAAAbQAAAAADcAAAAAAAUwAAAAACUwAAAAABHwAAAAABGgAAAAACGgAAAAAAGgAAAAABUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAAAbQAAAAADcAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAADKgAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACUwAAAAADWwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAADUwAAAAADHgAAAAACcAAAAAAAGgAAAAABGgAAAAABUwAAAAADUwAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAUwAAAAACUwAAAAABHgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAKgAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKgAAAAAAUwAAAAACcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKgAAAAAAUwAAAAACUwAAAAAAUwAAAAADXAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAABcAAAAAAAUwAAAAACXAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAA + version: 6 + -2,0: + ind: -2,0 + tiles: UwAAAAABUwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAKgAAAAAAUwAAAAACYAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARQAAAAACPgAAAAAAKgAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARQAAAAAAPgAAAAAAUwAAAAABUwAAAAABcAAAAAAAGgAAAAAAbQAAAAABbQAAAAADbQAAAAACbQAAAAABbQAAAAABbQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYAAAAAAARQAAAAADPgAAAAAAUwAAAAADUwAAAAAAcAAAAAAAGgAAAAAAbQAAAAABbQAAAAADbQAAAAACbQAAAAABbQAAAAAAbQAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKgAAAAAAUwAAAAACcAAAAAAAGgAAAAAAbQAAAAABbQAAAAABbQAAAAACbQAAAAAAbQAAAAAAbQAAAAACYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAGgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAABbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAGgAAAAAAbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAABcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAKgAAAAAAUwAAAAABGgAAAAAAGgAAAAAAbQAAAAAAbQAAAAADbQAAAAABbQAAAAABbQAAAAADbQAAAAADcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAXwAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAADUwAAAAACUwAAAAADKgAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAAD + version: 6 + 2,-1: + ind: 2,-1 + tiles: cAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAABUwAAAAACcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,0: + ind: 2,0 + tiles: UwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADWwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAAD + version: 6 + 2,1: + ind: 2,1 + tiles: UwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,-1: + ind: -3,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAACUwAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAGgAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAUwAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAUwAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAABcAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAACHwAAAAADUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAAAWwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAAAcAAAAAAAUwAAAAACAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAACWwAAAAACcAAAAAAAGgAAAAACGgAAAAAAGgAAAAACUwAAAAADUwAAAAADAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAACHwAAAAACGgAAAAADGgAAAAABGgAAAAADUwAAAAABUwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAACcAAAAAAAGgAAAAAAGgAAAAADGgAAAAAAcAAAAAAAUwAAAAAC + version: 6 + -3,0: + ind: -3,0 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAUwAAAAACUwAAAAACcAAAAAAAWwAAAAACcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAUwAAAAADUwAAAAACcAAAAAAAUwAAAAACUwAAAAABWwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADcAAAAAAAWwAAAAADUwAAAAACWwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAABWwAAAAACUwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbQAAAAADbQAAAAACcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAAAWwAAAAAAUwAAAAADAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbQAAAAACbQAAAAABcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbQAAAAADbQAAAAACWwAAAAABUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAAAcAAAAAAAUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAABbQAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADHwAAAAABGgAAAAABGgAAAAABGgAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAADcAAAAAAAUwAAAAABUwAAAAABUwAAAAACcAAAAAAAGgAAAAABGgAAAAAAGgAAAAACcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACWwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAADUwAAAAAD + version: 6 + -3,1: + ind: -3,1 + tiles: IQAAAAAAIQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAAAcAAAAAAAGgAAAAAAHwAAAAABcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAABcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAACGgAAAAABGgAAAAACGgAAAAACYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAHwAAAAADHwAAAAADHwAAAAACGgAAAAACGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAADGgAAAAAAGgAAAAABGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAADAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAHwAAAAAAHwAAAAAAHwAAAAADGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAADGgAAAAAAGgAAAAAAGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAABGgAAAAABGgAAAAADGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABAAAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAABGgAAAAAAGgAAAAACGgAAAAAAGgAAAAACGgAAAAADGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACAAAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAABGgAAAAADGgAAAAACGgAAAAACGgAAAAACGgAAAAACGgAAAAABGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAB + version: 6 + 3,0: + ind: 3,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAADYAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAADYAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,1: + ind: 3,1 + tiles: YAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,2: + ind: 2,2 + tiles: UwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAACLQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAAALQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAABGgAAAAABcAAAAAAAUwAAAAACUwAAAAACGgAAAAACGgAAAAABKgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAGgAAAAACGgAAAAADGgAAAAACGgAAAAAAHwAAAAABUwAAAAACUwAAAAADGgAAAAACGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAABGgAAAAAAcAAAAAAAUwAAAAACUwAAAAADGgAAAAADGgAAAAACKgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAACbQAAAAADbQAAAAABbQAAAAABbQAAAAADbQAAAAABcAAAAAAAIQAAAAADIQAAAAACKgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAACbQAAAAACbQAAAAADcAAAAAAAbQAAAAACbQAAAAACcAAAAAAA + version: 6 + 3,2: + ind: 3,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAADYAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAABYAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAADcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,2: + ind: 1,2 + tiles: bQAAAAADcAAAAAAAIwAAAAACIwAAAAAAIwAAAAABIwAAAAACcAAAAAAAWwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAADWwAAAAAAUwAAAAACUwAAAAABUwAAAAAAbQAAAAACcAAAAAAAIwAAAAABIwAAAAADIwAAAAAAIwAAAAABcAAAAAAAWwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABWwAAAAABUwAAAAADUwAAAAAAKgAAAAAAbQAAAAAAcAAAAAAAIwAAAAACIwAAAAAAIwAAAAAAIwAAAAAAcAAAAAAAWwAAAAACUwAAAAACUwAAAAACUwAAAAAAWwAAAAABcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAABWwAAAAADcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAABWwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACKgAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAABWwAAAAACcAAAAAAAUwAAAAABUwAAAAAAZwAAAAADZwAAAAACZwAAAAABUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAALQAAAAACXgAAAAAAXgAAAAACcAAAAAAAUwAAAAADUwAAAAACZwAAAAACZwAAAAACZwAAAAABUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAALQAAAAABXgAAAAAAXgAAAAABcAAAAAAAUwAAAAADUwAAAAADZwAAAAAAZwAAAAABZwAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAACWwAAAAADcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKgAAAAAAGgAAAAABGgAAAAABIgAAAAACIgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAACIgAAAAACIgAAAAABbAAAAAAAbAAAAAACbAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAKgAAAAAAGgAAAAABGgAAAAAAIgAAAAABIgAAAAABcAAAAAAAbAAAAAADbAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAIgAAAAADIgAAAAADcAAAAAAAbAAAAAACbAAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAADbQAAAAABKgAAAAAAIQAAAAADIQAAAAADHQAAAAAAHQAAAAAA + version: 6 + 3,-1: + ind: 3,-1 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,-1: + ind: -4,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,0: + ind: -4,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAACUwAAAAACUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAACUwAAAAADUwAAAAAA + version: 6 + -4,1: + ind: -4,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIQAAAAABIQAAAAADIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,2: + ind: 0,2 + tiles: UwAAAAAAcAAAAAAAZwAAAAAAZwAAAAAAZAAAAAACZAAAAAADZAAAAAAAYwAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAABGgAAAAABcAAAAAAAbQAAAAACbQAAAAACUwAAAAACcAAAAAAAZwAAAAAAZwAAAAAAZAAAAAADZAAAAAAAZAAAAAADYwAAAAADcAAAAAAAGgAAAAADGgAAAAADGgAAAAACGgAAAAACcAAAAAAAbQAAAAABbQAAAAACUwAAAAAAcAAAAAAAZwAAAAAAZwAAAAAAYwAAAAAAYwAAAAADYwAAAAADaAAAAAADcAAAAAAAGgAAAAADGgAAAAAAGgAAAAACGgAAAAAAcAAAAAAAbQAAAAADbQAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAADbQAAAAADUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAMwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAAAHwAAAAADGgAAAAABHwAAAAAAHgAAAAADHgAAAAABcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABHwAAAAADGgAAAAADHwAAAAABHgAAAAADHgAAAAABcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAB + version: 6 + -1,2: + ind: -1,2 + tiles: PQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAABcAAAAAAAGgAAAAAAGgAAAAABGgAAAAACcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAADPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAABHwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADKgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADWwAAAAAAWwAAAAACWwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAADKgAAAAAAUwAAAAABcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADcAAAAAAAUwAAAAACKgAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAADcAAAAAAAUwAAAAAAKgAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAD + version: 6 + -2,2: + ind: -2,2 + tiles: UwAAAAABUwAAAAADcAAAAAAAUwAAAAAAXAAAAAAAUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAACKgAAAAAAUwAAAAABUwAAAAADUwAAAAAAXAAAAAAAUwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAABcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAABcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAKgAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAACWwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAABWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAACcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAACWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAWAAAAAAAWAAAAAAAHwAAAAADGgAAAAABGgAAAAAAHwAAAAABGgAAAAADGgAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAA + version: 6 + -3,2: + ind: -3,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAABIQAAAAACIQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALQAAAAABLQAAAAACLQAAAAABLQAAAAADUwAAAAACUwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAALQAAAAAALQAAAAABLQAAAAAALQAAAAACUwAAAAADUwAAAAACcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADcAAAAAAAbwAAAAAAcAAAAAAAbQAAAAADbQAAAAADcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAACcAAAAAAAbwAAAAAAcAAAAAAAbQAAAAABbQAAAAACbQAAAAACWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAAAUwAAAAADWwAAAAACUwAAAAADYAAAAAAAUwAAAAACcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAJQAAAAAAWAAAAAAAJQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbQAAAAADbQAAAAACbQAAAAABWAAAAAAAJQAAAAADWAAAAAAAJQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbQAAAAACbQAAAAADcAAAAAAAWAAAAAAAJQAAAAABWAAAAAAAJQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAA + version: 6 + -4,2: + ind: -4,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIQAAAAABIQAAAAAAIQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAACUwAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAACUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAACUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: bwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAACHwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAWwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAACGgAAAAABcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAGgAAAAAAHgAAAAACHgAAAAAAGgAAAAADWwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAGgAAAAABHgAAAAABHgAAAAAAGgAAAAAAWwAAAAABUwAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAACGgAAAAACcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAABHwAAAAABHwAAAAABcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAABHwAAAAADcAAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAAAGgAAAAAAWwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAADWwAAAAABcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAABGgAAAAABXwAAAAAAcAAAAAAAXwAAAAAAGgAAAAAAGgAAAAADXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAAAGgAAAAABXwAAAAAAcAAAAAAAXwAAAAAAGgAAAAACGgAAAAABXwAAAAAAcAAAAAAADwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAACWwAAAAABcAAAAAAAcAAAAAAAHwAAAAAB + version: 6 + -1,-2: + ind: -1,-2 + tiles: cAAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAAAHwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAADHwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAACGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAABGgAAAAACGgAAAAADHwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAAAGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 + -3,3: + ind: -3,3 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADcAAAAAAAbQAAAAADbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAADcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACcAAAAAAAbQAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,3: + ind: -4,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,3: + ind: -2,3 + tiles: WAAAAAAAWAAAAAAAHwAAAAACGgAAAAACGgAAAAABHwAAAAAAGgAAAAAAGgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADWAAAAAAAWAAAAAAAcAAAAAAAHwAAAAACHwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAACcAAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAACbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAWwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADbQAAAAADcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbQAAAAABbQAAAAAAbQAAAAADcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAADbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAABbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 + -1,3: + ind: -1,3 + tiles: cAAAAAAAGgAAAAABGgAAAAAAGgAAAAADGgAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAAAHwAAAAACGgAAAAADGgAAAAADHwAAAAAAUwAAAAADUwAAAAADcAAAAAAAGgAAAAACHgAAAAAAHgAAAAACGgAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAHwAAAAABHwAAAAABcAAAAAAAUwAAAAADKgAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAACGgAAAAABcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAACHwAAAAABGgAAAAAAGgAAAAABHwAAAAACUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAADcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAGgAAAAAAGgAAAAACcAAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAADUwAAAAAAUwAAAAAAUwAAAAABKgAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAGgAAAAACGgAAAAABGgAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAABHwAAAAAAGgAAAAAAGgAAAAADcAAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAGgAAAAAAGgAAAAACcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAKgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAAAcAAAAAAAGgAAAAABGgAAAAABcAAAAAAAWwAAAAABUwAAAAADUwAAAAAAUwAAAAACGgAAAAACGgAAAAAAGgAAAAACcAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACHgAAAAAAHgAAAAAAGgAAAAAAHwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABHwAAAAADGgAAAAABGgAAAAADHwAAAAABcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADGgAAAAACGgAAAAACGgAAAAABcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAABcAAAAAAAGgAAAAADGgAAAAAAHwAAAAACcAAAAAAAcAAAAAAAUwAAAAABKgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABHwAAAAADcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAADGgAAAAADGgAAAAAAGgAAAAADGgAAAAADHwAAAAABcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAHwAAAAAAGgAAAAACGgAAAAADGgAAAAADGgAAAAAAHwAAAAACcAAAAAAAcAAAAAAAUwAAAAACKgAAAAAA + version: 6 + 0,3: + ind: 0,3 + tiles: UwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAMwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAABcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABcAAAAAAAHwAAAAAAGgAAAAAAGgAAAAACGgAAAAAAGgAAAAACGgAAAAAAGgAAAAADGgAAAAADGgAAAAAAGgAAAAABGgAAAAABcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADHwAAAAADGgAAAAABGgAAAAACGgAAAAAAGgAAAAABGwAAAAABGwAAAAABGwAAAAADGwAAAAACGwAAAAAAGwAAAAACGgAAAAACcAAAAAAAUwAAAAADUwAAAAADUwAAAAABcAAAAAAAGgAAAAADGgAAAAAAGgAAAAACGgAAAAABGwAAAAACGwAAAAACGwAAAAAAGwAAAAABGwAAAAACGwAAAAAAGgAAAAADcAAAAAAAUwAAAAACUwAAAAADUwAAAAABcAAAAAAAGgAAAAADGgAAAAABGgAAAAADGgAAAAABGgAAAAABGgAAAAACGgAAAAAAGgAAAAADGgAAAAAAGgAAAAABGgAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABHwAAAAABGgAAAAADGgAAAAADGgAAAAACbQAAAAACbQAAAAABbQAAAAADbQAAAAAAbQAAAAADbQAAAAABbQAAAAADbQAAAAADcAAAAAAAUwAAAAACUwAAAAACUwAAAAACcAAAAAAAGgAAAAABGgAAAAAAGgAAAAAAbQAAAAABbgAAAAAAbgAAAAABbQAAAAABbQAAAAADbgAAAAADbgAAAAACbQAAAAACcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAADbQAAAAAAbQAAAAABbQAAAAAAbQAAAAADbQAAAAAAYAAAAAAAUwAAAAACcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAbQAAAAABbQAAAAABbgAAAAABbgAAAAABbgAAAAAAbgAAAAADbQAAAAABbQAAAAAAcAAAAAAAUwAAAAADcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAbQAAAAACbQAAAAACbgAAAAABbQAAAAABbQAAAAABbgAAAAABbQAAAAAAbQAAAAAAcAAAAAAAUwAAAAACcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAABbQAAAAADbQAAAAAAbQAAAAACbQAAAAABbQAAAAABcAAAAAAAUwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 + 1,3: + ind: 1,3 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAGgAAAAACGgAAAAADGgAAAAABIgAAAAACIgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAACcAAAAAAAKgAAAAAAGgAAAAABGgAAAAAAIgAAAAAAIgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAHwAAAAAAGgAAAAABcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIwAAAAAAIwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIwAAAAADKgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAIwAAAAABKgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,3: + ind: 2,3 + tiles: GgAAAAAAGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAbQAAAAACbQAAAAABbQAAAAABbQAAAAACcAAAAAAAbQAAAAACbQAAAAADcAAAAAAAGgAAAAACGgAAAAACKgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAADbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAAAbQAAAAACcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAABbQAAAAADbQAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAIwAAAAABIwAAAAADIwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAKgAAAAAAIwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAIwAAAAABKgAAAAAAIwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,4: + ind: -1,4 + tiles: XwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAHwAAAAAAGgAAAAABHwAAAAABHwAAAAADGgAAAAACHwAAAAACcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACKgAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAGgAAAAABUwAAAAACUwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAHwAAAAADUwAAAAABUwAAAAABbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAZwAAAAADZwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAADcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAZwAAAAABZwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAABbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAZwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAACbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAABHwAAAAACbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbQAAAAABbQAAAAADbQAAAAABbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbQAAAAACbQAAAAABbQAAAAAAbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAAAGgAAAAACGgAAAAACGgAAAAAAGgAAAAAAGgAAAAADGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAACGgAAAAADGgAAAAACGgAAAAAAGgAAAAADGgAAAAACGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAADKgAAAAAAGgAAAAACGgAAAAABGgAAAAADGgAAAAADGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAADKgAAAAAAGgAAAAADKgAAAAAAGgAAAAACKgAAAAAA + version: 6 + -2,4: + ind: -2,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,4: + ind: 0,4 + tiles: UwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAADcAAAAAAAbwAAAAAAbwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAADKgAAAAAAUwAAAAACUwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAABUwAAAAAAKgAAAAAAUwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAHwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAKgAAAAAAUwAAAAAAUwAAAAACcAAAAAAAbwAAAAAAAAAAAAAAGgAAAAADcAAAAAAAGgAAAAACGgAAAAADGgAAAAACGgAAAAACGgAAAAACGgAAAAABcAAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAACcAAAAAAAbwAAAAAAAAAAAAAAGgAAAAADcAAAAAAAGgAAAAABGgAAAAADbQAAAAABbQAAAAADbQAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAHwAAAAACcAAAAAAAGgAAAAADGgAAAAAAbQAAAAADbQAAAAACbQAAAAACGgAAAAADcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAGgAAAAABcAAAAAAAGgAAAAADGgAAAAADbQAAAAAAbQAAAAABbQAAAAACGgAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAGgAAAAACcAAAAAAAGgAAAAADGgAAAAACGgAAAAABGgAAAAACGgAAAAABGgAAAAADcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAHwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAACGgAAAAACGgAAAAADGgAAAAADGgAAAAABGgAAAAACGgAAAAABcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABGgAAAAACGgAAAAAAGgAAAAABGgAAAAAAGgAAAAABGgAAAAABGgAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABGgAAAAADGgAAAAABGgAAAAADKgAAAAAAGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABKgAAAAAAGgAAAAABKgAAAAAAGgAAAAACGgAAAAABGgAAAAADcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,4: + ind: 1,4 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,5: + ind: -1,5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAACKgAAAAAAGgAAAAAAGgAAAAACGgAAAAACKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAGgAAAAADKgAAAAAAGgAAAAADGgAAAAABGgAAAAAAGgAAAAADGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAACKgAAAAAAGgAAAAAAGgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKgAAAAAAGgAAAAAAGgAAAAADKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,5: + ind: 0,5 + tiles: GgAAAAABGgAAAAABGgAAAAADKgAAAAAAGgAAAAABGgAAAAADGgAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABGgAAAAACGgAAAAACGgAAAAABKgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADGgAAAAABKgAAAAAAGgAAAAADGgAAAAADGgAAAAABcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAABKgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,-2: + ind: -3,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAADcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbQAAAAAAbQAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbQAAAAAAbQAAAAABbQAAAAAAbQAAAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 + -2,-2: + ind: -2,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAHwAAAAADcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAHwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABWwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAADGgAAAAABHwAAAAADUwAAAAABUwAAAAACUwAAAAABXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAGgAAAAADcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAGgAAAAABcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAC + version: 6 + 1,-2: + ind: 1,-2 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAHwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAHwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAADGgAAAAACcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADHgAAAAAAGgAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAHgAAAAABGgAAAAACcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABHgAAAAABGgAAAAACcAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAADwAAAAAADwAAAAAAHgAAAAADHgAAAAACDwAAAAAADwAAAAAADwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAAAHwAAAAADHgAAAAADHgAAAAAAHwAAAAACHwAAAAABHwAAAAACcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAA + version: 6 + 2,-2: + ind: 2,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,-3: + ind: 1,-3 + tiles: bwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAADcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAABcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAWAAAAAAAWAAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-3: + ind: 0,-3 + tiles: cAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAGgAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAGgAAAAADRwAAAAAAcAAAAAAAcAAAAAAARwAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAZwAAAAADcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAGgAAAAADRwAAAAAAcAAAAAAAcAAAAAAARwAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAZwAAAAABcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAGgAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAAGgAAAAABcAAAAAAAcAAAAAAAHwAAAAABcAAAAAAAcAAAAAAAYAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAADcAAAAAAAGgAAAAAAGgAAAAADcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAHwAAAAABHwAAAAAAGgAAAAACGgAAAAABHwAAAAABHwAAAAADcAAAAAAAUwAAAAADUwAAAAADUwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAABHwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAADWwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAACWwAAAAACcAAAAAAAcAAAAAAA + version: 6 + -1,-3: + ind: -1,-3 + tiles: cAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAYAAAAAAAGgAAAAADGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 + -2,-3: + ind: -2,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAZwAAAAAAZwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAZwAAAAAAZwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 + -1,-4: + ind: -1,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 + 0,-4: + ind: 0,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-5: + ind: -1,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-5: + ind: 0,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,3: + ind: 3,3 + tiles: bwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,4: + ind: 2,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,4: + ind: 3,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,4: + ind: -3,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,4: + ind: -4,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 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: 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 + 5280: -40,-6 + - 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 + 5279: -43,-6 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSe + decals: + 772: 21,40 + 1318: -10,-15 + 1341: 11,-15 + 2322: 23,20 + 5282: -40,-7 + - 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 + 5281: -43,-7 + - 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 + 5283: -41,-6 + 5284: -42,-6 + - 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 + 5285: -42,-7 + 5286: -41,-7 + - 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 + 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 + 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 + 5288: -41,6 + - 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: + 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 + 2574: -40,0 + 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 + 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 + 4473: -39,4 + 4474: -40,3 + 4476: -40,2 + 4479: -40,0 + 4480: -40,-1 + 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 + 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: + 5277: -43,1 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 5127: -42,24 + 5128: -42,22 + 5276: -43,5 + - 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 + 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 + 5264: -40,4 + - node: + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 1652: 5,-39 + 2294: -24,-16 + 5078: -16,35 + 5104: 25,31 + 5263: -42,4 + - node: + color: '#FFFFFFFF' + id: WarnCornerSE + decals: + 1058: -14,32 + 1651: 8,-42 + 2293: -22,-18 + 5265: -40,0 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 1057: -16,32 + 1650: 5,-42 + 2296: -24,-18 + 5094: -7,-18 + 5096: 13,-34 + 5105: 27,34 + 5262: -42,0 + - 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 + 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 + 5270: -40,1 + 5271: -40,2 + 5272: -40,3 + - 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 + 5268: -41,0 + 5269: -41,0 + - 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 + 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 + 5273: -42,1 + 5274: -42,2 + 5275: -42,3 + - 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 + 5266: -41,4 + - 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: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAIwAAAAABIwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWwAAAAAAIwAAAAACIwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAWwAAAAADIwAAAAADWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIwAAAAADIwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAHwAAAAACIwAAAAAAHwAAAAACIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAIwAAAAADIwAAAAAB + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAHwAAAAADIwAAAAAAHwAAAAACIwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAADGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: HwAAAAADIwAAAAAAHwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABWwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAWwAAAAADcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACIwAAAAAAHwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADcAAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 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: 255 + components: + - pos: -40.5,-3.5 + parent: 1 + type: Transform + - uid: 4141 + components: + - pos: -41.5,-3.5 + parent: 1 + type: Transform + - 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: 2971 + components: + - pos: -44.5,2.5 + parent: 1 + type: Transform + - uid: 4162 + components: + - pos: -44.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: 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: 1766 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,2.5 + parent: 1 + type: Transform + - uid: 2070 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,4.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: 2606 + components: + - pos: -47.5,2.5 + parent: 1 + type: Transform + - uid: 2609 + components: + - pos: -47.5,4.5 + parent: 1 + type: Transform + - uid: 4137 + components: + - pos: -44.5,4.5 + parent: 1 + type: Transform + - uid: 4148 + components: + - pos: -44.5,2.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: 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: 2706 + components: + - pos: -3.5,-44.5 + parent: 1 + type: Transform + - uid: 2716 + components: + - pos: -3.5,-43.5 + parent: 1 + type: Transform + - uid: 2729 + components: + - pos: -3.5,-45.5 + parent: 1 + type: Transform + - 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: BlastDoorExterior3Open + entities: + - uid: 9639 + components: + - pos: -19.5,39.5 + parent: 1 + type: Transform + - uid: 9640 + components: + - pos: -18.5,39.5 + parent: 1 + type: Transform + - uid: 9641 + components: + - pos: -16.5,39.5 + parent: 1 + type: Transform + - uid: 9642 + components: + - pos: -15.5,39.5 + parent: 1 + type: Transform + - uid: 9643 + components: + - pos: -13.5,39.5 + parent: 1 + type: Transform + - uid: 9644 + components: + - pos: -12.5,39.5 + parent: 1 + type: Transform + - uid: 9645 + components: + - pos: -9.5,39.5 + parent: 1 + type: Transform + - uid: 9646 + components: + - pos: -10.5,39.5 + parent: 1 + type: Transform + - uid: 9647 + components: + - pos: -6.5,39.5 + parent: 1 + type: Transform + - uid: 9648 + components: + - pos: -7.5,39.5 + parent: 1 + type: Transform + - uid: 9649 + components: + - pos: -3.5,39.5 + parent: 1 + type: Transform + - uid: 9650 + components: + - pos: -4.5,39.5 + parent: 1 + type: Transform + - uid: 9651 + components: + - pos: -3.5,48.5 + parent: 1 + type: Transform + - uid: 9652 + components: + - pos: -3.5,49.5 + parent: 1 + type: Transform + - uid: 9653 + components: + - pos: -3.5,50.5 + parent: 1 + type: Transform + - uid: 9654 + components: + - pos: -4.5,53.5 + parent: 1 + type: Transform + - uid: 9655 + components: + - pos: -4.5,54.5 + parent: 1 + type: Transform + - uid: 9656 + components: + - pos: -4.5,56.5 + parent: 1 + type: Transform + - uid: 9657 + components: + - pos: -4.5,57.5 + parent: 1 + type: Transform +- proto: BlastDoorOpen + entities: + - uid: 1048 + components: + - pos: -6.5,27.5 + parent: 1 + type: Transform + - links: + - 8572 + type: DeviceLinkSink + - uid: 2129 + components: + - pos: -44.5,5.5 + parent: 1 + type: Transform + - links: + - 2291 + type: DeviceLinkSink + - uid: 2130 + components: + - pos: -47.5,1.5 + parent: 1 + type: Transform + - links: + - 2128 + type: DeviceLinkSink + - uid: 2607 + components: + - pos: -44.5,1.5 + parent: 1 + type: Transform + - links: + - 2291 + type: DeviceLinkSink + - uid: 2610 + components: + - pos: -47.5,5.5 + parent: 1 + type: Transform + - links: + - 2612 + type: DeviceLinkSink + - uid: 2813 + components: + - pos: -11.5,-26.5 + parent: 1 + type: Transform + - state: Closed + type: Door + - enabled: True + type: Occluder + - canCollide: True + type: Physics + - airBlocked: True + type: Airtight + - links: + - 8738 + type: DeviceLinkSink + - uid: 2814 + components: + - pos: -11.5,-27.5 + parent: 1 + type: Transform + - state: Closed + type: Door + - enabled: True + type: Occluder + - canCollide: True + type: Physics + - airBlocked: True + type: Airtight + - links: + - 8738 + type: DeviceLinkSink + - uid: 2821 + components: + - pos: -11.5,-28.5 + parent: 1 + type: Transform + - state: Closed + type: Door + - enabled: True + type: Occluder + - canCollide: True + type: Physics + - airBlocked: True + type: Airtight + - links: + - 8738 + type: DeviceLinkSink + - uid: 2822 + components: + - pos: -11.5,-29.5 + parent: 1 + type: Transform + - state: Closed + type: Door + - enabled: True + type: Occluder + - canCollide: True + type: Physics + - airBlocked: True + type: Airtight + - 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 + - state: Closed + type: Door + - enabled: True + type: Occluder + - canCollide: True + type: Physics + - airBlocked: True + type: Airtight + - links: + - 17649 + type: DeviceLinkSink + - uid: 4205 + components: + - pos: 14.5,-23.5 + parent: 1 + type: Transform + - state: Closed + type: Door + - enabled: True + type: Occluder + - canCollide: True + type: Physics + - airBlocked: True + type: Airtight + - 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: BoxFolderClipboard + entities: + - uid: 9636 + components: + - pos: -38.639683,-6.348105 + 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: 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 + - 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 + - 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 + - uid: 2059 + components: + - pos: 50.5,-7.5 + parent: 1 + type: Transform + - uid: 2060 + components: + - pos: 46.5,-12.5 + parent: 1 + type: Transform + - uid: 2622 + components: + - pos: -42.5,1.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: 5533 + components: + - pos: -42.5,0.5 + parent: 1 + type: Transform + - uid: 6000 + components: + - pos: -29.5,-17.5 + parent: 1 + type: Transform + - uid: 6022 + components: + - pos: -18.5,-31.5 + parent: 1 + type: Transform + - 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 + - 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 + - uid: 7942 + components: + - pos: -44.5,22.5 + parent: 1 + type: Transform + - uid: 7943 + components: + - pos: -45.5,22.5 + parent: 1 + type: Transform + - uid: 7944 + components: + - pos: -45.5,21.5 + parent: 1 + type: Transform + - uid: 8009 + components: + - pos: -45.5,20.5 + parent: 1 + type: Transform + - uid: 8140 + components: + - pos: -43.5,24.5 + parent: 1 + type: Transform + - uid: 8141 + components: + - pos: -44.5,24.5 + parent: 1 + type: Transform + - uid: 8142 + components: + - pos: -45.5,24.5 + parent: 1 + type: Transform + - 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: 8518 + components: + - pos: -44.5,2.5 + parent: 1 + type: Transform + - uid: 8598 + components: + - pos: -45.5,2.5 + parent: 1 + type: Transform + - uid: 8599 + components: + - pos: -46.5,2.5 + parent: 1 + type: Transform + - uid: 8600 + components: + - pos: -45.5,4.5 + parent: 1 + type: Transform + - uid: 8601 + components: + - pos: -46.5,4.5 + parent: 1 + type: Transform + - uid: 8701 + components: + - pos: -44.5,4.5 + parent: 1 + type: Transform + - uid: 8830 + components: + - pos: 1.5,-5.5 + parent: 8756 + type: Transform + - 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 + - uid: 8834 + components: + - pos: 1.5,-1.5 + parent: 8756 + type: Transform + - uid: 8835 + components: + - pos: 1.5,-0.5 + parent: 8756 + type: Transform + - 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 + - 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 + - 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 + - uid: 8848 + components: + - pos: -2.5,-1.5 + parent: 8756 + type: Transform + - uid: 8849 + components: + - pos: -2.5,-2.5 + parent: 8756 + type: Transform + - 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 + - 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 + - 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 + - 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 + - uid: 9749 + components: + - pos: -22.5,-21.5 + parent: 1 + type: Transform + - uid: 9750 + components: + - pos: -22.5,-22.5 + parent: 1 + type: Transform + - 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 + - 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 + - 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 + - uid: 9761 + components: + - pos: -24.5,-22.5 + parent: 1 + type: Transform + - uid: 9762 + components: + - pos: -24.5,-23.5 + parent: 1 + type: Transform + - uid: 9763 + components: + - pos: -24.5,-24.5 + parent: 1 + type: Transform + - uid: 9776 + components: + - pos: -31.5,-13.5 + parent: 1 + type: Transform + - uid: 9777 + components: + - pos: -31.5,-14.5 + parent: 1 + type: Transform + - uid: 9778 + components: + - pos: -31.5,-15.5 + parent: 1 + type: Transform + - uid: 9779 + components: + - pos: -31.5,-16.5 + parent: 1 + type: Transform + - uid: 9780 + components: + - pos: -30.5,-16.5 + parent: 1 + type: Transform + - uid: 9781 + components: + - pos: -29.5,-16.5 + parent: 1 + type: Transform + - uid: 9782 + components: + - pos: -28.5,-16.5 + parent: 1 + type: Transform + - uid: 9783 + components: + - pos: -27.5,-16.5 + parent: 1 + type: Transform + - uid: 9784 + components: + - pos: -26.5,-16.5 + parent: 1 + type: Transform + - uid: 9785 + components: + - pos: -25.5,-16.5 + parent: 1 + type: Transform + - uid: 9786 + components: + - pos: -25.5,-17.5 + parent: 1 + type: Transform + - uid: 9787 + components: + - pos: -25.5,-18.5 + parent: 1 + type: Transform + - uid: 9788 + components: + - pos: -29.5,-15.5 + parent: 1 + type: Transform + - uid: 9789 + components: + - pos: -29.5,-14.5 + parent: 1 + type: Transform + - uid: 9790 + components: + - pos: -28.5,-14.5 + parent: 1 + type: Transform + - uid: 9791 + components: + - pos: -27.5,-14.5 + parent: 1 + type: Transform + - uid: 9792 + components: + - pos: -27.5,-13.5 + parent: 1 + type: Transform + - uid: 9793 + components: + - pos: -27.5,-12.5 + parent: 1 + type: Transform + - uid: 9794 + components: + - pos: -27.5,-11.5 + parent: 1 + type: Transform + - uid: 9795 + components: + - pos: -32.5,-16.5 + parent: 1 + type: Transform + - uid: 9796 + components: + - pos: -33.5,-16.5 + parent: 1 + type: Transform + - uid: 9797 + components: + - pos: -34.5,-16.5 + parent: 1 + type: Transform + - uid: 9798 + components: + - pos: -35.5,-16.5 + parent: 1 + type: Transform + - uid: 9799 + components: + - pos: -35.5,-15.5 + parent: 1 + type: Transform + - uid: 9800 + components: + - pos: -35.5,-14.5 + parent: 1 + type: Transform + - uid: 9801 + components: + - pos: -35.5,-13.5 + parent: 1 + type: Transform + - uid: 9802 + components: + - pos: -35.5,-12.5 + parent: 1 + type: Transform + - uid: 9803 + components: + - pos: -35.5,-11.5 + parent: 1 + type: Transform + - uid: 9804 + components: + - pos: -35.5,-10.5 + parent: 1 + type: Transform + - uid: 9805 + components: + - pos: -35.5,-9.5 + parent: 1 + type: Transform + - uid: 9806 + components: + - pos: -35.5,-8.5 + parent: 1 + type: Transform + - uid: 9807 + components: + - pos: -35.5,-7.5 + parent: 1 + type: Transform + - uid: 9808 + components: + - pos: -36.5,-11.5 + parent: 1 + type: Transform + - uid: 9809 + components: + - pos: -37.5,-11.5 + parent: 1 + type: Transform + - 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 + - uid: 9814 + components: + - pos: -40.5,-9.5 + parent: 1 + type: Transform + - uid: 9818 + components: + - pos: -44.5,-9.5 + parent: 1 + type: Transform + - uid: 9819 + components: + - pos: -45.5,-9.5 + parent: 1 + type: Transform + - uid: 9820 + components: + - pos: -46.5,-9.5 + parent: 1 + type: Transform + - uid: 9821 + components: + - pos: -47.5,-9.5 + parent: 1 + type: Transform + - uid: 9822 + components: + - pos: -48.5,-9.5 + parent: 1 + type: Transform + - uid: 9823 + components: + - pos: -49.5,-9.5 + parent: 1 + type: Transform + - uid: 9824 + components: + - pos: -50.5,-9.5 + parent: 1 + type: Transform + - uid: 9825 + components: + - pos: -51.5,-9.5 + parent: 1 + type: Transform + - uid: 9826 + components: + - pos: -52.5,-9.5 + parent: 1 + type: Transform + - uid: 9827 + components: + - pos: -49.5,-10.5 + parent: 1 + type: Transform + - uid: 9828 + components: + - pos: -49.5,-11.5 + parent: 1 + type: Transform + - uid: 9829 + components: + - pos: -47.5,-10.5 + parent: 1 + type: Transform + - uid: 9830 + components: + - pos: -47.5,-11.5 + parent: 1 + type: Transform + - uid: 9831 + components: + - pos: -50.5,-8.5 + parent: 1 + type: Transform + - uid: 9832 + components: + - pos: -50.5,-7.5 + parent: 1 + type: Transform + - uid: 9833 + components: + - pos: -51.5,-7.5 + parent: 1 + type: Transform + - uid: 9834 + components: + - pos: -52.5,-7.5 + parent: 1 + type: Transform + - uid: 9835 + components: + - pos: -49.5,-7.5 + parent: 1 + type: Transform + - 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 + - uid: 9839 + components: + - pos: -45.5,-7.5 + parent: 1 + type: Transform + - uid: 9840 + components: + - pos: -45.5,-8.5 + parent: 1 + type: Transform + - uid: 9990 + components: + - pos: -29.5,-18.5 + parent: 1 + type: Transform + - uid: 9991 + components: + - pos: -29.5,-19.5 + parent: 1 + type: Transform + - uid: 9992 + components: + - pos: -29.5,-20.5 + parent: 1 + type: Transform + - uid: 9993 + components: + - pos: -29.5,-21.5 + parent: 1 + type: Transform + - uid: 9994 + components: + - pos: -29.5,-22.5 + parent: 1 + type: Transform + - uid: 9995 + components: + - pos: -29.5,-23.5 + parent: 1 + type: Transform + - uid: 9996 + components: + - pos: -30.5,-23.5 + parent: 1 + type: Transform + - uid: 9997 + components: + - pos: -31.5,-23.5 + parent: 1 + type: Transform + - uid: 9998 + components: + - pos: -31.5,-22.5 + parent: 1 + type: Transform + - uid: 9999 + components: + - pos: -31.5,-21.5 + parent: 1 + type: Transform + - uid: 10000 + components: + - pos: -31.5,-20.5 + parent: 1 + type: Transform + - uid: 10001 + components: + - pos: -31.5,-19.5 + parent: 1 + type: Transform + - 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 + - uid: 10006 + components: + - pos: -27.5,-22.5 + parent: 1 + type: Transform + - uid: 10007 + components: + - pos: -26.5,-22.5 + parent: 1 + type: Transform + - uid: 10008 + components: + - pos: -29.5,-24.5 + parent: 1 + type: Transform + - uid: 10009 + components: + - pos: -29.5,-25.5 + parent: 1 + type: Transform + - uid: 10010 + components: + - pos: -29.5,-26.5 + parent: 1 + type: Transform + - uid: 10011 + components: + - pos: -28.5,-26.5 + parent: 1 + type: Transform + - uid: 10012 + components: + - pos: -27.5,-26.5 + parent: 1 + type: Transform + - uid: 10013 + components: + - pos: -26.5,-26.5 + parent: 1 + type: Transform + - uid: 10014 + components: + - pos: -25.5,-26.5 + parent: 1 + type: Transform + - uid: 10015 + components: + - pos: -24.5,-26.5 + parent: 1 + type: Transform + - uid: 10016 + components: + - pos: -23.5,-26.5 + parent: 1 + type: Transform + - uid: 10017 + components: + - pos: -22.5,-26.5 + parent: 1 + type: Transform + - uid: 10018 + components: + - pos: -21.5,-26.5 + parent: 1 + type: Transform + - uid: 10019 + components: + - pos: -20.5,-26.5 + parent: 1 + type: Transform + - uid: 10020 + components: + - pos: -20.5,-27.5 + parent: 1 + type: Transform + - uid: 10021 + components: + - pos: -20.5,-28.5 + parent: 1 + type: Transform + - uid: 10022 + components: + - pos: -20.5,-29.5 + parent: 1 + type: Transform + - uid: 10023 + components: + - pos: -20.5,-30.5 + parent: 1 + type: Transform + - uid: 10024 + components: + - pos: -20.5,-31.5 + parent: 1 + type: Transform + - uid: 10025 + components: + - pos: -19.5,-31.5 + parent: 1 + type: Transform + - 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 + - uid: 10029 + components: + - pos: -19.5,-35.5 + parent: 1 + type: Transform + - 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 + - uid: 10038 + components: + - pos: -16.5,-22.5 + parent: 1 + type: Transform + - uid: 10039 + components: + - pos: -16.5,-23.5 + parent: 1 + type: Transform + - uid: 10040 + components: + - pos: -16.5,-24.5 + parent: 1 + type: Transform + - uid: 10041 + components: + - pos: -17.5,-24.5 + parent: 1 + type: Transform + - uid: 10042 + components: + - pos: -18.5,-24.5 + parent: 1 + type: Transform + - uid: 10043 + components: + - pos: -18.5,-25.5 + parent: 1 + type: Transform + - uid: 10044 + components: + - pos: -18.5,-26.5 + parent: 1 + type: Transform + - uid: 10045 + components: + - pos: -18.5,-27.5 + parent: 1 + type: Transform + - uid: 10046 + components: + - pos: -18.5,-28.5 + parent: 1 + type: Transform + - uid: 10047 + components: + - pos: -18.5,-29.5 + parent: 1 + type: Transform + - uid: 10049 + components: + - pos: -17.5,-31.5 + parent: 1 + type: Transform + - uid: 10050 + components: + - pos: -16.5,-31.5 + parent: 1 + type: Transform + - uid: 10051 + components: + - pos: -16.5,-32.5 + parent: 1 + type: Transform + - uid: 10052 + components: + - pos: -16.5,-33.5 + parent: 1 + type: Transform + - uid: 10053 + components: + - pos: -16.5,-34.5 + parent: 1 + type: Transform + - uid: 10054 + components: + - pos: -16.5,-35.5 + parent: 1 + type: Transform + - uid: 10055 + components: + - pos: -16.5,-36.5 + parent: 1 + type: Transform + - uid: 10056 + components: + - pos: -16.5,-37.5 + parent: 1 + type: Transform + - uid: 10057 + components: + - pos: -16.5,-38.5 + parent: 1 + type: Transform + - 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 + - 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 + - uid: 10173 + components: + - pos: 28.5,-15.5 + parent: 1 + type: Transform + - uid: 10174 + components: + - pos: 27.5,-15.5 + parent: 1 + type: Transform + - uid: 10175 + components: + - pos: 26.5,-15.5 + parent: 1 + type: Transform + - uid: 10176 + components: + - pos: 25.5,-15.5 + parent: 1 + type: Transform + - uid: 10177 + components: + - pos: 24.5,-15.5 + parent: 1 + type: Transform + - uid: 10178 + components: + - pos: 24.5,-14.5 + parent: 1 + type: Transform + - uid: 10179 + components: + - pos: 24.5,-13.5 + parent: 1 + type: Transform + - uid: 10180 + components: + - pos: 24.5,-12.5 + parent: 1 + type: Transform + - uid: 10181 + components: + - pos: 24.5,-16.5 + parent: 1 + type: Transform + - uid: 10182 + components: + - pos: 24.5,-17.5 + parent: 1 + type: Transform + - uid: 10183 + components: + - pos: 24.5,-18.5 + parent: 1 + type: Transform + - uid: 10184 + components: + - pos: 24.5,-19.5 + parent: 1 + type: Transform + - uid: 10185 + components: + - pos: 24.5,-20.5 + parent: 1 + type: Transform + - uid: 10186 + components: + - pos: 24.5,-21.5 + parent: 1 + type: Transform + - uid: 10187 + components: + - pos: 24.5,-22.5 + parent: 1 + type: Transform + - uid: 10188 + components: + - pos: 24.5,-23.5 + parent: 1 + type: Transform + - uid: 10189 + components: + - pos: 24.5,-24.5 + parent: 1 + type: Transform + - 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 + - uid: 10193 + components: + - pos: 22.5,-26.5 + parent: 1 + type: Transform + - uid: 10194 + components: + - pos: 22.5,-27.5 + parent: 1 + type: Transform + - uid: 10195 + components: + - pos: 21.5,-27.5 + parent: 1 + type: Transform + - uid: 10196 + components: + - pos: 21.5,-28.5 + parent: 1 + type: Transform + - uid: 10197 + components: + - pos: 21.5,-29.5 + parent: 1 + type: Transform + - uid: 10198 + components: + - pos: 20.5,-29.5 + parent: 1 + type: Transform + - uid: 10199 + components: + - pos: 19.5,-29.5 + parent: 1 + type: Transform + - uid: 10200 + components: + - pos: 18.5,-29.5 + parent: 1 + type: Transform + - uid: 10201 + components: + - pos: 17.5,-29.5 + parent: 1 + type: Transform + - uid: 10202 + components: + - pos: 16.5,-29.5 + parent: 1 + type: Transform + - uid: 10203 + components: + - pos: 15.5,-29.5 + parent: 1 + type: Transform + - uid: 10204 + components: + - pos: 15.5,-30.5 + parent: 1 + type: Transform + - uid: 10205 + components: + - pos: 15.5,-31.5 + parent: 1 + type: Transform + - uid: 10206 + components: + - pos: 15.5,-32.5 + parent: 1 + type: Transform + - uid: 10207 + components: + - pos: 15.5,-33.5 + parent: 1 + type: Transform + - uid: 10208 + components: + - pos: 15.5,-34.5 + parent: 1 + type: Transform + - uid: 10209 + components: + - pos: 15.5,-35.5 + parent: 1 + type: Transform + - 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 + - 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 + - uid: 10224 + components: + - pos: 31.5,-15.5 + parent: 1 + type: Transform + - uid: 10225 + components: + - pos: 32.5,-15.5 + parent: 1 + type: Transform + - uid: 10226 + components: + - pos: 32.5,-14.5 + parent: 1 + type: Transform + - uid: 10227 + components: + - pos: 32.5,-13.5 + parent: 1 + type: Transform + - uid: 10228 + components: + - pos: 32.5,-12.5 + parent: 1 + type: Transform + - uid: 10229 + components: + - pos: 32.5,-11.5 + parent: 1 + type: Transform + - uid: 10230 + components: + - pos: 33.5,-11.5 + parent: 1 + type: Transform + - uid: 10231 + components: + - pos: 34.5,-11.5 + parent: 1 + type: Transform + - uid: 10232 + components: + - pos: 35.5,-11.5 + parent: 1 + type: Transform + - uid: 10233 + components: + - pos: 36.5,-11.5 + parent: 1 + type: Transform + - uid: 10234 + components: + - pos: 37.5,-11.5 + parent: 1 + type: Transform + - uid: 10235 + components: + - pos: 38.5,-11.5 + parent: 1 + type: Transform + - uid: 10236 + components: + - pos: 39.5,-11.5 + parent: 1 + type: Transform + - uid: 10237 + components: + - pos: 30.5,-16.5 + parent: 1 + type: Transform + - uid: 10238 + components: + - pos: 30.5,-17.5 + parent: 1 + type: Transform + - uid: 10239 + components: + - pos: 30.5,-18.5 + parent: 1 + type: Transform + - uid: 10240 + components: + - pos: 30.5,-19.5 + parent: 1 + type: Transform + - uid: 10241 + components: + - pos: 30.5,-20.5 + parent: 1 + type: Transform + - uid: 10242 + components: + - pos: 30.5,-21.5 + parent: 1 + type: Transform + - uid: 10243 + components: + - pos: 30.5,-22.5 + parent: 1 + type: Transform + - uid: 10244 + components: + - pos: 30.5,-23.5 + parent: 1 + type: Transform + - uid: 10245 + components: + - pos: 30.5,-24.5 + parent: 1 + type: Transform + - uid: 10246 + components: + - pos: 29.5,-19.5 + parent: 1 + type: Transform + - uid: 10247 + components: + - pos: 28.5,-19.5 + parent: 1 + type: Transform + - uid: 10248 + components: + - pos: 27.5,-19.5 + parent: 1 + type: Transform + - uid: 10249 + components: + - pos: 26.5,-19.5 + parent: 1 + type: Transform + - uid: 10250 + components: + - pos: 29.5,-24.5 + parent: 1 + type: Transform + - uid: 10251 + components: + - pos: 28.5,-24.5 + parent: 1 + type: Transform + - uid: 10252 + components: + - pos: 27.5,-24.5 + parent: 1 + type: Transform + - uid: 10253 + components: + - pos: 26.5,-24.5 + parent: 1 + type: Transform + - uid: 10254 + components: + - pos: 25.5,-24.5 + parent: 1 + type: Transform + - uid: 10255 + components: + - pos: 31.5,-20.5 + parent: 1 + type: Transform + - uid: 10256 + components: + - pos: 32.5,-20.5 + parent: 1 + type: Transform + - uid: 10257 + components: + - pos: 33.5,-20.5 + parent: 1 + type: Transform + - uid: 10258 + components: + - pos: 34.5,-20.5 + parent: 1 + type: Transform + - uid: 10259 + components: + - pos: 35.5,-20.5 + parent: 1 + type: Transform + - uid: 10261 + components: + - pos: 37.5,-13.5 + parent: 1 + type: Transform + - uid: 10262 + components: + - pos: 37.5,-14.5 + parent: 1 + type: Transform + - uid: 10263 + components: + - pos: 37.5,-15.5 + parent: 1 + type: Transform + - 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 + - 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 + - uid: 10270 + components: + - pos: 31.5,-24.5 + parent: 1 + type: Transform + - uid: 10271 + components: + - pos: 32.5,-24.5 + parent: 1 + type: Transform + - uid: 10309 + components: + - pos: -41.5,7.5 + parent: 1 + type: Transform + - 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 + - uid: 10313 + components: + - pos: -44.5,8.5 + parent: 1 + type: Transform + - uid: 10314 + components: + - pos: -44.5,9.5 + parent: 1 + type: Transform + - 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 + - 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 + - uid: 10364 + components: + - pos: -42.5,2.5 + parent: 1 + type: Transform + - uid: 10365 + components: + - pos: -43.5,2.5 + parent: 1 + type: Transform + - uid: 10366 + components: + - pos: -42.5,4.5 + parent: 1 + type: Transform + - uid: 10367 + components: + - pos: -43.5,4.5 + parent: 1 + type: Transform + - uid: 10368 + components: + - pos: -41.5,4.5 + parent: 1 + type: Transform + - 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 + - uid: 10444 + components: + - pos: 17.5,-21.5 + parent: 1 + type: Transform + - uid: 10445 + components: + - pos: 17.5,-20.5 + parent: 1 + type: Transform + - uid: 10446 + components: + - pos: 18.5,-20.5 + parent: 1 + type: Transform + - 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 + - uid: 10452 + components: + - pos: 18.5,-26.5 + parent: 1 + type: Transform + - uid: 10453 + components: + - pos: 18.5,-23.5 + parent: 1 + type: Transform + - uid: 10454 + components: + - pos: 19.5,-23.5 + parent: 1 + type: Transform + - uid: 10455 + components: + - pos: 19.5,-22.5 + parent: 1 + type: Transform + - uid: 10456 + components: + - pos: 19.5,-24.5 + parent: 1 + type: Transform + - uid: 10457 + components: + - pos: 16.5,-23.5 + parent: 1 + type: Transform + - uid: 10470 + components: + - pos: 5.5,-31.5 + parent: 1 + type: Transform + - uid: 10471 + components: + - pos: 5.5,-30.5 + parent: 1 + type: Transform + - uid: 10472 + components: + - pos: 5.5,-29.5 + parent: 1 + type: Transform + - uid: 10473 + components: + - pos: 5.5,-28.5 + parent: 1 + type: Transform + - uid: 10474 + components: + - pos: 6.5,-28.5 + parent: 1 + type: Transform + - uid: 10475 + components: + - pos: 7.5,-28.5 + parent: 1 + type: Transform + - uid: 10476 + components: + - pos: 8.5,-28.5 + parent: 1 + type: Transform + - uid: 10477 + components: + - pos: 8.5,-29.5 + parent: 1 + type: Transform + - uid: 10478 + components: + - pos: 8.5,-30.5 + parent: 1 + type: Transform + - uid: 10479 + components: + - pos: 7.5,-30.5 + parent: 1 + type: Transform + - 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 + - uid: 10487 + components: + - pos: 7.5,-38.5 + parent: 1 + type: Transform + - uid: 10488 + components: + - pos: 7.5,-39.5 + parent: 1 + type: Transform + - uid: 10489 + components: + - pos: 7.5,-40.5 + parent: 1 + type: Transform + - 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 + - uid: 10515 + components: + - pos: 12.5,-40.5 + parent: 1 + type: Transform + - uid: 10516 + components: + - pos: 12.5,-41.5 + parent: 1 + type: Transform + - uid: 10517 + components: + - pos: 12.5,-42.5 + parent: 1 + type: Transform + - uid: 10518 + components: + - pos: 12.5,-43.5 + parent: 1 + type: Transform + - uid: 10519 + components: + - pos: 12.5,-44.5 + parent: 1 + type: Transform + - uid: 10520 + components: + - pos: 12.5,-45.5 + parent: 1 + type: Transform + - uid: 10521 + components: + - pos: 12.5,-46.5 + parent: 1 + type: Transform + - uid: 10522 + components: + - pos: 12.5,-47.5 + parent: 1 + type: Transform + - 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 + - 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 + - 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 + - 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 + - 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 + - uid: 10627 + components: + - pos: 3.5,-15.5 + parent: 1 + type: Transform + - uid: 10628 + components: + - pos: 2.5,-15.5 + parent: 1 + type: Transform + - uid: 10629 + components: + - pos: 1.5,-15.5 + parent: 1 + type: Transform + - uid: 10630 + components: + - pos: 0.5,-15.5 + parent: 1 + type: Transform + - 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 + - uid: 10660 + components: + - pos: 18.5,-18.5 + parent: 1 + type: Transform + - 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 + - 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 + - uid: 10730 + components: + - pos: -13.5,-40.5 + parent: 1 + type: Transform + - uid: 10731 + components: + - pos: -13.5,-41.5 + parent: 1 + type: Transform + - uid: 10732 + components: + - pos: -13.5,-42.5 + parent: 1 + type: Transform + - uid: 10733 + components: + - pos: -13.5,-43.5 + parent: 1 + type: Transform + - uid: 10734 + components: + - pos: -13.5,-44.5 + parent: 1 + type: Transform + - uid: 10735 + components: + - pos: -13.5,-45.5 + parent: 1 + type: Transform + - uid: 10736 + components: + - pos: -13.5,-46.5 + parent: 1 + type: Transform + - uid: 10737 + components: + - pos: -13.5,-47.5 + parent: 1 + type: Transform + - uid: 10738 + components: + - pos: -12.5,-47.5 + parent: 1 + type: Transform + - uid: 10739 + components: + - pos: -11.5,-47.5 + parent: 1 + type: Transform + - uid: 10740 + components: + - pos: -10.5,-47.5 + parent: 1 + type: Transform + - uid: 10741 + components: + - pos: -9.5,-47.5 + parent: 1 + type: Transform + - uid: 10742 + components: + - pos: -8.5,-47.5 + parent: 1 + type: Transform + - uid: 10743 + components: + - pos: -7.5,-47.5 + parent: 1 + type: Transform + - uid: 10744 + components: + - pos: -6.5,-47.5 + parent: 1 + type: Transform + - uid: 10745 + components: + - pos: -5.5,-47.5 + parent: 1 + type: Transform + - uid: 10746 + components: + - pos: -4.5,-47.5 + parent: 1 + type: Transform + - uid: 10747 + components: + - pos: -3.5,-47.5 + parent: 1 + type: Transform + - uid: 10748 + components: + - pos: -10.5,-38.5 + parent: 1 + type: Transform + - uid: 10749 + components: + - pos: -9.5,-38.5 + parent: 1 + type: Transform + - uid: 10750 + components: + - pos: -8.5,-38.5 + parent: 1 + type: Transform + - uid: 10751 + components: + - pos: -7.5,-38.5 + parent: 1 + type: Transform + - uid: 10752 + components: + - pos: -6.5,-38.5 + parent: 1 + type: Transform + - uid: 10753 + components: + - pos: -5.5,-38.5 + parent: 1 + type: Transform + - uid: 10754 + components: + - pos: -4.5,-38.5 + parent: 1 + type: Transform + - uid: 10755 + components: + - pos: -4.5,-39.5 + parent: 1 + type: Transform + - uid: 10756 + components: + - pos: -4.5,-40.5 + parent: 1 + type: Transform + - uid: 10757 + components: + - pos: -4.5,-41.5 + parent: 1 + type: Transform + - uid: 10758 + components: + - pos: -4.5,-37.5 + parent: 1 + type: Transform + - uid: 10759 + components: + - pos: -4.5,-36.5 + parent: 1 + type: Transform + - uid: 10760 + components: + - pos: -4.5,-35.5 + parent: 1 + type: Transform + - uid: 10761 + components: + - pos: -4.5,-34.5 + parent: 1 + type: Transform + - uid: 10762 + components: + - pos: -4.5,-33.5 + parent: 1 + type: Transform + - uid: 10763 + components: + - pos: -4.5,-32.5 + parent: 1 + type: Transform + - uid: 10764 + components: + - pos: -4.5,-31.5 + parent: 1 + type: Transform + - uid: 10765 + components: + - pos: -4.5,-30.5 + parent: 1 + type: Transform + - uid: 10766 + components: + - pos: -4.5,-29.5 + parent: 1 + type: Transform + - uid: 10767 + components: + - pos: -4.5,-28.5 + parent: 1 + type: Transform + - uid: 10768 + components: + - pos: -4.5,-27.5 + parent: 1 + type: Transform + - uid: 10769 + components: + - pos: -4.5,-26.5 + parent: 1 + type: Transform + - uid: 10770 + components: + - pos: -4.5,-25.5 + parent: 1 + type: Transform + - uid: 10771 + components: + - pos: -4.5,-24.5 + parent: 1 + type: Transform + - uid: 10772 + components: + - pos: -4.5,-23.5 + parent: 1 + type: Transform + - uid: 10773 + components: + - pos: -4.5,-22.5 + parent: 1 + type: Transform + - uid: 10774 + components: + - pos: -4.5,-21.5 + parent: 1 + type: Transform + - uid: 10775 + components: + - pos: -4.5,-20.5 + parent: 1 + type: Transform + - uid: 10776 + components: + - pos: -4.5,-19.5 + parent: 1 + type: Transform + - uid: 10777 + components: + - pos: -4.5,-18.5 + parent: 1 + type: Transform + - uid: 10778 + components: + - pos: -3.5,-18.5 + parent: 1 + type: Transform + - uid: 10779 + components: + - pos: -2.5,-18.5 + parent: 1 + type: Transform + - uid: 10780 + components: + - pos: -1.5,-18.5 + parent: 1 + type: Transform + - uid: 10781 + components: + - pos: -0.5,-18.5 + parent: 1 + type: Transform + - uid: 10782 + components: + - pos: 0.5,-18.5 + parent: 1 + type: Transform + - uid: 10783 + components: + - pos: 1.5,-18.5 + parent: 1 + type: Transform + - uid: 10784 + components: + - pos: 1.5,-19.5 + parent: 1 + type: Transform + - uid: 10785 + components: + - pos: 1.5,-20.5 + parent: 1 + type: Transform + - uid: 10786 + components: + - pos: 1.5,-21.5 + parent: 1 + type: Transform + - uid: 10787 + components: + - pos: 1.5,-22.5 + parent: 1 + type: Transform + - uid: 10788 + components: + - pos: 1.5,-23.5 + parent: 1 + type: Transform + - uid: 10789 + components: + - pos: 1.5,-24.5 + parent: 1 + type: Transform + - uid: 10790 + components: + - pos: 1.5,-25.5 + parent: 1 + type: Transform + - uid: 10791 + components: + - pos: 1.5,-26.5 + parent: 1 + type: Transform + - uid: 10792 + components: + - pos: 1.5,-27.5 + parent: 1 + type: Transform + - uid: 10793 + components: + - pos: 1.5,-28.5 + parent: 1 + type: Transform + - uid: 10794 + components: + - pos: 1.5,-29.5 + parent: 1 + type: Transform + - uid: 10795 + components: + - pos: 1.5,-30.5 + parent: 1 + type: Transform + - uid: 10796 + components: + - pos: 1.5,-31.5 + parent: 1 + type: Transform + - uid: 10797 + components: + - pos: 1.5,-32.5 + parent: 1 + type: Transform + - uid: 10798 + components: + - pos: 1.5,-33.5 + parent: 1 + type: Transform + - uid: 10799 + components: + - pos: 1.5,-34.5 + parent: 1 + type: Transform + - uid: 10800 + components: + - pos: 1.5,-35.5 + parent: 1 + type: Transform + - uid: 10801 + components: + - pos: 1.5,-36.5 + parent: 1 + type: Transform + - uid: 10802 + components: + - pos: 1.5,-37.5 + parent: 1 + type: Transform + - uid: 10803 + components: + - pos: 1.5,-38.5 + parent: 1 + type: Transform + - uid: 10804 + components: + - pos: 1.5,-39.5 + parent: 1 + type: Transform + - uid: 10805 + components: + - pos: 1.5,-40.5 + parent: 1 + type: Transform + - uid: 10806 + components: + - pos: 1.5,-41.5 + parent: 1 + type: Transform + - uid: 10807 + components: + - pos: 1.5,-42.5 + parent: 1 + type: Transform + - uid: 10808 + components: + - pos: -4.5,-39.5 + parent: 1 + type: Transform + - uid: 10809 + components: + - pos: -4.5,-41.5 + parent: 1 + type: Transform + - uid: 10810 + components: + - pos: -4.5,-40.5 + parent: 1 + type: Transform + - 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 + - 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 + - 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 + - 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 + - uid: 10835 + components: + - pos: -4.5,-15.5 + parent: 1 + type: Transform + - uid: 10836 + components: + - pos: -3.5,-15.5 + parent: 1 + type: Transform + - uid: 10837 + components: + - pos: -2.5,-15.5 + parent: 1 + type: Transform + - uid: 10838 + components: + - pos: -1.5,-15.5 + parent: 1 + type: Transform + - 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 + - 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 + - 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 + - uid: 11120 + components: + - pos: 18.5,-0.5 + parent: 1 + type: Transform + - uid: 11121 + components: + - pos: 18.5,0.5 + parent: 1 + type: Transform + - uid: 11122 + components: + - pos: 18.5,1.5 + parent: 1 + type: Transform + - uid: 11123 + components: + - pos: 18.5,2.5 + parent: 1 + type: Transform + - 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 + - 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 + - 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 + - uid: 11187 + components: + - pos: 21.5,3.5 + parent: 1 + type: Transform + - uid: 11188 + components: + - pos: 21.5,4.5 + parent: 1 + type: Transform + - uid: 11189 + components: + - pos: 21.5,5.5 + parent: 1 + type: Transform + - uid: 11190 + components: + - pos: 21.5,6.5 + parent: 1 + type: Transform + - uid: 11191 + components: + - pos: 21.5,7.5 + parent: 1 + type: Transform + - uid: 11192 + components: + - pos: 21.5,8.5 + parent: 1 + type: Transform + - uid: 11193 + components: + - pos: 20.5,8.5 + parent: 1 + type: Transform + - uid: 11194 + components: + - pos: 19.5,8.5 + parent: 1 + type: Transform + - uid: 11195 + components: + - pos: 18.5,8.5 + parent: 1 + type: Transform + - uid: 11196 + components: + - pos: 18.5,9.5 + parent: 1 + type: Transform + - uid: 11197 + components: + - pos: 18.5,10.5 + parent: 1 + type: Transform + - uid: 11198 + components: + - pos: 18.5,11.5 + parent: 1 + type: Transform + - uid: 11199 + components: + - pos: 21.5,1.5 + parent: 1 + type: Transform + - 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 + - uid: 11231 + components: + - pos: 26.5,6.5 + parent: 1 + type: Transform + - uid: 11232 + components: + - pos: 26.5,5.5 + parent: 1 + type: Transform + - 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 + - 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 + - uid: 11290 + components: + - pos: 14.5,-1.5 + parent: 1 + type: Transform + - uid: 11291 + components: + - pos: 14.5,-0.5 + parent: 1 + type: Transform + - uid: 11292 + components: + - pos: 14.5,0.5 + parent: 1 + type: Transform + - uid: 11293 + components: + - pos: 14.5,1.5 + parent: 1 + type: Transform + - uid: 11294 + components: + - pos: 14.5,2.5 + parent: 1 + type: Transform + - uid: 11295 + components: + - pos: 14.5,3.5 + parent: 1 + type: Transform + - uid: 11296 + components: + - pos: 14.5,4.5 + parent: 1 + type: Transform + - uid: 11297 + components: + - pos: 14.5,5.5 + parent: 1 + type: Transform + - uid: 11298 + components: + - pos: 14.5,6.5 + parent: 1 + type: Transform + - uid: 11299 + components: + - pos: 15.5,6.5 + parent: 1 + type: Transform + - uid: 11300 + components: + - pos: 16.5,6.5 + parent: 1 + type: Transform + - uid: 11301 + components: + - pos: 17.5,6.5 + parent: 1 + type: Transform + - uid: 11302 + components: + - pos: 18.5,6.5 + parent: 1 + type: Transform + - uid: 11303 + components: + - pos: 14.5,-2.5 + parent: 1 + type: Transform + - uid: 11304 + components: + - pos: 14.5,-3.5 + parent: 1 + type: Transform + - uid: 11305 + components: + - pos: 14.5,-4.5 + parent: 1 + type: Transform + - uid: 11306 + components: + - pos: 15.5,-1.5 + parent: 1 + type: Transform + - 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 + - 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 + - uid: 11433 + components: + - pos: 8.5,73.5 + parent: 1 + type: Transform + - uid: 11434 + components: + - pos: 8.5,72.5 + parent: 1 + type: Transform + - 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 + - uid: 11440 + components: + - pos: 2.5,75.5 + parent: 1 + type: Transform + - uid: 11441 + components: + - pos: 3.5,75.5 + parent: 1 + type: Transform + - uid: 11442 + components: + - pos: 1.5,73.5 + parent: 1 + type: Transform + - uid: 11443 + components: + - pos: 1.5,72.5 + parent: 1 + type: Transform + - uid: 11444 + components: + - pos: 1.5,71.5 + parent: 1 + type: Transform + - uid: 11445 + components: + - pos: 1.5,70.5 + parent: 1 + type: Transform + - uid: 11446 + components: + - pos: 1.5,69.5 + parent: 1 + type: Transform + - uid: 11447 + components: + - pos: 2.5,69.5 + parent: 1 + type: Transform + - uid: 11448 + components: + - pos: 3.5,69.5 + parent: 1 + type: Transform + - uid: 11449 + components: + - pos: 4.5,69.5 + parent: 1 + type: Transform + - uid: 11450 + components: + - pos: 5.5,69.5 + parent: 1 + type: Transform + - uid: 11451 + components: + - pos: 6.5,69.5 + parent: 1 + type: Transform + - uid: 11452 + components: + - pos: 7.5,69.5 + parent: 1 + type: Transform + - uid: 11453 + components: + - pos: 8.5,69.5 + parent: 1 + type: Transform + - uid: 11454 + components: + - pos: 8.5,70.5 + parent: 1 + type: Transform + - uid: 11455 + components: + - pos: 8.5,71.5 + parent: 1 + type: Transform + - 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 + - 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 + - uid: 11528 + components: + - pos: -1.5,84.5 + parent: 1 + type: Transform + - uid: 11529 + components: + - pos: -2.5,84.5 + parent: 1 + type: Transform + - uid: 11530 + components: + - pos: -3.5,84.5 + parent: 1 + type: Transform + - uid: 11531 + components: + - pos: 0.5,84.5 + parent: 1 + type: Transform + - uid: 11532 + components: + - pos: 1.5,84.5 + parent: 1 + type: Transform + - uid: 11533 + components: + - pos: 2.5,84.5 + parent: 1 + type: Transform + - uid: 11534 + components: + - pos: -4.5,74.5 + parent: 1 + type: Transform + - 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 + - uid: 11545 + components: + - pos: -10.5,69.5 + parent: 1 + type: Transform + - uid: 11546 + components: + - pos: -10.5,70.5 + parent: 1 + type: Transform + - 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 + - uid: 11612 + components: + - pos: -30.5,56.5 + parent: 1 + type: Transform + - uid: 11613 + components: + - pos: -31.5,56.5 + parent: 1 + type: Transform + - uid: 11614 + components: + - pos: -32.5,56.5 + parent: 1 + type: Transform + - uid: 11615 + components: + - pos: -33.5,56.5 + parent: 1 + type: Transform + - 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 + - uid: 11619 + components: + - pos: -35.5,54.5 + parent: 1 + type: Transform + - uid: 11620 + components: + - pos: -35.5,53.5 + parent: 1 + type: Transform + - uid: 11621 + components: + - pos: -35.5,52.5 + parent: 1 + type: Transform + - uid: 11622 + components: + - pos: -34.5,52.5 + parent: 1 + type: Transform + - uid: 11623 + components: + - pos: -33.5,52.5 + parent: 1 + type: Transform + - uid: 11624 + components: + - pos: -32.5,52.5 + parent: 1 + type: Transform + - uid: 11625 + components: + - pos: -31.5,52.5 + parent: 1 + type: Transform + - uid: 11626 + components: + - pos: -30.5,52.5 + parent: 1 + type: Transform + - uid: 11627 + components: + - pos: -29.5,52.5 + parent: 1 + type: Transform + - uid: 11628 + components: + - pos: -28.5,52.5 + parent: 1 + type: Transform + - uid: 11629 + components: + - pos: -27.5,52.5 + parent: 1 + type: Transform + - uid: 11630 + components: + - pos: -27.5,53.5 + parent: 1 + type: Transform + - uid: 11631 + components: + - pos: -27.5,54.5 + parent: 1 + type: Transform + - uid: 11632 + components: + - pos: -27.5,55.5 + parent: 1 + type: Transform + - uid: 11633 + components: + - pos: -27.5,56.5 + parent: 1 + type: Transform + - uid: 11634 + components: + - pos: -28.5,56.5 + parent: 1 + type: Transform + - uid: 11635 + components: + - pos: -29.5,56.5 + parent: 1 + type: Transform + - uid: 11636 + components: + - pos: -27.5,57.5 + parent: 1 + type: Transform + - uid: 11637 + components: + - pos: -26.5,57.5 + parent: 1 + type: Transform + - uid: 11638 + components: + - pos: -25.5,57.5 + parent: 1 + type: Transform + - uid: 11639 + components: + - pos: -24.5,57.5 + parent: 1 + type: Transform + - uid: 11640 + components: + - pos: -24.5,56.5 + parent: 1 + type: Transform + - uid: 11641 + components: + - pos: -24.5,55.5 + parent: 1 + type: Transform + - uid: 11642 + components: + - pos: -24.5,54.5 + parent: 1 + type: Transform + - uid: 11643 + components: + - pos: -24.5,53.5 + parent: 1 + type: Transform + - uid: 11644 + components: + - pos: -24.5,52.5 + parent: 1 + type: Transform + - uid: 11645 + components: + - pos: -24.5,51.5 + parent: 1 + type: Transform + - uid: 11646 + components: + - pos: -36.5,52.5 + parent: 1 + type: Transform + - uid: 11647 + components: + - pos: -37.5,52.5 + parent: 1 + type: Transform + - uid: 11648 + components: + - pos: -38.5,52.5 + parent: 1 + type: Transform + - uid: 11649 + components: + - pos: -38.5,53.5 + parent: 1 + type: Transform + - uid: 11650 + components: + - pos: -38.5,54.5 + parent: 1 + type: Transform + - uid: 11651 + components: + - pos: -38.5,55.5 + parent: 1 + type: Transform + - 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 + - uid: 11655 + components: + - pos: -43.5,46.5 + parent: 1 + type: Transform + - uid: 11656 + components: + - pos: -43.5,47.5 + parent: 1 + type: Transform + - uid: 11657 + components: + - pos: -43.5,48.5 + parent: 1 + type: Transform + - uid: 11658 + components: + - pos: -43.5,49.5 + parent: 1 + type: Transform + - uid: 11659 + components: + - pos: -43.5,50.5 + parent: 1 + type: Transform + - uid: 11660 + components: + - pos: -43.5,51.5 + parent: 1 + type: Transform + - uid: 11661 + components: + - pos: -42.5,51.5 + parent: 1 + type: Transform + - uid: 11662 + components: + - pos: -41.5,51.5 + parent: 1 + type: Transform + - uid: 11663 + components: + - pos: -44.5,48.5 + parent: 1 + type: Transform + - uid: 11665 + components: + - pos: -46.5,48.5 + parent: 1 + type: Transform + - uid: 11666 + components: + - pos: -47.5,48.5 + parent: 1 + type: Transform + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - uid: 11759 + components: + - pos: -26.5,43.5 + parent: 1 + type: Transform + - uid: 11760 + components: + - pos: -26.5,44.5 + parent: 1 + type: Transform + - uid: 11761 + components: + - pos: -30.5,41.5 + parent: 1 + type: Transform + - uid: 11762 + components: + - pos: -31.5,41.5 + parent: 1 + type: Transform + - uid: 11763 + components: + - pos: -32.5,41.5 + parent: 1 + type: Transform + - uid: 11764 + components: + - pos: -34.5,41.5 + parent: 1 + type: Transform + - uid: 11765 + components: + - pos: -35.5,41.5 + parent: 1 + type: Transform + - 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 + - uid: 11775 + components: + - pos: -39.5,42.5 + parent: 1 + type: Transform + - 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 + - uid: 11783 + components: + - pos: -39.5,46.5 + parent: 1 + type: Transform + - uid: 11784 + components: + - pos: -20.5,50.5 + parent: 1 + type: Transform + - 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 + - uid: 11816 + components: + - pos: -13.5,39.5 + parent: 1 + type: Transform + - 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 + - uid: 11827 + components: + - pos: -18.5,39.5 + parent: 1 + type: Transform + - uid: 11828 + components: + - pos: -19.5,39.5 + parent: 1 + type: Transform + - uid: 11829 + components: + - pos: -16.5,39.5 + parent: 1 + type: Transform + - uid: 11830 + components: + - pos: -15.5,39.5 + parent: 1 + type: Transform + - 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 + - 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 + - uid: 11893 + components: + - pos: -9.5,61.5 + parent: 1 + type: Transform + - uid: 11894 + components: + - pos: -7.5,60.5 + parent: 1 + type: Transform + - 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 + - uid: 11939 + components: + - pos: -10.5,39.5 + parent: 1 + type: Transform + - 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 + - uid: 11949 + components: + - pos: -7.5,39.5 + parent: 1 + type: Transform + - uid: 11950 + components: + - pos: -3.5,39.5 + parent: 1 + type: Transform + - 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 + - uid: 11959 + components: + - pos: -4.5,47.5 + parent: 1 + type: Transform + - 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 + - uid: 11964 + components: + - pos: -21.5,51.5 + parent: 1 + type: Transform + - uid: 11965 + components: + - pos: -21.5,53.5 + parent: 1 + type: Transform + - uid: 11966 + components: + - pos: -21.5,54.5 + parent: 1 + type: Transform + - uid: 11967 + components: + - pos: -21.5,55.5 + parent: 1 + type: Transform + - uid: 11968 + components: + - pos: -21.5,56.5 + parent: 1 + type: Transform + - uid: 11969 + components: + - pos: -21.5,57.5 + parent: 1 + type: Transform + - uid: 11970 + components: + - pos: -20.5,57.5 + parent: 1 + type: Transform + - uid: 11971 + components: + - pos: -19.5,57.5 + parent: 1 + type: Transform + - uid: 11972 + components: + - pos: -19.5,58.5 + parent: 1 + type: Transform + - uid: 11973 + components: + - pos: -19.5,59.5 + parent: 1 + type: Transform + - uid: 11974 + components: + - pos: -19.5,60.5 + parent: 1 + type: Transform + - uid: 11975 + components: + - pos: -19.5,61.5 + parent: 1 + type: Transform + - uid: 11976 + components: + - pos: -19.5,62.5 + parent: 1 + type: Transform + - uid: 11977 + components: + - pos: -18.5,62.5 + parent: 1 + type: Transform + - uid: 11978 + components: + - pos: -17.5,62.5 + parent: 1 + type: Transform + - uid: 11979 + components: + - pos: -16.5,62.5 + parent: 1 + type: Transform + - uid: 11980 + components: + - pos: -15.5,62.5 + parent: 1 + type: Transform + - uid: 11981 + components: + - pos: -14.5,62.5 + parent: 1 + type: Transform + - uid: 11982 + components: + - pos: -13.5,62.5 + parent: 1 + type: Transform + - uid: 11983 + components: + - pos: -13.5,63.5 + parent: 1 + type: Transform + - uid: 11984 + components: + - pos: -13.5,64.5 + parent: 1 + type: Transform + - uid: 11985 + components: + - pos: -13.5,65.5 + parent: 1 + type: Transform + - uid: 11986 + components: + - pos: -13.5,66.5 + parent: 1 + type: Transform + - uid: 11987 + components: + - pos: -13.5,67.5 + parent: 1 + type: Transform + - uid: 11988 + components: + - pos: -13.5,68.5 + parent: 1 + type: Transform + - uid: 11989 + components: + - pos: -13.5,69.5 + parent: 1 + type: Transform + - uid: 11990 + components: + - pos: -13.5,70.5 + parent: 1 + type: Transform + - uid: 11991 + components: + - pos: -12.5,67.5 + parent: 1 + type: Transform + - uid: 11992 + components: + - pos: -11.5,67.5 + parent: 1 + type: Transform + - uid: 11993 + components: + - pos: -10.5,67.5 + parent: 1 + type: Transform + - uid: 11994 + components: + - pos: -9.5,67.5 + parent: 1 + type: Transform + - uid: 11995 + components: + - pos: -8.5,67.5 + parent: 1 + type: Transform + - uid: 11996 + components: + - pos: -7.5,67.5 + parent: 1 + type: Transform + - uid: 11997 + components: + - pos: -6.5,67.5 + parent: 1 + type: Transform + - uid: 11998 + components: + - pos: -5.5,67.5 + parent: 1 + type: Transform + - uid: 11999 + components: + - pos: -4.5,67.5 + parent: 1 + type: Transform + - uid: 12000 + components: + - pos: -4.5,68.5 + parent: 1 + type: Transform + - uid: 12001 + components: + - pos: -4.5,69.5 + parent: 1 + type: Transform + - uid: 12002 + components: + - pos: -4.5,70.5 + parent: 1 + type: Transform + - uid: 12003 + components: + - pos: -3.5,70.5 + parent: 1 + type: Transform + - 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 + - uid: 12016 + components: + - pos: -21.5,43.5 + parent: 1 + type: Transform + - uid: 12017 + components: + - pos: -21.5,42.5 + parent: 1 + type: Transform + - uid: 12018 + components: + - pos: -21.5,41.5 + parent: 1 + type: Transform + - uid: 12019 + components: + - pos: -21.5,40.5 + parent: 1 + type: Transform + - uid: 12060 + components: + - pos: -12.5,32.5 + parent: 1 + type: Transform + - 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 + - uid: 12067 + components: + - pos: -6.5,33.5 + parent: 1 + type: Transform + - uid: 12068 + components: + - pos: -6.5,32.5 + parent: 1 + type: Transform + - uid: 12069 + components: + - pos: -6.5,31.5 + parent: 1 + type: Transform + - uid: 12070 + components: + - pos: -6.5,30.5 + parent: 1 + type: Transform + - uid: 12071 + components: + - pos: -6.5,29.5 + parent: 1 + type: Transform + - uid: 12072 + components: + - pos: -6.5,28.5 + parent: 1 + type: Transform + - uid: 12073 + components: + - pos: -6.5,27.5 + parent: 1 + type: Transform + - 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 + - uid: 12089 + components: + - pos: -20.5,30.5 + parent: 1 + type: Transform + - uid: 12090 + components: + - pos: -20.5,29.5 + parent: 1 + type: Transform + - 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 + - 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 + - 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 + - uid: 12183 + components: + - pos: -21.5,27.5 + parent: 1 + type: Transform + - uid: 12184 + components: + - pos: -22.5,27.5 + parent: 1 + type: Transform + - uid: 12185 + components: + - pos: -23.5,27.5 + parent: 1 + type: Transform + - uid: 12186 + components: + - pos: -23.5,28.5 + parent: 1 + type: Transform + - uid: 12187 + components: + - pos: -23.5,29.5 + parent: 1 + type: Transform + - uid: 12188 + components: + - pos: -23.5,30.5 + parent: 1 + type: Transform + - uid: 12189 + components: + - pos: -23.5,31.5 + parent: 1 + type: Transform + - uid: 12190 + components: + - pos: -23.5,32.5 + parent: 1 + type: Transform + - uid: 12191 + components: + - pos: -23.5,33.5 + parent: 1 + type: Transform + - uid: 12192 + components: + - pos: -23.5,34.5 + parent: 1 + type: Transform + - uid: 12193 + components: + - pos: -23.5,35.5 + parent: 1 + type: Transform + - uid: 12194 + components: + - pos: -23.5,26.5 + parent: 1 + type: Transform + - uid: 12195 + components: + - pos: -23.5,25.5 + parent: 1 + type: Transform + - uid: 12196 + components: + - pos: -24.5,25.5 + parent: 1 + type: Transform + - uid: 12197 + components: + - pos: -25.5,25.5 + parent: 1 + type: Transform + - uid: 12198 + components: + - pos: -26.5,25.5 + parent: 1 + type: Transform + - uid: 12199 + components: + - pos: -27.5,25.5 + parent: 1 + type: Transform + - uid: 12200 + components: + - pos: -27.5,24.5 + parent: 1 + type: Transform + - uid: 12201 + components: + - pos: -27.5,23.5 + parent: 1 + type: Transform + - uid: 12202 + components: + - pos: -27.5,22.5 + parent: 1 + type: Transform + - uid: 12203 + components: + - pos: -27.5,21.5 + parent: 1 + type: Transform + - uid: 12204 + components: + - pos: -27.5,20.5 + parent: 1 + type: Transform + - uid: 12205 + components: + - pos: -27.5,19.5 + parent: 1 + type: Transform + - uid: 12206 + components: + - pos: -27.5,18.5 + parent: 1 + type: Transform + - uid: 12207 + components: + - pos: -27.5,17.5 + parent: 1 + type: Transform + - uid: 12208 + components: + - pos: -26.5,17.5 + parent: 1 + type: Transform + - uid: 12209 + components: + - pos: -25.5,17.5 + parent: 1 + type: Transform + - uid: 12210 + components: + - pos: -28.5,23.5 + parent: 1 + type: Transform + - uid: 12211 + components: + - pos: -25.5,32.5 + parent: 1 + type: Transform + - 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 + - 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 + - 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 + - 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 + - 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 + - uid: 12370 + components: + - pos: -47.5,16.5 + parent: 1 + type: Transform + - uid: 12371 + components: + - pos: -47.5,17.5 + parent: 1 + type: Transform + - 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 + - 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 + - uid: 12382 + components: + - pos: -35.5,19.5 + parent: 1 + type: Transform + - uid: 12383 + components: + - pos: -35.5,20.5 + parent: 1 + type: Transform + - uid: 12384 + components: + - pos: -35.5,21.5 + parent: 1 + type: Transform + - uid: 12385 + components: + - pos: -34.5,21.5 + parent: 1 + type: Transform + - uid: 12386 + components: + - pos: -34.5,22.5 + parent: 1 + type: Transform + - uid: 12387 + components: + - pos: -34.5,23.5 + parent: 1 + type: Transform + - uid: 12388 + components: + - pos: -34.5,24.5 + parent: 1 + type: Transform + - uid: 12389 + components: + - pos: -34.5,25.5 + parent: 1 + type: Transform + - uid: 12390 + components: + - pos: -34.5,26.5 + parent: 1 + type: Transform + - uid: 12391 + components: + - pos: -34.5,27.5 + parent: 1 + type: Transform + - uid: 12392 + components: + - pos: -34.5,28.5 + parent: 1 + type: Transform + - uid: 12393 + components: + - pos: -34.5,29.5 + parent: 1 + type: Transform + - uid: 12394 + components: + - pos: -34.5,30.5 + parent: 1 + type: Transform + - uid: 12395 + components: + - pos: -34.5,31.5 + parent: 1 + type: Transform + - uid: 12396 + components: + - pos: -34.5,32.5 + parent: 1 + type: Transform + - uid: 12397 + components: + - pos: -34.5,33.5 + parent: 1 + type: Transform + - uid: 12398 + components: + - pos: -35.5,33.5 + parent: 1 + type: Transform + - uid: 12399 + components: + - pos: -36.5,33.5 + parent: 1 + type: Transform + - uid: 12400 + components: + - pos: -37.5,33.5 + parent: 1 + type: Transform + - uid: 12401 + components: + - pos: -38.5,33.5 + parent: 1 + type: Transform + - uid: 12402 + components: + - pos: -38.5,34.5 + parent: 1 + type: Transform + - uid: 12543 + components: + - pos: 41.5,41.5 + parent: 1 + type: Transform + - 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 + - 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 + - uid: 12582 + components: + - pos: 35.5,40.5 + parent: 1 + type: Transform + - uid: 12583 + components: + - pos: 36.5,40.5 + parent: 1 + type: Transform + - uid: 12584 + components: + - pos: 37.5,40.5 + parent: 1 + type: Transform + - uid: 12585 + components: + - pos: 38.5,40.5 + parent: 1 + type: Transform + - uid: 12586 + components: + - pos: 39.5,40.5 + parent: 1 + type: Transform + - uid: 12587 + components: + - pos: 39.5,41.5 + parent: 1 + type: Transform + - uid: 12588 + components: + - pos: 39.5,42.5 + parent: 1 + type: Transform + - uid: 12589 + components: + - pos: 39.5,43.5 + parent: 1 + type: Transform + - uid: 12590 + components: + - pos: 39.5,44.5 + parent: 1 + type: Transform + - uid: 12591 + components: + - pos: 40.5,43.5 + parent: 1 + type: Transform + - uid: 12592 + components: + - pos: 38.5,44.5 + parent: 1 + type: Transform + - uid: 12593 + components: + - pos: 38.5,45.5 + parent: 1 + type: Transform + - uid: 12594 + components: + - pos: 38.5,46.5 + parent: 1 + type: Transform + - uid: 12595 + components: + - pos: 38.5,47.5 + parent: 1 + type: Transform + - uid: 12596 + components: + - pos: 38.5,48.5 + parent: 1 + type: Transform + - 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 + - uid: 12618 + components: + - pos: 50.5,36.5 + parent: 1 + type: Transform + - uid: 12619 + components: + - pos: 51.5,36.5 + parent: 1 + type: Transform + - uid: 12620 + components: + - pos: 51.5,38.5 + parent: 1 + type: Transform + - 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 + - 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 + - uid: 12654 + components: + - pos: 32.5,51.5 + parent: 1 + type: Transform + - uid: 12655 + components: + - pos: 32.5,52.5 + parent: 1 + type: Transform + - 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 + - uid: 12665 + components: + - pos: 34.5,51.5 + parent: 1 + type: Transform + - uid: 12666 + components: + - pos: 35.5,51.5 + parent: 1 + type: Transform + - uid: 12667 + components: + - pos: 36.5,51.5 + parent: 1 + type: Transform + - uid: 12668 + components: + - pos: 36.5,52.5 + parent: 1 + type: Transform + - uid: 12669 + components: + - pos: 36.5,53.5 + parent: 1 + type: Transform + - uid: 12670 + components: + - pos: 36.5,54.5 + parent: 1 + type: Transform + - uid: 12671 + components: + - pos: 36.5,50.5 + parent: 1 + type: Transform + - uid: 12672 + components: + - pos: 36.5,49.5 + parent: 1 + type: Transform + - uid: 12673 + components: + - pos: 36.5,48.5 + parent: 1 + type: Transform + - uid: 12674 + components: + - pos: 36.5,47.5 + parent: 1 + type: Transform + - uid: 12675 + components: + - pos: 36.5,46.5 + parent: 1 + type: Transform + - uid: 12676 + components: + - pos: 36.5,45.5 + parent: 1 + type: Transform + - uid: 12677 + components: + - pos: 36.5,44.5 + parent: 1 + type: Transform + - uid: 12678 + components: + - pos: 36.5,43.5 + parent: 1 + type: Transform + - 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 + - uid: 12700 + components: + - pos: 22.5,52.5 + parent: 1 + type: Transform + - uid: 12701 + components: + - pos: 22.5,53.5 + parent: 1 + type: Transform + - uid: 12702 + components: + - pos: 22.5,54.5 + parent: 1 + type: Transform + - uid: 12703 + components: + - pos: 22.5,55.5 + parent: 1 + type: Transform + - uid: 12704 + components: + - pos: 22.5,56.5 + parent: 1 + type: Transform + - uid: 12705 + components: + - pos: 22.5,57.5 + parent: 1 + type: Transform + - uid: 12706 + components: + - pos: 23.5,57.5 + parent: 1 + type: Transform + - uid: 12707 + components: + - pos: 24.5,57.5 + parent: 1 + type: Transform + - uid: 12708 + components: + - pos: 25.5,57.5 + parent: 1 + type: Transform + - uid: 12709 + components: + - pos: 26.5,57.5 + parent: 1 + type: Transform + - uid: 12710 + components: + - pos: 27.5,57.5 + parent: 1 + type: Transform + - uid: 12711 + components: + - pos: 28.5,57.5 + parent: 1 + type: Transform + - uid: 12712 + components: + - pos: 28.5,56.5 + parent: 1 + type: Transform + - uid: 12713 + components: + - pos: 28.5,55.5 + parent: 1 + type: Transform + - uid: 12714 + components: + - pos: 28.5,54.5 + parent: 1 + type: Transform + - uid: 12715 + components: + - pos: 28.5,53.5 + parent: 1 + type: Transform + - uid: 12716 + components: + - pos: 28.5,52.5 + parent: 1 + type: Transform + - uid: 12717 + components: + - pos: 29.5,52.5 + parent: 1 + type: Transform + - uid: 12718 + components: + - pos: 29.5,51.5 + parent: 1 + type: Transform + - uid: 12719 + components: + - pos: 30.5,51.5 + parent: 1 + type: Transform + - uid: 12720 + components: + - pos: 24.5,42.5 + parent: 1 + type: Transform + - 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 + - uid: 12729 + components: + - pos: 25.5,43.5 + parent: 1 + type: Transform + - uid: 12730 + components: + - pos: 25.5,44.5 + parent: 1 + type: Transform + - uid: 12731 + components: + - pos: 25.5,45.5 + parent: 1 + type: Transform + - uid: 12732 + components: + - pos: 24.5,45.5 + parent: 1 + type: Transform + - uid: 12733 + components: + - pos: 23.5,45.5 + parent: 1 + type: Transform + - uid: 12734 + components: + - pos: 22.5,45.5 + parent: 1 + type: Transform + - uid: 12735 + components: + - pos: 22.5,46.5 + parent: 1 + type: Transform + - uid: 12736 + components: + - pos: 22.5,47.5 + parent: 1 + type: Transform + - uid: 12737 + components: + - pos: 22.5,48.5 + parent: 1 + type: Transform + - uid: 12738 + components: + - pos: 22.5,49.5 + parent: 1 + type: Transform + - uid: 12739 + components: + - pos: 21.5,49.5 + parent: 1 + type: Transform + - uid: 12740 + components: + - pos: 20.5,49.5 + parent: 1 + type: Transform + - uid: 12741 + components: + - pos: 19.5,49.5 + parent: 1 + type: Transform + - uid: 12742 + components: + - pos: 18.5,49.5 + parent: 1 + type: Transform + - uid: 12743 + components: + - pos: 17.5,49.5 + parent: 1 + type: Transform + - uid: 12744 + components: + - pos: 16.5,49.5 + parent: 1 + type: Transform + - uid: 12745 + components: + - pos: 16.5,50.5 + parent: 1 + type: Transform + - uid: 12746 + components: + - pos: 16.5,51.5 + parent: 1 + type: Transform + - uid: 12747 + components: + - pos: 16.5,52.5 + parent: 1 + type: Transform + - uid: 12748 + components: + - pos: 17.5,52.5 + parent: 1 + type: Transform + - uid: 12749 + components: + - pos: 18.5,52.5 + parent: 1 + type: Transform + - uid: 12750 + components: + - pos: 19.5,52.5 + parent: 1 + type: Transform + - uid: 12751 + components: + - pos: 20.5,52.5 + parent: 1 + type: Transform + - uid: 12752 + components: + - pos: 20.5,53.5 + parent: 1 + type: Transform + - uid: 12753 + components: + - pos: 15.5,50.5 + parent: 1 + type: Transform + - uid: 12754 + components: + - pos: 15.5,49.5 + parent: 1 + type: Transform + - 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 + - uid: 12769 + components: + - pos: 21.5,45.5 + parent: 1 + type: Transform + - 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 + - uid: 12779 + components: + - pos: 13.5,50.5 + parent: 1 + type: Transform + - uid: 12780 + components: + - pos: 12.5,50.5 + parent: 1 + type: Transform + - uid: 12781 + components: + - pos: 11.5,50.5 + parent: 1 + type: Transform + - uid: 12782 + components: + - pos: 10.5,50.5 + parent: 1 + type: Transform + - uid: 12783 + components: + - pos: 9.5,50.5 + parent: 1 + type: Transform + - uid: 12784 + components: + - pos: 9.5,49.5 + parent: 1 + type: Transform + - uid: 12785 + components: + - pos: 9.5,48.5 + parent: 1 + type: Transform + - uid: 12786 + components: + - pos: 9.5,47.5 + parent: 1 + type: Transform + - uid: 12787 + components: + - pos: 9.5,46.5 + parent: 1 + type: Transform + - uid: 12788 + components: + - pos: 9.5,45.5 + parent: 1 + type: Transform + - uid: 12789 + components: + - pos: 9.5,44.5 + parent: 1 + type: Transform + - uid: 12790 + components: + - pos: 9.5,43.5 + parent: 1 + type: Transform + - uid: 12791 + components: + - pos: 9.5,42.5 + parent: 1 + type: Transform + - uid: 12792 + components: + - pos: 9.5,41.5 + parent: 1 + type: Transform + - uid: 12793 + components: + - pos: 8.5,41.5 + parent: 1 + type: Transform + - uid: 12794 + components: + - pos: 7.5,41.5 + parent: 1 + type: Transform + - uid: 12795 + components: + - pos: 6.5,41.5 + parent: 1 + type: Transform + - uid: 12796 + components: + - pos: 5.5,41.5 + parent: 1 + type: Transform + - uid: 12797 + components: + - pos: 4.5,41.5 + parent: 1 + type: Transform + - uid: 12798 + components: + - pos: 3.5,41.5 + parent: 1 + type: Transform + - uid: 12799 + components: + - pos: 2.5,41.5 + parent: 1 + type: Transform + - uid: 12800 + components: + - pos: 6.5,46.5 + parent: 1 + type: Transform + - 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 + - uid: 12826 + components: + - pos: 36.5,55.5 + parent: 1 + type: Transform + - uid: 12827 + components: + - pos: 37.5,54.5 + parent: 1 + type: Transform + - uid: 12828 + components: + - pos: 37.5,55.5 + parent: 1 + type: Transform + - uid: 12829 + components: + - pos: 37.5,56.5 + parent: 1 + type: Transform + - uid: 12830 + components: + - pos: 37.5,57.5 + parent: 1 + type: Transform + - uid: 12831 + components: + - pos: 37.5,58.5 + parent: 1 + type: Transform + - uid: 12832 + components: + - pos: 37.5,59.5 + parent: 1 + type: Transform + - uid: 12833 + components: + - pos: 37.5,60.5 + parent: 1 + type: Transform + - 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 + - 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 + - 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 + - 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 + - uid: 13036 + components: + - pos: 19.5,18.5 + parent: 1 + type: Transform + - uid: 13037 + components: + - pos: 19.5,19.5 + parent: 1 + type: Transform + - uid: 13038 + components: + - pos: 18.5,19.5 + parent: 1 + type: Transform + - uid: 13039 + components: + - pos: 20.5,30.5 + parent: 1 + type: Transform + - 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 + - uid: 13061 + components: + - pos: 24.5,28.5 + parent: 1 + type: Transform + - uid: 13062 + components: + - pos: 24.5,29.5 + parent: 1 + type: Transform + - 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 + - uid: 13075 + components: + - pos: 24.5,24.5 + parent: 1 + type: Transform + - uid: 13076 + components: + - pos: 24.5,25.5 + parent: 1 + type: Transform + - uid: 13077 + components: + - pos: 25.5,25.5 + parent: 1 + type: Transform + - 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 + - uid: 13228 + components: + - pos: 14.5,22.5 + parent: 1 + type: Transform + - uid: 13229 + components: + - pos: 14.5,23.5 + parent: 1 + type: Transform + - uid: 13230 + components: + - pos: 14.5,24.5 + parent: 1 + type: Transform + - uid: 13231 + components: + - pos: 15.5,24.5 + parent: 1 + type: Transform + - uid: 13232 + components: + - pos: 16.5,24.5 + parent: 1 + type: Transform + - uid: 13234 + components: + - pos: 16.5,22.5 + parent: 1 + type: Transform + - uid: 13235 + components: + - pos: 17.5,22.5 + parent: 1 + type: Transform + - 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 + - uid: 13241 + components: + - pos: 22.5,24.5 + parent: 1 + type: Transform + - uid: 13242 + components: + - pos: 21.5,24.5 + parent: 1 + type: Transform + - uid: 13243 + components: + - pos: 20.5,24.5 + parent: 1 + type: Transform + - uid: 13244 + components: + - pos: 19.5,24.5 + parent: 1 + type: Transform + - 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 + - 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 + - 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 + - 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 + - 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 + - uid: 13535 + components: + - pos: -21.5,-2.5 + parent: 1 + type: Transform + - uid: 13536 + components: + - pos: -22.5,-2.5 + parent: 1 + type: Transform + - uid: 13537 + components: + - pos: -23.5,-2.5 + parent: 1 + type: Transform + - uid: 13538 + components: + - pos: -24.5,-2.5 + parent: 1 + type: Transform + - uid: 13539 + components: + - pos: -25.5,-2.5 + parent: 1 + type: Transform + - uid: 13540 + components: + - pos: -20.5,-2.5 + parent: 1 + type: Transform + - uid: 13541 + components: + - pos: -19.5,-2.5 + parent: 1 + type: Transform + - uid: 13542 + components: + - pos: -19.5,-3.5 + parent: 1 + type: Transform + - uid: 13543 + components: + - pos: -19.5,-4.5 + parent: 1 + type: Transform + - uid: 13544 + components: + - pos: -19.5,-5.5 + parent: 1 + type: Transform + - uid: 13545 + components: + - pos: -20.5,-5.5 + parent: 1 + type: Transform + - uid: 13546 + components: + - pos: -21.5,-5.5 + parent: 1 + type: Transform + - uid: 13547 + components: + - pos: -22.5,-5.5 + parent: 1 + type: Transform + - uid: 13548 + components: + - pos: -23.5,-5.5 + parent: 1 + type: Transform + - uid: 13549 + components: + - pos: -24.5,-5.5 + parent: 1 + type: Transform + - uid: 13550 + components: + - pos: -25.5,-5.5 + parent: 1 + type: Transform + - uid: 13551 + components: + - pos: -26.5,-5.5 + parent: 1 + type: Transform + - uid: 13552 + components: + - pos: -27.5,-5.5 + parent: 1 + type: Transform + - uid: 13553 + components: + - pos: -27.5,-4.5 + parent: 1 + type: Transform + - uid: 13554 + components: + - pos: -27.5,-3.5 + parent: 1 + type: Transform + - uid: 13555 + components: + - pos: -27.5,-2.5 + parent: 1 + type: Transform + - uid: 13556 + components: + - pos: -27.5,-1.5 + parent: 1 + type: Transform + - uid: 13557 + components: + - pos: -27.5,-0.5 + parent: 1 + type: Transform + - uid: 13558 + components: + - pos: -27.5,0.5 + parent: 1 + type: Transform + - uid: 13559 + components: + - pos: -27.5,1.5 + parent: 1 + type: Transform + - uid: 13560 + components: + - pos: -28.5,1.5 + parent: 1 + type: Transform + - 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 + - uid: 13607 + components: + - pos: -19.5,-0.5 + parent: 1 + type: Transform + - uid: 13608 + components: + - pos: -19.5,0.5 + parent: 1 + type: Transform + - uid: 13609 + components: + - pos: -19.5,1.5 + parent: 1 + type: Transform + - uid: 13610 + components: + - pos: -19.5,2.5 + parent: 1 + type: Transform + - uid: 13611 + components: + - pos: -19.5,3.5 + parent: 1 + type: Transform + - uid: 13612 + components: + - pos: -19.5,4.5 + parent: 1 + type: Transform + - uid: 13613 + components: + - pos: -19.5,5.5 + parent: 1 + type: Transform + - uid: 13614 + components: + - pos: -19.5,6.5 + parent: 1 + type: Transform + - uid: 13615 + components: + - pos: -19.5,7.5 + parent: 1 + type: Transform + - uid: 13616 + components: + - pos: -18.5,7.5 + parent: 1 + type: Transform + - uid: 13617 + components: + - pos: -17.5,7.5 + parent: 1 + type: Transform + - uid: 13618 + components: + - pos: -16.5,7.5 + parent: 1 + type: Transform + - uid: 13619 + components: + - pos: -15.5,7.5 + parent: 1 + type: Transform + - uid: 13620 + components: + - pos: -15.5,8.5 + parent: 1 + type: Transform + - uid: 13621 + components: + - pos: -15.5,9.5 + parent: 1 + type: Transform + - uid: 13622 + components: + - pos: -15.5,10.5 + parent: 1 + type: Transform + - uid: 13623 + components: + - pos: -15.5,11.5 + parent: 1 + type: Transform + - uid: 13624 + components: + - pos: -21.5,8.5 + parent: 1 + type: Transform + - 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 + - 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 + - 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 + - uid: 13715 + components: + - pos: -13.5,11.5 + parent: 1 + type: Transform + - uid: 13716 + components: + - pos: -13.5,10.5 + parent: 1 + type: Transform + - 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 + - uid: 13888 + components: + - pos: 10.5,63.5 + parent: 1 + type: Transform + - uid: 13889 + components: + - pos: 9.5,63.5 + parent: 1 + type: Transform + - uid: 13890 + components: + - pos: 8.5,63.5 + parent: 1 + type: Transform + - uid: 13891 + components: + - pos: 7.5,63.5 + parent: 1 + type: Transform + - uid: 13892 + components: + - pos: 7.5,64.5 + parent: 1 + type: Transform + - 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 + - uid: 13955 + components: + - pos: 17.5,58.5 + parent: 1 + type: Transform + - uid: 13956 + components: + - pos: 18.5,58.5 + parent: 1 + type: Transform + - uid: 13957 + components: + - pos: 18.5,59.5 + parent: 1 + type: Transform + - uid: 13958 + components: + - pos: 18.5,60.5 + parent: 1 + type: Transform + - uid: 13959 + components: + - pos: 18.5,61.5 + parent: 1 + type: Transform + - uid: 13960 + components: + - pos: 18.5,62.5 + parent: 1 + type: Transform + - uid: 13961 + components: + - pos: 18.5,63.5 + parent: 1 + type: Transform + - uid: 13962 + components: + - pos: 17.5,63.5 + parent: 1 + type: Transform + - uid: 13963 + components: + - pos: 16.5,63.5 + parent: 1 + type: Transform + - uid: 13964 + components: + - pos: 15.5,63.5 + parent: 1 + type: Transform + - uid: 13965 + components: + - pos: 14.5,63.5 + parent: 1 + type: Transform + - uid: 13966 + components: + - pos: 13.5,63.5 + parent: 1 + type: Transform + - uid: 13967 + components: + - pos: 12.5,63.5 + parent: 1 + type: Transform + - uid: 13968 + components: + - pos: 11.5,63.5 + parent: 1 + type: Transform + - 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 + - uid: 13987 + components: + - pos: 19.5,57.5 + parent: 1 + type: Transform + - uid: 13988 + components: + - pos: 19.5,56.5 + parent: 1 + type: Transform + - uid: 13989 + components: + - pos: 18.5,56.5 + parent: 1 + type: Transform + - uid: 13990 + components: + - pos: 17.5,56.5 + parent: 1 + type: Transform + - uid: 13991 + components: + - pos: 16.5,56.5 + parent: 1 + type: Transform + - uid: 13992 + components: + - pos: 16.5,55.5 + parent: 1 + type: Transform + - uid: 13993 + components: + - pos: 16.5,54.5 + parent: 1 + type: Transform + - uid: 14446 + components: + - pos: 32.5,6.5 + parent: 1 + type: Transform + - uid: 15386 + components: + - pos: -35.5,8.5 + parent: 1 + type: Transform + - 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 + - uid: 16385 + components: + - pos: -12.5,-43.5 + parent: 1 + type: Transform + - uid: 16386 + components: + - pos: -11.5,-43.5 + parent: 1 + type: Transform + - uid: 16387 + components: + - pos: -10.5,-43.5 + parent: 1 + type: Transform + - uid: 16388 + components: + - pos: 11.5,-43.5 + parent: 1 + type: Transform + - uid: 16389 + components: + - pos: 10.5,-43.5 + parent: 1 + type: Transform + - uid: 16390 + components: + - pos: 9.5,-43.5 + parent: 1 + type: Transform + - 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 + - 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 + - uid: 18134 + components: + - pos: -23.5,57.5 + parent: 1 + type: Transform + - uid: 18135 + components: + - pos: -22.5,57.5 + parent: 1 + type: Transform + - 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 + - uid: 18200 + components: + - pos: 36.5,3.5 + parent: 1 + type: Transform + - uid: 18201 + components: + - pos: 34.5,1.5 + parent: 1 + type: Transform + - uid: 18202 + components: + - pos: 35.5,1.5 + parent: 1 + type: Transform + - uid: 18203 + components: + - pos: 36.5,1.5 + parent: 1 + type: Transform + - 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 + - uid: 18319 + components: + - pos: -19.5,64.5 + parent: 1 + type: Transform + - uid: 18467 + components: + - pos: 16.5,-10.5 + parent: 1 + type: Transform + - 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: 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 + - uid: 177 + components: + - pos: -43.5,72.5 + parent: 1 + type: Transform + - uid: 179 + components: + - pos: -45.5,72.5 + parent: 1 + type: Transform + - 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 + - uid: 3249 + components: + - pos: -35.5,74.5 + parent: 1 + type: Transform + - uid: 3460 + components: + - pos: 13.5,-40.5 + parent: 1 + type: Transform + - uid: 3566 + components: + - pos: 38.5,-11.5 + parent: 1 + type: Transform + - uid: 3805 + components: + - pos: 15.5,-12.5 + parent: 1 + type: Transform + - uid: 3833 + components: + - pos: 5.5,-28.5 + parent: 1 + type: Transform + - uid: 3834 + components: + - pos: 7.5,-28.5 + parent: 1 + type: Transform + - uid: 4595 + components: + - pos: -6.5,-70.5 + parent: 1 + type: Transform + - uid: 4596 + components: + - pos: -6.5,-69.5 + parent: 1 + type: Transform + - uid: 4597 + components: + - pos: -6.5,-68.5 + parent: 1 + type: Transform + - uid: 4598 + components: + - pos: -6.5,-67.5 + parent: 1 + type: Transform + - uid: 4599 + components: + - pos: -6.5,-66.5 + parent: 1 + type: Transform + - uid: 4600 + components: + - pos: -6.5,-65.5 + parent: 1 + type: Transform + - uid: 4601 + components: + - pos: -6.5,-64.5 + parent: 1 + type: Transform + - uid: 4602 + components: + - pos: -8.5,-70.5 + parent: 1 + type: Transform + - uid: 4603 + components: + - pos: -8.5,-69.5 + parent: 1 + type: Transform + - uid: 4604 + components: + - pos: -8.5,-68.5 + parent: 1 + type: Transform + - uid: 4605 + components: + - pos: -8.5,-67.5 + parent: 1 + type: Transform + - uid: 4606 + components: + - pos: -8.5,-66.5 + parent: 1 + type: Transform + - uid: 4607 + components: + - pos: -8.5,-65.5 + parent: 1 + type: Transform + - uid: 4608 + components: + - pos: -8.5,-64.5 + parent: 1 + type: Transform + - uid: 4609 + components: + - pos: -7.5,-64.5 + parent: 1 + type: Transform + - uid: 4610 + components: + - pos: -7.5,-63.5 + parent: 1 + type: Transform + - uid: 4611 + components: + - pos: -7.5,-62.5 + parent: 1 + type: Transform + - uid: 4612 + components: + - pos: -7.5,-61.5 + parent: 1 + type: Transform + - uid: 4613 + components: + - pos: -7.5,-60.5 + parent: 1 + type: Transform + - uid: 4614 + components: + - pos: -7.5,-59.5 + parent: 1 + type: Transform + - uid: 4615 + components: + - pos: -7.5,-58.5 + parent: 1 + type: Transform + - uid: 4616 + components: + - pos: -7.5,-57.5 + parent: 1 + type: Transform + - uid: 4617 + components: + - pos: -7.5,-56.5 + parent: 1 + type: Transform + - uid: 4618 + components: + - pos: -7.5,-55.5 + parent: 1 + type: Transform + - uid: 4619 + components: + - pos: -7.5,-54.5 + parent: 1 + type: Transform + - uid: 4620 + components: + - pos: -8.5,-54.5 + parent: 1 + type: Transform + - uid: 4621 + components: + - pos: -9.5,-54.5 + parent: 1 + type: Transform + - uid: 4622 + components: + - pos: -9.5,-53.5 + parent: 1 + type: Transform + - uid: 4623 + components: + - pos: -9.5,-52.5 + parent: 1 + type: Transform + - uid: 4624 + components: + - pos: -9.5,-51.5 + parent: 1 + type: Transform + - uid: 4625 + components: + - pos: -9.5,-50.5 + parent: 1 + type: Transform + - uid: 4626 + components: + - pos: -9.5,-49.5 + parent: 1 + type: Transform + - uid: 4627 + components: + - pos: -9.5,-48.5 + parent: 1 + type: Transform + - uid: 4628 + components: + - pos: -9.5,-47.5 + parent: 1 + type: Transform + - uid: 4629 + components: + - pos: -10.5,-47.5 + parent: 1 + type: Transform + - uid: 4630 + components: + - pos: -11.5,-47.5 + parent: 1 + type: Transform + - uid: 4631 + components: + - pos: -12.5,-47.5 + parent: 1 + type: Transform + - uid: 4632 + components: + - pos: -13.5,-47.5 + parent: 1 + type: Transform + - uid: 4633 + components: + - pos: -14.5,-47.5 + parent: 1 + type: Transform + - uid: 4634 + components: + - pos: -15.5,-47.5 + parent: 1 + type: Transform + - uid: 4635 + components: + - pos: -15.5,-46.5 + parent: 1 + type: Transform + - uid: 4636 + components: + - pos: -15.5,-45.5 + parent: 1 + type: Transform + - uid: 4637 + components: + - pos: -15.5,-44.5 + parent: 1 + type: Transform + - uid: 4638 + components: + - pos: -15.5,-43.5 + parent: 1 + type: Transform + - uid: 4639 + components: + - pos: -10.5,-51.5 + parent: 1 + type: Transform + - uid: 4640 + components: + - pos: -11.5,-51.5 + parent: 1 + type: Transform + - uid: 4641 + components: + - pos: -11.5,-50.5 + parent: 1 + type: Transform + - uid: 4642 + components: + - pos: -12.5,-50.5 + parent: 1 + type: Transform + - uid: 4643 + components: + - pos: -12.5,-49.5 + parent: 1 + type: Transform + - uid: 4644 + components: + - pos: -10.5,-53.5 + parent: 1 + type: Transform + - uid: 4645 + components: + - pos: -10.5,-54.5 + parent: 1 + type: Transform + - uid: 4646 + components: + - pos: -10.5,-55.5 + parent: 1 + type: Transform + - uid: 4647 + components: + - pos: -10.5,-56.5 + parent: 1 + type: Transform + - uid: 4648 + components: + - pos: -9.5,-56.5 + parent: 1 + type: Transform + - uid: 4649 + components: + - pos: -9.5,-57.5 + parent: 1 + type: Transform + - uid: 4650 + components: + - pos: -9.5,-58.5 + parent: 1 + type: Transform + - uid: 4651 + components: + - pos: -9.5,-59.5 + parent: 1 + type: Transform + - uid: 4652 + components: + - pos: -8.5,-59.5 + parent: 1 + type: Transform + - uid: 4653 + components: + - pos: -8.5,-60.5 + parent: 1 + type: Transform + - uid: 4654 + components: + - pos: -8.5,-61.5 + parent: 1 + type: Transform + - uid: 4655 + components: + - pos: -8.5,-62.5 + parent: 1 + type: Transform + - uid: 4656 + components: + - pos: -6.5,-62.5 + parent: 1 + type: Transform + - uid: 4657 + components: + - pos: -5.5,-62.5 + parent: 1 + type: Transform + - uid: 4658 + components: + - pos: -5.5,-61.5 + parent: 1 + type: Transform + - uid: 4659 + components: + - pos: -5.5,-60.5 + parent: 1 + type: Transform + - uid: 4660 + components: + - pos: -5.5,-59.5 + parent: 1 + type: Transform + - uid: 4661 + components: + - pos: -4.5,-59.5 + parent: 1 + type: Transform + - uid: 4662 + components: + - pos: -4.5,-58.5 + parent: 1 + type: Transform + - uid: 4663 + components: + - pos: -4.5,-57.5 + parent: 1 + type: Transform + - uid: 4664 + components: + - pos: -4.5,-56.5 + parent: 1 + type: Transform + - uid: 4665 + components: + - pos: -4.5,-55.5 + parent: 1 + type: Transform + - uid: 4666 + components: + - pos: -4.5,-54.5 + parent: 1 + type: Transform + - uid: 4667 + components: + - pos: -4.5,-53.5 + parent: 1 + type: Transform + - uid: 4668 + components: + - pos: 3.5,-53.5 + parent: 1 + type: Transform + - uid: 4669 + components: + - pos: 3.5,-54.5 + parent: 1 + type: Transform + - uid: 4670 + components: + - pos: 3.5,-55.5 + parent: 1 + type: Transform + - uid: 4671 + components: + - pos: 3.5,-56.5 + parent: 1 + type: Transform + - uid: 4672 + components: + - pos: 3.5,-57.5 + parent: 1 + type: Transform + - uid: 4673 + components: + - pos: 3.5,-58.5 + parent: 1 + type: Transform + - uid: 4674 + components: + - pos: 3.5,-59.5 + parent: 1 + type: Transform + - uid: 4675 + components: + - pos: 4.5,-59.5 + parent: 1 + type: Transform + - uid: 4676 + components: + - pos: 4.5,-60.5 + parent: 1 + type: Transform + - uid: 4677 + components: + - pos: 4.5,-61.5 + parent: 1 + type: Transform + - uid: 4678 + components: + - pos: 4.5,-62.5 + parent: 1 + type: Transform + - uid: 4679 + components: + - pos: 5.5,-62.5 + parent: 1 + type: Transform + - uid: 4680 + components: + - pos: 6.5,-64.5 + parent: 1 + type: Transform + - uid: 4681 + components: + - pos: 6.5,-63.5 + parent: 1 + type: Transform + - uid: 4682 + components: + - pos: 6.5,-62.5 + parent: 1 + type: Transform + - uid: 4683 + components: + - pos: 6.5,-61.5 + parent: 1 + type: Transform + - uid: 4684 + components: + - pos: 6.5,-60.5 + parent: 1 + type: Transform + - uid: 4685 + components: + - pos: 6.5,-59.5 + parent: 1 + type: Transform + - uid: 4686 + components: + - pos: 6.5,-58.5 + parent: 1 + type: Transform + - uid: 4687 + components: + - pos: 6.5,-57.5 + parent: 1 + type: Transform + - uid: 4688 + components: + - pos: 6.5,-56.5 + parent: 1 + type: Transform + - uid: 4689 + components: + - pos: 6.5,-55.5 + parent: 1 + type: Transform + - uid: 4690 + components: + - pos: 6.5,-54.5 + parent: 1 + type: Transform + - uid: 4691 + components: + - pos: -8.5,-47.5 + parent: 1 + type: Transform + - uid: 4692 + components: + - pos: -7.5,-47.5 + parent: 1 + type: Transform + - uid: 4693 + components: + - pos: -6.5,-47.5 + parent: 1 + type: Transform + - uid: 4694 + components: + - pos: -5.5,-47.5 + parent: 1 + type: Transform + - uid: 4695 + components: + - pos: -4.5,-47.5 + parent: 1 + type: Transform + - uid: 4696 + components: + - pos: -3.5,-47.5 + parent: 1 + type: Transform + - uid: 4697 + components: + - pos: -3.5,-48.5 + parent: 1 + type: Transform + - uid: 4698 + components: + - pos: -3.5,-49.5 + parent: 1 + type: Transform + - uid: 4704 + components: + - pos: 2.5,-49.5 + parent: 1 + type: Transform + - uid: 4705 + components: + - pos: 2.5,-48.5 + parent: 1 + type: Transform + - uid: 4706 + components: + - pos: 2.5,-47.5 + parent: 1 + type: Transform + - uid: 4707 + components: + - pos: 3.5,-47.5 + parent: 1 + type: Transform + - uid: 4708 + components: + - pos: 4.5,-47.5 + parent: 1 + type: Transform + - uid: 4709 + components: + - pos: 5.5,-47.5 + parent: 1 + type: Transform + - uid: 4710 + components: + - pos: 6.5,-47.5 + parent: 1 + type: Transform + - uid: 4711 + components: + - pos: 7.5,-47.5 + parent: 1 + type: Transform + - uid: 4712 + components: + - pos: 8.5,-47.5 + parent: 1 + type: Transform + - uid: 4713 + components: + - pos: 8.5,-48.5 + parent: 1 + type: Transform + - uid: 4714 + components: + - pos: 8.5,-49.5 + parent: 1 + type: Transform + - uid: 4715 + components: + - pos: 8.5,-50.5 + parent: 1 + type: Transform + - uid: 4716 + components: + - pos: 8.5,-51.5 + parent: 1 + type: Transform + - uid: 4717 + components: + - pos: 8.5,-52.5 + parent: 1 + type: Transform + - uid: 4718 + components: + - pos: 8.5,-53.5 + parent: 1 + type: Transform + - uid: 4719 + components: + - pos: 8.5,-54.5 + parent: 1 + type: Transform + - uid: 4720 + components: + - pos: 7.5,-54.5 + parent: 1 + type: Transform + - uid: 4721 + components: + - pos: 9.5,-53.5 + parent: 1 + type: Transform + - uid: 4722 + components: + - pos: 9.5,-54.5 + parent: 1 + type: Transform + - uid: 4723 + components: + - pos: 9.5,-55.5 + parent: 1 + type: Transform + - uid: 4724 + components: + - pos: 9.5,-56.5 + parent: 1 + type: Transform + - uid: 4725 + components: + - pos: 8.5,-56.5 + parent: 1 + type: Transform + - uid: 4726 + components: + - pos: 8.5,-57.5 + parent: 1 + type: Transform + - uid: 4727 + components: + - pos: 8.5,-58.5 + parent: 1 + type: Transform + - uid: 4728 + components: + - pos: 8.5,-59.5 + parent: 1 + type: Transform + - uid: 4729 + components: + - pos: 7.5,-59.5 + parent: 1 + type: Transform + - uid: 4730 + components: + - pos: 7.5,-60.5 + parent: 1 + type: Transform + - uid: 4731 + components: + - pos: 7.5,-61.5 + parent: 1 + type: Transform + - uid: 4732 + components: + - pos: 7.5,-62.5 + parent: 1 + type: Transform + - uid: 4733 + components: + - pos: 9.5,-51.5 + parent: 1 + type: Transform + - uid: 4734 + components: + - pos: 10.5,-51.5 + parent: 1 + type: Transform + - uid: 4735 + components: + - pos: 10.5,-50.5 + parent: 1 + type: Transform + - uid: 4736 + components: + - pos: 11.5,-50.5 + parent: 1 + type: Transform + - uid: 4737 + components: + - pos: 11.5,-49.5 + parent: 1 + type: Transform + - uid: 4738 + components: + - pos: 13.5,-47.5 + parent: 1 + type: Transform + - uid: 4739 + components: + - pos: 14.5,-47.5 + parent: 1 + type: Transform + - uid: 4740 + components: + - pos: 14.5,-46.5 + parent: 1 + type: Transform + - uid: 4741 + components: + - pos: 14.5,-45.5 + parent: 1 + type: Transform + - uid: 4742 + components: + - pos: 14.5,-44.5 + parent: 1 + type: Transform + - uid: 4743 + components: + - pos: 14.5,-43.5 + parent: 1 + type: Transform + - uid: 4744 + components: + - pos: 12.5,-47.5 + parent: 1 + type: Transform + - uid: 4745 + components: + - pos: 12.5,-46.5 + parent: 1 + type: Transform + - uid: 4746 + components: + - pos: 12.5,-45.5 + parent: 1 + type: Transform + - uid: 4747 + components: + - pos: 12.5,-44.5 + parent: 1 + type: Transform + - uid: 4748 + components: + - pos: 12.5,-43.5 + parent: 1 + type: Transform + - uid: 4749 + components: + - pos: 12.5,-42.5 + parent: 1 + type: Transform + - uid: 4750 + components: + - pos: 12.5,-41.5 + parent: 1 + type: Transform + - uid: 4751 + components: + - pos: 12.5,-40.5 + parent: 1 + type: Transform + - uid: 4752 + components: + - pos: 12.5,-39.5 + parent: 1 + type: Transform + - 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 + - uid: 4768 + components: + - pos: 7.5,-38.5 + parent: 1 + type: Transform + - uid: 4769 + components: + - pos: 7.5,-39.5 + parent: 1 + type: Transform + - uid: 4770 + components: + - pos: 7.5,-40.5 + parent: 1 + type: Transform + - uid: 4771 + components: + - pos: 6.5,-40.5 + parent: 1 + type: Transform + - uid: 4772 + components: + - pos: 6.5,-39.5 + parent: 1 + type: Transform + - 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 + - uid: 4776 + components: + - pos: 6.5,-30.5 + parent: 1 + type: Transform + - uid: 4777 + components: + - pos: 5.5,-30.5 + parent: 1 + type: Transform + - uid: 4778 + components: + - pos: 8.5,-30.5 + parent: 1 + type: Transform + - 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 + - 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 + - uid: 4816 + components: + - pos: 3.5,-15.5 + parent: 1 + type: Transform + - uid: 4817 + components: + - pos: 2.5,-15.5 + parent: 1 + type: Transform + - uid: 4818 + components: + - pos: 1.5,-15.5 + parent: 1 + type: Transform + - uid: 4819 + components: + - pos: 0.5,-15.5 + parent: 1 + type: Transform + - uid: 4820 + components: + - pos: -0.5,-15.5 + parent: 1 + type: Transform + - uid: 4821 + components: + - pos: -1.5,-15.5 + parent: 1 + type: Transform + - uid: 4822 + components: + - pos: -2.5,-15.5 + parent: 1 + type: Transform + - uid: 4823 + components: + - pos: -3.5,-15.5 + parent: 1 + type: Transform + - uid: 4824 + components: + - pos: -4.5,-15.5 + parent: 1 + type: Transform + - uid: 4825 + components: + - pos: -5.5,-15.5 + parent: 1 + type: Transform + - 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 + - uid: 4843 + components: + - pos: -13.5,-25.5 + parent: 1 + type: Transform + - 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 + - uid: 4849 + components: + - pos: -13.5,-30.5 + parent: 1 + type: Transform + - 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 + - uid: 4859 + components: + - pos: -16.5,-36.5 + parent: 1 + type: Transform + - uid: 4860 + components: + - pos: -16.5,-35.5 + parent: 1 + type: Transform + - uid: 4861 + components: + - pos: -16.5,-34.5 + parent: 1 + type: Transform + - uid: 4862 + components: + - pos: -16.5,-33.5 + parent: 1 + type: Transform + - uid: 4863 + components: + - pos: -16.5,-32.5 + parent: 1 + type: Transform + - uid: 4864 + components: + - pos: -16.5,-31.5 + parent: 1 + type: Transform + - uid: 4865 + components: + - pos: -17.5,-31.5 + parent: 1 + type: Transform + - uid: 4866 + components: + - pos: -18.5,-31.5 + parent: 1 + type: Transform + - uid: 4867 + components: + - pos: -18.5,-30.5 + parent: 1 + type: Transform + - uid: 4868 + components: + - pos: -18.5,-29.5 + parent: 1 + type: Transform + - uid: 4869 + components: + - pos: -18.5,-28.5 + parent: 1 + type: Transform + - uid: 4870 + components: + - pos: -18.5,-27.5 + parent: 1 + type: Transform + - uid: 4871 + components: + - pos: -18.5,-26.5 + parent: 1 + type: Transform + - uid: 4872 + components: + - pos: -18.5,-25.5 + parent: 1 + type: Transform + - uid: 4873 + components: + - pos: -18.5,-24.5 + parent: 1 + type: Transform + - uid: 4874 + components: + - pos: -19.5,-31.5 + parent: 1 + type: Transform + - uid: 4875 + components: + - pos: -20.5,-31.5 + parent: 1 + type: Transform + - uid: 4876 + components: + - pos: -17.5,-24.5 + parent: 1 + type: Transform + - uid: 4877 + components: + - pos: -16.5,-24.5 + parent: 1 + type: Transform + - uid: 4878 + components: + - pos: -16.5,-23.5 + parent: 1 + type: Transform + - uid: 4879 + components: + - pos: -16.5,-22.5 + parent: 1 + type: Transform + - uid: 4880 + components: + - pos: -16.5,-21.5 + parent: 1 + type: Transform + - 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 + - uid: 4903 + components: + - pos: -20.5,-29.5 + parent: 1 + type: Transform + - uid: 4904 + components: + - pos: -20.5,-28.5 + parent: 1 + type: Transform + - uid: 4905 + components: + - pos: -20.5,-27.5 + parent: 1 + type: Transform + - uid: 4906 + components: + - pos: -20.5,-26.5 + parent: 1 + type: Transform + - uid: 4907 + components: + - pos: -21.5,-26.5 + parent: 1 + type: Transform + - uid: 4908 + components: + - pos: -22.5,-26.5 + parent: 1 + type: Transform + - uid: 4909 + components: + - pos: -23.5,-26.5 + parent: 1 + type: Transform + - uid: 4910 + components: + - pos: -24.5,-26.5 + parent: 1 + type: Transform + - uid: 4911 + components: + - pos: -25.5,-26.5 + parent: 1 + type: Transform + - uid: 4912 + components: + - pos: -26.5,-26.5 + parent: 1 + type: Transform + - uid: 4913 + components: + - pos: -27.5,-26.5 + parent: 1 + type: Transform + - uid: 4914 + components: + - pos: -28.5,-26.5 + parent: 1 + type: Transform + - uid: 4915 + components: + - pos: -29.5,-26.5 + parent: 1 + type: Transform + - uid: 4916 + components: + - pos: -29.5,-25.5 + parent: 1 + type: Transform + - uid: 4917 + components: + - pos: -29.5,-24.5 + parent: 1 + type: Transform + - uid: 4918 + components: + - pos: -29.5,-23.5 + parent: 1 + type: Transform + - uid: 4919 + components: + - pos: -29.5,-22.5 + parent: 1 + type: Transform + - uid: 4920 + components: + - pos: -29.5,-21.5 + parent: 1 + type: Transform + - uid: 4921 + components: + - pos: -29.5,-20.5 + parent: 1 + type: Transform + - uid: 4922 + components: + - pos: -29.5,-19.5 + parent: 1 + type: Transform + - uid: 4923 + components: + - pos: -29.5,-18.5 + parent: 1 + type: Transform + - uid: 4924 + components: + - pos: -29.5,-17.5 + parent: 1 + type: Transform + - uid: 4925 + components: + - pos: -29.5,-16.5 + parent: 1 + type: Transform + - uid: 4926 + components: + - pos: -28.5,-16.5 + parent: 1 + type: Transform + - uid: 4927 + components: + - pos: -27.5,-16.5 + parent: 1 + type: Transform + - uid: 4928 + components: + - pos: -26.5,-16.5 + parent: 1 + type: Transform + - uid: 4929 + components: + - pos: -25.5,-16.5 + parent: 1 + type: Transform + - uid: 4930 + components: + - pos: -25.5,-15.5 + parent: 1 + type: Transform + - uid: 4932 + components: + - pos: -3.5,74.5 + parent: 1 + type: Transform + - uid: 4933 + components: + - pos: -3.5,73.5 + parent: 1 + type: Transform + - uid: 4934 + components: + - pos: -3.5,72.5 + parent: 1 + type: Transform + - uid: 4935 + components: + - pos: -3.5,71.5 + parent: 1 + type: Transform + - uid: 4936 + components: + - pos: -3.5,70.5 + parent: 1 + type: Transform + - uid: 4937 + components: + - pos: -4.5,70.5 + parent: 1 + type: Transform + - uid: 4938 + components: + - pos: -4.5,69.5 + parent: 1 + type: Transform + - uid: 4939 + components: + - pos: -4.5,68.5 + parent: 1 + type: Transform + - uid: 4940 + components: + - pos: -4.5,67.5 + parent: 1 + type: Transform + - 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 + - uid: 4945 + components: + - pos: -6.5,67.5 + parent: 1 + type: Transform + - uid: 4946 + components: + - pos: -7.5,67.5 + parent: 1 + type: Transform + - uid: 4947 + components: + - pos: -8.5,67.5 + parent: 1 + type: Transform + - uid: 4948 + components: + - pos: -9.5,67.5 + parent: 1 + type: Transform + - uid: 4949 + components: + - pos: -10.5,67.5 + parent: 1 + type: Transform + - uid: 4950 + components: + - pos: -11.5,67.5 + parent: 1 + type: Transform + - uid: 4951 + components: + - pos: -12.5,67.5 + parent: 1 + type: Transform + - uid: 4952 + components: + - pos: -13.5,67.5 + parent: 1 + type: Transform + - uid: 4953 + components: + - pos: -13.5,66.5 + parent: 1 + type: Transform + - uid: 4954 + components: + - pos: -13.5,65.5 + parent: 1 + type: Transform + - uid: 4955 + components: + - pos: -13.5,64.5 + parent: 1 + type: Transform + - uid: 4956 + components: + - pos: -13.5,63.5 + parent: 1 + type: Transform + - uid: 4957 + components: + - pos: -13.5,62.5 + parent: 1 + type: Transform + - uid: 4958 + components: + - pos: -14.5,62.5 + parent: 1 + type: Transform + - uid: 4959 + components: + - pos: -15.5,62.5 + parent: 1 + type: Transform + - uid: 4960 + components: + - pos: -16.5,62.5 + parent: 1 + type: Transform + - uid: 4961 + components: + - pos: -17.5,62.5 + parent: 1 + type: Transform + - uid: 4962 + components: + - pos: -18.5,62.5 + parent: 1 + type: Transform + - uid: 4963 + components: + - pos: -19.5,62.5 + parent: 1 + type: Transform + - uid: 4964 + components: + - pos: -19.5,61.5 + parent: 1 + type: Transform + - uid: 4965 + components: + - pos: -19.5,60.5 + parent: 1 + type: Transform + - uid: 4966 + components: + - pos: -19.5,59.5 + parent: 1 + type: Transform + - uid: 4967 + components: + - pos: -19.5,58.5 + parent: 1 + type: Transform + - uid: 4968 + components: + - pos: -19.5,57.5 + parent: 1 + type: Transform + - uid: 4969 + components: + - pos: -20.5,57.5 + parent: 1 + type: Transform + - uid: 4970 + components: + - pos: -21.5,57.5 + parent: 1 + type: Transform + - uid: 4971 + components: + - pos: -21.5,56.5 + parent: 1 + type: Transform + - uid: 4972 + components: + - pos: -21.5,55.5 + parent: 1 + type: Transform + - uid: 4973 + components: + - pos: -21.5,54.5 + parent: 1 + type: Transform + - uid: 4974 + components: + - pos: -21.5,53.5 + parent: 1 + type: Transform + - uid: 4975 + components: + - pos: -21.5,52.5 + parent: 1 + type: Transform + - uid: 4976 + components: + - pos: -21.5,51.5 + parent: 1 + type: Transform + - 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 + - uid: 4984 + components: + - pos: -21.5,43.5 + parent: 1 + type: Transform + - uid: 4985 + components: + - pos: -21.5,42.5 + parent: 1 + type: Transform + - uid: 4986 + components: + - pos: -21.5,41.5 + parent: 1 + type: Transform + - uid: 4987 + components: + - pos: -21.5,40.5 + parent: 1 + type: Transform + - 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 + - uid: 4993 + components: + - pos: -23.5,57.5 + parent: 1 + type: Transform + - uid: 4994 + components: + - pos: -24.5,57.5 + parent: 1 + type: Transform + - uid: 4995 + components: + - pos: -24.5,56.5 + parent: 1 + type: Transform + - uid: 4996 + components: + - pos: -24.5,55.5 + parent: 1 + type: Transform + - uid: 4997 + components: + - pos: -24.5,54.5 + parent: 1 + type: Transform + - uid: 4998 + components: + - pos: -24.5,53.5 + parent: 1 + type: Transform + - uid: 4999 + components: + - pos: -24.5,52.5 + parent: 1 + type: Transform + - uid: 5000 + components: + - pos: -24.5,51.5 + parent: 1 + type: Transform + - uid: 5001 + components: + - pos: -24.5,50.5 + parent: 1 + type: Transform + - 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 + - uid: 5014 + components: + - pos: 7.5,63.5 + parent: 1 + type: Transform + - uid: 5015 + components: + - pos: 8.5,63.5 + parent: 1 + type: Transform + - uid: 5016 + components: + - pos: 9.5,63.5 + parent: 1 + type: Transform + - uid: 5017 + components: + - pos: 10.5,63.5 + parent: 1 + type: Transform + - uid: 5018 + components: + - pos: 11.5,63.5 + parent: 1 + type: Transform + - uid: 5019 + components: + - pos: 12.5,63.5 + parent: 1 + type: Transform + - uid: 5020 + components: + - pos: 13.5,63.5 + parent: 1 + type: Transform + - uid: 5021 + components: + - pos: 14.5,63.5 + parent: 1 + type: Transform + - uid: 5022 + components: + - pos: 15.5,63.5 + parent: 1 + type: Transform + - uid: 5023 + components: + - pos: 16.5,63.5 + parent: 1 + type: Transform + - uid: 5024 + components: + - pos: 17.5,63.5 + parent: 1 + type: Transform + - uid: 5025 + components: + - pos: 18.5,63.5 + parent: 1 + type: Transform + - uid: 5026 + components: + - pos: 18.5,62.5 + parent: 1 + type: Transform + - uid: 5027 + components: + - pos: 18.5,61.5 + parent: 1 + type: Transform + - uid: 5028 + components: + - pos: 18.5,60.5 + parent: 1 + type: Transform + - uid: 5029 + components: + - pos: 18.5,59.5 + parent: 1 + type: Transform + - uid: 5030 + components: + - pos: 18.5,58.5 + parent: 1 + type: Transform + - uid: 5031 + components: + - pos: 19.5,58.5 + parent: 1 + type: Transform + - uid: 5032 + components: + - pos: 19.5,57.5 + parent: 1 + type: Transform + - uid: 5033 + components: + - pos: 19.5,56.5 + parent: 1 + type: Transform + - uid: 5034 + components: + - pos: 18.5,56.5 + parent: 1 + type: Transform + - uid: 5035 + components: + - pos: 17.5,56.5 + parent: 1 + type: Transform + - uid: 5036 + components: + - pos: 16.5,56.5 + parent: 1 + type: Transform + - uid: 5037 + components: + - pos: 20.5,56.5 + parent: 1 + type: Transform + - uid: 5038 + components: + - pos: 21.5,56.5 + parent: 1 + type: Transform + - uid: 5039 + components: + - pos: 22.5,56.5 + parent: 1 + type: Transform + - uid: 5040 + components: + - pos: 22.5,55.5 + parent: 1 + type: Transform + - uid: 5041 + components: + - pos: 22.5,54.5 + parent: 1 + type: Transform + - uid: 5042 + components: + - pos: 22.5,53.5 + parent: 1 + type: Transform + - uid: 5043 + components: + - pos: 22.5,52.5 + parent: 1 + type: Transform + - uid: 5044 + components: + - pos: 22.5,51.5 + parent: 1 + type: Transform + - uid: 5045 + components: + - pos: 22.5,50.5 + parent: 1 + type: Transform + - uid: 5046 + components: + - pos: 22.5,49.5 + parent: 1 + type: Transform + - uid: 5047 + components: + - pos: 22.5,48.5 + parent: 1 + type: Transform + - uid: 5048 + components: + - pos: 22.5,47.5 + parent: 1 + type: Transform + - uid: 5049 + components: + - pos: 22.5,46.5 + parent: 1 + type: Transform + - uid: 5050 + components: + - pos: 22.5,45.5 + parent: 1 + type: Transform + - uid: 5051 + components: + - pos: 23.5,45.5 + parent: 1 + type: Transform + - uid: 5052 + components: + - pos: 24.5,45.5 + parent: 1 + type: Transform + - uid: 5053 + components: + - pos: 25.5,45.5 + parent: 1 + type: Transform + - uid: 5054 + components: + - pos: 25.5,44.5 + parent: 1 + type: Transform + - uid: 5055 + components: + - pos: 25.5,43.5 + parent: 1 + type: Transform + - uid: 5056 + components: + - pos: 25.5,42.5 + parent: 1 + type: Transform + - uid: 5057 + components: + - pos: 25.5,41.5 + parent: 1 + type: Transform + - uid: 5058 + components: + - pos: 25.5,40.5 + parent: 1 + type: Transform + - 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 + - uid: 5064 + components: + - pos: 16.5,54.5 + parent: 1 + type: Transform + - uid: 5065 + components: + - pos: 16.5,53.5 + parent: 1 + type: Transform + - uid: 5066 + components: + - pos: 16.5,52.5 + parent: 1 + type: Transform + - uid: 5067 + components: + - pos: 16.5,52.5 + parent: 1 + type: Transform + - uid: 5068 + components: + - pos: 17.5,52.5 + parent: 1 + type: Transform + - uid: 5069 + components: + - pos: 18.5,52.5 + parent: 1 + type: Transform + - uid: 5070 + components: + - pos: 19.5,52.5 + parent: 1 + type: Transform + - uid: 5071 + components: + - pos: 20.5,52.5 + parent: 1 + type: Transform + - uid: 5072 + components: + - pos: 20.5,53.5 + parent: 1 + type: Transform + - uid: 5073 + components: + - pos: 20.5,54.5 + parent: 1 + type: Transform + - 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 + - uid: 5180 + components: + - pos: 24.5,28.5 + parent: 1 + type: Transform + - uid: 5181 + components: + - pos: 24.5,27.5 + parent: 1 + type: Transform + - uid: 5182 + components: + - pos: 24.5,26.5 + parent: 1 + type: Transform + - uid: 5183 + components: + - pos: 24.5,25.5 + parent: 1 + type: Transform + - uid: 5184 + components: + - pos: 24.5,24.5 + parent: 1 + type: Transform + - uid: 5185 + components: + - pos: 23.5,24.5 + parent: 1 + type: Transform + - uid: 5186 + components: + - pos: 22.5,24.5 + parent: 1 + type: Transform + - uid: 5187 + components: + - pos: 21.5,24.5 + parent: 1 + type: Transform + - uid: 5188 + components: + - pos: 20.5,24.5 + parent: 1 + type: Transform + - uid: 5189 + components: + - pos: 19.5,24.5 + parent: 1 + type: Transform + - uid: 5190 + components: + - pos: 19.5,23.5 + parent: 1 + type: Transform + - uid: 5191 + components: + - pos: 19.5,22.5 + parent: 1 + type: Transform + - uid: 5192 + components: + - pos: 19.5,21.5 + parent: 1 + type: Transform + - uid: 5193 + components: + - pos: 19.5,20.5 + parent: 1 + type: Transform + - uid: 5194 + components: + - pos: 19.5,19.5 + parent: 1 + type: Transform + - uid: 5195 + components: + - pos: 19.5,18.5 + parent: 1 + type: Transform + - uid: 5196 + components: + - pos: 19.5,17.5 + parent: 1 + type: Transform + - 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 + - uid: 5202 + components: + - pos: 17.5,22.5 + parent: 1 + type: Transform + - uid: 5203 + components: + - pos: 16.5,22.5 + parent: 1 + type: Transform + - uid: 5204 + components: + - pos: 15.5,22.5 + parent: 1 + type: Transform + - uid: 5205 + components: + - pos: 14.5,22.5 + parent: 1 + type: Transform + - uid: 5206 + components: + - pos: 14.5,23.5 + parent: 1 + type: Transform + - uid: 5207 + components: + - pos: 14.5,24.5 + parent: 1 + type: Transform + - 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 + - uid: 5291 + components: + - pos: 18.5,10.5 + parent: 1 + type: Transform + - uid: 5292 + components: + - pos: 18.5,9.5 + parent: 1 + type: Transform + - uid: 5293 + components: + - pos: 18.5,8.5 + parent: 1 + type: Transform + - uid: 5294 + components: + - pos: 18.5,7.5 + parent: 1 + type: Transform + - uid: 5295 + components: + - pos: 18.5,6.5 + parent: 1 + type: Transform + - uid: 5296 + components: + - pos: 17.5,6.5 + parent: 1 + type: Transform + - uid: 5297 + components: + - pos: 16.5,6.5 + parent: 1 + type: Transform + - uid: 5298 + components: + - pos: 15.5,6.5 + parent: 1 + type: Transform + - uid: 5299 + components: + - pos: 14.5,5.5 + parent: 1 + type: Transform + - uid: 5300 + components: + - pos: 14.5,4.5 + parent: 1 + type: Transform + - uid: 5301 + components: + - pos: 14.5,3.5 + parent: 1 + type: Transform + - uid: 5302 + components: + - pos: 14.5,2.5 + parent: 1 + type: Transform + - uid: 5303 + components: + - pos: 14.5,1.5 + parent: 1 + type: Transform + - uid: 5304 + components: + - pos: 14.5,0.5 + parent: 1 + type: Transform + - uid: 5305 + components: + - pos: 14.5,-0.5 + parent: 1 + type: Transform + - uid: 5306 + components: + - pos: 14.5,6.5 + parent: 1 + type: Transform + - uid: 5307 + components: + - pos: 14.5,-1.5 + parent: 1 + type: Transform + - uid: 5308 + components: + - pos: 14.5,-2.5 + parent: 1 + type: Transform + - uid: 5309 + components: + - pos: 14.5,-3.5 + parent: 1 + type: Transform + - uid: 5310 + components: + - pos: 14.5,-4.5 + parent: 1 + type: Transform + - 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 + - uid: 5314 + components: + - pos: 16.5,-1.5 + parent: 1 + type: Transform + - uid: 5315 + components: + - pos: 17.5,-1.5 + parent: 1 + type: Transform + - uid: 5316 + components: + - pos: 18.5,-1.5 + parent: 1 + type: Transform + - uid: 5317 + components: + - pos: 18.5,-0.5 + parent: 1 + type: Transform + - uid: 5318 + components: + - pos: 18.5,0.5 + parent: 1 + type: Transform + - uid: 5319 + components: + - pos: 18.5,1.5 + parent: 1 + type: Transform + - uid: 5320 + components: + - pos: 18.5,2.5 + parent: 1 + type: Transform + - uid: 5321 + components: + - pos: 18.5,3.5 + parent: 1 + type: Transform + - uid: 5322 + components: + - pos: 18.5,4.5 + parent: 1 + type: Transform + - 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 + - uid: 5479 + components: + - pos: -25.5,-5.5 + parent: 1 + type: Transform + - uid: 5480 + components: + - pos: -24.5,-5.5 + parent: 1 + type: Transform + - uid: 5481 + components: + - pos: -23.5,-5.5 + parent: 1 + type: Transform + - uid: 5482 + components: + - pos: -22.5,-5.5 + parent: 1 + type: Transform + - uid: 5483 + components: + - pos: -21.5,-5.5 + parent: 1 + type: Transform + - uid: 5484 + components: + - pos: -20.5,-5.5 + parent: 1 + type: Transform + - uid: 5485 + components: + - pos: -19.5,-5.5 + parent: 1 + type: Transform + - uid: 5486 + components: + - pos: -19.5,-4.5 + parent: 1 + type: Transform + - uid: 5487 + components: + - pos: -19.5,-3.5 + parent: 1 + type: Transform + - uid: 5488 + components: + - pos: -19.5,-2.5 + parent: 1 + type: Transform + - uid: 5489 + components: + - pos: -19.5,-1.5 + parent: 1 + type: Transform + - uid: 5490 + components: + - pos: -19.5,-0.5 + parent: 1 + type: Transform + - uid: 5491 + components: + - pos: -19.5,0.5 + parent: 1 + type: Transform + - uid: 5492 + components: + - pos: -19.5,1.5 + parent: 1 + type: Transform + - uid: 5493 + components: + - pos: -19.5,2.5 + parent: 1 + type: Transform + - uid: 5494 + components: + - pos: -19.5,3.5 + parent: 1 + type: Transform + - uid: 5495 + components: + - pos: -19.5,4.5 + parent: 1 + type: Transform + - uid: 5496 + components: + - pos: -19.5,5.5 + parent: 1 + type: Transform + - uid: 5497 + components: + - pos: -19.5,6.5 + parent: 1 + type: Transform + - uid: 5498 + components: + - pos: -19.5,7.5 + parent: 1 + type: Transform + - uid: 5499 + components: + - pos: -18.5,7.5 + parent: 1 + type: Transform + - uid: 5500 + components: + - pos: -17.5,7.5 + parent: 1 + type: Transform + - uid: 5501 + components: + - pos: -16.5,7.5 + parent: 1 + type: Transform + - uid: 5502 + components: + - pos: -15.5,7.5 + parent: 1 + type: Transform + - uid: 5503 + components: + - pos: -15.5,8.5 + parent: 1 + type: Transform + - uid: 5504 + components: + - pos: -15.5,9.5 + parent: 1 + type: Transform + - uid: 5505 + components: + - pos: -15.5,10.5 + parent: 1 + type: Transform + - uid: 5506 + components: + - pos: -15.5,11.5 + parent: 1 + type: Transform + - uid: 5507 + components: + - pos: -15.5,12.5 + parent: 1 + type: Transform + - uid: 5508 + components: + - pos: -20.5,-2.5 + parent: 1 + type: Transform + - uid: 5509 + components: + - pos: -21.5,-2.5 + parent: 1 + type: Transform + - uid: 5510 + components: + - pos: -22.5,-2.5 + parent: 1 + type: Transform + - uid: 5511 + components: + - pos: -23.5,-2.5 + parent: 1 + type: Transform + - uid: 5512 + components: + - pos: -24.5,-2.5 + parent: 1 + type: Transform + - uid: 5513 + components: + - pos: -25.5,-2.5 + parent: 1 + type: Transform + - uid: 5514 + components: + - pos: -25.5,-1.5 + parent: 1 + type: Transform + - 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 + - uid: 5518 + components: + - pos: -23.5,33.5 + parent: 1 + type: Transform + - uid: 5519 + components: + - pos: -23.5,32.5 + parent: 1 + type: Transform + - uid: 5520 + components: + - pos: -23.5,31.5 + parent: 1 + type: Transform + - uid: 5521 + components: + - pos: -23.5,30.5 + parent: 1 + type: Transform + - uid: 5522 + components: + - pos: -23.5,29.5 + parent: 1 + type: Transform + - uid: 5523 + components: + - pos: -23.5,28.5 + parent: 1 + type: Transform + - uid: 5524 + components: + - pos: -23.5,27.5 + parent: 1 + type: Transform + - uid: 5525 + components: + - pos: -23.5,26.5 + parent: 1 + type: Transform + - uid: 5526 + components: + - pos: -23.5,25.5 + parent: 1 + type: Transform + - uid: 5527 + components: + - pos: -22.5,27.5 + parent: 1 + type: Transform + - uid: 5528 + components: + - pos: -21.5,27.5 + parent: 1 + type: Transform + - uid: 5529 + components: + - pos: -20.5,27.5 + parent: 1 + type: Transform + - uid: 5536 + components: + - pos: -21.5,29.5 + parent: 1 + type: Transform + - uid: 5537 + components: + - pos: -21.5,30.5 + parent: 1 + type: Transform + - uid: 5538 + components: + - pos: -24.5,25.5 + parent: 1 + type: Transform + - uid: 5539 + components: + - pos: -25.5,25.5 + parent: 1 + type: Transform + - uid: 5540 + components: + - pos: -26.5,25.5 + parent: 1 + type: Transform + - uid: 5541 + components: + - pos: -27.5,25.5 + parent: 1 + type: Transform + - uid: 5542 + components: + - pos: -27.5,24.5 + parent: 1 + type: Transform + - uid: 5543 + components: + - pos: -27.5,23.5 + parent: 1 + type: Transform + - uid: 5544 + components: + - pos: -27.5,22.5 + parent: 1 + type: Transform + - uid: 5545 + components: + - pos: -27.5,21.5 + parent: 1 + type: Transform + - uid: 5546 + components: + - pos: -27.5,20.5 + parent: 1 + type: Transform + - uid: 5547 + components: + - pos: -27.5,19.5 + parent: 1 + type: Transform + - uid: 5548 + components: + - pos: -27.5,18.5 + parent: 1 + type: Transform + - uid: 5549 + components: + - pos: -27.5,17.5 + parent: 1 + type: Transform + - uid: 5550 + components: + - pos: -26.5,17.5 + parent: 1 + type: Transform + - uid: 5551 + components: + - pos: -25.5,17.5 + parent: 1 + type: Transform + - 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 + - uid: 5558 + components: + - pos: -29.5,23.5 + parent: 1 + type: Transform + - uid: 5559 + components: + - pos: 39.5,-11.5 + parent: 1 + type: Transform + - uid: 5560 + components: + - pos: 37.5,-11.5 + parent: 1 + type: Transform + - uid: 5561 + components: + - pos: 36.5,-11.5 + parent: 1 + type: Transform + - uid: 5562 + components: + - pos: 35.5,-11.5 + parent: 1 + type: Transform + - uid: 5563 + components: + - pos: 34.5,-11.5 + parent: 1 + type: Transform + - uid: 5564 + components: + - pos: 33.5,-11.5 + parent: 1 + type: Transform + - uid: 5565 + components: + - pos: 32.5,-11.5 + parent: 1 + type: Transform + - uid: 5566 + components: + - pos: 32.5,-12.5 + parent: 1 + type: Transform + - uid: 5567 + components: + - pos: 32.5,-13.5 + parent: 1 + type: Transform + - uid: 5568 + components: + - pos: 32.5,-14.5 + parent: 1 + type: Transform + - uid: 5569 + components: + - pos: 32.5,-15.5 + parent: 1 + type: Transform + - uid: 5570 + components: + - pos: 31.5,-15.5 + parent: 1 + type: Transform + - uid: 5571 + components: + - pos: 30.5,-15.5 + parent: 1 + type: Transform + - uid: 5572 + components: + - pos: 30.5,-16.5 + parent: 1 + type: Transform + - uid: 5573 + components: + - pos: 30.5,-17.5 + parent: 1 + type: Transform + - uid: 5574 + components: + - pos: 30.5,-18.5 + parent: 1 + type: Transform + - uid: 5575 + components: + - pos: 30.5,-19.5 + parent: 1 + type: Transform + - uid: 5576 + components: + - pos: 30.5,-20.5 + parent: 1 + type: Transform + - uid: 5577 + components: + - pos: 30.5,-21.5 + parent: 1 + type: Transform + - uid: 5578 + components: + - pos: 30.5,-22.5 + parent: 1 + type: Transform + - uid: 5579 + components: + - pos: 30.5,-23.5 + parent: 1 + type: Transform + - uid: 5580 + components: + - pos: 30.5,-24.5 + parent: 1 + type: Transform + - uid: 5581 + components: + - pos: 29.5,-19.5 + parent: 1 + type: Transform + - uid: 5582 + components: + - pos: 28.5,-19.5 + parent: 1 + type: Transform + - uid: 5583 + components: + - pos: 27.5,-19.5 + parent: 1 + type: Transform + - uid: 5584 + components: + - pos: 26.5,-19.5 + parent: 1 + type: Transform + - 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 + - uid: 5595 + components: + - pos: 15.5,-29.5 + parent: 1 + type: Transform + - uid: 5596 + components: + - pos: 15.5,-30.5 + parent: 1 + type: Transform + - uid: 5599 + components: + - pos: 15.5,-33.5 + parent: 1 + type: Transform + - uid: 5600 + components: + - pos: 16.5,-29.5 + parent: 1 + type: Transform + - uid: 5601 + components: + - pos: 17.5,-29.5 + parent: 1 + type: Transform + - uid: 5602 + components: + - pos: 18.5,-29.5 + parent: 1 + type: Transform + - uid: 5603 + components: + - pos: 19.5,-29.5 + parent: 1 + type: Transform + - uid: 5604 + components: + - pos: 20.5,-29.5 + parent: 1 + type: Transform + - uid: 5605 + components: + - pos: 21.5,-29.5 + parent: 1 + type: Transform + - uid: 5606 + components: + - pos: 21.5,-28.5 + parent: 1 + type: Transform + - uid: 5607 + components: + - pos: 21.5,-27.5 + parent: 1 + type: Transform + - uid: 5608 + components: + - pos: 22.5,-27.5 + parent: 1 + type: Transform + - uid: 5609 + components: + - pos: 22.5,-26.5 + parent: 1 + type: Transform + - uid: 5610 + components: + - pos: 22.5,-25.5 + parent: 1 + type: Transform + - 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 + - uid: 5614 + components: + - pos: 25.5,-24.5 + parent: 1 + type: Transform + - uid: 5615 + components: + - pos: 26.5,-24.5 + parent: 1 + type: Transform + - uid: 5616 + components: + - pos: 27.5,-24.5 + parent: 1 + type: Transform + - uid: 5617 + components: + - pos: 28.5,-24.5 + parent: 1 + type: Transform + - uid: 5618 + components: + - pos: 29.5,-24.5 + parent: 1 + type: Transform + - uid: 5706 + components: + - pos: -32.5,74.5 + parent: 1 + type: Transform + - uid: 5936 + components: + - pos: -25.5,14.5 + parent: 1 + type: Transform + - uid: 5955 + components: + - pos: -20.5,29.5 + parent: 1 + type: Transform + - uid: 5957 + components: + - pos: 5.5,-64.5 + parent: 1 + type: Transform + - uid: 5958 + components: + - pos: 5.5,-65.5 + parent: 1 + type: Transform + - uid: 5959 + components: + - pos: 5.5,-66.5 + parent: 1 + type: Transform + - uid: 5960 + components: + - pos: 5.5,-67.5 + parent: 1 + type: Transform + - uid: 5961 + components: + - pos: 5.5,-68.5 + parent: 1 + type: Transform + - uid: 5962 + components: + - pos: 5.5,-69.5 + parent: 1 + type: Transform + - uid: 5963 + components: + - pos: 5.5,-70.5 + parent: 1 + type: Transform + - uid: 5964 + components: + - pos: 7.5,-70.5 + parent: 1 + type: Transform + - uid: 5965 + components: + - pos: 7.5,-69.5 + parent: 1 + type: Transform + - uid: 5966 + components: + - pos: 7.5,-68.5 + parent: 1 + type: Transform + - uid: 5967 + components: + - pos: 7.5,-67.5 + parent: 1 + type: Transform + - uid: 5968 + components: + - pos: 7.5,-66.5 + parent: 1 + type: Transform + - uid: 5969 + components: + - pos: 7.5,-65.5 + parent: 1 + type: Transform + - uid: 5970 + components: + - pos: 7.5,-64.5 + parent: 1 + type: Transform + - uid: 5971 + components: + - pos: -30.5,-16.5 + parent: 1 + type: Transform + - uid: 5972 + components: + - pos: -31.5,-16.5 + parent: 1 + type: Transform + - uid: 5973 + components: + - pos: -32.5,-16.5 + parent: 1 + type: Transform + - uid: 5974 + components: + - pos: -33.5,-16.5 + parent: 1 + type: Transform + - uid: 5975 + components: + - pos: -34.5,-16.5 + parent: 1 + type: Transform + - uid: 5976 + components: + - pos: -35.5,-16.5 + parent: 1 + type: Transform + - uid: 5977 + components: + - pos: -35.5,-15.5 + parent: 1 + type: Transform + - uid: 5978 + components: + - pos: -35.5,-14.5 + parent: 1 + type: Transform + - uid: 5979 + components: + - pos: -35.5,-13.5 + parent: 1 + type: Transform + - uid: 5980 + components: + - pos: -35.5,-12.5 + parent: 1 + type: Transform + - uid: 5981 + components: + - pos: -35.5,-11.5 + parent: 1 + type: Transform + - uid: 5982 + components: + - pos: -35.5,-10.5 + parent: 1 + type: Transform + - uid: 5983 + components: + - pos: -35.5,-9.5 + parent: 1 + type: Transform + - uid: 5984 + components: + - pos: -35.5,-8.5 + parent: 1 + type: Transform + - uid: 5985 + components: + - pos: -35.5,-7.5 + parent: 1 + type: Transform + - 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 + - uid: 6079 + components: + - pos: 15.5,-31.5 + parent: 1 + type: Transform + - uid: 6080 + components: + - pos: 15.5,-32.5 + parent: 1 + type: Transform + - uid: 6102 + components: + - pos: 25.5,34.5 + parent: 1 + type: Transform + - uid: 6408 + components: + - pos: 7.5,-16.5 + parent: 1 + type: Transform + - 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 + - uid: 6441 + components: + - pos: -27.5,-4.5 + parent: 1 + type: Transform + - uid: 6442 + components: + - pos: -27.5,-3.5 + parent: 1 + type: Transform + - uid: 6443 + components: + - pos: -27.5,-2.5 + parent: 1 + type: Transform + - uid: 6444 + components: + - pos: -27.5,-1.5 + parent: 1 + type: Transform + - uid: 6445 + components: + - pos: -27.5,-0.5 + parent: 1 + type: Transform + - uid: 6446 + components: + - pos: -27.5,0.5 + parent: 1 + type: Transform + - uid: 6447 + components: + - pos: -27.5,1.5 + parent: 1 + type: Transform + - uid: 6448 + components: + - pos: -28.5,1.5 + parent: 1 + type: Transform + - 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 + - uid: 6520 + components: + - pos: -42.5,74.5 + parent: 1 + type: Transform + - uid: 6527 + components: + - pos: -46.5,72.5 + parent: 1 + type: Transform + - uid: 6529 + components: + - pos: -40.5,74.5 + parent: 1 + type: Transform + - uid: 6539 + components: + - pos: -45.5,74.5 + parent: 1 + type: Transform + - uid: 6540 + components: + - pos: -47.5,74.5 + parent: 1 + type: Transform + - uid: 6541 + components: + - pos: -46.5,74.5 + parent: 1 + type: Transform + - uid: 6548 + components: + - pos: -36.5,74.5 + parent: 1 + type: Transform + - uid: 6572 + components: + - pos: -41.5,74.5 + parent: 1 + type: Transform + - uid: 6573 + components: + - pos: -47.5,72.5 + parent: 1 + type: Transform + - uid: 6574 + components: + - pos: -43.5,74.5 + parent: 1 + type: Transform + - uid: 6576 + components: + - pos: 6.5,-28.5 + parent: 1 + type: Transform + - uid: 6577 + components: + - pos: 8.5,-28.5 + parent: 1 + type: Transform + - uid: 6579 + components: + - pos: 6.5,-27.5 + parent: 1 + type: Transform + - uid: 6580 + components: + - pos: 7.5,-27.5 + parent: 1 + type: Transform + - uid: 6708 + components: + - pos: -35.5,21.5 + parent: 1 + type: Transform + - uid: 6709 + components: + - pos: -35.5,20.5 + parent: 1 + type: Transform + - uid: 6710 + components: + - pos: -35.5,19.5 + parent: 1 + type: Transform + - 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 + - uid: 6734 + components: + - pos: -34.5,21.5 + parent: 1 + type: Transform + - uid: 6738 + components: + - pos: -34.5,22.5 + parent: 1 + type: Transform + - uid: 6739 + components: + - pos: -34.5,23.5 + parent: 1 + type: Transform + - uid: 6740 + components: + - pos: -34.5,24.5 + parent: 1 + type: Transform + - uid: 6741 + components: + - pos: -34.5,25.5 + parent: 1 + type: Transform + - uid: 6742 + components: + - pos: -34.5,26.5 + parent: 1 + type: Transform + - uid: 6743 + components: + - pos: -34.5,27.5 + parent: 1 + type: Transform + - uid: 6744 + components: + - pos: -34.5,28.5 + parent: 1 + type: Transform + - uid: 6745 + components: + - pos: -34.5,29.5 + parent: 1 + type: Transform + - uid: 6746 + components: + - pos: -34.5,30.5 + parent: 1 + type: Transform + - uid: 6747 + components: + - pos: -34.5,31.5 + parent: 1 + type: Transform + - uid: 6748 + components: + - pos: -34.5,32.5 + parent: 1 + type: Transform + - uid: 6749 + components: + - pos: -34.5,33.5 + parent: 1 + type: Transform + - uid: 6750 + components: + - pos: -35.5,33.5 + parent: 1 + type: Transform + - uid: 6751 + components: + - pos: -36.5,33.5 + parent: 1 + type: Transform + - uid: 6752 + components: + - pos: -37.5,33.5 + parent: 1 + type: Transform + - uid: 6753 + components: + - pos: -38.5,33.5 + parent: 1 + type: Transform + - uid: 6754 + components: + - pos: -38.5,34.5 + parent: 1 + type: Transform + - 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 + - uid: 6768 + components: + - pos: -42.5,72.5 + parent: 1 + type: Transform + - uid: 7209 + components: + - pos: 21.5,49.5 + parent: 1 + type: Transform + - uid: 7210 + components: + - pos: 20.5,49.5 + parent: 1 + type: Transform + - uid: 7211 + components: + - pos: 19.5,49.5 + parent: 1 + type: Transform + - uid: 7212 + components: + - pos: 18.5,49.5 + parent: 1 + type: Transform + - uid: 7213 + components: + - pos: 17.5,49.5 + parent: 1 + type: Transform + - uid: 7214 + components: + - pos: 16.5,49.5 + parent: 1 + type: Transform + - uid: 7215 + components: + - pos: 16.5,50.5 + parent: 1 + type: Transform + - uid: 7216 + components: + - pos: 16.5,51.5 + parent: 1 + type: Transform + - uid: 7217 + components: + - pos: 15.5,50.5 + parent: 1 + type: Transform + - uid: 7218 + components: + - pos: 14.5,50.5 + parent: 1 + type: Transform + - uid: 7219 + components: + - pos: 13.5,50.5 + parent: 1 + type: Transform + - uid: 7220 + components: + - pos: 12.5,50.5 + parent: 1 + type: Transform + - uid: 7221 + components: + - pos: 11.5,50.5 + parent: 1 + type: Transform + - uid: 7222 + components: + - pos: 10.5,50.5 + parent: 1 + type: Transform + - uid: 7223 + components: + - pos: 9.5,50.5 + parent: 1 + type: Transform + - uid: 7224 + components: + - pos: 9.5,49.5 + parent: 1 + type: Transform + - uid: 7225 + components: + - pos: 9.5,48.5 + parent: 1 + type: Transform + - uid: 7226 + components: + - pos: 9.5,47.5 + parent: 1 + type: Transform + - uid: 7227 + components: + - pos: 9.5,46.5 + parent: 1 + type: Transform + - uid: 7228 + components: + - pos: 9.5,45.5 + parent: 1 + type: Transform + - uid: 7229 + components: + - pos: 9.5,44.5 + parent: 1 + type: Transform + - uid: 7230 + components: + - pos: 9.5,43.5 + parent: 1 + type: Transform + - uid: 7231 + components: + - pos: 9.5,42.5 + parent: 1 + type: Transform + - uid: 7232 + components: + - pos: 9.5,41.5 + parent: 1 + type: Transform + - uid: 7233 + components: + - pos: 8.5,41.5 + parent: 1 + type: Transform + - uid: 7234 + components: + - pos: 7.5,41.5 + parent: 1 + type: Transform + - uid: 7235 + components: + - pos: 6.5,41.5 + parent: 1 + type: Transform + - uid: 7236 + components: + - pos: 5.5,41.5 + parent: 1 + type: Transform + - uid: 7237 + components: + - pos: 4.5,41.5 + parent: 1 + type: Transform + - uid: 7238 + components: + - pos: 3.5,41.5 + parent: 1 + type: Transform + - uid: 7239 + components: + - pos: 2.5,41.5 + parent: 1 + type: Transform + - 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 + - uid: 7295 + components: + - pos: 28.5,-15.5 + parent: 1 + type: Transform + - uid: 7296 + components: + - pos: 27.5,-15.5 + parent: 1 + type: Transform + - uid: 7297 + components: + - pos: 26.5,-15.5 + parent: 1 + type: Transform + - uid: 7298 + components: + - pos: 25.5,-15.5 + parent: 1 + type: Transform + - uid: 7299 + components: + - pos: 24.5,-15.5 + parent: 1 + type: Transform + - uid: 7300 + components: + - pos: 24.5,-14.5 + parent: 1 + type: Transform + - uid: 7301 + components: + - pos: 24.5,-23.5 + parent: 1 + type: Transform + - uid: 7322 + components: + - pos: 24.5,-16.5 + parent: 1 + type: Transform + - uid: 7323 + components: + - pos: 24.5,-17.5 + parent: 1 + type: Transform + - uid: 7324 + components: + - pos: 24.5,-18.5 + parent: 1 + type: Transform + - uid: 7325 + components: + - pos: 24.5,-19.5 + parent: 1 + type: Transform + - uid: 7326 + components: + - pos: 24.5,-20.5 + parent: 1 + type: Transform + - uid: 7327 + components: + - pos: 24.5,-21.5 + parent: 1 + type: Transform + - uid: 7328 + components: + - pos: 24.5,-22.5 + parent: 1 + type: Transform + - uid: 7336 + components: + - pos: -31.5,23.5 + parent: 1 + type: Transform + - uid: 7337 + components: + - pos: 24.5,-13.5 + parent: 1 + type: Transform + - uid: 7338 + components: + - pos: 24.5,-12.5 + parent: 1 + type: Transform + - uid: 7339 + components: + - pos: 24.5,-11.5 + parent: 1 + type: Transform + - uid: 7340 + components: + - pos: 24.5,-10.5 + parent: 1 + type: Transform + - uid: 7341 + components: + - pos: 36.5,54.5 + parent: 1 + type: Transform + - 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 + - uid: 7353 + components: + - pos: 34.5,41.5 + parent: 1 + type: Transform + - uid: 7354 + components: + - pos: 35.5,41.5 + parent: 1 + type: Transform + - uid: 7355 + components: + - pos: 36.5,41.5 + parent: 1 + type: Transform + - uid: 7356 + components: + - pos: 36.5,42.5 + parent: 1 + type: Transform + - uid: 7357 + components: + - pos: 36.5,43.5 + parent: 1 + type: Transform + - uid: 7358 + components: + - pos: 36.5,44.5 + parent: 1 + type: Transform + - uid: 7359 + components: + - pos: 36.5,45.5 + parent: 1 + type: Transform + - uid: 7360 + components: + - pos: 36.5,46.5 + parent: 1 + type: Transform + - uid: 7361 + components: + - pos: 36.5,47.5 + parent: 1 + type: Transform + - uid: 7362 + components: + - pos: 36.5,48.5 + parent: 1 + type: Transform + - uid: 7363 + components: + - pos: 36.5,49.5 + parent: 1 + type: Transform + - uid: 7364 + components: + - pos: 36.5,50.5 + parent: 1 + type: Transform + - uid: 7365 + components: + - pos: 36.5,51.5 + parent: 1 + type: Transform + - uid: 7366 + components: + - pos: 35.5,51.5 + parent: 1 + type: Transform + - uid: 7367 + components: + - pos: 34.5,51.5 + parent: 1 + type: Transform + - uid: 7368 + components: + - pos: 33.5,51.5 + parent: 1 + type: Transform + - uid: 7369 + components: + - pos: 32.5,51.5 + parent: 1 + type: Transform + - uid: 7370 + components: + - pos: 31.5,51.5 + parent: 1 + type: Transform + - uid: 7371 + components: + - pos: 30.5,51.5 + parent: 1 + type: Transform + - uid: 7372 + components: + - pos: 29.5,51.5 + parent: 1 + type: Transform + - uid: 7373 + components: + - pos: 29.5,52.5 + parent: 1 + type: Transform + - uid: 7374 + components: + - pos: 28.5,52.5 + parent: 1 + type: Transform + - uid: 7375 + components: + - pos: 28.5,53.5 + parent: 1 + type: Transform + - uid: 7376 + components: + - pos: 28.5,54.5 + parent: 1 + type: Transform + - uid: 7377 + components: + - pos: 28.5,55.5 + parent: 1 + type: Transform + - uid: 7378 + components: + - pos: 28.5,56.5 + parent: 1 + type: Transform + - uid: 7379 + components: + - pos: 28.5,57.5 + parent: 1 + type: Transform + - uid: 7380 + components: + - pos: 27.5,57.5 + parent: 1 + type: Transform + - uid: 7381 + components: + - pos: 26.5,57.5 + parent: 1 + type: Transform + - uid: 7382 + components: + - pos: 25.5,57.5 + parent: 1 + type: Transform + - uid: 7383 + components: + - pos: 24.5,57.5 + parent: 1 + type: Transform + - uid: 7384 + components: + - pos: 23.5,57.5 + parent: 1 + type: Transform + - uid: 7385 + components: + - pos: 22.5,57.5 + parent: 1 + type: Transform + - uid: 7546 + components: + - pos: 37.5,60.5 + parent: 1 + type: Transform + - uid: 7547 + components: + - pos: 37.5,59.5 + parent: 1 + type: Transform + - uid: 7548 + components: + - pos: 37.5,58.5 + parent: 1 + type: Transform + - uid: 7549 + components: + - pos: 37.5,57.5 + parent: 1 + type: Transform + - uid: 7550 + components: + - pos: 37.5,56.5 + parent: 1 + type: Transform + - uid: 7551 + components: + - pos: 37.5,55.5 + parent: 1 + type: Transform + - uid: 7552 + components: + - pos: 36.5,69.5 + parent: 1 + type: Transform + - uid: 7553 + components: + - pos: 35.5,69.5 + parent: 1 + type: Transform + - uid: 7554 + components: + - pos: 35.5,70.5 + parent: 1 + type: Transform + - uid: 7555 + components: + - pos: 34.5,70.5 + parent: 1 + type: Transform + - uid: 7556 + components: + - pos: 33.5,70.5 + parent: 1 + type: Transform + - uid: 7557 + components: + - pos: 32.5,70.5 + parent: 1 + type: Transform + - uid: 7558 + components: + - pos: 31.5,70.5 + parent: 1 + type: Transform + - uid: 7559 + components: + - pos: 30.5,70.5 + parent: 1 + type: Transform + - uid: 7560 + components: + - pos: 29.5,70.5 + parent: 1 + type: Transform + - uid: 7561 + components: + - pos: 28.5,70.5 + parent: 1 + type: Transform + - uid: 7562 + components: + - pos: 35.5,68.5 + parent: 1 + type: Transform + - uid: 7563 + components: + - pos: 34.5,68.5 + parent: 1 + type: Transform + - uid: 7564 + components: + - pos: 33.5,68.5 + parent: 1 + type: Transform + - uid: 7565 + components: + - pos: 32.5,68.5 + parent: 1 + type: Transform + - uid: 7566 + components: + - pos: 31.5,68.5 + parent: 1 + type: Transform + - uid: 7567 + components: + - pos: 30.5,68.5 + parent: 1 + type: Transform + - uid: 7568 + components: + - pos: 29.5,68.5 + parent: 1 + type: Transform + - uid: 7569 + components: + - pos: 28.5,68.5 + parent: 1 + type: Transform + - uid: 7570 + components: + - pos: 38.5,69.5 + parent: 1 + type: Transform + - uid: 7571 + components: + - pos: 39.5,69.5 + parent: 1 + type: Transform + - uid: 7572 + components: + - pos: 39.5,70.5 + parent: 1 + type: Transform + - uid: 7573 + components: + - pos: 40.5,70.5 + parent: 1 + type: Transform + - uid: 7574 + components: + - pos: 41.5,70.5 + parent: 1 + type: Transform + - uid: 7575 + components: + - pos: 42.5,70.5 + parent: 1 + type: Transform + - uid: 7576 + components: + - pos: 43.5,70.5 + parent: 1 + type: Transform + - uid: 7577 + components: + - pos: 44.5,70.5 + parent: 1 + type: Transform + - uid: 7578 + components: + - pos: 45.5,70.5 + parent: 1 + type: Transform + - uid: 7579 + components: + - pos: 46.5,70.5 + parent: 1 + type: Transform + - uid: 7580 + components: + - pos: 39.5,68.5 + parent: 1 + type: Transform + - uid: 7581 + components: + - pos: 40.5,68.5 + parent: 1 + type: Transform + - uid: 7582 + components: + - pos: 41.5,68.5 + parent: 1 + type: Transform + - uid: 7583 + components: + - pos: 42.5,68.5 + parent: 1 + type: Transform + - uid: 7584 + components: + - pos: 43.5,68.5 + parent: 1 + type: Transform + - uid: 7585 + components: + - pos: 44.5,68.5 + parent: 1 + type: Transform + - uid: 7586 + components: + - pos: 45.5,68.5 + parent: 1 + type: Transform + - uid: 7587 + components: + - pos: 46.5,68.5 + parent: 1 + type: Transform + - uid: 7588 + components: + - pos: 38.5,73.5 + parent: 1 + type: Transform + - uid: 7589 + components: + - pos: 39.5,73.5 + parent: 1 + type: Transform + - uid: 7590 + components: + - pos: 39.5,72.5 + parent: 1 + type: Transform + - uid: 7591 + components: + - pos: 40.5,72.5 + parent: 1 + type: Transform + - uid: 7592 + components: + - pos: 41.5,72.5 + parent: 1 + type: Transform + - uid: 7593 + components: + - pos: 42.5,72.5 + parent: 1 + type: Transform + - uid: 7594 + components: + - pos: 43.5,72.5 + parent: 1 + type: Transform + - uid: 7595 + components: + - pos: 44.5,72.5 + parent: 1 + type: Transform + - uid: 7596 + components: + - pos: 45.5,72.5 + parent: 1 + type: Transform + - uid: 7597 + components: + - pos: 46.5,72.5 + parent: 1 + type: Transform + - uid: 7598 + components: + - pos: 39.5,74.5 + parent: 1 + type: Transform + - uid: 7599 + components: + - pos: 40.5,74.5 + parent: 1 + type: Transform + - uid: 7600 + components: + - pos: 41.5,74.5 + parent: 1 + type: Transform + - uid: 7601 + components: + - pos: 42.5,74.5 + parent: 1 + type: Transform + - uid: 7602 + components: + - pos: 43.5,74.5 + parent: 1 + type: Transform + - uid: 7603 + components: + - pos: 44.5,74.5 + parent: 1 + type: Transform + - uid: 7604 + components: + - pos: 45.5,74.5 + parent: 1 + type: Transform + - uid: 7605 + components: + - pos: 46.5,74.5 + parent: 1 + type: Transform + - uid: 7606 + components: + - pos: 36.5,73.5 + parent: 1 + type: Transform + - uid: 7607 + components: + - pos: 35.5,73.5 + parent: 1 + type: Transform + - uid: 7608 + components: + - pos: 35.5,74.5 + parent: 1 + type: Transform + - uid: 7609 + components: + - pos: 34.5,74.5 + parent: 1 + type: Transform + - uid: 7610 + components: + - pos: 33.5,74.5 + parent: 1 + type: Transform + - uid: 7611 + components: + - pos: 32.5,74.5 + parent: 1 + type: Transform + - uid: 7612 + components: + - pos: 31.5,74.5 + parent: 1 + type: Transform + - uid: 7613 + components: + - pos: 30.5,74.5 + parent: 1 + type: Transform + - uid: 7614 + components: + - pos: 29.5,74.5 + parent: 1 + type: Transform + - uid: 7615 + components: + - pos: 28.5,74.5 + parent: 1 + type: Transform + - uid: 7616 + components: + - pos: 35.5,72.5 + parent: 1 + type: Transform + - uid: 7617 + components: + - pos: 34.5,72.5 + parent: 1 + type: Transform + - uid: 7618 + components: + - pos: 33.5,72.5 + parent: 1 + type: Transform + - uid: 7619 + components: + - pos: 32.5,72.5 + parent: 1 + type: Transform + - uid: 7620 + components: + - pos: 31.5,72.5 + parent: 1 + type: Transform + - uid: 7621 + components: + - pos: 30.5,72.5 + parent: 1 + type: Transform + - uid: 7622 + components: + - pos: 29.5,72.5 + parent: 1 + type: Transform + - uid: 7623 + components: + - pos: 28.5,72.5 + parent: 1 + type: Transform + - uid: 7830 + components: + - pos: -37.5,73.5 + parent: 1 + type: Transform + - uid: 7831 + components: + - pos: -39.5,73.5 + parent: 1 + type: Transform + - uid: 7832 + components: + - pos: -39.5,69.5 + parent: 1 + type: Transform + - uid: 7833 + components: + - pos: -37.5,69.5 + parent: 1 + type: Transform + - uid: 7834 + components: + - pos: -36.5,69.5 + parent: 1 + type: Transform + - uid: 7835 + components: + - pos: -36.5,73.5 + parent: 1 + type: Transform + - uid: 7836 + components: + - pos: -40.5,73.5 + parent: 1 + type: Transform + - uid: 7837 + components: + - pos: -40.5,69.5 + parent: 1 + type: Transform + - uid: 7838 + components: + - pos: -40.5,68.5 + parent: 1 + type: Transform + - uid: 7839 + components: + - pos: -41.5,68.5 + parent: 1 + type: Transform + - uid: 7840 + components: + - pos: -42.5,68.5 + parent: 1 + type: Transform + - uid: 7841 + components: + - pos: -43.5,68.5 + parent: 1 + type: Transform + - uid: 7842 + components: + - pos: -44.5,68.5 + parent: 1 + type: Transform + - uid: 7843 + components: + - pos: -45.5,68.5 + parent: 1 + type: Transform + - uid: 7844 + components: + - pos: -46.5,68.5 + parent: 1 + type: Transform + - uid: 7845 + components: + - pos: -47.5,68.5 + parent: 1 + type: Transform + - uid: 7846 + components: + - pos: -40.5,70.5 + parent: 1 + type: Transform + - uid: 7847 + components: + - pos: -41.5,70.5 + parent: 1 + type: Transform + - uid: 7848 + components: + - pos: -42.5,70.5 + parent: 1 + type: Transform + - uid: 7849 + components: + - pos: -43.5,70.5 + parent: 1 + type: Transform + - uid: 7850 + components: + - pos: -44.5,70.5 + parent: 1 + type: Transform + - uid: 7851 + components: + - pos: -45.5,70.5 + parent: 1 + type: Transform + - uid: 7852 + components: + - pos: -46.5,70.5 + parent: 1 + type: Transform + - uid: 7853 + components: + - pos: -47.5,70.5 + parent: 1 + type: Transform + - uid: 7854 + components: + - pos: -36.5,70.5 + parent: 1 + type: Transform + - uid: 7855 + components: + - pos: -35.5,70.5 + parent: 1 + type: Transform + - uid: 7856 + components: + - pos: -34.5,70.5 + parent: 1 + type: Transform + - uid: 7857 + components: + - pos: -33.5,70.5 + parent: 1 + type: Transform + - uid: 7858 + components: + - pos: -32.5,70.5 + parent: 1 + type: Transform + - uid: 7859 + components: + - pos: -31.5,70.5 + parent: 1 + type: Transform + - uid: 7860 + components: + - pos: -30.5,70.5 + parent: 1 + type: Transform + - uid: 7861 + components: + - pos: -29.5,70.5 + parent: 1 + type: Transform + - uid: 7862 + components: + - pos: -36.5,68.5 + parent: 1 + type: Transform + - uid: 7863 + components: + - pos: -35.5,68.5 + parent: 1 + type: Transform + - uid: 7864 + components: + - pos: -34.5,68.5 + parent: 1 + type: Transform + - uid: 7865 + components: + - pos: -33.5,68.5 + parent: 1 + type: Transform + - uid: 7866 + components: + - pos: -32.5,68.5 + parent: 1 + type: Transform + - uid: 7867 + components: + - pos: -31.5,68.5 + parent: 1 + type: Transform + - uid: 7868 + components: + - pos: -30.5,68.5 + parent: 1 + type: Transform + - uid: 7869 + components: + - pos: -29.5,68.5 + parent: 1 + type: Transform + - uid: 7871 + components: + - pos: -38.5,59.5 + parent: 1 + type: Transform + - uid: 7872 + components: + - pos: -38.5,58.5 + parent: 1 + type: Transform + - uid: 7873 + components: + - pos: -38.5,57.5 + parent: 1 + type: Transform + - uid: 7874 + components: + - pos: -38.5,56.5 + parent: 1 + type: Transform + - uid: 7875 + components: + - pos: -38.5,55.5 + parent: 1 + type: Transform + - uid: 7883 + components: + - pos: -35.5,72.5 + parent: 1 + type: Transform + - uid: 7896 + components: + - pos: -34.5,74.5 + parent: 1 + type: Transform + - uid: 7897 + components: + - pos: -30.5,74.5 + parent: 1 + type: Transform + - uid: 7903 + components: + - pos: -31.5,74.5 + parent: 1 + type: Transform + - uid: 7904 + components: + - pos: -33.5,74.5 + parent: 1 + type: Transform + - uid: 7905 + components: + - pos: -29.5,74.5 + parent: 1 + type: Transform + - uid: 7906 + components: + - pos: -36.5,72.5 + parent: 1 + type: Transform + - uid: 7907 + components: + - pos: -34.5,72.5 + parent: 1 + type: Transform + - uid: 7908 + components: + - pos: -33.5,72.5 + parent: 1 + type: Transform + - uid: 7909 + components: + - pos: -32.5,72.5 + parent: 1 + type: Transform + - uid: 7910 + components: + - pos: -31.5,72.5 + parent: 1 + type: Transform + - uid: 7911 + components: + - pos: -30.5,72.5 + parent: 1 + type: Transform + - uid: 7912 + components: + - pos: -29.5,72.5 + parent: 1 + type: Transform + - uid: 8012 + components: + - pos: -25.5,57.5 + parent: 1 + type: Transform + - uid: 8013 + components: + - pos: -26.5,57.5 + parent: 1 + type: Transform + - uid: 8014 + components: + - pos: -27.5,57.5 + parent: 1 + type: Transform + - uid: 8015 + components: + - pos: -27.5,56.5 + parent: 1 + type: Transform + - uid: 8016 + components: + - pos: -27.5,55.5 + parent: 1 + type: Transform + - uid: 8017 + components: + - pos: -27.5,54.5 + parent: 1 + type: Transform + - uid: 8018 + components: + - pos: -27.5,53.5 + parent: 1 + type: Transform + - uid: 8019 + components: + - pos: -27.5,52.5 + parent: 1 + type: Transform + - uid: 8020 + components: + - pos: -28.5,52.5 + parent: 1 + type: Transform + - uid: 8021 + components: + - pos: -29.5,52.5 + parent: 1 + type: Transform + - uid: 8022 + components: + - pos: -30.5,52.5 + parent: 1 + type: Transform + - uid: 8023 + components: + - pos: -31.5,52.5 + parent: 1 + type: Transform + - uid: 8024 + components: + - pos: -32.5,52.5 + parent: 1 + type: Transform + - uid: 8025 + components: + - pos: -33.5,52.5 + parent: 1 + type: Transform + - uid: 8026 + components: + - pos: -34.5,52.5 + parent: 1 + type: Transform + - uid: 8027 + components: + - pos: -35.5,52.5 + parent: 1 + type: Transform + - uid: 8028 + components: + - pos: -36.5,52.5 + parent: 1 + type: Transform + - uid: 8029 + components: + - pos: -37.5,52.5 + parent: 1 + type: Transform + - uid: 8030 + components: + - pos: -38.5,52.5 + parent: 1 + type: Transform + - uid: 8031 + components: + - pos: -39.5,52.5 + parent: 1 + type: Transform + - uid: 8032 + components: + - pos: -40.5,52.5 + parent: 1 + type: Transform + - uid: 8033 + components: + - pos: -40.5,51.5 + parent: 1 + type: Transform + - uid: 8034 + components: + - pos: -41.5,51.5 + parent: 1 + type: Transform + - uid: 8035 + components: + - pos: -42.5,51.5 + parent: 1 + type: Transform + - uid: 8036 + components: + - pos: -43.5,51.5 + parent: 1 + type: Transform + - uid: 8037 + components: + - pos: -43.5,50.5 + parent: 1 + type: Transform + - uid: 8038 + components: + - pos: -43.5,49.5 + parent: 1 + type: Transform + - uid: 8039 + components: + - pos: -43.5,48.5 + parent: 1 + type: Transform + - uid: 8040 + components: + - pos: -43.5,47.5 + parent: 1 + type: Transform + - uid: 8041 + components: + - pos: -43.5,46.5 + parent: 1 + type: Transform + - uid: 8042 + components: + - pos: -43.5,45.5 + parent: 1 + type: Transform + - 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 + - uid: 8058 + components: + - pos: -39.5,54.5 + parent: 1 + type: Transform + - uid: 8059 + components: + - pos: -39.5,53.5 + parent: 1 + type: Transform + - 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 + - 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 + - uid: 10147 + components: + - pos: 36.5,53.5 + parent: 1 + type: Transform + - uid: 10541 + components: + - pos: 7.5,-41.5 + parent: 1 + type: Transform + - uid: 10542 + components: + - pos: 7.5,-42.5 + parent: 1 + type: Transform + - uid: 10543 + components: + - pos: 6.5,-42.5 + parent: 1 + type: Transform + - uid: 10544 + components: + - pos: 5.5,-42.5 + parent: 1 + type: Transform + - 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 + - uid: 13179 + components: + - pos: -25.5,-18.5 + parent: 1 + type: Transform + - uid: 14045 + components: + - pos: 36.5,55.5 + parent: 1 + type: Transform + - 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 + - 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 + - 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 + - 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 + - uid: 9765 + components: + - pos: -25.5,-15.5 + parent: 1 + type: Transform + - uid: 9766 + components: + - pos: -25.5,-16.5 + parent: 1 + type: Transform + - uid: 9767 + components: + - pos: -26.5,-16.5 + parent: 1 + type: Transform + - uid: 9768 + components: + - pos: -27.5,-16.5 + parent: 1 + type: Transform + - uid: 9769 + components: + - pos: -28.5,-16.5 + parent: 1 + type: Transform + - uid: 9770 + components: + - pos: -29.5,-16.5 + parent: 1 + type: Transform + - uid: 9771 + components: + - pos: -30.5,-16.5 + parent: 1 + type: Transform + - uid: 9772 + components: + - pos: -31.5,-16.5 + parent: 1 + type: Transform + - uid: 9773 + components: + - pos: -31.5,-15.5 + parent: 1 + type: Transform + - uid: 9774 + components: + - pos: -31.5,-14.5 + parent: 1 + type: Transform + - uid: 9775 + components: + - pos: -31.5,-13.5 + parent: 1 + type: Transform + - 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 + - uid: 10154 + components: + - pos: 27.5,-19.5 + parent: 1 + type: Transform + - uid: 10155 + components: + - pos: 28.5,-19.5 + parent: 1 + type: Transform + - uid: 10156 + components: + - pos: 29.5,-19.5 + parent: 1 + type: Transform + - uid: 10157 + components: + - pos: 30.5,-19.5 + parent: 1 + type: Transform + - uid: 10158 + components: + - pos: 30.5,-18.5 + parent: 1 + type: Transform + - uid: 10159 + components: + - pos: 30.5,-17.5 + parent: 1 + type: Transform + - uid: 10160 + components: + - pos: 30.5,-16.5 + parent: 1 + type: Transform + - uid: 10161 + components: + - pos: 30.5,-15.5 + parent: 1 + type: Transform + - uid: 10162 + components: + - pos: 29.5,-15.5 + parent: 1 + type: Transform + - uid: 10163 + components: + - pos: 29.5,-14.5 + parent: 1 + type: Transform + - uid: 10272 + components: + - pos: -32.5,-16.5 + parent: 1 + type: Transform + - uid: 10273 + components: + - pos: -33.5,-16.5 + parent: 1 + type: Transform + - uid: 10274 + components: + - pos: -34.5,-16.5 + parent: 1 + type: Transform + - uid: 10275 + components: + - pos: -35.5,-16.5 + parent: 1 + type: Transform + - uid: 10276 + components: + - pos: -35.5,-15.5 + parent: 1 + type: Transform + - uid: 10277 + components: + - pos: -35.5,-14.5 + parent: 1 + type: Transform + - uid: 10278 + components: + - pos: -35.5,-13.5 + parent: 1 + type: Transform + - uid: 10279 + components: + - pos: -35.5,-12.5 + parent: 1 + type: Transform + - uid: 10280 + components: + - pos: -35.5,-11.5 + parent: 1 + type: Transform + - uid: 10281 + components: + - pos: -35.5,-10.5 + parent: 1 + type: Transform + - uid: 10282 + components: + - pos: -35.5,-9.5 + parent: 1 + type: Transform + - uid: 10283 + components: + - pos: -36.5,-9.5 + parent: 1 + type: Transform + - uid: 10284 + components: + - pos: -37.5,-9.5 + parent: 1 + type: Transform + - uid: 10285 + components: + - pos: -38.5,-9.5 + parent: 1 + type: Transform + - uid: 10286 + components: + - pos: -39.5,-9.5 + parent: 1 + type: Transform + - uid: 10287 + components: + - pos: -40.5,-9.5 + parent: 1 + type: Transform + - 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 + - uid: 10386 + components: + - pos: 30.5,-20.5 + parent: 1 + type: Transform + - uid: 10387 + components: + - pos: 30.5,-21.5 + parent: 1 + type: Transform + - uid: 10388 + components: + - pos: 30.5,-22.5 + parent: 1 + type: Transform + - uid: 10389 + components: + - pos: 30.5,-23.5 + parent: 1 + type: Transform + - uid: 10390 + components: + - pos: 30.5,-24.5 + parent: 1 + type: Transform + - uid: 10391 + components: + - pos: 29.5,-24.5 + parent: 1 + type: Transform + - uid: 10392 + components: + - pos: 28.5,-24.5 + parent: 1 + type: Transform + - uid: 10393 + components: + - pos: 27.5,-24.5 + parent: 1 + type: Transform + - uid: 10394 + components: + - pos: 26.5,-24.5 + parent: 1 + type: Transform + - uid: 10395 + components: + - pos: 25.5,-24.5 + parent: 1 + type: Transform + - uid: 10396 + components: + - pos: 24.5,-24.5 + parent: 1 + type: Transform + - 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 + - uid: 10400 + components: + - pos: 22.5,-26.5 + parent: 1 + type: Transform + - uid: 10401 + components: + - pos: 22.5,-27.5 + parent: 1 + type: Transform + - uid: 10402 + components: + - pos: 21.5,-27.5 + parent: 1 + type: Transform + - uid: 10403 + components: + - pos: 21.5,-28.5 + parent: 1 + type: Transform + - uid: 10404 + components: + - pos: 21.5,-29.5 + parent: 1 + type: Transform + - uid: 10405 + components: + - pos: 20.5,-29.5 + parent: 1 + type: Transform + - uid: 10406 + components: + - pos: 19.5,-29.5 + parent: 1 + type: Transform + - uid: 10407 + components: + - pos: 18.5,-29.5 + parent: 1 + type: Transform + - uid: 10408 + components: + - pos: 17.5,-29.5 + parent: 1 + type: Transform + - uid: 10409 + components: + - pos: 16.5,-29.5 + parent: 1 + type: Transform + - uid: 10410 + components: + - pos: 15.5,-29.5 + parent: 1 + type: Transform + - uid: 10411 + components: + - pos: 15.5,-30.5 + parent: 1 + type: Transform + - uid: 10412 + components: + - pos: 15.5,-31.5 + parent: 1 + type: Transform + - uid: 10413 + components: + - pos: 15.5,-32.5 + parent: 1 + type: Transform + - uid: 10414 + components: + - pos: 15.5,-33.5 + parent: 1 + type: Transform + - uid: 10415 + components: + - pos: 15.5,-34.5 + parent: 1 + type: Transform + - 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 + - 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 + - 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 + - uid: 10631 + components: + - pos: 28.5,-15.5 + parent: 1 + type: Transform + - uid: 10632 + components: + - pos: 27.5,-15.5 + parent: 1 + type: Transform + - uid: 10633 + components: + - pos: 26.5,-15.5 + parent: 1 + type: Transform + - uid: 10634 + components: + - pos: 25.5,-15.5 + parent: 1 + type: Transform + - uid: 10635 + components: + - pos: 24.5,-15.5 + parent: 1 + type: Transform + - uid: 10636 + components: + - pos: 24.5,-14.5 + parent: 1 + type: Transform + - uid: 10637 + components: + - pos: 24.5,-13.5 + parent: 1 + type: Transform + - uid: 10638 + components: + - pos: 24.5,-12.5 + parent: 1 + type: Transform + - uid: 10639 + components: + - pos: 24.5,-11.5 + parent: 1 + type: Transform + - 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 + - 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 + - uid: 10675 + components: + - pos: 7.5,-17.5 + parent: 1 + type: Transform + - uid: 10676 + components: + - pos: 7.5,-16.5 + parent: 1 + type: Transform + - 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 + - uid: 10681 + components: + - pos: 3.5,-15.5 + parent: 1 + type: Transform + - uid: 10682 + components: + - pos: 2.5,-15.5 + parent: 1 + type: Transform + - uid: 10683 + components: + - pos: 1.5,-15.5 + parent: 1 + type: Transform + - uid: 10684 + components: + - pos: 0.5,-15.5 + parent: 1 + type: Transform + - uid: 10685 + components: + - pos: -0.5,-15.5 + parent: 1 + type: Transform + - uid: 10686 + components: + - pos: -1.5,-15.5 + parent: 1 + type: Transform + - uid: 10687 + components: + - pos: -2.5,-15.5 + parent: 1 + type: Transform + - uid: 10688 + components: + - pos: -3.5,-15.5 + parent: 1 + type: Transform + - uid: 10689 + components: + - pos: -4.5,-15.5 + parent: 1 + type: Transform + - uid: 10690 + components: + - pos: -5.5,-15.5 + parent: 1 + type: Transform + - 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 + - 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 + - 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 + - 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 + - uid: 11084 + components: + - pos: 17.5,4.5 + parent: 1 + type: Transform + - uid: 11085 + components: + - pos: 18.5,4.5 + parent: 1 + type: Transform + - uid: 11086 + components: + - pos: 18.5,3.5 + parent: 1 + type: Transform + - uid: 11087 + components: + - pos: 18.5,2.5 + parent: 1 + type: Transform + - uid: 11088 + components: + - pos: 18.5,1.5 + parent: 1 + type: Transform + - uid: 11089 + components: + - pos: 18.5,0.5 + parent: 1 + type: Transform + - uid: 11090 + components: + - pos: 19.5,0.5 + parent: 1 + type: Transform + - uid: 11091 + components: + - pos: 20.5,0.5 + parent: 1 + type: Transform + - uid: 11092 + components: + - pos: 21.5,0.5 + parent: 1 + type: Transform + - uid: 11093 + components: + - pos: 21.5,1.5 + parent: 1 + type: Transform + - uid: 11094 + components: + - pos: 21.5,2.5 + parent: 1 + type: Transform + - uid: 11095 + components: + - pos: 21.5,3.5 + parent: 1 + type: Transform + - uid: 11096 + components: + - pos: 21.5,4.5 + parent: 1 + type: Transform + - uid: 11097 + components: + - pos: 21.5,5.5 + parent: 1 + type: Transform + - uid: 11098 + components: + - pos: 22.5,5.5 + parent: 1 + type: Transform + - uid: 11099 + components: + - pos: 22.5,0.5 + parent: 1 + type: Transform + - 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 + - uid: 11236 + components: + - pos: 16.5,9.5 + parent: 1 + type: Transform + - uid: 11237 + components: + - pos: 17.5,9.5 + parent: 1 + type: Transform + - uid: 11238 + components: + - pos: 18.5,9.5 + parent: 1 + type: Transform + - uid: 11239 + components: + - pos: 18.5,8.5 + parent: 1 + type: Transform + - uid: 11240 + components: + - pos: 19.5,8.5 + parent: 1 + type: Transform + - uid: 11241 + components: + - pos: 20.5,8.5 + parent: 1 + type: Transform + - uid: 11242 + components: + - pos: 21.5,8.5 + parent: 1 + type: Transform + - uid: 11243 + components: + - pos: 21.5,7.5 + parent: 1 + type: Transform + - uid: 11244 + components: + - pos: 21.5,6.5 + parent: 1 + type: Transform + - uid: 11282 + components: + - pos: 13.5,-1.5 + parent: 1 + type: Transform + - uid: 11283 + components: + - pos: 14.5,-1.5 + parent: 1 + type: Transform + - uid: 11284 + components: + - pos: 15.5,-1.5 + parent: 1 + type: Transform + - uid: 11285 + components: + - pos: 16.5,-1.5 + parent: 1 + type: Transform + - uid: 11286 + components: + - pos: 17.5,-1.5 + parent: 1 + type: Transform + - uid: 11287 + components: + - pos: 18.5,-1.5 + parent: 1 + type: Transform + - uid: 11288 + components: + - pos: 18.5,-0.5 + parent: 1 + type: Transform + - uid: 11378 + components: + - pos: -4.5,74.5 + parent: 1 + type: Transform + - uid: 11379 + components: + - pos: -3.5,74.5 + parent: 1 + type: Transform + - uid: 11380 + components: + - pos: -3.5,75.5 + parent: 1 + type: Transform + - 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 + - uid: 11388 + components: + - pos: -9.5,77.5 + parent: 1 + type: Transform + - uid: 11389 + components: + - pos: -9.5,78.5 + parent: 1 + type: Transform + - uid: 11390 + components: + - pos: -8.5,78.5 + parent: 1 + type: Transform + - uid: 11391 + components: + - pos: -8.5,79.5 + parent: 1 + type: Transform + - uid: 11392 + components: + - pos: -8.5,80.5 + parent: 1 + type: Transform + - uid: 11393 + components: + - pos: -8.5,81.5 + parent: 1 + type: Transform + - uid: 11394 + components: + - pos: -7.5,81.5 + parent: 1 + type: Transform + - uid: 11395 + components: + - pos: -7.5,82.5 + parent: 1 + type: Transform + - uid: 11396 + components: + - pos: -7.5,83.5 + parent: 1 + type: Transform + - uid: 11397 + components: + - pos: -6.5,83.5 + parent: 1 + type: Transform + - uid: 11398 + components: + - pos: -5.5,83.5 + parent: 1 + type: Transform + - uid: 11399 + components: + - pos: -4.5,83.5 + parent: 1 + type: Transform + - uid: 11400 + components: + - pos: -4.5,84.5 + parent: 1 + type: Transform + - uid: 11401 + components: + - pos: -3.5,84.5 + parent: 1 + type: Transform + - uid: 11402 + components: + - pos: -2.5,84.5 + parent: 1 + type: Transform + - uid: 11403 + components: + - pos: -1.5,84.5 + parent: 1 + type: Transform + - uid: 11404 + components: + - pos: -0.5,84.5 + parent: 1 + type: Transform + - uid: 11405 + components: + - pos: 0.5,84.5 + parent: 1 + type: Transform + - uid: 11406 + components: + - pos: 1.5,84.5 + parent: 1 + type: Transform + - uid: 11407 + components: + - pos: 2.5,84.5 + parent: 1 + type: Transform + - uid: 11408 + components: + - pos: 3.5,84.5 + parent: 1 + type: Transform + - uid: 11409 + components: + - pos: 3.5,83.5 + parent: 1 + type: Transform + - uid: 11410 + components: + - pos: 4.5,83.5 + parent: 1 + type: Transform + - uid: 11411 + components: + - pos: 5.5,83.5 + parent: 1 + type: Transform + - uid: 11412 + components: + - pos: 6.5,83.5 + parent: 1 + type: Transform + - uid: 11413 + components: + - pos: 6.5,82.5 + parent: 1 + type: Transform + - uid: 11414 + components: + - pos: 6.5,81.5 + parent: 1 + type: Transform + - uid: 11415 + components: + - pos: 7.5,81.5 + parent: 1 + type: Transform + - uid: 11416 + components: + - pos: 7.5,80.5 + parent: 1 + type: Transform + - uid: 11417 + components: + - pos: 7.5,79.5 + parent: 1 + type: Transform + - uid: 11418 + components: + - pos: 7.5,78.5 + parent: 1 + type: Transform + - uid: 11419 + components: + - pos: 8.5,78.5 + parent: 1 + type: Transform + - uid: 11420 + components: + - pos: 8.5,77.5 + parent: 1 + type: Transform + - uid: 11421 + components: + - pos: 8.5,76.5 + parent: 1 + type: Transform + - uid: 11422 + components: + - pos: 8.5,75.5 + parent: 1 + type: Transform + - uid: 11423 + components: + - pos: 7.5,75.5 + parent: 1 + type: Transform + - uid: 11424 + components: + - pos: 6.5,75.5 + parent: 1 + type: Transform + - uid: 11553 + components: + - pos: -24.5,50.5 + parent: 1 + type: Transform + - uid: 11554 + components: + - pos: -24.5,49.5 + parent: 1 + type: Transform + - uid: 11555 + components: + - pos: -24.5,51.5 + parent: 1 + type: Transform + - uid: 11556 + components: + - pos: -24.5,52.5 + parent: 1 + type: Transform + - uid: 11557 + components: + - pos: -24.5,53.5 + parent: 1 + type: Transform + - uid: 11558 + components: + - pos: -24.5,54.5 + parent: 1 + type: Transform + - uid: 11559 + components: + - pos: -24.5,55.5 + parent: 1 + type: Transform + - uid: 11560 + components: + - pos: -24.5,56.5 + parent: 1 + type: Transform + - uid: 11561 + components: + - pos: -24.5,57.5 + parent: 1 + type: Transform + - uid: 11562 + components: + - pos: -23.5,57.5 + parent: 1 + type: Transform + - uid: 11563 + components: + - pos: -22.5,57.5 + parent: 1 + type: Transform + - uid: 11564 + components: + - pos: -21.5,57.5 + parent: 1 + type: Transform + - uid: 11565 + components: + - pos: -21.5,56.5 + parent: 1 + type: Transform + - uid: 11566 + components: + - pos: -21.5,55.5 + parent: 1 + type: Transform + - uid: 11567 + components: + - pos: -21.5,54.5 + parent: 1 + type: Transform + - uid: 11568 + components: + - pos: -21.5,53.5 + parent: 1 + type: Transform + - uid: 11569 + components: + - pos: -21.5,52.5 + parent: 1 + type: Transform + - uid: 11570 + components: + - pos: -21.5,51.5 + parent: 1 + type: Transform + - uid: 11571 + components: + - pos: -21.5,50.5 + parent: 1 + type: Transform + - uid: 11572 + components: + - pos: -20.5,50.5 + parent: 1 + type: Transform + - 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 + - uid: 11577 + components: + - pos: -43.5,46.5 + parent: 1 + type: Transform + - uid: 11578 + components: + - pos: -43.5,47.5 + parent: 1 + type: Transform + - uid: 11579 + components: + - pos: -43.5,48.5 + parent: 1 + type: Transform + - uid: 11580 + components: + - pos: -43.5,49.5 + parent: 1 + type: Transform + - uid: 11581 + components: + - pos: -43.5,50.5 + parent: 1 + type: Transform + - uid: 11582 + components: + - pos: -43.5,51.5 + parent: 1 + type: Transform + - uid: 11583 + components: + - pos: -41.5,51.5 + parent: 1 + type: Transform + - uid: 11584 + components: + - pos: -42.5,51.5 + parent: 1 + type: Transform + - uid: 11585 + components: + - pos: -40.5,51.5 + parent: 1 + type: Transform + - uid: 11586 + components: + - pos: -40.5,52.5 + parent: 1 + type: Transform + - uid: 11587 + components: + - pos: -39.5,52.5 + parent: 1 + type: Transform + - uid: 11588 + components: + - pos: -38.5,52.5 + parent: 1 + type: Transform + - uid: 11589 + components: + - pos: -37.5,52.5 + parent: 1 + type: Transform + - uid: 11590 + components: + - pos: -36.5,52.5 + parent: 1 + type: Transform + - uid: 11591 + components: + - pos: -35.5,52.5 + parent: 1 + type: Transform + - uid: 11592 + components: + - pos: -34.5,52.5 + parent: 1 + type: Transform + - uid: 11593 + components: + - pos: -33.5,52.5 + parent: 1 + type: Transform + - uid: 11594 + components: + - pos: -32.5,52.5 + parent: 1 + type: Transform + - uid: 11595 + components: + - pos: -31.5,52.5 + parent: 1 + type: Transform + - uid: 11596 + components: + - pos: -30.5,52.5 + parent: 1 + type: Transform + - uid: 11597 + components: + - pos: -29.5,52.5 + parent: 1 + type: Transform + - uid: 11598 + components: + - pos: -28.5,52.5 + parent: 1 + type: Transform + - uid: 11599 + components: + - pos: -27.5,52.5 + parent: 1 + type: Transform + - uid: 11600 + components: + - pos: -27.5,53.5 + parent: 1 + type: Transform + - uid: 11601 + components: + - pos: -27.5,54.5 + parent: 1 + type: Transform + - uid: 11602 + components: + - pos: -27.5,55.5 + parent: 1 + type: Transform + - uid: 11603 + components: + - pos: -27.5,56.5 + parent: 1 + type: Transform + - uid: 11604 + components: + - pos: -27.5,57.5 + parent: 1 + type: Transform + - uid: 11605 + components: + - pos: -30.5,57.5 + parent: 1 + type: Transform + - uid: 11606 + components: + - pos: -30.5,56.5 + parent: 1 + type: Transform + - uid: 11607 + components: + - pos: -29.5,56.5 + parent: 1 + type: Transform + - uid: 11608 + components: + - pos: -26.5,57.5 + parent: 1 + type: Transform + - uid: 11609 + components: + - pos: -25.5,57.5 + parent: 1 + type: Transform + - 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 + - uid: 12020 + components: + - pos: -28.5,56.5 + parent: 1 + type: Transform + - uid: 12028 + components: + - pos: -21.5,30.5 + parent: 1 + type: Transform + - uid: 12029 + components: + - pos: -20.5,30.5 + parent: 1 + type: Transform + - uid: 12030 + components: + - pos: -20.5,31.5 + parent: 1 + type: Transform + - uid: 12031 + components: + - pos: -20.5,29.5 + parent: 1 + type: Transform + - uid: 12032 + components: + - pos: -20.5,28.5 + parent: 1 + type: Transform + - uid: 12033 + components: + - pos: -20.5,27.5 + parent: 1 + type: Transform + - 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 + - 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 + - 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 + - uid: 12236 + components: + - pos: -21.5,27.5 + parent: 1 + type: Transform + - uid: 12237 + components: + - pos: -22.5,27.5 + parent: 1 + type: Transform + - uid: 12238 + components: + - pos: -23.5,27.5 + parent: 1 + type: Transform + - uid: 12239 + components: + - pos: -23.5,28.5 + parent: 1 + type: Transform + - uid: 12240 + components: + - pos: -23.5,29.5 + parent: 1 + type: Transform + - uid: 12241 + components: + - pos: -23.5,30.5 + parent: 1 + type: Transform + - uid: 12242 + components: + - pos: -23.5,31.5 + parent: 1 + type: Transform + - uid: 12243 + components: + - pos: -23.5,32.5 + parent: 1 + type: Transform + - uid: 12244 + components: + - pos: -24.5,32.5 + parent: 1 + type: Transform + - uid: 12245 + components: + - pos: -25.5,32.5 + parent: 1 + type: Transform + - uid: 12290 + components: + - pos: -23.5,33.5 + parent: 1 + type: Transform + - uid: 12291 + components: + - pos: -23.5,34.5 + parent: 1 + type: Transform + - 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 + - uid: 12311 + components: + - pos: -38.5,33.5 + parent: 1 + type: Transform + - uid: 12312 + components: + - pos: -37.5,33.5 + parent: 1 + type: Transform + - uid: 12313 + components: + - pos: -36.5,33.5 + parent: 1 + type: Transform + - uid: 12314 + components: + - pos: -35.5,33.5 + parent: 1 + type: Transform + - uid: 12315 + components: + - pos: -34.5,33.5 + parent: 1 + type: Transform + - uid: 12316 + components: + - pos: -34.5,32.5 + parent: 1 + type: Transform + - uid: 12317 + components: + - pos: -34.5,31.5 + parent: 1 + type: Transform + - uid: 12318 + components: + - pos: -34.5,30.5 + parent: 1 + type: Transform + - uid: 12319 + components: + - pos: -34.5,29.5 + parent: 1 + type: Transform + - uid: 12320 + components: + - pos: -34.5,28.5 + parent: 1 + type: Transform + - uid: 12321 + components: + - pos: -34.5,27.5 + parent: 1 + type: Transform + - uid: 12322 + components: + - pos: -34.5,26.5 + parent: 1 + type: Transform + - uid: 12323 + components: + - pos: -34.5,25.5 + parent: 1 + type: Transform + - uid: 12324 + components: + - pos: -35.5,25.5 + parent: 1 + type: Transform + - uid: 12409 + components: + - pos: 20.5,54.5 + parent: 1 + type: Transform + - uid: 12410 + components: + - pos: 20.5,53.5 + parent: 1 + type: Transform + - uid: 12411 + components: + - pos: 20.5,52.5 + parent: 1 + type: Transform + - uid: 12412 + components: + - pos: 19.5,52.5 + parent: 1 + type: Transform + - uid: 12413 + components: + - pos: 18.5,52.5 + parent: 1 + type: Transform + - uid: 12414 + components: + - pos: 17.5,52.5 + parent: 1 + type: Transform + - uid: 12415 + components: + - pos: 16.5,52.5 + parent: 1 + type: Transform + - uid: 12416 + components: + - pos: 16.5,53.5 + parent: 1 + type: Transform + - uid: 12417 + components: + - pos: 16.5,54.5 + parent: 1 + type: Transform + - uid: 12418 + components: + - pos: 16.5,55.5 + parent: 1 + type: Transform + - uid: 12419 + components: + - pos: 16.5,56.5 + parent: 1 + type: Transform + - uid: 12420 + components: + - pos: 17.5,56.5 + parent: 1 + type: Transform + - uid: 12421 + components: + - pos: 18.5,56.5 + parent: 1 + type: Transform + - uid: 12422 + components: + - pos: 19.5,56.5 + parent: 1 + type: Transform + - uid: 12423 + components: + - pos: 19.5,57.5 + parent: 1 + type: Transform + - uid: 12424 + components: + - pos: 19.5,58.5 + parent: 1 + type: Transform + - uid: 12425 + components: + - pos: 18.5,58.5 + parent: 1 + type: Transform + - uid: 12426 + components: + - pos: 18.5,59.5 + parent: 1 + type: Transform + - uid: 12427 + components: + - pos: 18.5,60.5 + parent: 1 + type: Transform + - uid: 12428 + components: + - pos: 18.5,61.5 + parent: 1 + type: Transform + - uid: 12429 + components: + - pos: 18.5,62.5 + parent: 1 + type: Transform + - uid: 12430 + components: + - pos: 18.5,63.5 + parent: 1 + type: Transform + - uid: 12431 + components: + - pos: 17.5,63.5 + parent: 1 + type: Transform + - uid: 12432 + components: + - pos: 16.5,63.5 + parent: 1 + type: Transform + - uid: 12433 + components: + - pos: 15.5,63.5 + parent: 1 + type: Transform + - uid: 12434 + components: + - pos: 14.5,63.5 + parent: 1 + type: Transform + - uid: 12435 + components: + - pos: 13.5,63.5 + parent: 1 + type: Transform + - uid: 12436 + components: + - pos: 12.5,63.5 + parent: 1 + type: Transform + - uid: 12437 + components: + - pos: 11.5,63.5 + parent: 1 + type: Transform + - uid: 12438 + components: + - pos: 10.5,63.5 + parent: 1 + type: Transform + - uid: 12439 + components: + - pos: 10.5,62.5 + parent: 1 + type: Transform + - uid: 12440 + components: + - pos: 16.5,51.5 + parent: 1 + type: Transform + - uid: 12441 + components: + - pos: 16.5,50.5 + parent: 1 + type: Transform + - uid: 12442 + components: + - pos: 16.5,49.5 + parent: 1 + type: Transform + - uid: 12443 + components: + - pos: 17.5,49.5 + parent: 1 + type: Transform + - uid: 12444 + components: + - pos: 18.5,49.5 + parent: 1 + type: Transform + - uid: 12445 + components: + - pos: 19.5,49.5 + parent: 1 + type: Transform + - uid: 12446 + components: + - pos: 20.5,49.5 + parent: 1 + type: Transform + - uid: 12447 + components: + - pos: 21.5,49.5 + parent: 1 + type: Transform + - uid: 12448 + components: + - pos: 22.5,49.5 + parent: 1 + type: Transform + - uid: 12449 + components: + - pos: 22.5,48.5 + parent: 1 + type: Transform + - uid: 12450 + components: + - pos: 22.5,47.5 + parent: 1 + type: Transform + - uid: 12451 + components: + - pos: 22.5,46.5 + parent: 1 + type: Transform + - uid: 12452 + components: + - pos: 22.5,45.5 + parent: 1 + type: Transform + - uid: 12453 + components: + - pos: 23.5,45.5 + parent: 1 + type: Transform + - uid: 12454 + components: + - pos: 24.5,45.5 + parent: 1 + type: Transform + - uid: 12455 + components: + - pos: 25.5,45.5 + parent: 1 + type: Transform + - uid: 12456 + components: + - pos: 25.5,44.5 + parent: 1 + type: Transform + - uid: 12457 + components: + - pos: 25.5,43.5 + parent: 1 + type: Transform + - uid: 12458 + components: + - pos: 25.5,42.5 + parent: 1 + type: Transform + - uid: 12459 + components: + - pos: 24.5,42.5 + parent: 1 + type: Transform + - uid: 12461 + components: + - pos: 6.5,46.5 + parent: 1 + type: Transform + - 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 + - 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 + - uid: 12499 + components: + - pos: 17.5,58.5 + parent: 1 + type: Transform + - uid: 12500 + components: + - pos: 20.5,56.5 + parent: 1 + type: Transform + - uid: 12501 + components: + - pos: 21.5,56.5 + parent: 1 + type: Transform + - uid: 12502 + components: + - pos: 22.5,56.5 + parent: 1 + type: Transform + - uid: 12503 + components: + - pos: 22.5,57.5 + parent: 1 + type: Transform + - uid: 12504 + components: + - pos: 23.5,57.5 + parent: 1 + type: Transform + - uid: 12505 + components: + - pos: 24.5,57.5 + parent: 1 + type: Transform + - uid: 12506 + components: + - pos: 25.5,57.5 + parent: 1 + type: Transform + - uid: 12507 + components: + - pos: 26.5,57.5 + parent: 1 + type: Transform + - uid: 12508 + components: + - pos: 27.5,57.5 + parent: 1 + type: Transform + - uid: 12509 + components: + - pos: 28.5,57.5 + parent: 1 + type: Transform + - uid: 12510 + components: + - pos: 28.5,56.5 + parent: 1 + type: Transform + - uid: 12511 + components: + - pos: 28.5,55.5 + parent: 1 + type: Transform + - uid: 12512 + components: + - pos: 28.5,54.5 + parent: 1 + type: Transform + - uid: 12513 + components: + - pos: 28.5,53.5 + parent: 1 + type: Transform + - uid: 12514 + components: + - pos: 28.5,52.5 + parent: 1 + type: Transform + - uid: 12515 + components: + - pos: 28.5,51.5 + parent: 1 + type: Transform + - uid: 12516 + components: + - pos: 27.5,51.5 + parent: 1 + type: Transform + - uid: 12517 + components: + - pos: 29.5,52.5 + parent: 1 + type: Transform + - uid: 12518 + components: + - pos: 29.5,51.5 + parent: 1 + type: Transform + - uid: 12519 + components: + - pos: 30.5,51.5 + parent: 1 + type: Transform + - uid: 12520 + components: + - pos: 31.5,51.5 + parent: 1 + type: Transform + - uid: 12521 + components: + - pos: 32.5,51.5 + parent: 1 + type: Transform + - uid: 12522 + components: + - pos: 33.5,51.5 + parent: 1 + type: Transform + - uid: 12523 + components: + - pos: 34.5,51.5 + parent: 1 + type: Transform + - uid: 12524 + components: + - pos: 35.5,51.5 + parent: 1 + type: Transform + - uid: 12525 + components: + - pos: 36.5,51.5 + parent: 1 + type: Transform + - uid: 12526 + components: + - pos: 36.5,50.5 + parent: 1 + type: Transform + - uid: 12527 + components: + - pos: 36.5,49.5 + parent: 1 + type: Transform + - uid: 12528 + components: + - pos: 36.5,48.5 + parent: 1 + type: Transform + - uid: 12529 + components: + - pos: 36.5,47.5 + parent: 1 + type: Transform + - uid: 12530 + components: + - pos: 36.5,46.5 + parent: 1 + type: Transform + - uid: 12531 + components: + - pos: 36.5,45.5 + parent: 1 + type: Transform + - uid: 12532 + components: + - pos: 36.5,44.5 + parent: 1 + type: Transform + - uid: 12533 + components: + - pos: 36.5,43.5 + parent: 1 + type: Transform + - uid: 12534 + components: + - pos: 36.5,42.5 + parent: 1 + type: Transform + - uid: 12535 + components: + - pos: 36.5,41.5 + parent: 1 + type: Transform + - uid: 12536 + components: + - pos: 36.5,40.5 + parent: 1 + type: Transform + - uid: 12537 + components: + - pos: 37.5,40.5 + parent: 1 + type: Transform + - uid: 12538 + components: + - pos: 38.5,40.5 + parent: 1 + type: Transform + - uid: 12539 + components: + - pos: 39.5,40.5 + parent: 1 + type: Transform + - 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 + - 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 + - uid: 12870 + components: + - pos: 14.5,23.5 + parent: 1 + type: Transform + - uid: 12871 + components: + - pos: 14.5,22.5 + parent: 1 + type: Transform + - uid: 12872 + components: + - pos: 15.5,22.5 + parent: 1 + type: Transform + - uid: 12873 + components: + - pos: 16.5,22.5 + parent: 1 + type: Transform + - uid: 12874 + components: + - pos: 17.5,22.5 + parent: 1 + type: Transform + - uid: 12875 + components: + - pos: 18.5,22.5 + parent: 1 + type: Transform + - uid: 12876 + components: + - pos: 19.5,22.5 + parent: 1 + type: Transform + - uid: 12877 + components: + - pos: 19.5,21.5 + parent: 1 + type: Transform + - uid: 12878 + components: + - pos: 19.5,20.5 + parent: 1 + type: Transform + - uid: 12879 + components: + - pos: 19.5,19.5 + parent: 1 + type: Transform + - uid: 12880 + components: + - pos: 18.5,19.5 + parent: 1 + type: Transform + - uid: 12881 + components: + - pos: 17.5,19.5 + parent: 1 + type: Transform + - uid: 12882 + components: + - pos: 19.5,23.5 + parent: 1 + type: Transform + - uid: 12883 + components: + - pos: 19.5,24.5 + parent: 1 + type: Transform + - uid: 12884 + components: + - pos: 20.5,24.5 + parent: 1 + type: Transform + - uid: 12885 + components: + - pos: 21.5,24.5 + parent: 1 + type: Transform + - uid: 12886 + components: + - pos: 22.5,24.5 + parent: 1 + type: Transform + - uid: 12887 + components: + - pos: 23.5,24.5 + parent: 1 + type: Transform + - uid: 12888 + components: + - pos: 24.5,24.5 + parent: 1 + type: Transform + - uid: 12889 + components: + - pos: 24.5,23.5 + parent: 1 + type: Transform + - uid: 12890 + components: + - pos: 24.5,25.5 + parent: 1 + type: Transform + - uid: 12891 + components: + - pos: 24.5,26.5 + parent: 1 + type: Transform + - uid: 12892 + components: + - pos: 24.5,27.5 + parent: 1 + type: Transform + - 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 + - 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 + - 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 + - uid: 13491 + components: + - pos: -7.5,-16.5 + parent: 1 + type: Transform + - uid: 13497 + components: + - pos: -25.5,-0.5 + parent: 1 + type: Transform + - uid: 13498 + components: + - pos: -25.5,-1.5 + parent: 1 + type: Transform + - uid: 13499 + components: + - pos: -25.5,-2.5 + parent: 1 + type: Transform + - uid: 13500 + components: + - pos: -24.5,-2.5 + parent: 1 + type: Transform + - uid: 13501 + components: + - pos: -23.5,-2.5 + parent: 1 + type: Transform + - uid: 13502 + components: + - pos: -22.5,-2.5 + parent: 1 + type: Transform + - uid: 13503 + components: + - pos: -21.5,-2.5 + parent: 1 + type: Transform + - uid: 13504 + components: + - pos: -20.5,-2.5 + parent: 1 + type: Transform + - uid: 13505 + components: + - pos: -19.5,-2.5 + parent: 1 + type: Transform + - uid: 13506 + components: + - pos: -19.5,-1.5 + parent: 1 + type: Transform + - uid: 13507 + components: + - pos: -19.5,-0.5 + parent: 1 + type: Transform + - uid: 13508 + components: + - pos: -19.5,0.5 + parent: 1 + type: Transform + - uid: 13509 + components: + - pos: -19.5,1.5 + parent: 1 + type: Transform + - uid: 13510 + components: + - pos: -19.5,2.5 + parent: 1 + type: Transform + - uid: 13511 + components: + - pos: -19.5,3.5 + parent: 1 + type: Transform + - uid: 13512 + components: + - pos: -19.5,4.5 + parent: 1 + type: Transform + - uid: 13513 + components: + - pos: -19.5,5.5 + parent: 1 + type: Transform + - uid: 13514 + components: + - pos: -19.5,6.5 + parent: 1 + type: Transform + - uid: 13515 + components: + - pos: -19.5,7.5 + parent: 1 + type: Transform + - uid: 13516 + components: + - pos: -20.5,7.5 + parent: 1 + type: Transform + - uid: 13517 + components: + - pos: -21.5,7.5 + parent: 1 + type: Transform + - uid: 13518 + components: + - pos: -21.5,8.5 + parent: 1 + type: Transform + - 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 + - uid: 13533 + components: + - pos: -21.5,-1.5 + parent: 1 + type: Transform + - 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 + - uid: 18341 + components: + - pos: -9.5,73.5 + parent: 1 + type: Transform + - uid: 18342 + components: + - pos: -9.5,72.5 + parent: 1 + type: Transform + - uid: 18343 + components: + - pos: -9.5,75.5 + parent: 1 + type: Transform + - 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 + - uid: 18474 + components: + - pos: 15.5,-11.5 + parent: 1 + type: Transform + - uid: 18475 + components: + - pos: 15.5,-10.5 + parent: 1 + type: Transform +- 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: 9200 + components: + - pos: -45.5,4.5 + parent: 1 + type: Transform + - uid: 9201 + components: + - pos: -46.5,4.5 + parent: 1 + type: Transform + - uid: 9202 + components: + - pos: -45.5,2.5 + parent: 1 + type: Transform + - uid: 9308 + components: + - pos: -46.5,2.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: 9626 + components: + - pos: -38.5,-4.5 + parent: 1 + type: Transform + - uid: 9627 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-7.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: ClosetChefFilled + entities: + - uid: 2695 + components: + - pos: 8.5,0.5 + parent: 1 + type: Transform +- 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: ClothingBeltUtility + entities: + - uid: 9621 + components: + - pos: -43.50088,-2.459965 + 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: 252 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,1.5 + parent: 1 + type: Transform + - links: + - 7815 + type: DeviceLinkSink + - uid: 459 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,5.5 + parent: 1 + type: Transform + - links: + - 8179 + type: DeviceLinkSink + - uid: 460 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,5.5 + parent: 1 + type: Transform + - links: + - 8179 + type: DeviceLinkSink + - uid: 461 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,5.5 + parent: 1 + type: Transform + - links: + - 8179 + type: DeviceLinkSink + - uid: 1767 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,24.5 + parent: 1 + type: Transform + - links: + - 7918 + - 7808 + type: DeviceLinkSink + - uid: 2127 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,5.5 + parent: 1 + type: Transform + - links: + - 8179 + type: DeviceLinkSink + - uid: 2722 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,5.5 + parent: 1 + type: Transform + - links: + - 8179 + type: DeviceLinkSink + - uid: 2723 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,1.5 + parent: 1 + type: Transform + - links: + - 7815 + 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: 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: 7254 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,1.5 + parent: 1 + type: Transform + - links: + - 7815 + type: DeviceLinkSink + - uid: 7291 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,1.5 + parent: 1 + type: Transform + - links: + - 7815 + type: DeviceLinkSink + - uid: 7704 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,1.5 + parent: 1 + type: Transform + - links: + - 7815 + 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: 9317 + components: + - pos: -41.5,0.5 + parent: 1 + type: Transform + - uid: 9318 + components: + - pos: -39.5,0.5 + parent: 1 + type: Transform + - uid: 9319 + components: + - pos: -39.5,1.5 + parent: 1 + type: Transform + - uid: 9320 + components: + - pos: -40.5,1.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: -40.5,0.5 + parent: 1 + type: Transform + - uid: 9312 + components: + - pos: -41.5,1.5 + parent: 1 + type: Transform + - uid: 9313 + components: + - pos: -41.5,2.5 + parent: 1 + type: Transform + - uid: 9314 + components: + - pos: -39.5,3.5 + parent: 1 + type: Transform + - uid: 9315 + components: + - pos: -39.5,4.5 + parent: 1 + type: Transform + - uid: 9316 + components: + - pos: -40.5,4.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: 9363 + components: + - pos: -40.5,3.5 + parent: 1 + type: Transform +- proto: CrateMedicalSurgery + entities: + - uid: 1663 + components: + - pos: 18.5,26.5 + parent: 1 + type: Transform +- proto: CrateMindShieldImplants + entities: + - uid: 256 + components: + - pos: -8.5,64.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: CrateServiceBureaucracy + entities: + - uid: 9321 + components: + - pos: -40.5,2.5 + parent: 1 + type: Transform +- 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: + - pos: -19.5,44.5 + parent: 1 + type: Transform + - uid: 4384 + components: + - pos: -19.5,45.5 + parent: 1 + type: Transform + - uid: 4386 + components: + - 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.309154,2.9839857 + 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 + - uid: 9632 + components: + - pos: -42.65752,-7.2487845 + parent: 1 + type: Transform + - uid: 9633 + components: + - pos: -42.641895,-7.3894095 + 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 + - type: ActiveEmergencyLight + - uid: 11341 + components: + - pos: -18.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 11342 + components: + - pos: 18.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 11343 + components: + - pos: 44.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 11344 + components: + - rot: 3.141592653589793 rad + pos: 44.5,13.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 11345 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,2.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 11346 + components: + - pos: 18.5,15.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 11347 + components: + - rot: 3.141592653589793 rad + pos: -0.5,13.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 11348 + components: + - pos: -18.5,15.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 11349 + components: + - rot: 3.141592653589793 rad + pos: -44.5,13.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 11350 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,0.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 11351 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,0.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 11352 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 11353 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-0.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 11354 + components: + - pos: 12.5,38.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 11355 + components: + - pos: -8.5,38.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 11356 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 11357 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 11358 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,40.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 11359 + components: + - rot: 3.141592653589793 rad + pos: -34.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 11360 + components: + - pos: -2.5,57.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 11361 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,50.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 11362 + components: + - pos: -33.5,49.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 11363 + components: + - pos: -7.5,64.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 11364 + components: + - pos: 11.5,61.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 11366 + components: + - rot: 3.141592653589793 rad + pos: -6.5,72.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 11367 + components: + - rot: 3.141592653589793 rad + pos: 4.5,70.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 11369 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 11370 + components: + - pos: -16.5,25.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 11371 + components: + - rot: 3.141592653589793 rad + pos: -15.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 11372 + components: + - pos: 24.5,22.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 11373 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,46.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 11374 + components: + - rot: 3.141592653589793 rad + pos: 44.5,36.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 13994 + components: + - pos: -0.5,68.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 13995 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,7.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 13996 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,26.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 14091 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,78.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 14219 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,78.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 18156 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,43.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 18157 + components: + - pos: -20.5,38.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 18158 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,19.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 18159 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,7.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 18160 + components: + - pos: -25.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 18161 + components: + - pos: -9.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 18162 + components: + - pos: 8.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 18163 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,4.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 18164 + components: + - rot: 3.141592653589793 rad + pos: 28.5,13.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 18165 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,33.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 18166 + components: + - pos: 35.5,38.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 18167 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,41.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 18168 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,44.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 18169 + components: + - pos: -0.5,83.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 18170 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,54.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - 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: 5532 + components: + - pos: -37.5,0.5 + parent: 1 + type: Transform + - 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: 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: FoodBanana + entities: + - uid: 9661 + components: + - pos: -16.203074,-0.3446604 + parent: 1 + type: Transform + - uid: 9662 + components: + - pos: -16.203074,-0.3446604 + parent: 1 + type: Transform + - uid: 9663 + components: + - pos: -16.203074,-0.3446604 + 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: FoodBoxDonkpocket + entities: + - uid: 9631 + components: + - pos: -42.173145,-7.3112845 + 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.65722,2.8053331 + 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: FoodBurgerBig + entities: + - uid: 2726 + components: + - pos: -38.561558,-5.6145735 + parent: 1 + type: Transform +- proto: FoodBurgerCrazy + entities: + - uid: 9637 + components: + - pos: -18.525078,-21.779133 + 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 +- 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: 2346 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-43.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2572 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-20.5 + parent: 1 + type: Transform + - uid: 2573 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-22.5 + parent: 1 + type: Transform + - uid: 2574 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-24.5 + parent: 1 + type: Transform + - uid: 2575 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-26.5 + parent: 1 + type: Transform + - uid: 2576 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-28.5 + parent: 1 + type: Transform + - uid: 2577 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-30.5 + parent: 1 + type: Transform + - uid: 2611 + components: + - pos: -6.5,-43.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 2717 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-45.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2730 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-45.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - 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 + - uid: 2960 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-45.5 + parent: 1 + type: Transform + - uid: 4140 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-45.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + type: AtmosPipeColor + - uid: 4142 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-45.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - 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 + - 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 + - uid: 10881 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10885 + components: + - pos: 30.5,-15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10891 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13857 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,52.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13859 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,52.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13862 + components: + - rot: 3.141592653589793 rad + pos: 16.5,49.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13868 + components: + - pos: 22.5,49.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13872 + components: + - rot: 3.141592653589793 rad + pos: 22.5,45.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13875 + components: + - pos: 25.5,45.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - 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 + - 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 + - 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 + - uid: 15081 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,51.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - 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 + - uid: 18144 + components: + - pos: -19.5,-2.5 + parent: 1 + type: Transform + - uid: 18147 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-5.5 + parent: 1 + type: Transform + - uid: 18154 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-5.5 + parent: 1 + type: Transform + - 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 + - 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 + - uid: 2543 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-20.5 + parent: 1 + type: Transform + - uid: 2544 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-20.5 + parent: 1 + type: Transform + - uid: 2545 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-20.5 + parent: 1 + type: Transform + - uid: 2546 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-20.5 + parent: 1 + type: Transform + - uid: 2547 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-22.5 + parent: 1 + type: Transform + - uid: 2548 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-22.5 + parent: 1 + type: Transform + - uid: 2549 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-22.5 + parent: 1 + type: Transform + - uid: 2550 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-22.5 + parent: 1 + type: Transform + - uid: 2551 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-22.5 + parent: 1 + type: Transform + - uid: 2552 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-24.5 + parent: 1 + type: Transform + - uid: 2553 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-24.5 + parent: 1 + type: Transform + - uid: 2554 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-24.5 + parent: 1 + type: Transform + - uid: 2555 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-24.5 + parent: 1 + type: Transform + - uid: 2556 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-24.5 + parent: 1 + type: Transform + - uid: 2557 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-26.5 + parent: 1 + type: Transform + - uid: 2558 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-26.5 + parent: 1 + type: Transform + - uid: 2559 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-26.5 + parent: 1 + type: Transform + - uid: 2560 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-26.5 + parent: 1 + type: Transform + - uid: 2561 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-26.5 + parent: 1 + type: Transform + - uid: 2562 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-28.5 + parent: 1 + type: Transform + - uid: 2563 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-28.5 + parent: 1 + type: Transform + - uid: 2564 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-28.5 + parent: 1 + type: Transform + - uid: 2565 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-28.5 + parent: 1 + type: Transform + - uid: 2566 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-28.5 + parent: 1 + type: Transform + - uid: 2567 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-30.5 + parent: 1 + type: Transform + - uid: 2568 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-30.5 + parent: 1 + type: Transform + - uid: 2569 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-30.5 + parent: 1 + type: Transform + - uid: 2570 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-30.5 + parent: 1 + type: Transform + - uid: 2571 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-30.5 + parent: 1 + type: Transform + - uid: 2578 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-29.5 + parent: 1 + type: Transform + - uid: 2579 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-29.5 + parent: 1 + type: Transform + - uid: 2580 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-29.5 + parent: 1 + type: Transform + - uid: 2581 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-27.5 + parent: 1 + type: Transform + - uid: 2582 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-27.5 + parent: 1 + type: Transform + - uid: 2583 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-27.5 + parent: 1 + type: Transform + - uid: 2584 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-25.5 + parent: 1 + type: Transform + - uid: 2585 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-25.5 + parent: 1 + type: Transform + - uid: 2586 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-25.5 + parent: 1 + type: Transform + - uid: 2587 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-23.5 + parent: 1 + type: Transform + - uid: 2588 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-23.5 + parent: 1 + type: Transform + - uid: 2589 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-23.5 + parent: 1 + type: Transform + - uid: 2590 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-21.5 + parent: 1 + type: Transform + - uid: 2591 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-21.5 + parent: 1 + type: Transform + - uid: 2592 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-21.5 + parent: 1 + type: Transform + - uid: 2593 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-19.5 + parent: 1 + type: Transform + - uid: 2594 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-19.5 + parent: 1 + type: Transform + - uid: 2595 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-19.5 + parent: 1 + type: Transform + - uid: 2626 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-32.5 + parent: 1 + type: Transform + - uid: 2647 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-18.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - 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 + - uid: 2664 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-39.5 + parent: 1 + type: Transform + - uid: 2665 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-39.5 + parent: 1 + type: Transform + - uid: 2674 + components: + - pos: 0.5,-36.5 + parent: 1 + type: Transform + - uid: 2675 + components: + - pos: 0.5,-38.5 + parent: 1 + type: Transform + - uid: 2677 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-33.5 + parent: 1 + type: Transform + - uid: 2678 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-33.5 + parent: 1 + type: Transform + - uid: 2679 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-33.5 + parent: 1 + type: Transform + - uid: 2681 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-35.5 + parent: 1 + type: Transform + - uid: 2682 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-35.5 + parent: 1 + type: Transform + - uid: 2683 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-35.5 + parent: 1 + type: Transform + - uid: 2732 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - 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 + - 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 + - uid: 2954 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-44.5 + parent: 1 + type: Transform + - uid: 2955 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-45.5 + parent: 1 + type: Transform + - uid: 3540 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,30.5 + parent: 1 + type: Transform + - uid: 3541 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,30.5 + parent: 1 + type: Transform + - uid: 3542 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,28.5 + parent: 1 + type: Transform + - uid: 3543 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,28.5 + parent: 1 + type: Transform + - 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 + - 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 + - uid: 9197 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-41.5 + parent: 1 + type: Transform + - uid: 9198 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-41.5 + parent: 1 + type: Transform + - uid: 9725 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-18.5 + parent: 1 + type: Transform + - 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 + - uid: 10883 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10884 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-16.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10886 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10887 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10888 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10889 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10890 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10892 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10893 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10894 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10895 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - 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 + - uid: 13861 + components: + - pos: 16.5,50.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13863 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,49.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13864 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,49.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13865 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,49.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13866 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,49.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13867 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,49.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13869 + components: + - pos: 22.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13870 + components: + - pos: 22.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13871 + components: + - pos: 22.5,46.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13873 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,45.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13874 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,45.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13876 + components: + - pos: 25.5,44.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13877 + components: + - pos: 25.5,43.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13878 + components: + - pos: 25.5,42.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13879 + components: + - pos: 25.5,41.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 13880 + components: + - pos: 25.5,40.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - uid: 15127 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15128 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,41.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - uid: 16364 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-35.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - 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 + - 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 + - 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 + - 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 + - uid: 18143 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-2.5 + parent: 1 + type: Transform + - uid: 18145 + components: + - pos: -19.5,-3.5 + parent: 1 + type: Transform + - uid: 18146 + components: + - pos: -19.5,-4.5 + parent: 1 + type: Transform + - uid: 18148 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-5.5 + parent: 1 + type: Transform + - uid: 18149 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-5.5 + parent: 1 + type: Transform + - uid: 18150 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-5.5 + parent: 1 + type: Transform + - uid: 18151 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-5.5 + parent: 1 + type: Transform + - uid: 18152 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-5.5 + parent: 1 + type: Transform + - uid: 18153 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-5.5 + parent: 1 + type: Transform + - 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: 2300 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-43.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2630 + components: + - pos: -6.5,-18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - 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 + - uid: 2958 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-45.5 + parent: 1 + type: Transform + - 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: 9390 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-43.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + 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: 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: 4143 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-38.5 + parent: 1 + type: Transform + - uid: 4144 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-39.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: 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: 2710 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-38.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: 2709 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-39.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 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2676 + components: + - pos: 0.5,-37.5 + parent: 1 + type: Transform + - open: False + type: GasValve + - uid: 2959 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-44.5 + parent: 1 + type: Transform + - open: False + type: GasValve +- proto: GasVentPump + entities: + - uid: 2737 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2745 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-18.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2760 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 2773 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8694 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 9036 + components: + - pos: 11.5,31.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10903 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11931 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14224 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14254 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14286 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14295 + components: + - pos: 19.5,-5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14318 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14332 + components: + - pos: 6.5,-19.5 + parent: 1 + type: Transform + - uid: 14345 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-22.5 + parent: 1 + type: Transform + - uid: 14389 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-37.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14405 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-33.5 + parent: 1 + type: Transform + - uid: 14415 + components: + - pos: 6.5,-30.5 + parent: 1 + type: Transform + - uid: 14417 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-37.5 + parent: 1 + type: Transform + - uid: 14457 + components: + - rot: 3.141592653589793 rad + pos: 35.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14570 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14571 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14633 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14636 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14659 + components: + - pos: -6.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14682 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14685 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14696 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14712 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14720 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14748 + components: + - pos: 10.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14751 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14761 + components: + - pos: 25.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14772 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14793 + components: + - rot: 3.141592653589793 rad + pos: 48.5,-8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14807 + components: + - rot: 3.141592653589793 rad + pos: 35.5,-8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14815 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14827 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14840 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14844 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14856 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14880 + components: + - rot: 3.141592653589793 rad + pos: 48.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14900 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14906 + components: + - pos: 25.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14917 + components: + - rot: 3.141592653589793 rad + pos: 27.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14929 + components: + - rot: 3.141592653589793 rad + pos: 17.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14954 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 14988 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,41.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15002 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15030 + components: + - pos: 24.5,51.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15036 + components: + - rot: 3.141592653589793 rad + pos: 36.5,37.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15065 + components: + - pos: 43.5,42.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15066 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15075 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15095 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,37.5 + parent: 1 + type: Transform + - uid: 15101 + components: + - pos: 22.5,41.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15133 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,45.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15146 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,45.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15147 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,44.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15148 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,42.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15154 + components: + - rot: 3.141592653589793 rad + pos: 11.5,37.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15172 + components: + - rot: 3.141592653589793 rad + pos: 5.5,37.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15200 + components: + - rot: 3.141592653589793 rad + pos: -8.5,37.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15225 + components: + - rot: 3.141592653589793 rad + pos: -13.5,37.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15263 + components: + - rot: 3.141592653589793 rad + pos: -17.5,32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15266 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15284 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15295 + components: + - pos: -9.5,18.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15317 + components: + - pos: -4.5,22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15325 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15351 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15382 + components: + - rot: 3.141592653589793 rad + pos: 9.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15452 + components: + - rot: 3.141592653589793 rad + pos: -24.5,22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15457 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15460 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15480 + components: + - rot: 3.141592653589793 rad + pos: -10.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15499 + components: + - pos: 7.5,18.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15524 + components: + - pos: 4.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15544 + components: + - pos: 7.5,31.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15558 + components: + - pos: 20.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15566 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15579 + components: + - rot: 3.141592653589793 rad + pos: 9.5,27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15582 + components: + - pos: 15.5,31.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15609 + components: + - rot: 3.141592653589793 rad + pos: -22.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15669 + components: + - rot: 3.141592653589793 rad + pos: -47.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15681 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15695 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15700 + components: + - rot: 3.141592653589793 rad + pos: -34.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15710 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15713 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15728 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15743 + components: + - rot: 3.141592653589793 rad + pos: -36.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15774 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15775 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15778 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15826 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,30.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15827 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,31.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15828 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15860 + components: + - rot: 3.141592653589793 rad + pos: -22.5,37.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15909 + components: + - rot: 3.141592653589793 rad + pos: -49.5,37.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15910 + components: + - pos: -43.5,42.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15911 + components: + - rot: 3.141592653589793 rad + pos: -37.5,37.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15921 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,42.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15944 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15982 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,54.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16007 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16018 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,54.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16024 + components: + - pos: -6.5,56.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16037 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,63.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16040 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,60.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16049 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,59.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16094 + components: + - rot: 3.141592653589793 rad + pos: -16.5,41.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16141 + components: + - rot: 3.141592653589793 rad + pos: -17.5,45.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16157 + components: + - rot: 3.141592653589793 rad + pos: -31.5,44.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16158 + components: + - rot: 3.141592653589793 rad + pos: -28.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16175 + components: + - rot: 3.141592653589793 rad + pos: -25.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16183 + components: + - rot: 3.141592653589793 rad + pos: -3.5,41.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16184 + components: + - rot: 3.141592653589793 rad + pos: -6.5,41.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16185 + components: + - rot: 3.141592653589793 rad + pos: -9.5,41.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16186 + components: + - rot: 3.141592653589793 rad + pos: -12.5,41.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16195 + components: + - rot: 3.141592653589793 rad + pos: 6.5,55.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16206 + components: + - pos: 8.5,59.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16239 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,63.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16240 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,64.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16284 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,68.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16285 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,70.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16286 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,73.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16327 + components: + - pos: -6.5,79.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16328 + components: + - pos: 5.5,79.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16334 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,73.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16348 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,74.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16359 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 16374 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-34.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 17402 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,37.5 + parent: 1 + type: Transform + - uid: 17480 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,10.5 + parent: 1 + type: Transform + - uid: 18353 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-25.5 + parent: 1 + type: Transform +- proto: GasVentScrubber + entities: + - uid: 566 + components: + - pos: -7.5,37.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2740 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2741 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2759 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 2774 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 5390 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 9037 + components: + - pos: 10.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12901 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14225 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14285 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14296 + components: + - pos: 21.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14298 + components: + - pos: 17.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14312 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14319 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14333 + components: + - pos: 5.5,-19.5 + parent: 1 + type: Transform + - uid: 14344 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-23.5 + parent: 1 + type: Transform + - uid: 14366 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-24.5 + parent: 1 + type: Transform + - uid: 14404 + components: + - pos: 7.5,-30.5 + parent: 1 + type: Transform + - uid: 14416 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-33.5 + parent: 1 + type: Transform + - uid: 14569 + components: + - pos: -17.5,-17.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14572 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14635 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14660 + components: + - pos: -8.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14672 + components: + - pos: -11.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14683 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14697 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14711 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14717 + components: + - pos: 11.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14718 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14749 + components: + - pos: 6.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14750 + components: + - pos: -1.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14760 + components: + - pos: 26.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14771 + components: + - pos: 29.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14792 + components: + - pos: 46.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14808 + components: + - pos: 36.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14816 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14826 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14841 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14842 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14857 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14875 + components: + - pos: 36.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14879 + components: + - pos: 46.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14899 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14907 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14916 + components: + - pos: 28.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14928 + components: + - pos: 15.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14955 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14983 + components: + - rot: 3.141592653589793 rad + pos: 31.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 14987 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,40.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15001 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,47.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15028 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,49.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15029 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,47.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15031 + components: + - pos: 25.5,51.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15037 + components: + - pos: 35.5,37.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15054 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,43.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15067 + components: + - pos: 46.5,37.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15076 + components: + - rot: 3.141592653589793 rad + pos: 25.5,33.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15084 + components: + - pos: 32.5,54.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15094 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,37.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15102 + components: + - pos: 18.5,41.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15129 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,41.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15130 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15131 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,46.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15132 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,43.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15155 + components: + - pos: 10.5,37.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15173 + components: + - pos: 4.5,37.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15226 + components: + - pos: -15.5,37.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15264 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,32.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15265 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15283 + components: + - pos: -10.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15294 + components: + - rot: 3.141592653589793 rad + pos: -7.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15316 + components: + - pos: -6.5,22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15326 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15352 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15381 + components: + - pos: 8.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15411 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15447 + components: + - pos: -24.5,21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15458 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15459 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15479 + components: + - pos: -9.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15500 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15525 + components: + - pos: 3.5,23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15537 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15550 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15562 + components: + - pos: 19.5,32.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15578 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15587 + components: + - pos: 14.5,32.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15610 + components: + - pos: -19.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15668 + components: + - pos: -49.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15680 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15696 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15701 + components: + - pos: -34.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15729 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15742 + components: + - rot: 3.141592653589793 rad + pos: -35.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15757 + components: + - pos: -39.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15768 + components: + - rot: 3.141592653589793 rad + pos: -42.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15771 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15773 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15776 + components: + - pos: -28.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15777 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15829 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15830 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,32.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15831 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,33.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15859 + components: + - pos: -24.5,37.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15906 + components: + - pos: -36.5,37.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15907 + components: + - pos: -47.5,37.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15908 + components: + - pos: -48.5,42.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15922 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,43.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15945 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,46.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15981 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,55.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15998 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,59.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 15999 + components: + - pos: -8.5,63.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16006 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,50.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16017 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16025 + components: + - pos: -6.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16050 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,58.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16095 + components: + - rot: 3.141592653589793 rad + pos: -18.5,41.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16142 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,46.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16143 + components: + - pos: -24.5,48.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16155 + components: + - pos: -27.5,48.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16156 + components: + - rot: 3.141592653589793 rad + pos: -30.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16169 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,48.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16170 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,45.5 + parent: 1 + type: Transform + - uid: 16171 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,43.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16187 + components: + - rot: 3.141592653589793 rad + pos: -13.5,41.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16188 + components: + - rot: 3.141592653589793 rad + pos: -10.5,41.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16189 + components: + - rot: 3.141592653589793 rad + pos: -7.5,41.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16191 + components: + - rot: 3.141592653589793 rad + pos: -4.5,41.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16196 + components: + - pos: 6.5,54.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16214 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,59.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16238 + components: + - pos: 4.5,62.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16241 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,65.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16283 + components: + - pos: 11.5,67.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16287 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,71.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16288 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,74.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16331 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,77.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16332 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,77.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16339 + components: + - pos: -8.5,73.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16340 + components: + - rot: 3.141592653589793 rad + pos: -8.5,70.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16349 + components: + - rot: 3.141592653589793 rad + pos: 3.5,74.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16358 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 16365 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-35.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 17481 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,10.5 + parent: 1 + type: Transform + - uid: 18354 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-37.5 + parent: 1 + type: Transform +- proto: GasVolumePump + entities: + - uid: 2718 + components: + - pos: -10.5,-44.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 2731 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-44.5 + parent: 1 + type: Transform + - color: '#03FCD3FF' + 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: 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: 109 + components: + - pos: -45.5,3.5 + parent: 1 + type: Transform + - uid: 111 + components: + - pos: -46.5,3.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: -44.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: 462 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,3.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: 2071 + components: + - pos: -4.5,-41.5 + parent: 1 + type: Transform + - uid: 2073 + components: + - pos: 2.5,-43.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: 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: 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: 2699 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-46.5 + parent: 1 + type: Transform + - uid: 2704 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-46.5 + parent: 1 + type: Transform + - uid: 2720 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-46.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: 3046 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-46.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 + - state: Closed + type: Door + - enabled: True + type: Occluder + - canCollide: True + type: Physics + - 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 + - uid: 9629 + components: + - pos: -41.5,-7.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 + - uid: 9638 + components: + - desc: For confiscated weapons and gadgets. + name: contraband locker + type: MetaData + - pos: -5.5,64.5 + parent: 1 + type: Transform +- 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 +- 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: 286 + components: + - pos: -42.513187,21.685522 + parent: 1 + type: Transform + - 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 + - uid: 9664 + components: + - pos: -10.990924,34.60699 + 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: 112 + components: + - pos: -44.5,1.5 + parent: 1 + type: Transform + - uid: 113 + components: + - pos: -44.5,5.5 + parent: 1 + type: Transform + - uid: 463 + components: + - pos: -36.5,5.5 + parent: 1 + type: Transform + - uid: 2724 + components: + - pos: -47.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: 4157 + components: + - pos: -47.5,1.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: 2705 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-44.5 + parent: 1 + type: Transform + - uid: 2719 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-42.5 + parent: 1 + type: Transform + - uid: 2725 + components: + - pos: -41.5,5.5 + parent: 1 + type: Transform + - uid: 2728 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,0.5 + parent: 1 + type: Transform + - 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 + - uid: 4032 + components: + - pos: 3.5,34.5 + parent: 1 + type: Transform + - uid: 4063 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 1 + type: Transform + - uid: 4360 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-22.5 + parent: 1 + type: Transform + - uid: 4361 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-35.5 + parent: 1 + type: Transform + - uid: 6085 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-2.5 + parent: 1 + type: Transform + - uid: 6382 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,23.5 + parent: 1 + type: Transform + - 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 + - uid: 6706 + components: + - pos: 14.5,20.5 + parent: 1 + type: Transform + - uid: 7809 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,20.5 + parent: 1 + type: Transform + - uid: 7811 + components: + - rot: 3.141592653589793 rad + pos: -46.5,30.5 + parent: 1 + type: Transform + - uid: 7813 + components: + - rot: 3.141592653589793 rad + pos: -38.5,17.5 + parent: 1 + type: Transform + - uid: 7935 + components: + - pos: -46.5,25.5 + parent: 1 + type: Transform + - uid: 8161 + components: + - pos: -40.5,28.5 + parent: 1 + type: Transform + - 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 + - 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 + - uid: 9634 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-5.5 + parent: 1 + type: Transform + - uid: 9635 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-5.5 + parent: 1 + type: Transform + - 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: 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: 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: 2074 + components: + - rot: 3.141592653589793 rad + pos: -45.5,1.5 + parent: 1 + type: Transform + - uid: 2608 + components: + - pos: -45.5,5.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: 4138 + components: + - pos: -37.5,-6.5 + parent: 1 + type: Transform + - uid: 8252 + components: + - pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 9310 + components: + - pos: -44.5,0.5 + parent: 1 + type: Transform + - uid: 9630 + components: + - pos: -44.5,-4.5 + parent: 1 + type: Transform + - uid: 9659 + components: + - rot: 3.141592653589793 rad + pos: 5.5,19.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: 9660 + components: + - pos: -15.5,5.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: 6690 + components: + - pos: -40.5,11.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: 3725 + components: + - pos: -42.5,-4.5 + parent: 1 + type: Transform + - uid: 8591 + components: + - pos: -27.5,11.5 + parent: 1 + type: Transform +- proto: RandomVendingSnacks + entities: + - uid: 3726 + components: + - pos: -43.5,-4.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: 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: 238 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,3.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: + - pos: -45.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: 287 + components: + - pos: -46.5,3.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: 2334 + components: + - pos: 5.5,-11.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: 2698 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-46.5 + parent: 1 + type: Transform + - uid: 2701 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-46.5 + parent: 1 + type: Transform + - uid: 2708 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-46.5 + parent: 1 + type: Transform + - uid: 2711 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-46.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: 4139 + components: + - pos: -44.5,3.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: 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: 2128 + components: + - rot: 3.141592653589793 rad + pos: -46.5,0.5 + parent: 1 + type: Transform + - linkedPorts: + 2130: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 2291 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,3.5 + parent: 1 + type: Transform + - linkedPorts: + 2129: + - Pressed: Toggle + 2607: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 2612 + components: + - pos: -46.5,6.5 + parent: 1 + type: Transform + - linkedPorts: + 2610: + - Pressed: Toggle + type: DeviceLinkSource + - 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: 9404 + components: + - pos: -20.5,-14.5 + parent: 1 + type: Transform + - linkedPorts: + 9406: + - 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: SignalButtonExt3 + entities: + - uid: 9658 + components: + - desc: Press in case of grey tide. + name: emergency security lockdown + type: MetaData + - rot: 3.141592653589793 rad + pos: -11.5,47.5 + parent: 1 + type: Transform +- 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: 9309 + components: + - pos: -47.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: + - name: Comms SMES + type: MetaData + - pos: 15.5,-11.5 + parent: 1 + type: Transform + - uid: 3831 + components: + - name: Engi SMES 4 + type: MetaData + - pos: 8.5,-29.5 + parent: 1 + type: Transform + - uid: 3832 + components: + - name: Engi SMES 2 + type: MetaData + - pos: 6.5,-29.5 + parent: 1 + type: Transform + - uid: 6507 + components: + - name: Engi SMES 1 + type: MetaData + - pos: 5.5,-29.5 + parent: 1 + type: Transform + - uid: 6575 + components: + - name: Engi SMES 3 + type: MetaData + - pos: 7.5,-29.5 + parent: 1 + type: Transform + - uid: 8011 + components: + - name: North West Solars SMES + type: MetaData + - pos: -39.5,55.5 + parent: 1 + type: Transform + - uid: 14044 + components: + - name: North East Solars SMES + type: MetaData + - 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: 9322 + components: + - pos: -39.5,2.5 + parent: 1 + type: Transform + - uid: 9323 + components: + - pos: -41.5,3.5 + parent: 1 + type: Transform + - uid: 9362 + components: + - pos: -41.5,4.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: 2712 + components: + - pos: -9.5,-38.5 + parent: 1 + type: Transform + - uid: 2713 + components: + - pos: -9.5,-39.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: + - name: Engineering Substation 1 + type: MetaData + - pos: 8.5,-17.5 + parent: 1 + type: Transform + - uid: 4187 + components: + - name: Engineering Substation 2 + type: MetaData + - pos: 8.5,-18.5 + parent: 1 + type: Transform + - uid: 4584 + components: + - name: Salvage & Science Substation + type: MetaData + - pos: -21.5,30.5 + parent: 1 + type: Transform + - uid: 4585 + components: + - name: Cargo Substation + type: MetaData + - pos: -25.5,-15.5 + parent: 1 + type: Transform + - uid: 4587 + components: + - name: Security Substation + type: MetaData + - pos: -24.5,50.5 + parent: 1 + type: Transform + - uid: 4588 + components: + - name: North East Section Substation + type: MetaData + - pos: 20.5,54.5 + parent: 1 + type: Transform + - uid: 4589 + components: + - name: Medical Substation + type: MetaData + - pos: 16.5,25.5 + parent: 1 + type: Transform + - uid: 4590 + components: + - name: Kitchen & Botany Substation + type: MetaData + - pos: 17.5,4.5 + parent: 1 + type: Transform + - uid: 4591 + components: + - name: Library & Bar Substation + type: MetaData + - pos: -25.5,-0.5 + parent: 1 + type: Transform + - uid: 4594 + components: + - name: South East Section Substation + type: MetaData + - pos: 26.5,-18.5 + parent: 1 + type: Transform + - uid: 4931 + components: + - name: Bridge Substation + type: MetaData + - pos: -3.5,74.5 + parent: 1 + type: Transform + - uid: 9403 + components: + - name: GravGen Substation + type: MetaData + - pos: -23.5,-18.5 + parent: 1 + type: Transform + - uid: 18472 + components: + - name: Comms Substation + type: MetaData + - 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: 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: 9622 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-6.5 + parent: 1 + type: Transform + - uid: 9623 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-5.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: 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: 9624 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-7.5 + parent: 1 + type: Transform + - uid: 9625 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-7.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: TegCenter + entities: + - uid: 2703 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-44.5 + parent: 1 + type: Transform +- proto: TegCirculator + entities: + - uid: 2700 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-44.5 + parent: 1 + type: Transform + - color: '#FF3300FF' + type: PointLight + - uid: 2702 + components: + - pos: -7.5,-44.5 + parent: 1 + type: Transform + - color: '#FF3300FF' + type: PointLight +- 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: 7815 + components: + - pos: -43.5,0.5 + parent: 1 + type: Transform + - linkedPorts: + 252: + - Left: Forward + - Right: Reverse + - Middle: Off + 2723: + - Left: Forward + - Right: Reverse + - Middle: Off + 7254: + - Left: Forward + - Right: Reverse + - Middle: Off + 7291: + - Left: Forward + - Right: Reverse + - Middle: Off + 7704: + - 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: 8179 + components: + - pos: -41.5,5.5 + parent: 1 + type: Transform + - linkedPorts: + 2127: + - Left: Forward + - Right: Reverse + - Middle: Off + 461: + - Left: Forward + - Right: Reverse + - Middle: Off + 460: + - Left: Forward + - Right: Reverse + - Middle: Off + 459: + - Left: Forward + - Right: Reverse + - Middle: Off + 2722: + - 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: 110 + components: + - pos: -47.5,0.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: 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: 2075 + components: + - pos: -47.5,6.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: 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: 2696 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-46.5 + parent: 1 + type: Transform + - uid: 2697 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-46.5 + parent: 1 + type: Transform + - uid: 2707 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-46.5 + parent: 1 + type: Transform + - uid: 2714 + components: + - pos: -46.5,0.5 + parent: 1 + type: Transform + - uid: 2715 + components: + - pos: -46.5,6.5 + parent: 1 + type: Transform + - uid: 2721 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-46.5 + parent: 1 + type: Transform + - uid: 2727 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-44.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: 2972 + components: + - pos: -45.5,6.5 + parent: 1 + type: Transform + - uid: 2973 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-43.5 + parent: 1 + type: Transform + - uid: 3045 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-45.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: 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: 4145 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-43.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: 4339 + components: + - pos: -45.5,0.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: 4534 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-45.5 + parent: 1 + type: Transform + - uid: 5530 + components: + - pos: -19.5,29.5 + parent: 1 + type: Transform + - uid: 5531 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-44.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: 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: 17618 + components: + - pos: -16.5,25.5 + parent: 1 + type: Transform + - location: Science + 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: 17629 + components: + - pos: 10.5,58.5 + parent: 1 + type: Transform + - location: Courtroom + type: WarpPoint + - uid: 18176 + components: + - pos: -0.5,-0.5 + parent: 8756 + type: Transform + - location: Captain's Private Shuttle + type: WarpPoint +- proto: WarpPointBombing + entities: + - uid: 2345 + components: + - pos: 24.5,5.5 + parent: 1 + type: Transform + - location: HoP Office + type: WarpPoint + - uid: 5828 + components: + - pos: 18.5,-14.5 + parent: 1 + type: Transform + - location: Telecomms + type: WarpPoint + - uid: 6362 + components: + - pos: 10.5,27.5 + parent: 1 + type: Transform + - location: Medbay + type: WarpPoint + - uid: 6458 + components: + - pos: -39.5,25.5 + parent: 1 + type: Transform + - location: Salvage + type: WarpPoint + - uid: 6600 + components: + - pos: -38.5,2.5 + parent: 1 + type: Transform + - location: Cargo + type: WarpPoint + - uid: 6629 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - location: Bar + type: WarpPoint + - uid: 6636 + components: + - pos: -8.5,-26.5 + parent: 1 + type: Transform + - location: Atmospherics + type: WarpPoint + - uid: 6637 + components: + - pos: 12.5,-26.5 + parent: 1 + type: Transform + - location: Engineering + type: WarpPoint + - uid: 6653 + components: + - pos: -13.5,49.5 + parent: 1 + type: Transform + - location: Security + type: WarpPoint + - uid: 6670 + components: + - pos: -0.5,79.5 + parent: 1 + type: Transform + - location: Bridge + type: WarpPoint +- proto: WaterCooler + entities: + - 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 + - uid: 9628 + components: + - pos: -43.5,-7.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 72ee490cc13..2ab36c1cf8a 100644 --- a/Resources/Maps/bagel.yml +++ b/Resources/Maps/bagel.yml @@ -7,56 +7,56 @@ tilemap: 7: FloorAsteroidSand 12: FloorBar 15: FloorBlueCircuit - 22: 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 - 51: FloorGreenCircuit - 54: FloorHullReinforced - 55: FloorHydro - 58: FloorLaundry - 59: FloorLino - 61: FloorMetalDiamond - 62: FloorMime - 63: FloorMono - 68: FloorPlanetGrass - 69: FloorPlastic - 70: FloorRGlass - 71: FloorReinforced - 73: FloorRockVault - 74: FloorShowroom - 75: FloorShuttleBlue - 76: FloorShuttleOrange - 78: FloorShuttleRed - 79: FloorShuttleWhite - 81: FloorSnow - 83: FloorSteel - 88: FloorSteelDirty - 91: FloorSteelMono - 93: FloorSteelPavement - 95: FloorTechMaint - 96: FloorTechMaint2 - 97: FloorTechMaint3 - 99: FloorWhite - 102: FloorWhiteHerringbone - 103: FloorWhiteMini - 104: FloorWhiteMono - 106: FloorWhitePavement - 107: FloorWhitePavementVertical - 108: FloorWhitePlastic - 109: FloorWood - 110: FloorWoodTile - 111: Lattice - 112: Plating + 23: FloorClown + 27: FloorDark + 28: FloorDarkDiagonal + 31: FloorDarkMini + 32: FloorDarkMono + 34: FloorDarkPavement + 36: FloorDarkPlastic + 42: FloorFreezer + 43: FloorGlass + 44: FloorGold + 45: FloorGrass + 46: FloorGrassDark + 47: FloorGrassJungle + 52: FloorGreenCircuit + 55: FloorHullReinforced + 56: FloorHydro + 59: FloorLaundry + 60: FloorLino + 62: FloorMetalDiamond + 63: FloorMime + 64: FloorMono + 69: FloorPlanetGrass + 70: FloorPlastic + 71: FloorRGlass + 72: FloorReinforced + 74: FloorRockVault + 75: FloorShowroom + 76: FloorShuttleBlue + 77: FloorShuttleOrange + 79: FloorShuttleRed + 80: FloorShuttleWhite + 82: FloorSnow + 84: FloorSteel + 89: FloorSteelDirty + 92: FloorSteelMono + 94: FloorSteelPavement + 96: FloorTechMaint + 97: FloorTechMaint2 + 98: FloorTechMaint3 + 100: FloorWhite + 103: FloorWhiteHerringbone + 104: FloorWhiteMini + 105: FloorWhiteMono + 107: FloorWhitePavement + 108: FloorWhitePavementVertical + 109: FloorWhitePlastic + 110: FloorWood + 111: FloorWoodTile + 112: Lattice + 113: Plating entities: - proto: "" entities: @@ -69,383 +69,383 @@ entities: - chunks: 0,-1: ind: 0,-1 - tiles: UwAAAAADUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAUwAAAAACUwAAAAADUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAADYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAACcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAACGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAARQAAAAABGgAAAAAAGgAAAAACcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAGgAAAAABGgAAAAACGgAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAGgAAAAACGgAAAAABcAAAAAAARwAAAAAADwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADGgAAAAADGgAAAAABcAAAAAAAGgAAAAADGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAABGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAACGgAAAAADGgAAAAACGgAAAAADGgAAAAABGgAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAB + tiles: VAAAAAADVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACcQAAAAAAVAAAAAACVAAAAAADVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAADYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAACcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAACGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAARgAAAAABGwAAAAAAGwAAAAACcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAGwAAAAABGwAAAAACGwAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAGwAAAAACGwAAAAABcQAAAAAASAAAAAAADwAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADGwAAAAADGwAAAAABcQAAAAAAGwAAAAADGwAAAAACGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAABGwAAAAABGwAAAAADcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAACGwAAAAADGwAAAAACGwAAAAADGwAAAAABGwAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAB version: 6 -1,-1: ind: -1,-1 - tiles: UwAAAAABUwAAAAACcAAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAGgAAAAADGgAAAAACGgAAAAADGgAAAAADcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAUwAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAWAAAAAAAUwAAAAADWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAWAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAACcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAZwAAAAABZwAAAAADcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAZwAAAAAAZgAAAAADcAAAAAAAUwAAAAACUwAAAAADUwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAABbQAAAAACcAAAAAAAGgAAAAAAUwAAAAACUwAAAAADcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAALgAAAAAAbQAAAAABbQAAAAABbQAAAAACcAAAAAAAGgAAAAACUwAAAAADUwAAAAADcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbQAAAAACbQAAAAAAbQAAAAABLgAAAAAAbQAAAAACbQAAAAAAbQAAAAABcAAAAAAAGgAAAAABUwAAAAADUwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAABHwAAAAACbQAAAAAAbQAAAAADbQAAAAACcAAAAAAAGgAAAAABUwAAAAACUwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAADcAAAAAAAbQAAAAAAbQAAAAACbQAAAAACcAAAAAAAGgAAAAACRQAAAAABRQAAAAABcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAADcAAAAAAAGgAAAAACUwAAAAABUwAAAAADUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAABGgAAAAAA + tiles: VAAAAAABVAAAAAACcQAAAAAAcAAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAGwAAAAADGwAAAAACGwAAAAADGwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAWQAAAAAAVAAAAAADWQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAcAAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAWQAAAAAAVAAAAAADVAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAKgAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAACcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAaAAAAAABaAAAAAADcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAaAAAAAAAZwAAAAADcQAAAAAAVAAAAAACVAAAAAADVAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAABcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAABbgAAAAACcQAAAAAAGwAAAAAAVAAAAAACVAAAAAADcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAALwAAAAAAbgAAAAABbgAAAAABbgAAAAACcQAAAAAAGwAAAAACVAAAAAADVAAAAAADcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAbgAAAAACbgAAAAAAbgAAAAABLwAAAAAAbgAAAAACbgAAAAAAbgAAAAABcQAAAAAAGwAAAAABVAAAAAADVAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAbgAAAAAAbgAAAAADbgAAAAABIAAAAAACbgAAAAAAbgAAAAADbgAAAAACcQAAAAAAGwAAAAABVAAAAAACVAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAbgAAAAAAbgAAAAADbgAAAAADcQAAAAAAbgAAAAAAbgAAAAACbgAAAAACcQAAAAAAGwAAAAACRgAAAAABRgAAAAABcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAADcQAAAAAAGwAAAAACVAAAAAABVAAAAAADVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAABGwAAAAAA version: 6 0,0: ind: 0,0 - tiles: GgAAAAABGgAAAAABGgAAAAACGgAAAAAAGgAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAADGgAAAAAAGgAAAAABGgAAAAACGgAAAAABGgAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAKgAAAAAAKgAAAAADKgAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAGgAAAAABGgAAAAACGgAAAAABGgAAAAACcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAKgAAAAACRAAAAAABRAAAAAACRAAAAAABKgAAAAAAcAAAAAAAUwAAAAABGgAAAAABGgAAAAABGgAAAAABGgAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAKgAAAAABRAAAAAACRAAAAAAARAAAAAADRAAAAAADRAAAAAABKgAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAKgAAAAACRAAAAAABRAAAAAAARAAAAAABRAAAAAACRAAAAAADKgAAAAADUwAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAKgAAAAABGgAAAAABRAAAAAAARAAAAAADRAAAAAACGgAAAAADKgAAAAAAUwAAAAABbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAKgAAAAADKgAAAAACRgAAAAACKgAAAAADKgAAAAABcAAAAAAARQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARQAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAABcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAADcAAAAAAAUwAAAAACUwAAAAABUwAAAAADcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAUwAAAAAA + tiles: GwAAAAABGwAAAAABGwAAAAACGwAAAAAAGwAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADGwAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAKwAAAAAAKwAAAAADKwAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAACcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAKwAAAAACRQAAAAABRQAAAAACRQAAAAABKwAAAAAAcQAAAAAAVAAAAAABGwAAAAABGwAAAAABGwAAAAABGwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAKwAAAAABRQAAAAACRQAAAAAARQAAAAADRQAAAAADRQAAAAABKwAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAKwAAAAACRQAAAAABRQAAAAAARQAAAAABRQAAAAACRQAAAAADKwAAAAADVAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAKwAAAAABGwAAAAABRQAAAAAARQAAAAADRQAAAAACGwAAAAADKwAAAAAAVAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAKwAAAAADKwAAAAACRwAAAAACKwAAAAADKwAAAAABcQAAAAAARgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAACVAAAAAACVAAAAAACVAAAAAABVAAAAAABVAAAAAABVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAADVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARgAAAAABVAAAAAADVAAAAAADVAAAAAABVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAACVAAAAAABcQAAAAAAVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACcQAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAADcQAAAAAAVAAAAAACVAAAAAABVAAAAAADcQAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAACcQAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAACVAAAAAADVAAAAAABVAAAAAADVAAAAAADVAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAABVAAAAAABVAAAAAADVAAAAAABVAAAAAACVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAABVAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADcQAAAAAAVAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: UwAAAAABUwAAAAABUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAADGgAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAADGgAAAAABUwAAAAABUwAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAGgAAAAADGgAAAAADGgAAAAABGgAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAABUwAAAAABUwAAAAAAGgAAAAADYAAAAAAAYAAAAAAARwAAAAAARwAAAAAARwAAAAAAGgAAAAADcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAADUwAAAAABUwAAAAADcAAAAAAAYAAAAAAAYAAAAAAARwAAAAAARwAAAAAARwAAAAAAGgAAAAACcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAMwAAAAAAMwAAAAAARwAAAAAARwAAAAAARwAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAARQAAAAABRQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAACUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAACRQAAAAABRQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAACGgAAAAADGgAAAAAAcAAAAAAAbQAAAAABbQAAAAADbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAACGgAAAAABGgAAAAABcAAAAAAAbQAAAAADbQAAAAAAbQAAAAAAbQAAAAACbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADGgAAAAADGgAAAAADcAAAAAAAbQAAAAAAbQAAAAACbQAAAAADbQAAAAACbQAAAAABcAAAAAAAGgAAAAAAGgAAAAABGgAAAAABcAAAAAAAUwAAAAACUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAAAbQAAAAAAbQAAAAABbQAAAAACcAAAAAAAGgAAAAAAGgAAAAACGgAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAABcAAAAAAAbQAAAAAAbQAAAAADbQAAAAACbQAAAAABbQAAAAADbQAAAAADbQAAAAABcAAAAAAAGgAAAAADGgAAAAADGgAAAAABcAAAAAAAUwAAAAAA + tiles: VAAAAAABVAAAAAABVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAADGwAAAAACGwAAAAADGwAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAGwAAAAABGwAAAAAAGwAAAAADGwAAAAABVAAAAAABVAAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAGwAAAAADGwAAAAADGwAAAAABGwAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAACGwAAAAABVAAAAAABVAAAAAAAGwAAAAADYQAAAAAAYQAAAAAASAAAAAAASAAAAAAASAAAAAAAGwAAAAADcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAADVAAAAAABVAAAAAADcQAAAAAAYQAAAAAAYQAAAAAASAAAAAAASAAAAAAASAAAAAAAGwAAAAACcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADcQAAAAAANAAAAAAANAAAAAAASAAAAAAASAAAAAAASAAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARgAAAAABRgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAADVAAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAADVAAAAAABVAAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAACVAAAAAACRgAAAAABRgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAACVAAAAAABVAAAAAABVAAAAAACGwAAAAADGwAAAAAAcQAAAAAAbgAAAAABbgAAAAADbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAACGwAAAAABGwAAAAABcQAAAAAAbgAAAAADbgAAAAAAbgAAAAAAbgAAAAACbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADGwAAAAADGwAAAAADcQAAAAAAbgAAAAAAbgAAAAACbgAAAAADbgAAAAACbgAAAAABcQAAAAAAGwAAAAAAGwAAAAABGwAAAAABcQAAAAAAVAAAAAACVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAAAbgAAAAAAbgAAAAABbgAAAAACcQAAAAAAGwAAAAAAGwAAAAACGwAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAABcQAAAAAAbgAAAAAAbgAAAAADbgAAAAACbgAAAAABbgAAAAADbgAAAAADbgAAAAABcQAAAAAAGwAAAAADGwAAAAADGwAAAAABcQAAAAAAVAAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: UwAAAAAAUwAAAAADcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAACbQAAAAABbQAAAAADbQAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAGgAAAAADGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABGgAAAAAAGgAAAAABGgAAAAADGgAAAAADGgAAAAABGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAARgAAAAADcAAAAAAAcAAAAAAAGgAAAAAAUwAAAAAAUwAAAAADcAAAAAAAGgAAAAABGgAAAAADGgAAAAADGgAAAAABGgAAAAABGgAAAAABcAAAAAAADAAAAAADbQAAAAABbQAAAAADbQAAAAABbQAAAAAAbQAAAAAAUwAAAAADUwAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAADGgAAAAABGgAAAAAAGgAAAAABcAAAAAAADAAAAAABbQAAAAADbQAAAAAAbQAAAAAAbQAAAAABbQAAAAACUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADAAAAAADDAAAAAABDAAAAAAADAAAAAADDAAAAAABDAAAAAAAUwAAAAAAUwAAAAADcAAAAAAARQAAAAADRQAAAAAARQAAAAABRQAAAAAARQAAAAAARQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADAAAAAABcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADRQAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAADRQAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAAARQAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAADGgAAAAADGgAAAAACGgAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAABcAAAAAAAGgAAAAACGgAAAAAAGgAAAAADcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAAD + tiles: VAAAAAAAVAAAAAADcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAACbgAAAAABbgAAAAADbgAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAVAAAAAADVAAAAAADcQAAAAAAGwAAAAADGwAAAAADGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABGwAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAABGwAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAARwAAAAADcQAAAAAAcQAAAAAAGwAAAAAAVAAAAAAAVAAAAAADcQAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAABGwAAAAABGwAAAAABcQAAAAAADAAAAAADbgAAAAABbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAVAAAAAADVAAAAAAAcQAAAAAAGwAAAAAAGwAAAAACGwAAAAADGwAAAAABGwAAAAAAGwAAAAABcQAAAAAADAAAAAABbgAAAAADbgAAAAAAbgAAAAAAbgAAAAABbgAAAAACVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAADAAAAAADDAAAAAABDAAAAAAADAAAAAADDAAAAAABDAAAAAAAVAAAAAAAVAAAAAADcQAAAAAARgAAAAADRgAAAAAARgAAAAABRgAAAAAARgAAAAAARgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAADAAAAAABcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADRgAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAABVAAAAAADVAAAAAABVAAAAAADVAAAAAACVAAAAAADVAAAAAADVAAAAAADRgAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAACVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAAARgAAAAACVAAAAAADVAAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAABVAAAAAACVAAAAAABVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAAAVAAAAAADGwAAAAADGwAAAAACGwAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAABcQAAAAAAGwAAAAACGwAAAAAAGwAAAAADcQAAAAAAVAAAAAADVAAAAAABVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABcQAAAAAAVAAAAAABVAAAAAAAVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAAD version: 6 -1,-2: ind: -1,-2 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAACbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAGgAAAAADGgAAAAAAGgAAAAABGgAAAAADGgAAAAADGgAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAGgAAAAADGgAAAAADGgAAAAACGgAAAAACGgAAAAACGgAAAAABcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAGgAAAAAAGgAAAAACGgAAAAACGgAAAAACGgAAAAAAGgAAAAACcAAAAAAAUwAAAAADYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAABcAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABRQAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAABRQAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAACRQAAAAACUwAAAAACUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAADcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADcAAAAAAAbwAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAABGgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABRQAAAAACRQAAAAABcAAAAAAAbwAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAADGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAbwAAAAAAcAAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAA + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAVAAAAAACbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAGwAAAAADGwAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAGwAAAAADGwAAAAADGwAAAAACGwAAAAACGwAAAAACGwAAAAABcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAAAGwAAAAACcQAAAAAAVAAAAAADYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAABcQAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAACVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABRgAAAAADVAAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAABVAAAAAADVAAAAAABVAAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAACVAAAAAADVAAAAAAAVAAAAAABRgAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAACVAAAAAACVAAAAAACVAAAAAACRgAAAAACVAAAAAACVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAABcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAADcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAADcQAAAAAAcAAAAAAAcQAAAAAAKgAAAAAAcQAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAACcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABRgAAAAACRgAAAAABcQAAAAAAcAAAAAAAcQAAAAAAKgAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADcQAAAAAAcAAAAAAAcQAAAAAAYgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: UwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAACPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAUwAAAAACUwAAAAACUwAAAAADcAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAGgAAAAABGgAAAAADGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAGgAAAAACGgAAAAACGgAAAAADcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAUwAAAAABUwAAAAABGgAAAAACGgAAAAADGgAAAAACGgAAAAABGgAAAAACGgAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAABcAAAAAAAOwAAAAAAOwAAAAAAGgAAAAACUwAAAAADUwAAAAABcAAAAAAAGgAAAAACGgAAAAACGgAAAAACGgAAAAADGgAAAAACcAAAAAAAbQAAAAAAbQAAAAABbQAAAAACcAAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAGgAAAAADGgAAAAACGgAAAAAAGgAAAAABGgAAAAABcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAADcAAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAADGgAAAAABGgAAAAADcAAAAAAAbQAAAAADbQAAAAAAbQAAAAABcAAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAGgAAAAACGgAAAAAAGgAAAAABcAAAAAAAbQAAAAADbQAAAAABcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAA + tiles: VAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAABcQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAACQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAVAAAAAACVAAAAAACVAAAAAADcQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADcQAAAAAAGwAAAAABGwAAAAADGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACcQAAAAAAGwAAAAACGwAAAAACGwAAAAADcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAVAAAAAABVAAAAAABGwAAAAACGwAAAAADGwAAAAACGwAAAAABGwAAAAACGwAAAAAAcQAAAAAAGwAAAAABGwAAAAABGwAAAAABcQAAAAAAPAAAAAAAPAAAAAAAGwAAAAACVAAAAAADVAAAAAABcQAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAADGwAAAAACcQAAAAAAbgAAAAAAbgAAAAABbgAAAAACcQAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAVAAAAAADVAAAAAADcQAAAAAAGwAAAAADGwAAAAACGwAAAAAAGwAAAAABGwAAAAABcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAADcQAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAVAAAAAADVAAAAAABcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAADGwAAAAABGwAAAAADcQAAAAAAbgAAAAADbgAAAAAAbgAAAAABcQAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAVAAAAAACVAAAAAABcQAAAAAAGwAAAAACGwAAAAAAGwAAAAABcQAAAAAAbgAAAAADbgAAAAABcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAYAAAAAAAGgAAAAACGgAAAAACXwAAAAAAGgAAAAACGgAAAAABGgAAAAACUwAAAAACUwAAAAACUwAAAAABWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADcAAAAAAAGgAAAAADGgAAAAAAGgAAAAAAUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADcAAAAAAAGgAAAAADGgAAAAABGgAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAD + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAYQAAAAAAGwAAAAACGwAAAAACYAAAAAAAGwAAAAACGwAAAAABGwAAAAACVAAAAAACVAAAAAACVAAAAAABWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAADcQAAAAAAGwAAAAADGwAAAAAAGwAAAAAAVAAAAAACVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAADcQAAAAAAGwAAAAADGwAAAAABGwAAAAAAcQAAAAAAVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAD version: 6 1,-2: ind: 1,-2 - tiles: bQAAAAADbQAAAAADbQAAAAACbQAAAAADbQAAAAADbQAAAAACcAAAAAAADAAAAAADDAAAAAAADAAAAAADDAAAAAABcAAAAAAAXQAAAAADXQAAAAABXQAAAAABNwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAACbQAAAAADbQAAAAABcAAAAAAADAAAAAABDAAAAAADDAAAAAACDAAAAAABcAAAAAAANwAAAAAANwAAAAAAXQAAAAACNwAAAAAAbQAAAAADbQAAAAADbQAAAAAAbQAAAAAAbQAAAAACbQAAAAACcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAANwAAAAAANwAAAAAAXQAAAAACNwAAAAAAbQAAAAADbQAAAAABbQAAAAABbQAAAAADbQAAAAABbQAAAAACcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAANwAAAAAANwAAAAAAXQAAAAADXQAAAAADbQAAAAADbQAAAAADbQAAAAAAbQAAAAABbQAAAAAAbQAAAAABcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACDAAAAAADDAAAAAADDAAAAAABDAAAAAACDAAAAAACDAAAAAADcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAXQAAAAACNwAAAAAAXQAAAAAAXQAAAAACDAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAANwAAAAAAcAAAAAAANwAAAAAANwAAAAAAUwAAAAACUwAAAAADRQAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAARQAAAAAAUwAAAAAARQAAAAADUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAACRQAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAADAAAAAABDAAAAAAADAAAAAAADAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAGgAAAAADDAAAAAAADAAAAAABDAAAAAADDAAAAAABDAAAAAABbQAAAAABbQAAAAABbQAAAAABcAAAAAAAYwAAAAADYwAAAAACcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAGgAAAAAADAAAAAAADAAAAAAADAAAAAABDAAAAAACDAAAAAACbQAAAAADbQAAAAABbQAAAAACcAAAAAAAYwAAAAACYwAAAAACYwAAAAAAUwAAAAAAUwAAAAAAGgAAAAABGgAAAAABDAAAAAADDAAAAAACDAAAAAABDAAAAAACDAAAAAABbQAAAAAAbQAAAAADbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACGgAAAAACGgAAAAAADAAAAAABDAAAAAAADAAAAAADDAAAAAACDAAAAAABbQAAAAAAbQAAAAADbQAAAAACcAAAAAAAYwAAAAADYwAAAAACYwAAAAABUwAAAAAAUwAAAAACcAAAAAAAGgAAAAACDAAAAAADDAAAAAABDAAAAAAADAAAAAADDAAAAAADbQAAAAAAbQAAAAAAbQAAAAABcAAAAAAAYwAAAAAAYwAAAAABcAAAAAAA + tiles: bgAAAAADbgAAAAADbgAAAAACbgAAAAADbgAAAAADbgAAAAACcQAAAAAADAAAAAADDAAAAAAADAAAAAADDAAAAAABcQAAAAAAXgAAAAADXgAAAAABXgAAAAABOAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAACbgAAAAADbgAAAAABcQAAAAAADAAAAAABDAAAAAADDAAAAAACDAAAAAABcQAAAAAAOAAAAAAAOAAAAAAAXgAAAAACOAAAAAAAbgAAAAADbgAAAAADbgAAAAAAbgAAAAAAbgAAAAACbgAAAAACcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAXgAAAAACOAAAAAAAbgAAAAADbgAAAAABbgAAAAABbgAAAAADbgAAAAABbgAAAAACcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAXgAAAAADXgAAAAADbgAAAAADbgAAAAADbgAAAAAAbgAAAAABbgAAAAAAbgAAAAABcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAACDAAAAAADDAAAAAADDAAAAAABDAAAAAACDAAAAAACDAAAAAADcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAXgAAAAACOAAAAAAAXgAAAAAAXgAAAAACDAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAOAAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAVAAAAAACVAAAAAADRgAAAAADVAAAAAADVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAARgAAAAAAVAAAAAAARgAAAAADVAAAAAACVAAAAAADVAAAAAACVAAAAAABVAAAAAACVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAABVAAAAAADVAAAAAACRgAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAADVAAAAAACVAAAAAACVAAAAAADVAAAAAACVAAAAAACVAAAAAACVAAAAAACVAAAAAADVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAADAAAAAABDAAAAAAADAAAAAAADAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABcQAAAAAAGwAAAAADDAAAAAAADAAAAAABDAAAAAADDAAAAAABDAAAAAABbgAAAAABbgAAAAABbgAAAAABcQAAAAAAZAAAAAADZAAAAAACcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAGwAAAAAADAAAAAAADAAAAAAADAAAAAABDAAAAAACDAAAAAACbgAAAAADbgAAAAABbgAAAAACcQAAAAAAZAAAAAACZAAAAAACZAAAAAAAVAAAAAAAVAAAAAAAGwAAAAABGwAAAAABDAAAAAADDAAAAAACDAAAAAABDAAAAAACDAAAAAABbgAAAAAAbgAAAAADbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACGwAAAAACGwAAAAAADAAAAAABDAAAAAAADAAAAAADDAAAAAACDAAAAAABbgAAAAAAbgAAAAADbgAAAAACcQAAAAAAZAAAAAADZAAAAAACZAAAAAABVAAAAAAAVAAAAAACcQAAAAAAGwAAAAACDAAAAAADDAAAAAABDAAAAAAADAAAAAADDAAAAAADbgAAAAAAbgAAAAAAbgAAAAABcQAAAAAAZAAAAAAAZAAAAAABcQAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: UwAAAAABUwAAAAADcAAAAAAAGgAAAAADDAAAAAAADAAAAAADDAAAAAADDAAAAAACDAAAAAAAbQAAAAAAbQAAAAABbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAFgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAbQAAAAAAbQAAAAAAYwAAAAAAUwAAAAABUwAAAAADcAAAAAAAGgAAAAADFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAGgAAAAAAcAAAAAAAbQAAAAABbQAAAAADGgAAAAADUwAAAAADUwAAAAACcAAAAAAAGgAAAAABFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAGgAAAAADcAAAAAAAbQAAAAABbQAAAAACcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAGgAAAAADFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAABYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAARQAAAAAARQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAGgAAAAADcAAAAAAAGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAGgAAAAABGgAAAAACGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAGgAAAAADGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAGgAAAAADGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAbwAAAAAAcAAAAAAAGgAAAAACGgAAAAACDwAAAAAAGgAAAAACGgAAAAADcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: VAAAAAABVAAAAAADcQAAAAAAGwAAAAADDAAAAAAADAAAAAADDAAAAAADDAAAAAACDAAAAAAAbgAAAAAAbgAAAAABbgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAFwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAAbgAAAAAAbgAAAAAAZAAAAAAAVAAAAAABVAAAAAADcQAAAAAAGwAAAAADFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAGwAAAAAAcQAAAAAAbgAAAAABbgAAAAADGwAAAAADVAAAAAADVAAAAAACcQAAAAAAGwAAAAABFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAGwAAAAADcQAAAAAAbgAAAAABbgAAAAACcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAGwAAAAADFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAABVAAAAAABYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAARgAAAAAARgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAGwAAAAADcQAAAAAAGwAAAAADGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAGwAAAAABGwAAAAACGwAAAAADGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAGwAAAAADGwAAAAADGwAAAAABcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAGwAAAAADGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAVAAAAAACVAAAAAABcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABcQAAAAAAcAAAAAAAcQAAAAAAGwAAAAACGwAAAAACDwAAAAAAGwAAAAACGwAAAAADcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA version: 6 1,0: ind: 1,0 - tiles: UwAAAAACUwAAAAABcAAAAAAAAAAAAAAAcAAAAAAAMwAAAAAAUwAAAAABDwAAAAAAGgAAAAAAMwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAAAAAAAAAcAAAAAAAMwAAAAAAMwAAAAAADwAAAAAAMwAAAAAAMwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAACDwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAARQAAAAADRQAAAAAAcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAARQAAAAABRQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAZwAAAAAAZwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABYwAAAAAAZwAAAAABZwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAZwAAAAAAZwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAZwAAAAABTAAAAAAAcAAAAAAADwAAAAAADwAAAAAADwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: VAAAAAACVAAAAAABcQAAAAAAAAAAAAAAcQAAAAAANAAAAAAAVAAAAAABDwAAAAAAGwAAAAAANAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABcQAAAAAAAAAAAAAAcQAAAAAANAAAAAAANAAAAAAADwAAAAAANAAAAAAANAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAACDwAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAACVAAAAAADcQAAAAAAAAAAAAAAcQAAAAAAGwAAAAADPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAACGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAcQAAAAAARgAAAAADRgAAAAAAcQAAAAAAVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAACVAAAAAACVAAAAAADVAAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAADVAAAAAADVAAAAAADVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAADVAAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAARgAAAAABRgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACcQAAAAAAaAAAAAAAaAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABZAAAAAAAaAAAAAABaAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAaAAAAAAAaAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABcQAAAAAAaAAAAAABTQAAAAAAcQAAAAAADwAAAAAADwAAAAAADwAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAbQAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAbQAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUQAAAAAMbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAbQAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAADcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAbQAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAACbQAAAAADbQAAAAABbQAAAAAAbgAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAACRQAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAAARQAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAACRQAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABcAAAAAAAUwAAAAABcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAACGgAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAAAUwAAAAABGgAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADGgAAAAADcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAABcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAACGgAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAARQAAAAABGgAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAGgAAAAAAGgAAAAABGgAAAAAAcAAAAAAAUwAAAAAB + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAbgAAAAABcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAUgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAbgAAAAADcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAUgAAAAAMcAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAbgAAAAABcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAbgAAAAADcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAbgAAAAADcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAbgAAAAACbgAAAAADbgAAAAABbgAAAAAAbwAAAAABcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAADVAAAAAACRgAAAAADVAAAAAACVAAAAAADVAAAAAADVAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAABVAAAAAAAVAAAAAABVAAAAAAARgAAAAADVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAAAVAAAAAACVAAAAAACRgAAAAADVAAAAAACVAAAAAACVAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAABcQAAAAAAVAAAAAABcQAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAACGwAAAAABVAAAAAACVAAAAAABVAAAAAADVAAAAAADVAAAAAAAVAAAAAABGwAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADGwAAAAADcQAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAABcQAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAACGwAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAACVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAARgAAAAABGwAAAAADVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADcQAAAAAAGwAAAAAAGwAAAAABGwAAAAAAcQAAAAAAVAAAAAAB version: 6 -2,-1: ind: -2,-1 - tiles: cAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAACGgAAAAABGgAAAAACGgAAAAABGgAAAAADcAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAADcAAAAAAAGgAAAAABGgAAAAABcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABGgAAAAABGgAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAACcAAAAAAAGgAAAAABGgAAAAAAGgAAAAABcAAAAAAAUwAAAAABUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAGgAAAAACGgAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAABGgAAAAAAGgAAAAABcAAAAAAAUwAAAAABUwAAAAABUwAAAAABGgAAAAABGgAAAAADcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAABcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAAAcAAAAAAAYwAAAAABYwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAADYwAAAAADYwAAAAABcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAGgAAAAAAGgAAAAACcAAAAAAAUwAAAAACcAAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAADcAAAAAAAUwAAAAADUwAAAAADIwAAAAAAUwAAAAACGgAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAACGgAAAAAAUwAAAAADUwAAAAAAcAAAAAAAUwAAAAACcAAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAcAAAAAAAGgAAAAACGgAAAAABcAAAAAAARQAAAAACcAAAAAAAGgAAAAADUwAAAAABUwAAAAABcAAAAAAAGgAAAAABcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAARQAAAAADRQAAAAADUwAAAAABRwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAACGgAAAAAAGgAAAAACGgAAAAAAGgAAAAAAcAAAAAAAUwAAAAAAUwAAAAAD + tiles: cQAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAACVAAAAAACGwAAAAABGwAAAAACGwAAAAABGwAAAAADcQAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAADVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAACVAAAAAADcQAAAAAAGwAAAAABGwAAAAABcQAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAABGwAAAAABGwAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAACcQAAAAAAGwAAAAABGwAAAAAAGwAAAAABcQAAAAAAVAAAAAABVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAGwAAAAABGwAAAAAAGwAAAAABcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADcQAAAAAAGwAAAAACGwAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAAAcQAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAAAGwAAAAABcQAAAAAAVAAAAAABVAAAAAABVAAAAAABGwAAAAABGwAAAAADcQAAAAAAVAAAAAABVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAADcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAABcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAAAcQAAAAAAZAAAAAABZAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAADZAAAAAADZAAAAAABcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAACcQAAAAAAGwAAAAAAGwAAAAACcQAAAAAAVAAAAAACcQAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAABVAAAAAADVAAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAADcQAAAAAAVAAAAAADVAAAAAADJAAAAAAAVAAAAAACGwAAAAADVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAACVAAAAAAAVAAAAAACGwAAAAAAVAAAAAADVAAAAAAAcQAAAAAAVAAAAAACcQAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAcQAAAAAAGwAAAAACGwAAAAABcQAAAAAARgAAAAACcQAAAAAAGwAAAAADVAAAAAABVAAAAAABcQAAAAAAGwAAAAABcQAAAAAAVAAAAAABVAAAAAADcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAARgAAAAADRgAAAAADVAAAAAABSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAACGwAAAAAAGwAAAAACGwAAAAAAGwAAAAAAcQAAAAAAVAAAAAAAVAAAAAAD version: 6 -2,0: ind: -2,0 - tiles: RQAAAAAARQAAAAABUwAAAAABRwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAAAbQAAAAABbQAAAAACbQAAAAABbQAAAAAAcAAAAAAAUwAAAAABUwAAAAAARQAAAAACRQAAAAADUwAAAAABRwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAAAbQAAAAACbQAAAAACbQAAAAADbQAAAAACcAAAAAAAUwAAAAABUwAAAAABGgAAAAADGgAAAAADUwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAACGgAAAAACGgAAAAADGgAAAAABGgAAAAACcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACYQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAAAGgAAAAADGgAAAAADYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARQAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARQAAAAAAUwAAAAABGgAAAAACcAAAAAAAGwAAAAACbQAAAAABbQAAAAADbQAAAAADbQAAAAACbQAAAAAAGwAAAAACcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAAADwAAAAAAGgAAAAABcAAAAAAAGwAAAAADbQAAAAAAbQAAAAACbQAAAAADbQAAAAAAbQAAAAACGwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACDwAAAAAAUwAAAAABcAAAAAAAGwAAAAABbQAAAAADbQAAAAACbQAAAAACbQAAAAAAbQAAAAADGwAAAAABcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAAADwAAAAAAGgAAAAAAcAAAAAAAGwAAAAABbQAAAAACbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAABGwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAGgAAAAADcAAAAAAAGwAAAAABbQAAAAABbQAAAAADbQAAAAADbQAAAAABbQAAAAAAGwAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAAAcAAAAAAAUwAAAAAA + tiles: RgAAAAAARgAAAAABVAAAAAABSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAAbgAAAAABbgAAAAACbgAAAAABbgAAAAAAcQAAAAAAVAAAAAABVAAAAAAARgAAAAACRgAAAAADVAAAAAABSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAAbgAAAAACbgAAAAACbgAAAAADbgAAAAACcQAAAAAAVAAAAAABVAAAAAABGwAAAAADGwAAAAADVAAAAAACSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAACGwAAAAACGwAAAAADGwAAAAABGwAAAAACcQAAAAAAVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACYgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAVAAAAAAAGwAAAAADGwAAAAADYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARgAAAAABVAAAAAACVAAAAAADVAAAAAABVAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAAAVAAAAAADGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARgAAAAAAVAAAAAABGwAAAAACcQAAAAAAHAAAAAACbgAAAAABbgAAAAADbgAAAAADbgAAAAACbgAAAAAAHAAAAAACcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAADwAAAAAAGwAAAAABcQAAAAAAHAAAAAADbgAAAAAAbgAAAAACbgAAAAADbgAAAAAAbgAAAAACHAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACDwAAAAAAVAAAAAABcQAAAAAAHAAAAAABbgAAAAADbgAAAAACbgAAAAACbgAAAAAAbgAAAAADHAAAAAABcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAADwAAAAAAGwAAAAAAcQAAAAAAHAAAAAABbgAAAAACbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAABHAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAGwAAAAADcQAAAAAAHAAAAAABbgAAAAABbgAAAAADbgAAAAADbgAAAAABbgAAAAAAHAAAAAAAcQAAAAAAGwAAAAADGwAAAAACGwAAAAAAcQAAAAAAVAAAAAAA version: 6 1,-3: ind: 1,-3 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAGgAAAAAAGgAAAAADGgAAAAACGgAAAAACGgAAAAABGgAAAAAAcAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAADGgAAAAABGgAAAAADGgAAAAABcAAAAAAADAAAAAACDAAAAAAADAAAAAADDAAAAAAADAAAAAAAcAAAAAAARAAAAAACRAAAAAADcAAAAAAAbQAAAAACbQAAAAAAbQAAAAABbQAAAAAAbQAAAAACbQAAAAABGgAAAAAADAAAAAAADAAAAAACDAAAAAADDAAAAAACDAAAAAADGgAAAAACRAAAAAAARAAAAAADGgAAAAAAbQAAAAACbQAAAAAAbQAAAAABbQAAAAADbQAAAAACbQAAAAAAcAAAAAAADAAAAAADDAAAAAABDAAAAAAADAAAAAACDAAAAAAAcAAAAAAARAAAAAAARAAAAAABcAAAAAAAbQAAAAABbQAAAAACbQAAAAACbQAAAAAAbQAAAAADbQAAAAACcAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAABcAAAAAAAcAAAAAAARAAAAAABRAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAADbQAAAAAAbQAAAAABbQAAAAADcAAAAAAADAAAAAABDAAAAAACDAAAAAAADAAAAAABcAAAAAAAXQAAAAAAXQAAAAABXQAAAAACNwAAAAAAbQAAAAADbQAAAAABbQAAAAACbQAAAAAAbQAAAAAAbQAAAAADcAAAAAAADAAAAAAADAAAAAAADAAAAAABDAAAAAAAcAAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAB + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAGwAAAAAAGwAAAAADGwAAAAACGwAAAAACGwAAAAABGwAAAAAAcQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAGwAAAAAAGwAAAAACGwAAAAADGwAAAAABGwAAAAADGwAAAAABcQAAAAAADAAAAAACDAAAAAAADAAAAAADDAAAAAAADAAAAAAAcQAAAAAARQAAAAACRQAAAAADcQAAAAAAbgAAAAACbgAAAAAAbgAAAAABbgAAAAAAbgAAAAACbgAAAAABGwAAAAAADAAAAAAADAAAAAACDAAAAAADDAAAAAACDAAAAAADGwAAAAACRQAAAAAARQAAAAADGwAAAAAAbgAAAAACbgAAAAAAbgAAAAABbgAAAAADbgAAAAACbgAAAAAAcQAAAAAADAAAAAADDAAAAAABDAAAAAAADAAAAAACDAAAAAAAcQAAAAAARQAAAAAARQAAAAABcQAAAAAAbgAAAAABbgAAAAACbgAAAAACbgAAAAAAbgAAAAADbgAAAAACcQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAABcQAAAAAAcQAAAAAARQAAAAABRQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAADbgAAAAAAbgAAAAABbgAAAAADcQAAAAAADAAAAAABDAAAAAACDAAAAAAADAAAAAABcQAAAAAAXgAAAAAAXgAAAAABXgAAAAACOAAAAAAAbgAAAAADbgAAAAABbgAAAAACbgAAAAAAbgAAAAAAbgAAAAADcQAAAAAADAAAAAAADAAAAAAADAAAAAABDAAAAAAAcQAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAAB version: 6 -3,0: ind: -3,0 - tiles: GgAAAAADGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAbAAAAAACbAAAAAAAcAAAAAAARQAAAAAAUwAAAAADUwAAAAADUwAAAAADcAAAAAAARQAAAAADRQAAAAAARQAAAAABGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAACcAAAAAAARQAAAAAARQAAAAADRQAAAAADGgAAAAABGgAAAAADcAAAAAAAGgAAAAACGgAAAAAAGgAAAAAAGgAAAAADGgAAAAADcAAAAAAAUwAAAAACUwAAAAABUwAAAAACcAAAAAAARQAAAAACRQAAAAADRQAAAAACGgAAAAACGgAAAAABGgAAAAACGgAAAAABGgAAAAADGgAAAAACGgAAAAADGgAAAAADcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAARQAAAAACRQAAAAACRQAAAAAAGgAAAAACGgAAAAADcAAAAAAAGgAAAAADGgAAAAADGgAAAAADGgAAAAABGgAAAAACcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACGgAAAAADRQAAAAAARQAAAAACRQAAAAABLQAAAAACLQAAAAACcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAACGgAAAAAAGgAAAAABcAAAAAAARQAAAAACRQAAAAACRQAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAGgAAAAABbQAAAAABbQAAAAAAcAAAAAAAbQAAAAACcAAAAAAAUwAAAAACUwAAAAABUwAAAAACRQAAAAADUwAAAAADUwAAAAADUwAAAAABbwAAAAAAAAAAAAAAcAAAAAAAGgAAAAACbQAAAAACbQAAAAACGgAAAAADbQAAAAACcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADRQAAAAADUwAAAAADUwAAAAAAUwAAAAABbwAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAbQAAAAADbQAAAAAAcAAAAAAAbQAAAAABcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADRQAAAAACUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAADGgAAAAABGgAAAAACGgAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAABGgAAAAABSgAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAACIwAAAAACKgAAAAADGgAAAAABGgAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAADGgAAAAAASgAAAAAASgAAAAAAKQAAAAAAcAAAAAAAUwAAAAADDwAAAAAAUwAAAAACIwAAAAAAGgAAAAADGgAAAAABGgAAAAAAGgAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAKQAAAAAAGgAAAAACUwAAAAABDwAAAAAADwAAAAAAGgAAAAACGgAAAAAAGgAAAAADGgAAAAABcAAAAAAASgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAUwAAAAACDwAAAAAAUwAAAAACWwAAAAACUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAD + tiles: GwAAAAADGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAbQAAAAACbQAAAAAAcQAAAAAARgAAAAAAVAAAAAADVAAAAAADVAAAAAADcQAAAAAARgAAAAADRgAAAAAARgAAAAABGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAACcQAAAAAARgAAAAAARgAAAAADRgAAAAADGwAAAAABGwAAAAADcQAAAAAAGwAAAAACGwAAAAAAGwAAAAAAGwAAAAADGwAAAAADcQAAAAAAVAAAAAACVAAAAAABVAAAAAACcQAAAAAARgAAAAACRgAAAAADRgAAAAACGwAAAAACGwAAAAABGwAAAAACGwAAAAABGwAAAAADGwAAAAACGwAAAAADGwAAAAADcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAADcQAAAAAARgAAAAACRgAAAAACRgAAAAAAGwAAAAACGwAAAAADcQAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAABGwAAAAACcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAACGwAAAAADRgAAAAAARgAAAAACRgAAAAABLgAAAAACLgAAAAACcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAACGwAAAAAAGwAAAAABcQAAAAAARgAAAAACRgAAAAACRgAAAAAAcQAAAAAAGwAAAAAAGwAAAAACGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAGwAAAAABbgAAAAABbgAAAAAAcQAAAAAAbgAAAAACcQAAAAAAVAAAAAACVAAAAAABVAAAAAACRgAAAAADVAAAAAADVAAAAAADVAAAAAABcAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACbgAAAAACbgAAAAACGwAAAAADbgAAAAACcQAAAAAAVAAAAAAAVAAAAAACVAAAAAADRgAAAAADVAAAAAADVAAAAAAAVAAAAAABcAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAbgAAAAADbgAAAAAAcQAAAAAAbgAAAAABcQAAAAAAVAAAAAAAVAAAAAACVAAAAAADRgAAAAACVAAAAAAAVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAABGwAAAAACGwAAAAAAcQAAAAAAGwAAAAAAGwAAAAABGwAAAAABGwAAAAABSwAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAACJAAAAAACKwAAAAADGwAAAAABGwAAAAAAcQAAAAAAGwAAAAADGwAAAAACGwAAAAADGwAAAAAASwAAAAAASwAAAAAAKgAAAAAAcQAAAAAAVAAAAAADDwAAAAAAVAAAAAACJAAAAAAAGwAAAAADGwAAAAABGwAAAAAAGwAAAAABSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAKgAAAAAAGwAAAAACVAAAAAABDwAAAAAADwAAAAAAGwAAAAACGwAAAAAAGwAAAAADGwAAAAABcQAAAAAASwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAASwAAAAAASwAAAAAASwAAAAAAcQAAAAAAVAAAAAACDwAAAAAAVAAAAAACXAAAAAACVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAAD version: 6 -3,-2: ind: -3,-2 - tiles: WAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAABUwAAAAACcAAAAAAAGgAAAAACGgAAAAADGgAAAAADGgAAAAAAGgAAAAADGgAAAAADGgAAAAAAIwAAAAADUwAAAAACUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAABGgAAAAAAGgAAAAACGgAAAAADGgAAAAABGgAAAAACIwAAAAAAUwAAAAADUwAAAAACUwAAAAADcAAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAABGgAAAAACGgAAAAABGgAAAAAAGgAAAAACIwAAAAADUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAADbQAAAAADbQAAAAABbQAAAAABbQAAAAADcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACcAAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAAAbQAAAAACbQAAAAACbQAAAAADbQAAAAABcAAAAAAARQAAAAABRQAAAAADRQAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAAGgAAAAAAbQAAAAAAbQAAAAABbQAAAAABbQAAAAABbQAAAAAAbQAAAAABbQAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAA + tiles: WQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAADVAAAAAAAVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAABVAAAAAACcQAAAAAAGwAAAAACGwAAAAADGwAAAAADGwAAAAAAGwAAAAADGwAAAAADGwAAAAAAJAAAAAADVAAAAAACVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAAAGwAAAAABGwAAAAAAGwAAAAACGwAAAAADGwAAAAABGwAAAAACJAAAAAAAVAAAAAADVAAAAAACVAAAAAADcQAAAAAASwAAAAAASwAAAAAASwAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAACGwAAAAABGwAAAAAAGwAAAAACJAAAAAADVAAAAAACVAAAAAAAVAAAAAAAcQAAAAAASwAAAAAASwAAAAAASwAAAAAAcQAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAADbgAAAAABbgAAAAABbgAAAAADcQAAAAAAVAAAAAAAVAAAAAACVAAAAAACcQAAAAAASwAAAAAASwAAAAAASwAAAAAAcQAAAAAAbgAAAAAAbgAAAAADbgAAAAAAbgAAAAACbgAAAAACbgAAAAADbgAAAAABcQAAAAAARgAAAAABRgAAAAADRgAAAAAAcQAAAAAASwAAAAAASwAAAAAASwAAAAAAGwAAAAAAbgAAAAAAbgAAAAABbgAAAAABbgAAAAABbgAAAAAAbgAAAAABbgAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAcQAAAAAASwAAAAAASwAAAAAASwAAAAAA version: 6 -3,-1: ind: -3,-1 - tiles: cAAAAAAAbgAAAAADbgAAAAAAbQAAAAADbQAAAAABbQAAAAACbgAAAAACbgAAAAADcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACcAAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADcAAAAAAAGgAAAAADGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAADUwAAAAABUwAAAAADcAAAAAAAGgAAAAACGgAAAAAAUwAAAAADXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAUwAAAAACUwAAAAADUwAAAAADcAAAAAAAUwAAAAABUwAAAAACUwAAAAACcAAAAAAAGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAUwAAAAABUwAAAAAAUwAAAAADcAAAAAAAUwAAAAACUwAAAAADUwAAAAADcAAAAAAAGgAAAAAAGgAAAAADUwAAAAAAGgAAAAACcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAGgAAAAABGgAAAAADcAAAAAAAGgAAAAACcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAADcAAAAAAAGgAAAAACGgAAAAACUwAAAAAAGgAAAAAAGgAAAAADGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAADGgAAAAADcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAABcAAAAAAAGgAAAAAAGgAAAAACGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAABGgAAAAADGgAAAAACGgAAAAACGgAAAAADcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAARQAAAAADUwAAAAABUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAABGgAAAAAAGgAAAAACIwAAAAABIwAAAAABGgAAAAADRQAAAAAAUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAARQAAAAACRQAAAAACRQAAAAAD + tiles: cQAAAAAAbwAAAAADbwAAAAAAbgAAAAADbgAAAAABbgAAAAACbwAAAAACbwAAAAADcQAAAAAAVAAAAAAAVAAAAAADVAAAAAACcQAAAAAASwAAAAAASwAAAAAASwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAADcQAAAAAAGwAAAAADGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAVAAAAAADVAAAAAABVAAAAAADcQAAAAAAGwAAAAACGwAAAAAAVAAAAAADYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAVAAAAAACVAAAAAADVAAAAAADcQAAAAAAVAAAAAABVAAAAAACVAAAAAACcQAAAAAAGwAAAAADGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAVAAAAAABVAAAAAAAVAAAAAADcQAAAAAAVAAAAAACVAAAAAADVAAAAAADcQAAAAAAGwAAAAAAGwAAAAADVAAAAAAAGwAAAAACcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAAAcQAAAAAAGwAAAAABGwAAAAADcQAAAAAAGwAAAAACcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAADcQAAAAAAGwAAAAACGwAAAAACVAAAAAAAGwAAAAAAGwAAAAADGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAADcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAABcQAAAAAAGwAAAAAAGwAAAAACGwAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAABGwAAAAADGwAAAAACGwAAAAACGwAAAAADcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAARgAAAAADVAAAAAABVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAAAGwAAAAACJAAAAAABJAAAAAABGwAAAAADRgAAAAAAVAAAAAAAVAAAAAADVAAAAAAAcQAAAAAARgAAAAACRgAAAAACRgAAAAAD version: 6 2,-3: ind: 2,-3 - tiles: cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAAAbQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAADbQAAAAADbQAAAAABbQAAAAADAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAXQAAAAADNwAAAAAANwAAAAAANwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAWAAAAAAAXQAAAAACXQAAAAAAXQAAAAACNwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAANwAAAAAANwAAAAAAXQAAAAABNwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAXQAAAAACcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAARQAAAAACRQAAAAAARQAAAAACcAAAAAAAYwAAAAAAYwAAAAACYwAAAAABcAAAAAAAcAAAAAAANwAAAAAAXQAAAAABXQAAAAADXQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACbAAAAAADYwAAAAACcAAAAAAAcAAAAAAAXQAAAAACXQAAAAABNwAAAAAANwAAAAAAcAAAAAAAYwAAAAABYwAAAAADYwAAAAADYwAAAAAAYwAAAAADcAAAAAAAYwAAAAAAbAAAAAAAYwAAAAABYwAAAAABYwAAAAAC + tiles: cQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADbgAAAAAAbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAbgAAAAADbgAAAAADbgAAAAABbgAAAAADAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAXgAAAAADOAAAAAAAOAAAAAAAOAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAWQAAAAAAXgAAAAACXgAAAAAAXgAAAAACOAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAXgAAAAABOAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAXgAAAAACcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAARgAAAAACRgAAAAAARgAAAAACcQAAAAAAZAAAAAAAZAAAAAACZAAAAAABcQAAAAAAcQAAAAAAOAAAAAAAXgAAAAABXgAAAAADXgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAZAAAAAACbQAAAAADZAAAAAACcQAAAAAAcQAAAAAAXgAAAAACXgAAAAABOAAAAAAAOAAAAAAAcQAAAAAAZAAAAAABZAAAAAADZAAAAAADZAAAAAAAZAAAAAADcQAAAAAAZAAAAAAAbQAAAAAAZAAAAAABZAAAAAABZAAAAAAC version: 6 2,-2: ind: 2,-2 - tiles: NwAAAAAAXQAAAAABNwAAAAAANwAAAAAAcAAAAAAAYwAAAAACZgAAAAADawAAAAACZgAAAAAAYwAAAAACYwAAAAAAYwAAAAAAbAAAAAACYwAAAAAAYwAAAAAAYwAAAAACNwAAAAAAXQAAAAABNwAAAAAANwAAAAAAcAAAAAAAYwAAAAADZgAAAAADawAAAAACZgAAAAAAYwAAAAADcAAAAAAAYwAAAAADbAAAAAACYwAAAAABYwAAAAADYwAAAAACNwAAAAAAXQAAAAADXQAAAAACXQAAAAABUwAAAAACYwAAAAABagAAAAACZgAAAAABagAAAAACYwAAAAABYwAAAAACYwAAAAAAbAAAAAADYwAAAAAAYwAAAAADaAAAAAABXQAAAAAAXQAAAAABNwAAAAAANwAAAAAAcAAAAAAAYwAAAAACZgAAAAAAawAAAAADZgAAAAAAYwAAAAAAcAAAAAAAYwAAAAABbAAAAAAAYwAAAAADYwAAAAAAaAAAAAAAXQAAAAABXQAAAAABNwAAAAAANwAAAAAAcAAAAAAAYwAAAAACZgAAAAADawAAAAAAZgAAAAAAYwAAAAABYwAAAAADYwAAAAACbAAAAAACYwAAAAABYwAAAAADaAAAAAABXQAAAAAANwAAAAAANwAAAAAANwAAAAAAcAAAAAAAYwAAAAAAYwAAAAADYwAAAAAAYwAAAAACYwAAAAABcAAAAAAAYwAAAAAAYwAAAAADYwAAAAADYwAAAAACYwAAAAAANwAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACcAAAAAAAYwAAAAADYwAAAAABUwAAAAACUwAAAAACUwAAAAACUwAAAAABcAAAAAAAYwAAAAABYwAAAAAAYwAAAAACYwAAAAACYwAAAAACcAAAAAAAYwAAAAADYwAAAAACYwAAAAABcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACYwAAAAAAYwAAAAADbAAAAAACbAAAAAADbAAAAAACYwAAAAABYwAAAAACYwAAAAACbAAAAAACYwAAAAACcAAAAAAAYwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAYwAAAAACYwAAAAADYwAAAAAAYwAAAAADYwAAAAABcAAAAAAAYwAAAAAAbAAAAAABYwAAAAACcAAAAAAAYwAAAAAAcAAAAAAAYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAbAAAAAAAYwAAAAACYwAAAAACYwAAAAAAYwAAAAADYwAAAAABYwAAAAADYwAAAAABcAAAAAAAZwAAAAAAZwAAAAAAYwAAAAADZwAAAAABZwAAAAAAcAAAAAAAYwAAAAABbAAAAAADYwAAAAABcAAAAAAAYwAAAAACYwAAAAAAaAAAAAACaAAAAAACYwAAAAADcAAAAAAAZwAAAAADZwAAAAADbAAAAAAAZwAAAAAAZwAAAAABcAAAAAAAYwAAAAAAbAAAAAAAYwAAAAADcAAAAAAAcAAAAAAAYwAAAAAAaAAAAAAAaAAAAAAAYwAAAAABYwAAAAADYwAAAAAAbAAAAAABbAAAAAADbAAAAAACYwAAAAADYwAAAAABYwAAAAACbAAAAAADYwAAAAADYwAAAAADYwAAAAABYwAAAAACaAAAAAAAaAAAAAACYwAAAAABcAAAAAAAZwAAAAADZwAAAAADbAAAAAADZwAAAAAAZwAAAAABcAAAAAAAYwAAAAADbAAAAAACYwAAAAABYwAAAAACYwAAAAABYwAAAAADYwAAAAADYwAAAAABYwAAAAACcAAAAAAAZwAAAAABZwAAAAACYwAAAAACZwAAAAACZwAAAAADcAAAAAAAYwAAAAADYwAAAAADYwAAAAABYwAAAAACYwAAAAAA + tiles: OAAAAAAAXgAAAAABOAAAAAAAOAAAAAAAcQAAAAAAZAAAAAACZwAAAAADbAAAAAACZwAAAAAAZAAAAAACZAAAAAAAZAAAAAAAbQAAAAACZAAAAAAAZAAAAAAAZAAAAAACOAAAAAAAXgAAAAABOAAAAAAAOAAAAAAAcQAAAAAAZAAAAAADZwAAAAADbAAAAAACZwAAAAAAZAAAAAADcQAAAAAAZAAAAAADbQAAAAACZAAAAAABZAAAAAADZAAAAAACOAAAAAAAXgAAAAADXgAAAAACXgAAAAABVAAAAAACZAAAAAABawAAAAACZwAAAAABawAAAAACZAAAAAABZAAAAAACZAAAAAAAbQAAAAADZAAAAAAAZAAAAAADaQAAAAABXgAAAAAAXgAAAAABOAAAAAAAOAAAAAAAcQAAAAAAZAAAAAACZwAAAAAAbAAAAAADZwAAAAAAZAAAAAAAcQAAAAAAZAAAAAABbQAAAAAAZAAAAAADZAAAAAAAaQAAAAAAXgAAAAABXgAAAAABOAAAAAAAOAAAAAAAcQAAAAAAZAAAAAACZwAAAAADbAAAAAAAZwAAAAAAZAAAAAABZAAAAAADZAAAAAACbQAAAAACZAAAAAABZAAAAAADaQAAAAABXgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAcQAAAAAAZAAAAAAAZAAAAAADZAAAAAAAZAAAAAACZAAAAAABcQAAAAAAZAAAAAAAZAAAAAADZAAAAAADZAAAAAACZAAAAAAAOAAAAAAALQAAAAAALQAAAAAALQAAAAAAcQAAAAAAcQAAAAAAZAAAAAADZAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAACcQAAAAAAZAAAAAADZAAAAAABVAAAAAACVAAAAAACVAAAAAACVAAAAAABcQAAAAAAZAAAAAABZAAAAAAAZAAAAAACZAAAAAACZAAAAAACcQAAAAAAZAAAAAADZAAAAAACZAAAAAABcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACZAAAAAAAZAAAAAADbQAAAAACbQAAAAADbQAAAAACZAAAAAABZAAAAAACZAAAAAACbQAAAAACZAAAAAACcQAAAAAAZAAAAAADVAAAAAAAVAAAAAACVAAAAAABVAAAAAAAcQAAAAAAZAAAAAACZAAAAAADZAAAAAAAZAAAAAADZAAAAAABcQAAAAAAZAAAAAAAbQAAAAABZAAAAAACcQAAAAAAZAAAAAAAcQAAAAAAZAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAbQAAAAAAZAAAAAACZAAAAAACZAAAAAAAZAAAAAADZAAAAAABZAAAAAADZAAAAAABcQAAAAAAaAAAAAAAaAAAAAAAZAAAAAADaAAAAAABaAAAAAAAcQAAAAAAZAAAAAABbQAAAAADZAAAAAABcQAAAAAAZAAAAAACZAAAAAAAaQAAAAACaQAAAAACZAAAAAADcQAAAAAAaAAAAAADaAAAAAADbQAAAAAAaAAAAAAAaAAAAAABcQAAAAAAZAAAAAAAbQAAAAAAZAAAAAADcQAAAAAAcQAAAAAAZAAAAAAAaQAAAAAAaQAAAAAAZAAAAAABZAAAAAADZAAAAAAAbQAAAAABbQAAAAADbQAAAAACZAAAAAADZAAAAAABZAAAAAACbQAAAAADZAAAAAADZAAAAAADZAAAAAABZAAAAAACaQAAAAAAaQAAAAACZAAAAAABcQAAAAAAaAAAAAADaAAAAAADbQAAAAADaAAAAAAAaAAAAAABcQAAAAAAZAAAAAADbQAAAAACZAAAAAABZAAAAAACZAAAAAABZAAAAAADZAAAAAADZAAAAAABZAAAAAACcQAAAAAAaAAAAAABaAAAAAACZAAAAAACaAAAAAACaAAAAAADcQAAAAAAZAAAAAADZAAAAAADZAAAAAABZAAAAAACZAAAAAAA version: 6 3,-3: ind: 3,-3 - tiles: cAAAAAAAbQAAAAACbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAABcAAAAAAAbQAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbQAAAAADbQAAAAACcAAAAAAAbQAAAAABbQAAAAAAbQAAAAAAOwAAAAAAbQAAAAACbQAAAAAAbQAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbQAAAAACbQAAAAACcAAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAbQAAAAACWAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbQAAAAAAbQAAAAACbQAAAAACbQAAAAABbQAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAbQAAAAACWAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAABWAAAAAAAcAAAAAAAUwAAAAABWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAWAAAAAAAWAAAAAAAUwAAAAADcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAUwAAAAAAWAAAAAAAWAAAAAAAUwAAAAABWAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAACWAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAYwAAAAADYwAAAAACYwAAAAABYwAAAAADYwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAA + tiles: cQAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAABcQAAAAAAbgAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbgAAAAADbgAAAAACcQAAAAAAbgAAAAABbgAAAAAAbgAAAAAAPAAAAAAAbgAAAAACbgAAAAAAbgAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbgAAAAACbgAAAAACcQAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAbgAAAAACWQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbgAAAAAAbgAAAAACbgAAAAACbgAAAAABbgAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAbgAAAAACWQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAABWQAAAAAAcQAAAAAAVAAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAWQAAAAAAWQAAAAAAVAAAAAADcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAWQAAAAAAWQAAAAAAVAAAAAABWQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAVAAAAAACWQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAZAAAAAADZAAAAAACZAAAAAABZAAAAAADZAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAA version: 6 3,-2: ind: 3,-2 - tiles: YwAAAAAAYwAAAAADYwAAAAABbAAAAAAAYwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAYwAAAAABYwAAAAADYwAAAAADbAAAAAADYwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAABcAAAAAAAcAAAAAAAbwAAAAAAaAAAAAABaAAAAAAAYwAAAAACbAAAAAABYwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADcAAAAAAAbwAAAAAAaAAAAAACaAAAAAAAYwAAAAACbAAAAAADYwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAaAAAAAAAaAAAAAABYwAAAAACbAAAAAACYwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAYwAAAAACYwAAAAADYwAAAAABbAAAAAABYwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAADcAAAAAAAcAAAAAAAbwAAAAAAYwAAAAACYwAAAAABYwAAAAABYwAAAAAAYwAAAAABcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAADcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAYwAAAAACYwAAAAACYwAAAAADYwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbAAAAAABbAAAAAADbAAAAAAAYwAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbAAAAAADbAAAAAABbAAAAAAAYwAAAAABcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAYwAAAAADYwAAAAABYwAAAAACYwAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAYwAAAAABYwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbAAAAAADYwAAAAABcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAYwAAAAAAYwAAAAABcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAA + tiles: ZAAAAAAAZAAAAAADZAAAAAABbQAAAAAAZAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAZAAAAAABZAAAAAADZAAAAAADbQAAAAADZAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAbgAAAAABcQAAAAAAcQAAAAAAcAAAAAAAaQAAAAABaQAAAAAAZAAAAAACbQAAAAABZAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADcQAAAAAAcAAAAAAAaQAAAAACaQAAAAAAZAAAAAACbQAAAAADZAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAaQAAAAAAaQAAAAABZAAAAAACbQAAAAACZAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAZAAAAAACZAAAAAADZAAAAAABbQAAAAABZAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAbgAAAAADcQAAAAAAcQAAAAAAcAAAAAAAZAAAAAACZAAAAAABZAAAAAABZAAAAAAAZAAAAAABcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAADcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAZAAAAAACZAAAAAACZAAAAAADZAAAAAADcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAbQAAAAABbQAAAAADbQAAAAAAZAAAAAABcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAbQAAAAADbQAAAAABbQAAAAAAZAAAAAABcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAZAAAAAADZAAAAAABZAAAAAACZAAAAAABcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAZAAAAAABZAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAADZAAAAAABcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAZAAAAAAAZAAAAAABcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: cAAAAAAAYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbAAAAAACbAAAAAAAbAAAAAABYwAAAAABcAAAAAAAYwAAAAAAYwAAAAADYwAAAAAAYwAAAAABYwAAAAABcAAAAAAAGgAAAAACGgAAAAAAGgAAAAACGgAAAAADcAAAAAAAYwAAAAADYwAAAAACYwAAAAABcAAAAAAAGgAAAAADYwAAAAABYwAAAAAAYwAAAAAAYwAAAAACYwAAAAACcAAAAAAASgAAAAAASgAAAAAASgAAAAAAGgAAAAAAGgAAAAADYwAAAAAAbAAAAAABYwAAAAABGgAAAAAAGgAAAAADYwAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAADcAAAAAAASgAAAAAASgAAAAAASgAAAAAAGgAAAAACcAAAAAAAYwAAAAAAbAAAAAAAYwAAAAABcAAAAAAAGgAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACbAAAAAAAYwAAAAABcAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAAAGgAAAAACGgAAAAACGgAAAAADcAAAAAAAYwAAAAACbAAAAAAAYwAAAAACcAAAAAAAYwAAAAAAGgAAAAADGgAAAAAAGgAAAAADcAAAAAAAGgAAAAAAGgAAAAABGgAAAAACGgAAAAABGgAAAAAAGgAAAAABGgAAAAADYwAAAAABbAAAAAADYwAAAAADYwAAAAAAYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAADGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAYwAAAAABYwAAAAABYwAAAAADcAAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAACGgAAAAABGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYAAAAAAAGgAAAAABGgAAAAABGgAAAAABGgAAAAABGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAADGgAAAAAAGgAAAAABGgAAAAACcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACcAAAAAAAGgAAAAADUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAGgAAAAABUwAAAAADUwAAAAADUwAAAAAB + tiles: cQAAAAAAZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbQAAAAACbQAAAAAAbQAAAAABZAAAAAABcQAAAAAAZAAAAAAAZAAAAAADZAAAAAAAZAAAAAABZAAAAAABcQAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAADcQAAAAAAZAAAAAADZAAAAAACZAAAAAABcQAAAAAAGwAAAAADZAAAAAABZAAAAAAAZAAAAAAAZAAAAAACZAAAAAACcQAAAAAASwAAAAAASwAAAAAASwAAAAAAGwAAAAAAGwAAAAADZAAAAAAAbQAAAAABZAAAAAABGwAAAAAAGwAAAAADZAAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAADcQAAAAAASwAAAAAASwAAAAAASwAAAAAAGwAAAAACcQAAAAAAZAAAAAAAbQAAAAAAZAAAAAABcQAAAAAAGwAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAACbQAAAAAAZAAAAAABcQAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAADcQAAAAAAZAAAAAACbQAAAAAAZAAAAAACcQAAAAAAZAAAAAAAGwAAAAADGwAAAAAAGwAAAAADcQAAAAAAGwAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAAAGwAAAAABGwAAAAADZAAAAAABbQAAAAADZAAAAAADZAAAAAAAZAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAACGwAAAAADGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAZAAAAAABZAAAAAABZAAAAAADcQAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAACGwAAAAABGwAAAAABGwAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYQAAAAAAGwAAAAABGwAAAAABGwAAAAABGwAAAAABGwAAAAADGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAADGwAAAAAAGwAAAAABGwAAAAACcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAABcQAAAAAAVAAAAAADVAAAAAAAVAAAAAACcQAAAAAAGwAAAAADVAAAAAADVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADVAAAAAADVAAAAAABVAAAAAABVAAAAAAAVAAAAAABVAAAAAADcQAAAAAAGwAAAAABVAAAAAADVAAAAAADVAAAAAAB version: 6 3,-1: ind: 3,-1 - tiles: cAAAAAAAcAAAAAAAYwAAAAADAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAGgAAAAADGgAAAAACcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAYwAAAAADYwAAAAAAYwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAYwAAAAACYwAAAAADYwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAYwAAAAACYwAAAAAAYwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cQAAAAAAcQAAAAAAZAAAAAADAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGwAAAAADGwAAAAACcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAZAAAAAADZAAAAAAAZAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAZAAAAAACZAAAAAADZAAAAAACcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAZAAAAAACZAAAAAAAZAAAAAADcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-4: ind: 1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAA version: 6 2,-4: ind: 2,-4 - tiles: bwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA version: 6 -5,-1: ind: -5,-1 - tiles: AAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: AAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA version: 6 -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA version: 6 3,-4: ind: 3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA version: 6 -4,-1: ind: -4,-1 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAYQAAAAAAYQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYQAAAAAAcAAAAAAAYQAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAABGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAACGgAAAAABcAAAAAAAGgAAAAADKgAAAAACbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAAAGgAAAAAAcAAAAAAAGgAAAAABGgAAAAADbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAACGgAAAAAAcAAAAAAAGgAAAAABKgAAAAADbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAADGgAAAAADGgAAAAABGgAAAAACGgAAAAACcAAAAAAAGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAABGgAAAAACGgAAAAADGgAAAAADGgAAAAADcAAAAAAAGgAAAAABKgAAAAABXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAACKgAAAAABGgAAAAABKgAAAAACGgAAAAACKgAAAAACGgAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAACGgAAAAADGgAAAAADGgAAAAADGgAAAAADcAAAAAAAGgAAAAABKgAAAAAD + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAABGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYgAAAAAAYgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYgAAAAAAcQAAAAAAYgAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAABGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAADcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAACGwAAAAABcQAAAAAAGwAAAAADKwAAAAACcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAAAGwAAAAAAcQAAAAAAGwAAAAABGwAAAAADcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAACGwAAAAAAcQAAAAAAGwAAAAABKwAAAAADcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAGwAAAAABGwAAAAAAGwAAAAADGwAAAAADGwAAAAABGwAAAAACGwAAAAACcQAAAAAAGwAAAAADGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAGwAAAAACGwAAAAACGwAAAAABGwAAAAACGwAAAAADGwAAAAADGwAAAAADcQAAAAAAGwAAAAABKwAAAAABYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAGwAAAAACKwAAAAABGwAAAAABKwAAAAACGwAAAAACKwAAAAACGwAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAACGwAAAAADGwAAAAADGwAAAAADGwAAAAADcQAAAAAAGwAAAAABKwAAAAAD version: 6 -4,-2: ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAA version: 6 -6,-1: ind: -6,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -6,-2: ind: -6,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 -4,0: ind: -4,0 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAGgAAAAADYwAAAAACcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAAAcAAAAAAAGgAAAAADcAAAAAAAGgAAAAABGgAAAAACGgAAAAACcAAAAAAAGgAAAAABGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAACGgAAAAABGgAAAAABGgAAAAADGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAGgAAAAABKgAAAAACGgAAAAACKgAAAAACGgAAAAADKgAAAAACGgAAAAABKgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAAAGgAAAAADGgAAAAABGgAAAAADGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAABcAAAAAAAGgAAAAACGgAAAAADGgAAAAACcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARQAAAAAARQAAAAABRQAAAAADcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAMwAAAAAAGgAAAAADDwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYwAAAAABYwAAAAABYwAAAAABYwAAAAACcAAAAAAAMwAAAAAAGgAAAAADDwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAAAYwAAAAACYwAAAAAAcAAAAAAAMwAAAAAAGgAAAAACDwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAADYwAAAAACYwAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAACYwAAAAADYwAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAACGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAACYwAAAAAAYwAAAAAAGgAAAAADGgAAAAAAKgAAAAAAIwAAAAAAKgAAAAACcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAYAAAAAAAYwAAAAAAYwAAAAABYwAAAAAAYwAAAAADcAAAAAAAGgAAAAADIwAAAAADIwAAAAAAIwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAAAGgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIwAAAAAAcAAAAAAAcAAAAAAA + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAAGwAAAAADZAAAAAACcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAAAcQAAAAAAGwAAAAADcQAAAAAAGwAAAAABGwAAAAACGwAAAAACcQAAAAAAGwAAAAABGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAACGwAAAAABGwAAAAABGwAAAAADGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAGwAAAAABKwAAAAACGwAAAAACKwAAAAACGwAAAAADKwAAAAACGwAAAAABKwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAACGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAABcQAAAAAAGwAAAAACGwAAAAADGwAAAAACcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARgAAAAAARgAAAAABRgAAAAADcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAADcQAAAAAANAAAAAAAGwAAAAADDwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAZAAAAAABZAAAAAABZAAAAAABZAAAAAACcQAAAAAANAAAAAAAGwAAAAADDwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAADZAAAAAAAZAAAAAACZAAAAAAAcQAAAAAANAAAAAAAGwAAAAACDwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAADZAAAAAADZAAAAAACZAAAAAAAcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAACZAAAAAACZAAAAAADZAAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAACGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAACZAAAAAACZAAAAAAAZAAAAAAAGwAAAAADGwAAAAAAKwAAAAAAJAAAAAAAKwAAAAACcQAAAAAAcQAAAAAAYQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAYQAAAAAAZAAAAAAAZAAAAAABZAAAAAAAZAAAAAADcQAAAAAAGwAAAAADJAAAAAADJAAAAAAAJAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAcQAAAAAAGwAAAAACGwAAAAABGwAAAAAAGwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAJAAAAAAAcQAAAAAAcQAAAAAA version: 6 -4,-3: ind: -4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAA version: 6 0,-4: ind: 0,-4 - tiles: UwAAAAABUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAATAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAATAAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAUwAAAAACUwAAAAADUwAAAAADcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAA + tiles: VAAAAAABVAAAAAAAVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAATQAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATQAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAABVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVAAAAAACVAAAAAADVAAAAAADcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAACYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAA version: 6 -1,-4: ind: -1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAACcAAAAAAAHwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAbQAAAAACbQAAAAAAbQAAAAAAbQAAAAACcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAbQAAAAABbQAAAAACbQAAAAADbQAAAAACcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAABVAAAAAACVAAAAAACVAAAAAABVAAAAAACVAAAAAADVAAAAAADVAAAAAABVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAACVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAADVAAAAAADVAAAAAACcQAAAAAAIAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAACcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABcQAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAACcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAABVAAAAAAB version: 6 -2,-4: ind: -2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAA version: 6 -1,-6: ind: -1,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAA version: 6 0,-5: ind: 0,-5 - tiles: cAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAADUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAADUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAATwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAATwAAAAAASwAAAAAATwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAATwAAAAAASwAAAAAATwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAATwAAAAAATwAAAAAATwAAAAAASwAAAAAATwAAAAAATwAAAAAATwAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAATAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAATAAAAAAALAAAAAAALAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAATwAAAAAASwAAAAAATwAAAAAAcAAAAAAATwAAAAAASwAAAAAATwAAAAAAcAAAAAAALAAAAAAALAAAAAAAUwAAAAABUwAAAAABUwAAAAABBwAAAAAAcAAAAAAAcAAAAAAATwAAAAAASwAAAAAATwAAAAAALAAAAAAATwAAAAAASwAAAAAATwAAAAAAcAAAAAAALAAAAAAALAAAAAAAUwAAAAADUwAAAAACUwAAAAADBwAAAAAAcAAAAAAAcAAAAAAATwAAAAAASwAAAAAATwAAAAAALAAAAAAATwAAAAAASwAAAAAATwAAAAAAcAAAAAAALAAAAAAALAAAAAAAUwAAAAACUwAAAAACUwAAAAAABwAAAAAAcAAAAAAAcAAAAAAATwAAAAAASwAAAAAATwAAAAAALAAAAAAATwAAAAAASwAAAAAATwAAAAAAcAAAAAAALAAAAAAALAAAAAAAUwAAAAABUwAAAAABUwAAAAACBwAAAAAAcAAAAAAAcAAAAAAATwAAAAAASwAAAAAATwAAAAAALAAAAAAATwAAAAAASwAAAAAATwAAAAAAcAAAAAAALAAAAAAALAAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAATwAAAAAASwAAAAAATwAAAAAAcAAAAAAATwAAAAAASwAAAAAATwAAAAAAcAAAAAAA + tiles: cQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAADVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAADVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAUAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAUAAAAAAATAAAAAAAUAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAUAAAAAAATAAAAAAAUAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAATAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAATAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAATQAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATQAAAAAALQAAAAAALQAAAAAAVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAUAAAAAAATAAAAAAAUAAAAAAAcQAAAAAAUAAAAAAATAAAAAAAUAAAAAAAcQAAAAAALQAAAAAALQAAAAAAVAAAAAABVAAAAAABVAAAAAABBwAAAAAAcQAAAAAAcQAAAAAAUAAAAAAATAAAAAAAUAAAAAAALQAAAAAAUAAAAAAATAAAAAAAUAAAAAAAcQAAAAAALQAAAAAALQAAAAAAVAAAAAADVAAAAAACVAAAAAADBwAAAAAAcQAAAAAAcQAAAAAAUAAAAAAATAAAAAAAUAAAAAAALQAAAAAAUAAAAAAATAAAAAAAUAAAAAAAcQAAAAAALQAAAAAALQAAAAAAVAAAAAACVAAAAAACVAAAAAAABwAAAAAAcQAAAAAAcQAAAAAAUAAAAAAATAAAAAAAUAAAAAAALQAAAAAAUAAAAAAATAAAAAAAUAAAAAAAcQAAAAAALQAAAAAALQAAAAAAVAAAAAABVAAAAAABVAAAAAACBwAAAAAAcQAAAAAAcQAAAAAAUAAAAAAATAAAAAAAUAAAAAAALQAAAAAAUAAAAAAATAAAAAAAUAAAAAAAcQAAAAAALQAAAAAALQAAAAAAVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAUAAAAAAATAAAAAAAUAAAAAAAcQAAAAAAUAAAAAAATAAAAAAAUAAAAAAAcQAAAAAA version: 6 -3,-3: ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbQAAAAABbQAAAAACcAAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAbgAAAAABbgAAAAACcQAAAAAAcQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACcQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA version: 6 -1,1: ind: -1,1 - tiles: UwAAAAAAUwAAAAADUwAAAAACbQAAAAADbQAAAAADbQAAAAAAbQAAAAAAbQAAAAACbQAAAAADbQAAAAADcAAAAAAAGgAAAAADGgAAAAABGgAAAAACcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAbQAAAAADbQAAAAAAbQAAAAADbQAAAAAAbQAAAAADbQAAAAACbQAAAAADcAAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAACcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAADbQAAAAADbQAAAAACbQAAAAADbQAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAbQAAAAABbQAAAAACbQAAAAADbQAAAAACbQAAAAAAbQAAAAACbQAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAAAcAAAAAAAbQAAAAADbQAAAAACbQAAAAABbQAAAAADGgAAAAAAGgAAAAADGgAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAbQAAAAADbQAAAAACbQAAAAADbQAAAAAAGgAAAAACGgAAAAADGgAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAARQAAAAABRQAAAAACcAAAAAAAbQAAAAAAbQAAAAABbQAAAAAAbQAAAAAAGgAAAAAAGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAAARgAAAAADUwAAAAADcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAGgAAAAADGgAAAAACUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAABcAAAAAAAUwAAAAADUwAAAAADUwAAAAACGgAAAAAAGgAAAAABGgAAAAABGgAAAAAAGgAAAAABGgAAAAABGgAAAAACGgAAAAACGgAAAAAAGgAAAAABUwAAAAABUwAAAAACcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAADUwAAAAAB + tiles: VAAAAAAAVAAAAAADVAAAAAACbgAAAAADbgAAAAADbgAAAAAAbgAAAAAAbgAAAAACbgAAAAADbgAAAAADcQAAAAAAGwAAAAADGwAAAAABGwAAAAACcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABcQAAAAAAbgAAAAADbgAAAAAAbgAAAAADbgAAAAAAbgAAAAADbgAAAAACbgAAAAADcQAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAACcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAADbgAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABcQAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAACbgAAAAAAbgAAAAACbgAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAACVAAAAAAAcQAAAAAAbgAAAAADbgAAAAACbgAAAAABbgAAAAADGwAAAAAAGwAAAAADGwAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADcQAAAAAAbgAAAAADbgAAAAACbgAAAAADbgAAAAAAGwAAAAACGwAAAAADGwAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAARgAAAAABRgAAAAACcQAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAAAGwAAAAAAGwAAAAAAGwAAAAABcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAABVAAAAAAARwAAAAADVAAAAAADcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAAAGwAAAAADGwAAAAACVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAADGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACcQAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAACVAAAAAACVAAAAAACVAAAAAADVAAAAAABVAAAAAADVAAAAAACVAAAAAABVAAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAABcQAAAAAAVAAAAAADVAAAAAADVAAAAAACGwAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAABGwAAAAABGwAAAAACGwAAAAACGwAAAAAAGwAAAAABVAAAAAABVAAAAAACcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAADcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAADVAAAAAAB version: 6 3,0: ind: 3,0 - tiles: UwAAAAACUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAABUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAADUwAAAAACcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: VAAAAAACVAAAAAAAVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAAAVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAABVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAADVAAAAAADVAAAAAADVAAAAAADVAAAAAAAVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAADVAAAAAABVAAAAAABVAAAAAADVAAAAAADVAAAAAACcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAACVAAAAAACVAAAAAADVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAACVAAAAAACVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,1: ind: 0,1 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAGgAAAAACGgAAAAACGgAAAAABcAAAAAAAbQAAAAABbQAAAAACcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAABcAAAAAAAbQAAAAAAbQAAAAABcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAABGgAAAAAAGgAAAAADGgAAAAAAGgAAAAABGgAAAAAAbQAAAAADbQAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAGgAAAAACGgAAAAAAGgAAAAAAcAAAAAAAbQAAAAACbQAAAAABcAAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAACcAAAAAAAGgAAAAABGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAARQAAAAAAUwAAAAABUwAAAAADUwAAAAADcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAABUwAAAAADcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAACGgAAAAAAGgAAAAADGgAAAAAAUwAAAAACUwAAAAABUwAAAAABcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAARQAAAAACUwAAAAADUwAAAAAAGgAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABGgAAAAACcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAABGgAAAAABGgAAAAABGgAAAAADcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAA + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADcQAAAAAAGwAAAAACGwAAAAACGwAAAAABcQAAAAAAbgAAAAABbgAAAAACcQAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAAAcQAAAAAAGwAAAAABGwAAAAAAGwAAAAABcQAAAAAAbgAAAAAAbgAAAAABcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAABGwAAAAAAGwAAAAADGwAAAAAAGwAAAAABGwAAAAAAbgAAAAADbgAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAACcQAAAAAAGwAAAAACGwAAAAAAGwAAAAAAcQAAAAAAbgAAAAACbgAAAAABcQAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAACcQAAAAAAGwAAAAABGwAAAAABGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAARgAAAAAAVAAAAAABVAAAAAADVAAAAAADcQAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAABVAAAAAADcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAACGwAAAAAAGwAAAAADGwAAAAAAVAAAAAACVAAAAAABVAAAAAABcQAAAAAAVAAAAAADVAAAAAACcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAVAAAAAACVAAAAAACcQAAAAAAVAAAAAACVAAAAAADcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABcQAAAAAAVAAAAAABVAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAARgAAAAACVAAAAAADVAAAAAAAGwAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAABGwAAAAACcQAAAAAAVAAAAAABVAAAAAACcQAAAAAAVAAAAAAAVAAAAAADcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAABGwAAAAABGwAAAAABGwAAAAADcQAAAAAAVAAAAAABVAAAAAABcQAAAAAAVAAAAAABVAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAADVAAAAAABcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAABVAAAAAAAcQAAAAAAVAAAAAADVAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAA version: 6 0,-6: ind: 0,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-5: ind: -1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABwAAAAAAUwAAAAABUwAAAAADUwAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABwAAAAAAUwAAAAACUwAAAAADUwAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABwAAAAAAUwAAAAACUwAAAAACUwAAAAACLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABwAAAAAAUwAAAAAAUwAAAAACUwAAAAABLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADLAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAABwAAAAAAVAAAAAABVAAAAAADVAAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAABwAAAAAAVAAAAAACVAAAAAADVAAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAABwAAAAAAVAAAAAACVAAAAAACVAAAAAACLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAABwAAAAAAVAAAAAAAVAAAAAACVAAAAAABLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADLQAAAAAA version: 6 1,1: ind: 1,1 - tiles: UwAAAAADUwAAAAADcAAAAAAARQAAAAADRQAAAAACcAAAAAAAcAAAAAAAIwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAABGgAAAAACGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADGgAAAAAAGgAAAAAAGgAAAAACGgAAAAAAGgAAAAACGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAGgAAAAADGgAAAAADGgAAAAAAGgAAAAAAGgAAAAACGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAABGgAAAAACGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAACGgAAAAACGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAARQAAAAACRQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAACRQAAAAABRQAAAAABcAAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: VAAAAAADVAAAAAADcQAAAAAARgAAAAADRgAAAAACcQAAAAAAcQAAAAAAJAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAcQAAAAAAGwAAAAAAGwAAAAADGwAAAAABGwAAAAACGwAAAAABGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADGwAAAAAAGwAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAGwAAAAADGwAAAAADGwAAAAAAGwAAAAAAGwAAAAACGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAABGwAAAAACGwAAAAADGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAcQAAAAAAGwAAAAADGwAAAAACGwAAAAACGwAAAAACGwAAAAADGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAARgAAAAACRgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAACVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAACVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAADVAAAAAADVAAAAAADVAAAAAACRgAAAAABRgAAAAABcQAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAADVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,1: ind: 2,1 - tiles: cAAAAAAAcAAAAAAAIQAAAAABIQAAAAACIQAAAAABIQAAAAADcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAXwAAAAAAcAAAAAAAIQAAAAACKgAAAAACKgAAAAACKgAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAIQAAAAAAKgAAAAADKgAAAAAAKgAAAAACcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAADRQAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAABRQAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAADRQAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACWwAAAAACUwAAAAADWwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: cQAAAAAAcQAAAAAAIgAAAAABIgAAAAACIgAAAAABIgAAAAADcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAYAAAAAAAcQAAAAAAIgAAAAACKwAAAAACKwAAAAACKwAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAADcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAIgAAAAAAKwAAAAADKwAAAAAAKwAAAAACcQAAAAAAVAAAAAACVAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAACVAAAAAACVAAAAAACVAAAAAACVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAADVAAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAABVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAADRgAAAAABVAAAAAACVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAAAVAAAAAABVAAAAAABRgAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAACVAAAAAADVAAAAAADVAAAAAABVAAAAAACVAAAAAABVAAAAAADRgAAAAACVAAAAAACVAAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAABVAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACXAAAAAACVAAAAAADXAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA version: 6 4,-2: ind: 4,-2 - tiles: bwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAKwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA + tiles: cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAALAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 4,-3: ind: 4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAA version: 6 4,-4: ind: 4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,0: ind: 2,0 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAABcAAAAAAAGgAAAAADUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAUwAAAAAAUwAAAAADcAAAAAAAUwAAAAACUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAABcAAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAACcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACcAAAAAAAGgAAAAADGgAAAAADGgAAAAACcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAABcAAAAAAAbQAAAAAAbQAAAAACbQAAAAADUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAGgAAAAAAUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAbQAAAAACbQAAAAACbQAAAAADcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAADcAAAAAAAbQAAAAABbQAAAAADbQAAAAAAcAAAAAAAcAAAAAAA + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAABVAAAAAABcQAAAAAAGwAAAAADVAAAAAABVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAVAAAAAAAVAAAAAADcQAAAAAAVAAAAAACVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAABcQAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAABVAAAAAABVAAAAAACVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAACVAAAAAADVAAAAAABVAAAAAACVAAAAAABVAAAAAACVAAAAAACcQAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAGwAAAAAAGwAAAAACGwAAAAADGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAACcQAAAAAAGwAAAAADGwAAAAADGwAAAAACcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAABcQAAAAAAbgAAAAAAbgAAAAACbgAAAAADVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAGwAAAAAAVAAAAAAAVAAAAAABVAAAAAABcQAAAAAAbgAAAAACbgAAAAACbgAAAAADcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAADcQAAAAAAbgAAAAABbgAAAAADbgAAAAAAcQAAAAAAcQAAAAAA version: 6 3,1: ind: 3,1 - tiles: UwAAAAACUwAAAAABUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAABcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAACcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAABWwAAAAADUwAAAAAAWwAAAAADUwAAAAADUwAAAAACcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAABRAAAAAACRAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: VAAAAAACVAAAAAABVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAABcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAADVAAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAACcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAALQAAAAAALQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAACcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAABVAAAAAABVAAAAAABVAAAAAAAVAAAAAABVAAAAAADcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAABcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAABXAAAAAADVAAAAAAAXAAAAAADVAAAAAADVAAAAAACcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAABRQAAAAACRQAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,1: ind: -3,1 - tiles: WwAAAAACUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAWwAAAAAAWwAAAAABWwAAAAACYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAACbQAAAAABcAAAAAAAUwAAAAADUwAAAAADUwAAAAABcAAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAbQAAAAABbQAAAAACbQAAAAAAbQAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAADcAAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAbQAAAAACbQAAAAACbQAAAAAAbQAAAAACcAAAAAAAUwAAAAABUwAAAAADUwAAAAADcAAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAOgAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAABbQAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAACbQAAAAADbQAAAAADbQAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAABRgAAAAADUwAAAAABRgAAAAACUwAAAAABRgAAAAABUwAAAAADRgAAAAADUwAAAAABbQAAAAAAbQAAAAAAbQAAAAADcAAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAADGgAAAAAAGgAAAAADGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAA + tiles: XAAAAAACVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAXAAAAAAAXAAAAAABXAAAAAACYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADbgAAAAACbgAAAAABcQAAAAAAVAAAAAADVAAAAAADVAAAAAABcQAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAbgAAAAABbgAAAAACbgAAAAAAbgAAAAABVAAAAAACVAAAAAACVAAAAAABVAAAAAADcQAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAbgAAAAACbgAAAAACbgAAAAAAbgAAAAACcQAAAAAAVAAAAAABVAAAAAADVAAAAAADcQAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAbgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAOwAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAABbgAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAACbgAAAAADbgAAAAADbgAAAAADVAAAAAACVAAAAAACVAAAAAADVAAAAAABVAAAAAABRwAAAAADVAAAAAABRwAAAAACVAAAAAABRwAAAAABVAAAAAADRwAAAAADVAAAAAABbgAAAAAAbgAAAAAAbgAAAAADcQAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAA version: 6 -4,1: ind: -4,1 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAUwAAAAABWAAAAAAAUwAAAAACcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAADGgAAAAABUwAAAAACcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAADIwAAAAABRwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABbQAAAAABbQAAAAADbQAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAARgAAAAACUwAAAAABcAAAAAAAbQAAAAACbQAAAAABbQAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAWAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAUwAAAAADRgAAAAACcAAAAAAAcAAAAAAAbQAAAAADbQAAAAADbQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAWAAAAAAAUwAAAAABcAAAAAAAUwAAAAAAbQAAAAABbQAAAAADbQAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAA + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAVAAAAAABWQAAAAAAVAAAAAACcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAGwAAAAACGwAAAAACGwAAAAADGwAAAAABVAAAAAACcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAADJAAAAAABSAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAABbgAAAAABbgAAAAADbgAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAARwAAAAACVAAAAAABcQAAAAAAbgAAAAACbgAAAAABbgAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAWQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAVAAAAAADRwAAAAACcQAAAAAAcQAAAAAAbgAAAAADbgAAAAADbgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAWQAAAAAAVAAAAAABcQAAAAAAVAAAAAAAbgAAAAABbgAAAAADbgAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABcQAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAA version: 6 -2,1: ind: -2,1 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAGwAAAAACbQAAAAABbQAAAAACbQAAAAABbQAAAAACbQAAAAADGwAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAADcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAGwAAAAADbQAAAAACbQAAAAAAbQAAAAADbQAAAAABbQAAAAACGwAAAAACGgAAAAABOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAABbQAAAAABbQAAAAACbQAAAAADbQAAAAAAbQAAAAADGwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAABbQAAAAACbQAAAAADcAAAAAAAGwAAAAABbQAAAAAAbQAAAAACbQAAAAAAbQAAAAACbQAAAAABGwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAUwAAAAADbQAAAAADbQAAAAABcAAAAAAAGwAAAAADbQAAAAACbQAAAAACbQAAAAAAbQAAAAABbQAAAAAAGwAAAAAAGgAAAAADHgAAAAACGgAAAAACHgAAAAABcAAAAAAAUwAAAAACbQAAAAABbQAAAAADcAAAAAAAGwAAAAABbQAAAAAAbQAAAAADbQAAAAAAbQAAAAADbQAAAAADGwAAAAACcAAAAAAAHgAAAAAAGgAAAAABHgAAAAADcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARQAAAAABUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADRgAAAAADUwAAAAABRgAAAAABUwAAAAADRgAAAAACUwAAAAAARgAAAAADUwAAAAADRgAAAAADUwAAAAADRgAAAAAAUwAAAAABRgAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABGgAAAAAAGgAAAAADGgAAAAABGgAAAAAAGgAAAAACGgAAAAADGgAAAAADGgAAAAADcAAAAAAARQAAAAADRQAAAAACRQAAAAABcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: cQAAAAAAcQAAAAAAcQAAAAAAHAAAAAACbgAAAAABbgAAAAACbgAAAAABbgAAAAACbgAAAAADHAAAAAAAcQAAAAAAGwAAAAAAGwAAAAACGwAAAAADcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAHAAAAAADbgAAAAACbgAAAAAAbgAAAAADbgAAAAABbgAAAAACHAAAAAACGwAAAAABPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAHAAAAAABbgAAAAABbgAAAAACbgAAAAADbgAAAAAAbgAAAAADHAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAVAAAAAABbgAAAAACbgAAAAADcQAAAAAAHAAAAAABbgAAAAAAbgAAAAACbgAAAAAAbgAAAAACbgAAAAABHAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAVAAAAAADbgAAAAADbgAAAAABcQAAAAAAHAAAAAADbgAAAAACbgAAAAACbgAAAAAAbgAAAAABbgAAAAAAHAAAAAAAGwAAAAADHwAAAAACGwAAAAACHwAAAAABcQAAAAAAVAAAAAACbgAAAAABbgAAAAADcQAAAAAAHAAAAAABbgAAAAAAbgAAAAADbgAAAAAAbgAAAAADbgAAAAADHAAAAAACcQAAAAAAHwAAAAAAGwAAAAABHwAAAAADcQAAAAAAVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARgAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAABVAAAAAADVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADRwAAAAADVAAAAAABRwAAAAABVAAAAAADRwAAAAACVAAAAAAARwAAAAADVAAAAAADRwAAAAADVAAAAAADRwAAAAAAVAAAAAABRwAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABGwAAAAAAGwAAAAADGwAAAAABGwAAAAAAGwAAAAACGwAAAAADGwAAAAADGwAAAAADcQAAAAAARgAAAAADRgAAAAACRgAAAAABcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAACVAAAAAACVAAAAAACVAAAAAACVAAAAAADVAAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA version: 6 -2,2: ind: -2,2 - tiles: cAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAACUwAAAAADcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACcAAAAAAARwAAAAAAGgAAAAADGgAAAAADGgAAAAAAGgAAAAACGgAAAAABGgAAAAABGgAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAACcAAAAAAARwAAAAAAGgAAAAABRwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAGgAAAAADUwAAAAABUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAGgAAAAACGgAAAAABRwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAGgAAAAAAGgAAAAAAGgAAAAABGgAAAAACGgAAAAABGgAAAAABGgAAAAADGgAAAAABcAAAAAAAGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASQAAAAAA + tiles: cQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAACVAAAAAACVAAAAAADcQAAAAAAVAAAAAADVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAACcQAAAAAASAAAAAAAGwAAAAADGwAAAAADGwAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAADVAAAAAADVAAAAAADVAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAACcQAAAAAASAAAAAAAGwAAAAABSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAGwAAAAADVAAAAAABVAAAAAACVAAAAAADVAAAAAADVAAAAAAAVAAAAAABVAAAAAABcQAAAAAAGwAAAAACGwAAAAABSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAGwAAAAAAGwAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAABGwAAAAADGwAAAAABcQAAAAAAGwAAAAACGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAA version: 6 -1,3: ind: -1,3 - tiles: SQAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: SgAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,2: ind: -1,2 - tiles: UwAAAAAAUwAAAAACcAAAAAAAUwAAAAACUwAAAAACUwAAAAADcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAADXwAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAAAXwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADXwAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAACcAAAAAAALgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAAAXwAAAAAAGgAAAAABGgAAAAAAGgAAAAACGgAAAAACGgAAAAACGgAAAAABcAAAAAAALgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA + tiles: VAAAAAAAVAAAAAACcQAAAAAAVAAAAAACVAAAAAACVAAAAAADcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAADYAAAAAAAVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAAAYAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADYAAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAABVAAAAAACcQAAAAAALwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAVAAAAAAAYAAAAAAAGwAAAAABGwAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAABcQAAAAAALwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 -3,2: ind: -3,2 - tiles: cAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAA + tiles: cQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAA version: 6 0,3: ind: 0,3 - tiles: bwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,3: ind: -3,3 - tiles: bwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAA version: 6 -2,3: ind: -2,3 - tiles: bwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAASQAAAAAASQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAA version: 6 0,2: ind: 0,2 - tiles: XwAAAAAAXwAAAAAAUwAAAAABcAAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAUwAAAAACUwAAAAADcAAAAAAAYAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAXwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAYAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAA + tiles: YAAAAAAAYAAAAAAAVAAAAAABcQAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAVAAAAAACVAAAAAADcQAAAAAAYQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAYQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,2: ind: -4,2 - tiles: AAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAGgAAAAADGgAAAAADGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAGgAAAAACGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAA + tiles: AAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGwAAAAADGwAAAAADGwAAAAABGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGwAAAAACGwAAAAADGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAA version: 6 -4,3: ind: -4,3 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAUwAAAAACGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAUwAAAAABGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAUwAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAVAAAAAACGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAVAAAAAABGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAVAAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,1: ind: -5,1 - tiles: AAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAADGgAAAAABGgAAAAAAGgAAAAADGgAAAAACGgAAAAABGgAAAAACGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAGgAAAAADcAAAAAAAGgAAAAADGgAAAAADGgAAAAADcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAAAGwAAAAABGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAADGwAAAAABGwAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAACGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAABGwAAAAAAGwAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAGwAAAAADcQAAAAAAGwAAAAADGwAAAAADGwAAAAADcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,0: ind: -5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 2,-5: ind: 2,-5 - tiles: AAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-5: ind: 1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 1,-6: ind: 1,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 2,-6: ind: 2,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-1: ind: 4,-1 - tiles: bwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,-3: ind: 5,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,-1: ind: 5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,-2: ind: 5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,2: ind: 1,2 - tiles: bwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,4: ind: -2,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAA version: 6 -2,5: ind: -2,5 - tiles: AAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,4: ind: -3,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAA version: 6 -3,5: ind: -3,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -6,1: ind: -6,1 - tiles: GgAAAAABGgAAAAACGgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAGgAAAAABGgAAAAAAGgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAGgAAAAAAGgAAAAACGgAAAAADbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAANgAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAcAAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: GwAAAAABGwAAAAACGwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAGwAAAAABGwAAAAAAGwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAGwAAAAAAGwAAAAACGwAAAAADcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAANwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAcQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -7,1: ind: -7,1 - tiles: OwAAAAAAOwAAAAAAOwAAAAAAGgAAAAADcAAAAAAAGgAAAAADGgAAAAAAGgAAAAADGgAAAAADGgAAAAABcAAAAAAAGgAAAAABGgAAAAACGgAAAAAAGgAAAAAAGgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAGgAAAAABGgAAAAAAGgAAAAACGgAAAAACGgAAAAADGgAAAAACGgAAAAADGgAAAAACGgAAAAABGgAAAAACGgAAAAABGgAAAAAAGgAAAAADOwAAAAAAOwAAAAAAOwAAAAAAGgAAAAACcAAAAAAAGgAAAAAAGgAAAAADGgAAAAACGgAAAAABGgAAAAABcAAAAAAAGgAAAAABGgAAAAADGgAAAAADGgAAAAAAGgAAAAABGgAAAAAAGgAAAAACGgAAAAAAGgAAAAADcAAAAAAAGgAAAAADGgAAAAADGgAAAAABGgAAAAAAGgAAAAAAcAAAAAAAbwAAAAAAGgAAAAACcAAAAAAAbwAAAAAAbwAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAABRwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHgAAAAACHgAAAAACHgAAAAADHgAAAAABGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAbwAAAAAAGgAAAAACGgAAAAADGgAAAAABGgAAAAABcAAAAAAAcAAAAAAAbwAAAAAAHgAAAAAAMwAAAAAAMwAAAAAAHgAAAAADGgAAAAACGgAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAGgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAHgAAAAADGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAbwAAAAAAGgAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAAcAAAAAAAMwAAAAAAHgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAGgAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAHgAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHgAAAAADMwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAGgAAAAACbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAHgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAGgAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAHgAAAAABGgAAAAADGgAAAAACcAAAAAAAcAAAAAAAbwAAAAAAGgAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAACHgAAAAABHgAAAAADGgAAAAADGgAAAAACcAAAAAAAcAAAAAAAbwAAAAAAGgAAAAADbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAADGgAAAAACRwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAGgAAAAACbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: PAAAAAAAPAAAAAAAPAAAAAAAGwAAAAADcQAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAADGwAAAAABcQAAAAAAGwAAAAABGwAAAAACGwAAAAAAGwAAAAAAGwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAGwAAAAABGwAAAAAAGwAAAAACGwAAAAACGwAAAAADGwAAAAACGwAAAAADGwAAAAACGwAAAAABGwAAAAACGwAAAAABGwAAAAAAGwAAAAADPAAAAAAAPAAAAAAAPAAAAAAAGwAAAAACcQAAAAAAGwAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAABcQAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAAAGwAAAAABGwAAAAAAGwAAAAACGwAAAAAAGwAAAAADcQAAAAAAGwAAAAADGwAAAAADGwAAAAABGwAAAAAAGwAAAAAAcQAAAAAAcAAAAAAAGwAAAAACcQAAAAAAcAAAAAAAcAAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAABSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAABGwAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcAAAAAAAGwAAAAACGwAAAAADGwAAAAABGwAAAAABcQAAAAAAcQAAAAAAcAAAAAAAHwAAAAAANAAAAAAANAAAAAAAHwAAAAADGwAAAAACGwAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAGwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAANAAAAAAAHwAAAAADGwAAAAABGwAAAAADcQAAAAAAcQAAAAAAcAAAAAAAGwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAcQAAAAAANAAAAAAAHwAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAGwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADNAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAGwAAAAACcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAANAAAAAAAHwAAAAADGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAGwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAANAAAAAAANAAAAAAANAAAAAAAHwAAAAABGwAAAAADGwAAAAACcQAAAAAAcQAAAAAAcAAAAAAAGwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAADGwAAAAADGwAAAAACcQAAAAAAcQAAAAAAcAAAAAAAGwAAAAADcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAAAGwAAAAADGwAAAAACSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAGwAAAAACcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -6,0: ind: -6,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAA version: 6 -7,0: ind: -7,0 - tiles: bwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAACGgAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAADGgAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADGgAAAAABGgAAAAADGgAAAAABGgAAAAAAGgAAAAABGgAAAAAAGgAAAAADbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAGgAAAAADbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAGgAAAAABbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAGgAAAAABbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAGgAAAAAADwAAAAAADwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAGgAAAAADbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAGgAAAAADHwAAAAABHwAAAAADDwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAGgAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAGgAAAAADDwAAAAAAHwAAAAAADwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAGgAAAAABbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAGgAAAAADHwAAAAACGgAAAAABHwAAAAADcAAAAAAAAAAAAAAAbwAAAAAAGgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAGgAAAAADDwAAAAAAHwAAAAACDwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAGgAAAAADGgAAAAABGgAAAAADGgAAAAABGgAAAAABGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAACDwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAGgAAAAACbwAAAAAAAAAAAAAAbwAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAGgAAAAABbwAAAAAAAAAAAAAAbwAAAAAAGgAAAAADGgAAAAABGgAAAAACGgAAAAACcAAAAAAAGgAAAAAAGgAAAAABGgAAAAACGgAAAAADGgAAAAAAcAAAAAAAbwAAAAAAGgAAAAADbwAAAAAAbwAAAAAAbwAAAAAA + tiles: cAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAACGwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAADGwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAABGwAAAAAAGwAAAAABGwAAAAAAGwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAADcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGwAAAAABcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGwAAAAABcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGwAAAAAADwAAAAAADwAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAGwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGwAAAAADIAAAAAABIAAAAAADDwAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAGwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAADDwAAAAAAIAAAAAAADwAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAGwAAAAABcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGwAAAAADIAAAAAACGwAAAAABIAAAAAADcQAAAAAAAAAAAAAAcAAAAAAAGwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGwAAAAADDwAAAAAAIAAAAAACDwAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAABGwAAAAABGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAACGwAAAAACDwAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAACcAAAAAAAAAAAAAAAcAAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAGwAAAAABcAAAAAAAAAAAAAAAcAAAAAAAGwAAAAADGwAAAAABGwAAAAACGwAAAAACcQAAAAAAGwAAAAAAGwAAAAABGwAAAAACGwAAAAADGwAAAAAAcQAAAAAAcAAAAAAAGwAAAAADcAAAAAAAcAAAAAAAcAAAAAAA version: 6 -8,0: ind: -8,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAGgAAAAACGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAGgAAAAACGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAGgAAAAADGgAAAAAAGgAAAAADGgAAAAABGgAAAAACGgAAAAADGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAGgAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAGgAAAAABbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAGgAAAAACbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAGgAAAAADbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAGgAAAAABbwAAAAAAAAAAAAAAcAAAAAAADwAAAAAAHwAAAAAAHwAAAAACAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAGgAAAAAAbwAAAAAAAAAAAAAAcAAAAAAADwAAAAAAHwAAAAADDwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAGgAAAAADbwAAAAAAAAAAAAAAcAAAAAAAHwAAAAAAGgAAAAACHwAAAAACAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAGgAAAAADGgAAAAACGgAAAAACGgAAAAADGgAAAAABGgAAAAAAbwAAAAAAbwAAAAAAcAAAAAAADwAAAAAAHwAAAAABDwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAGgAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAADwAAAAAAGgAAAAABGgAAAAABAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAGgAAAAABbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAGgAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGwAAAAACGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAACGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAABGwAAAAACGwAAAAADGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAADcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGwAAAAABcAAAAAAAAAAAAAAAcQAAAAAADwAAAAAAIAAAAAAAIAAAAAACAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGwAAAAAAcAAAAAAAAAAAAAAAcQAAAAAADwAAAAAAIAAAAAADDwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAADcAAAAAAAAAAAAAAAcQAAAAAAIAAAAAAAGwAAAAACIAAAAAACAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGwAAAAADGwAAAAACGwAAAAACGwAAAAADGwAAAAABGwAAAAAAcAAAAAAAcAAAAAAAcQAAAAAADwAAAAAAIAAAAAABDwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAADwAAAAAAGwAAAAABGwAAAAABAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGwAAAAABcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAAAGwAAAAAB version: 6 -8,1: ind: -8,1 - tiles: AAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAGgAAAAADGgAAAAACcAAAAAAAGgAAAAACGgAAAAADGgAAAAAAGgAAAAADGgAAAAAAcAAAAAAAGgAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAGgAAAAAAGgAAAAACGgAAAAACGgAAAAAAGgAAAAABGgAAAAAAGgAAAAADGgAAAAADGgAAAAACGgAAAAACOwAAAAAAOwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACOwAAAAAAOwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAGgAAAAABbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAGgAAAAABbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAGgAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAGgAAAAABGgAAAAABGgAAAAADAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAGgAAAAAAGgAAAAADGgAAAAABGgAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAHgAAAAACHgAAAAACHgAAAAADAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAGgAAAAADbwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADHgAAAAABMwAAAAAAMwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAGgAAAAADbwAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAACHgAAAAADMwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAGgAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABHgAAAAADMwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAGgAAAAACbwAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAHgAAAAABHgAAAAAAHgAAAAABHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAGgAAAAACbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABHgAAAAABMwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAGgAAAAACbwAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADHgAAAAACMwAAAAAAMwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAGgAAAAABbwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABHgAAAAACHgAAAAABHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAGgAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAGgAAAAACGgAAAAADGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAGgAAAAACbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAC + tiles: AAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGwAAAAADGwAAAAACcQAAAAAAGwAAAAACGwAAAAADGwAAAAAAGwAAAAADGwAAAAAAcQAAAAAAGwAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAAAGwAAAAABGwAAAAAAGwAAAAADGwAAAAADGwAAAAACGwAAAAACPAAAAAAAPAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGwAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACPAAAAAAAPAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAABcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGwAAAAABcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAGwAAAAABGwAAAAABGwAAAAADAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGwAAAAAAGwAAAAADGwAAAAABGwAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAAAHwAAAAACHwAAAAACHwAAAAADAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAADcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAADHwAAAAABNAAAAAAANAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGwAAAAADcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAACHwAAAAADNAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABHwAAAAADNAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGwAAAAACcAAAAAAAcQAAAAAAcQAAAAAANAAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGwAAAAACcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABHwAAAAABNAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGwAAAAACcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAADHwAAAAACNAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAABcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAABHwAAAAACHwAAAAABHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGwAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAGwAAAAACGwAAAAADGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGwAAAAACcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAC version: 6 -8,2: ind: -8,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAGgAAAAADbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAGgAAAAADbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAGgAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAGgAAAAADGgAAAAADGgAAAAACGgAAAAACGgAAAAACGgAAAAADGgAAAAABGgAAAAACGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAGgAAAAADGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAGgAAAAADGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAADGwAAAAADGwAAAAACGwAAAAACGwAAAAACGwAAAAADGwAAAAABGwAAAAACGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAADGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGwAAAAADGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -7,2: ind: -7,2 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAGgAAAAABbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAGgAAAAACbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAGgAAAAACbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAACGgAAAAACGgAAAAABGgAAAAAAGgAAAAADGgAAAAADGgAAAAADbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADGgAAAAADGgAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAACGgAAAAADbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAACcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAACcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAABGwAAAAAAGwAAAAADGwAAAAADGwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAADGwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAACGwAAAAADcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -7,-1: ind: -7,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -8,-1: ind: -8,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 -5,3: ind: -5,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,2: ind: -5,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAA version: 6 -3,-4: ind: -3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 type: MapGrid - type: Broadphase @@ -9254,19 +9254,19 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAADGgAAAAADGgAAAAADGgAAAAABcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAACGgAAAAABGgAAAAACcAAAAAAAGgAAAAACGgAAAAADcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAGgAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAADGwAAAAADGwAAAAADGwAAAAABcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAACGwAAAAABGwAAAAACcQAAAAAAGwAAAAACGwAAAAADcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAAGwAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADGgAAAAADbQAAAAAAbQAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADTgAAAAAATgAAAAAAcAAAAAAAAAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADRgAAAAAARgAAAAACRgAAAAAAGgAAAAACGgAAAAADTgAAAAAATgAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABTgAAAAAATgAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAADbgAAAAAAbgAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADTwAAAAAATwAAAAAAcQAAAAAAAAAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAADRwAAAAAARwAAAAACRwAAAAAAGwAAAAACGwAAAAADTwAAAAAATwAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAAAGwAAAAACGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABTwAAAAAATwAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAA version: 6 type: MapGrid - type: Broadphase @@ -108761,6 +108761,13 @@ entities: - pos: -42.541046,12.473096 parent: 60 type: Transform +- proto: NoticeBoard + entities: + - uid: 7740 + components: + - pos: 22.5,-29.5 + parent: 60 + type: Transform - proto: NuclearBomb entities: - uid: 18448 @@ -109284,11 +109291,36 @@ entities: - pos: -35.60745,19.623318 parent: 60 type: Transform + - uid: 19163 + components: + - pos: 22.482185,-34.511616 + parent: 60 + type: Transform - uid: 20074 components: - pos: -58.670483,1.6369543 parent: 60 type: Transform + - uid: 24103 + components: + - pos: 22.482185,-34.511616 + parent: 60 + type: Transform + - uid: 24180 + components: + - pos: 22.482185,-34.511616 + parent: 60 + type: Transform + - uid: 24186 + components: + - pos: 22.482185,-34.511616 + parent: 60 + type: Transform + - uid: 24230 + components: + - pos: 22.482185,-34.511616 + parent: 60 + type: Transform - proto: PaperBin10 entities: - uid: 8704 @@ -112234,13 +112266,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7740 - components: - - pos: -17.5,-35.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 8041 components: - rot: -1.5707963267948966 rad diff --git a/Resources/Maps/corvax_delta.yml b/Resources/Maps/corvax_delta.yml index e02bf8a0278..72ec1c15b64 100644 --- a/Resources/Maps/corvax_delta.yml +++ b/Resources/Maps/corvax_delta.yml @@ -224713,8 +224713,6 @@ entities: - pos: 46.495182,-55.38947 parent: 13307 type: Transform - - size: 20 - type: Item - count: 20 type: Stack - uid: 22132 @@ -224722,8 +224720,6 @@ entities: - pos: 21.294878,8.624659 parent: 13307 type: Transform - - size: 20 - type: Item - count: 20 type: Stack - uid: 37962 diff --git a/Resources/Maps/corvax_gate.yml b/Resources/Maps/corvax_gate.yml index 58dcbf51beb..86c7dca7423 100644 --- a/Resources/Maps/corvax_gate.yml +++ b/Resources/Maps/corvax_gate.yml @@ -159453,8 +159453,6 @@ entities: type: Transform - count: 10 type: Stack - - size: 20 - type: Item - canCollide: False type: Physics - type: InsideEntityStorage @@ -169461,8 +169459,6 @@ entities: type: Transform - count: 5 type: Stack - - size: 25 - type: Item - uid: 34617 components: - pos: 42.46634,38.536983 @@ -169475,8 +169471,6 @@ entities: type: Transform - count: 5 type: Stack - - size: 25 - type: Item - proto: LeftArmBorgMining entities: - uid: 9308 @@ -175303,8 +175297,6 @@ entities: type: Transform - count: 20 type: Stack - - size: 20 - type: Item - uid: 7744 components: - flags: InContainer @@ -176428,8 +176420,6 @@ entities: type: Transform - color: '#5FC4F1FF' type: PointLight - - size: 18 - type: Item - clearPortalsSound: !type:SoundPathSpecifier path: /Audio/Machines/button.ogg newPortalSound: !type:SoundPathSpecifier @@ -195960,8 +195950,6 @@ entities: type: Transform - count: 3 type: Stack - - size: 3 - type: Item - canCollide: False type: Physics - type: InsideEntityStorage @@ -195992,8 +195980,6 @@ entities: type: Transform - count: 10 type: Stack - - size: 10 - type: Item - proto: SheetPlasteel entities: - uid: 1216 @@ -196372,8 +196358,6 @@ entities: - pos: 67.48784,65.46123 parent: 2 type: Transform - - size: 11 - type: Item - count: 11 type: Stack - uid: 12487 @@ -196381,8 +196365,6 @@ entities: - pos: 116.52092,49.5034 parent: 2 type: Transform - - size: 20 - type: Item - count: 20 type: Stack - uid: 12860 @@ -196450,8 +196432,6 @@ entities: type: Transform - count: 3 type: Stack - - size: 3 - type: Item - canCollide: False type: Physics - type: InsideEntityStorage @@ -196465,8 +196445,6 @@ entities: type: Transform - count: 4 type: Stack - - size: 4 - type: Item - canCollide: False type: Physics - proto: ShellShotgunBeanbag @@ -199369,8 +199347,6 @@ entities: type: Transform - count: 6 type: Stack - - size: 12 - type: Item - canCollide: False type: Physics - type: InsideEntityStorage @@ -203090,8 +203066,6 @@ entities: type: Transform - count: 15 type: Stack - - size: 30 - type: Item - canCollide: False type: Physics - type: InsideEntityStorage diff --git a/Resources/Maps/corvax_spectrum.yml b/Resources/Maps/corvax_spectrum.yml index 7d24a7c2e5b..9e63d05ead9 100644 --- a/Resources/Maps/corvax_spectrum.yml +++ b/Resources/Maps/corvax_spectrum.yml @@ -172899,8 +172899,6 @@ entities: type: Transform - count: 3 type: Stack - - size: 3 - type: Item - canCollide: False type: Physics - uid: 9351 diff --git a/Resources/Maps/infiltrator.yml b/Resources/Maps/infiltrator.yml index 6670301e909..721956bd280 100644 --- a/Resources/Maps/infiltrator.yml +++ b/Resources/Maps/infiltrator.yml @@ -1,26 +1,26 @@ meta: - format: 5 + format: 6 postmapinit: false tilemap: 0: Space 3: FloorArcadeRed - 23: FloorDark - 28: FloorDarkMono - 32: FloorDarkPlastic - 45: FloorGreenCircuit - 59: FloorReinforced - 65: FloorShuttleRed - 66: FloorShuttleWhite - 69: FloorSteel - 75: FloorSteelMono - 81: FloorTechMaint3 - 92: FloorWood - 94: Lattice - 95: Plating + 26: FloorDark + 31: FloorDarkMono + 35: FloorDarkPlastic + 51: FloorGreenCircuit + 71: FloorReinforced + 78: FloorShuttleRed + 79: FloorShuttleWhite + 83: FloorSteel + 91: FloorSteelMono + 97: FloorTechMaint3 + 109: FloorWood + 111: Lattice + 112: Plating entities: - proto: "" entities: - - uid: 73 + - uid: 1 components: - name: GX-13 Infiltrator type: MetaData @@ -30,19 +30,24 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAXAAADFwAAARcAAAIXAAABFwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAUQAAAF8AAABfAAAAXwAAABcAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAQQAAABcAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAEEAAAAXAAACXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABBAAAAFwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXwAAABcAAAIXAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF8AAAAXAAABFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAFwAAAhcAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF8AAAAXAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAARQAAAkEAAAAXAAACFwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABFAAACSwAAAEIAAAAXAAADFwAAABcAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAARQAAA0IAAABLAAABQQAAABcAAAAXAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABFAAAARQAAA0EAAAAXAAACFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABBAAAAQQAAAEEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAACGgAAAAABGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAATgAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAATgAAAAAAGgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAATgAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAABGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACTgAAAAAAGgAAAAACGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACWwAAAAAATwAAAAAAGgAAAAADGgAAAAAAGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADTwAAAAAAWwAAAAABTgAAAAAAGgAAAAAAGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADTgAAAAAAGgAAAAACGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,-1: ind: 0,-1 - tiles: FwAAARcAAAEXAAABFwAAAV8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAFEAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAACQQAAAF8AAABfAAAAXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAkEAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAFBAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAV8AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAANfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAUEAAABcAAADXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAMXAAAAFwAAAFwAAANcAAABXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAQQAAAFwAAAADAAAAXAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAA0EAAABfAAAAAwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAABBAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: GgAAAAABGgAAAAABGgAAAAABGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACTgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACTgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABTgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABTgAAAAAAbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADGgAAAAAAGgAAAAAAbQAAAAADbQAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAATgAAAAAAbQAAAAAAAwAAAAAAbQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADTgAAAAAAcAAAAAAAAwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAF8AAABfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAEEAAABBAAAAQQAAAF8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAtAAAAHAAAAC0AAABfAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAALQAAABwAAAAtAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAC0AAAAcAAAALQAAAEEAAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAACFwAAABcAAANBAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAFwAAAjsAAAAXAAABQQAAAF8AAABfAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAABcAAAAXAAAAFwAAAEEAAABfAAAAFwAAABcAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAIAAAACAAAABBAAAAFwAAAxcAAAAXAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAAEEAAAAXAAAAQQAAAF8AAAAXAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAABcAAAIXAAABFwAAABcAAAMXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAFEAAAAXAAAAFwAAAV8AAABfAAAAXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAATgAAAAAATgAAAAAATgAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAMwAAAAAAHwAAAAAAMwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAMwAAAAAAHwAAAAAAMwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAMwAAAAAAHwAAAAAAMwAAAAAATgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAADTgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAACRwAAAAAAGgAAAAABTgAAAAAAcAAAAAAAcAAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAATgAAAAAAcAAAAAAAGgAAAAAAGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAIwAAAAAAIwAAAAAATgAAAAAAGgAAAAADGgAAAAAAGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAATgAAAAAAGgAAAAAATgAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAAAGgAAAAADGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAAAGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAXwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAADsAAABfAAAAOwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAAA7AAAAXwAAADsAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAOwAAAF8AAAA7AAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAFwAAAV8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAEXAAADFwAAARcAAAMXAAABQQAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAADFwAAAhcAAAAXAAACFwAAA18AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAABcAAAIXAAAAFwAAAxcAAAFfAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAABFwAAABcAAAEXAAADXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAXAAAAFwAAAlEAAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABGgAAAAADGgAAAAABGgAAAAADGgAAAAABTgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADGgAAAAACGgAAAAAAGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAACGgAAAAAAGgAAAAADGgAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABGgAAAAAAGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACYQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 type: MapGrid - type: Broadphase - - angularDamping: 0.05 + - bodyStatus: InAir + angularDamping: 0.05 linearDamping: 0.05 fixedRotation: False bodyType: Dynamic @@ -240,20 +245,20 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 128: -6,-24 + 115: -6,-24 - node: color: '#FFFFFFFF' id: Bot decals: - 125: -6,-27 - 126: -6,-26 - 127: -6,-25 + 112: -6,-27 + 113: -6,-26 + 114: -6,-25 - node: color: '#79150096' id: Box decals: - 115: -6,-21 - 116: -5,-21 + 110: -6,-21 + 111: -5,-21 - node: color: '#DE3A3A96' id: BrickTileSteelCornerNe @@ -335,47 +340,47 @@ entities: color: '#79150096' id: BrickTileWhiteCornerNe decals: - 109: -5,-22 + 104: -5,-22 - node: color: '#79150096' id: BrickTileWhiteCornerNw decals: - 108: -7,-22 + 103: -7,-22 - node: color: '#79150096' id: BrickTileWhiteCornerSe decals: - 110: -5,-24 + 105: -5,-24 - node: color: '#79150096' id: BrickTileWhiteCornerSw decals: - 111: -7,-24 + 106: -7,-24 - node: color: '#79150096' id: BrickTileWhiteLineE decals: - 107: -5,-23 + 102: -5,-23 - node: color: '#79150096' id: BrickTileWhiteLineN decals: - 114: -6,-22 + 109: -6,-22 - node: color: '#79150096' id: BrickTileWhiteLineS decals: - 112: -6,-24 + 107: -6,-24 - node: color: '#79150096' id: BrickTileWhiteLineW decals: - 113: -7,-23 + 108: -7,-23 - node: color: '#79150096' id: Delivery decals: - 129: -1,-23 + 116: -1,-23 - node: color: '#DE3A3A96' id: DeliveryGreyscale @@ -427,22 +432,22 @@ entities: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 101: -7,-24 + 99: -7,-24 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 100: -5,-24 + 98: -5,-24 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 99: -7,-22 + 97: -7,-22 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 106: -5,-22 + 101: -5,-22 - node: color: '#FFFFFFFF' id: WarnLineE @@ -450,7 +455,7 @@ entities: 3: -4,-23 4: -4,-24 5: -4,-25 - 96: -7,-23 + 95: -7,-23 - node: color: '#DE3A3A96' id: WarnLineGreyscaleE @@ -483,17 +488,17 @@ entities: 91: -5,-28 92: -6,-28 93: -7,-28 - 105: -6,-22 + 100: -6,-22 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 95: -5,-23 + 94: -5,-23 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 97: -6,-24 + 96: -6,-24 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -574,1443 +579,1277 @@ entities: - type: GasTileOverlay - type: SpreaderGrid - type: GridPathfinding +- proto: AirlockExternalGlassShuttleSyndicateLocked + entities: + - uid: 16 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-16.5 + parent: 1 + type: Transform + - uid: 17 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-16.5 + parent: 1 + type: Transform +- proto: AirlockSyndicateGlassLocked + entities: + - uid: 13 + components: + - name: syndicate airlock + type: MetaData + - pos: -2.5,-20.5 + parent: 1 + type: Transform + - uid: 14 + components: + - pos: 3.5,-22.5 + parent: 1 + type: Transform + - uid: 15 + components: + - pos: -0.5,-18.5 + parent: 1 + type: Transform - proto: AirlockSyndicateLocked entities: - - uid: 69 + - uid: 2 components: - pos: -5.5,-16.5 - parent: 73 + parent: 1 type: Transform - - uid: 70 + - uid: 3 components: - pos: 3.5,-14.5 - parent: 73 + parent: 1 type: Transform - - uid: 78 + - uid: 4 components: - pos: -0.5,-22.5 - parent: 73 + parent: 1 type: Transform - - uid: 138 + - uid: 5 components: - pos: -4.5,-14.5 - parent: 73 + parent: 1 type: Transform - - uid: 184 + - uid: 6 components: - pos: 4.5,-16.5 - parent: 73 + parent: 1 type: Transform - - uid: 442 + - uid: 7 components: - pos: -0.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 443 + - uid: 8 components: - pos: 3.5,-10.5 - parent: 73 + parent: 1 type: Transform - - uid: 444 + - uid: 9 components: - pos: -4.5,-10.5 - parent: 73 + parent: 1 type: Transform -- proto: AirlockSyndicateLocked - entities: - - uid: 201 + - uid: 10 components: - name: Commander's Office type: MetaData - pos: 2.5,-5.5 - parent: 73 + parent: 1 type: Transform - - uid: 237 + - uid: 11 components: - name: Bridge type: MetaData - pos: -0.5,-7.5 - parent: 73 + parent: 1 type: Transform - - uid: 375 + - uid: 12 components: - pos: -0.5,-14.5 - parent: 73 - type: Transform -- proto: AirlockSyndicateGlassLocked - entities: - - uid: 371 - components: - - name: syndicate airlock - type: MetaData - - pos: -2.5,-20.5 - parent: 73 - type: Transform - - uid: 495 - components: - - pos: 3.5,-22.5 - parent: 73 - type: Transform - - uid: 646 - components: - - pos: -0.5,-18.5 - parent: 73 - type: Transform -- proto: AirlockShuttle - entities: - - uid: 439 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-16.5 - parent: 73 - type: Transform - - uid: 734 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-16.5 - parent: 73 + parent: 1 type: Transform - proto: APCBasic entities: - - uid: 220 + - uid: 18 components: - pos: -3.5,-18.5 - parent: 73 + parent: 1 type: Transform - - uid: 500 + - uid: 19 components: - rot: -1.5707963267948966 rad pos: 1.5,-8.5 - parent: 73 + parent: 1 type: Transform - proto: AtmosDeviceFanTiny entities: - - uid: 480 + - uid: 20 components: - pos: 8.5,-16.5 - parent: 73 + parent: 1 type: Transform - - uid: 501 + - uid: 21 components: - pos: 3.5,-10.5 - parent: 73 + parent: 1 type: Transform - - uid: 555 + - uid: 22 components: - pos: -9.5,-16.5 - parent: 73 + parent: 1 type: Transform - - uid: 561 + - uid: 23 components: - pos: -4.5,-10.5 - parent: 73 + parent: 1 type: Transform - - uid: 571 + - uid: 24 components: - pos: -0.5,-25.5 - parent: 73 + parent: 1 type: Transform - proto: AtmosFixNitrogenMarker entities: - - uid: 517 + - uid: 25 components: - pos: 5.5,-26.5 - parent: 73 + parent: 1 type: Transform - - uid: 787 + - uid: 26 components: - pos: 5.5,-27.5 - parent: 73 + parent: 1 type: Transform - proto: AtmosFixOxygenMarker entities: - - uid: 516 + - uid: 27 components: - pos: 3.5,-26.5 - parent: 73 + parent: 1 type: Transform - - uid: 789 + - uid: 28 components: - pos: 3.5,-27.5 - parent: 73 + parent: 1 type: Transform - proto: BannerSyndicate entities: - - uid: 794 + - uid: 29 components: - pos: 2.5,-15.5 - parent: 73 + parent: 1 type: Transform - - uid: 795 + - uid: 30 components: - pos: -3.5,-15.5 - parent: 73 + parent: 1 type: Transform - proto: Bed entities: - - uid: 564 + - uid: 31 components: - pos: 3.5,-3.5 - parent: 73 + parent: 1 type: Transform - proto: BedsheetSyndie entities: - - uid: 194 + - uid: 32 components: - pos: 3.5,-3.5 - parent: 73 + parent: 1 type: Transform - proto: BoxEncryptionKeySyndie entities: - - uid: 710 + - uid: 34 components: - flags: InContainer type: MetaData - - parent: 692 + - parent: 33 type: Transform - canCollide: False type: Physics - type: InsideEntityStorage - proto: BoxFlashbang entities: - - uid: 844 + - uid: 42 components: - pos: 0.49331844,-13.366474 - parent: 73 + parent: 1 type: Transform - proto: BoxHandcuff entities: - - uid: 775 + - uid: 43 components: - pos: 1.4510483,-2.399527 - parent: 73 + parent: 1 type: Transform - proto: Brutepack entities: - - uid: 28 + - uid: 44 components: - pos: -3.292087,-4.1600046 - parent: 73 + parent: 1 type: Transform - - uid: 51 + - uid: 45 components: - pos: -3.354587,-4.4256296 - parent: 73 + parent: 1 type: Transform - proto: C4 entities: - - uid: 729 + - uid: 46 components: - pos: 1.7857682,-12.631323 - parent: 73 + parent: 1 type: Transform - - uid: 730 + - uid: 47 components: - pos: 1.5045182,-12.646948 - parent: 73 + parent: 1 type: Transform - - uid: 749 + - uid: 48 components: - pos: 1.5982682,-12.646948 - parent: 73 + parent: 1 type: Transform - - uid: 750 + - uid: 49 components: - pos: 1.4107682,-12.646948 - parent: 73 + parent: 1 type: Transform - - uid: 843 + - uid: 50 components: - pos: 1.6920182,-12.631323 - parent: 73 + parent: 1 type: Transform - proto: CableApcExtension entities: - - uid: 249 + - uid: 51 components: - pos: -3.5,-18.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 250 + - uid: 52 components: - pos: -3.5,-17.5 - parent: 73 + parent: 1 type: Transform - - uid: 251 + - uid: 53 components: - pos: -3.5,-16.5 - parent: 73 + parent: 1 type: Transform - - uid: 252 + - uid: 54 components: - pos: -4.5,-16.5 - parent: 73 + parent: 1 type: Transform - - uid: 253 + - uid: 55 components: - pos: -5.5,-16.5 - parent: 73 + parent: 1 type: Transform - - uid: 254 + - uid: 56 components: - pos: -6.5,-16.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 255 + - uid: 57 components: - pos: -7.5,-16.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 256 + - uid: 58 components: - pos: -8.5,-16.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 257 + - uid: 59 components: - pos: -6.5,-15.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 258 + - uid: 60 components: - pos: -6.5,-17.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 259 + - uid: 61 components: - pos: -4.5,-15.5 - parent: 73 + parent: 1 type: Transform - - uid: 260 + - uid: 62 components: - pos: -4.5,-14.5 - parent: 73 + parent: 1 type: Transform - - uid: 261 + - uid: 63 components: - pos: -4.5,-13.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 262 + - uid: 64 components: - pos: -4.5,-12.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 263 + - uid: 65 components: - pos: -4.5,-11.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 264 + - uid: 66 components: - pos: -4.5,-10.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 265 + - uid: 67 components: - pos: -5.5,-12.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 266 + - uid: 68 components: - pos: -6.5,-12.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 267 + - uid: 69 components: - pos: -2.5,-16.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 268 + - uid: 70 components: - pos: -1.5,-16.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 269 + - uid: 71 components: - pos: -0.5,-16.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 270 + - uid: 72 components: - pos: 0.5,-16.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 271 + - uid: 73 components: - pos: 1.5,-16.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 272 + - uid: 74 components: - pos: 2.5,-16.5 - parent: 73 + parent: 1 type: Transform - - uid: 273 + - uid: 75 components: - pos: 3.5,-16.5 - parent: 73 + parent: 1 type: Transform - - uid: 274 + - uid: 76 components: - pos: 4.5,-16.5 - parent: 73 + parent: 1 type: Transform - - uid: 275 + - uid: 77 components: - pos: 5.5,-16.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 276 + - uid: 78 components: - pos: 5.5,-15.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 277 + - uid: 79 components: - pos: 5.5,-17.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 278 + - uid: 80 components: - pos: 6.5,-16.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 279 + - uid: 81 components: - pos: 7.5,-16.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 280 + - uid: 82 components: - pos: 3.5,-15.5 - parent: 73 + parent: 1 type: Transform - - uid: 281 + - uid: 83 components: - pos: 3.5,-14.5 - parent: 73 + parent: 1 type: Transform - - uid: 282 + - uid: 84 components: - pos: 3.5,-13.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 283 + - uid: 85 components: - pos: 3.5,-12.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 284 + - uid: 86 components: - pos: 3.5,-11.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 285 + - uid: 87 components: - pos: 3.5,-11.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 286 + - uid: 88 components: - pos: 3.5,-10.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 287 + - uid: 89 components: - pos: 4.5,-12.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 288 + - uid: 90 components: - pos: 5.5,-12.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 290 + - uid: 91 components: - pos: -0.5,-6.5 - parent: 73 + parent: 1 type: Transform - - uid: 291 + - uid: 92 components: - pos: -0.5,-7.5 - parent: 73 + parent: 1 type: Transform - - uid: 292 + - uid: 93 components: - pos: -0.5,-8.5 - parent: 73 + parent: 1 type: Transform - - uid: 293 + - uid: 94 components: - pos: -0.5,-9.5 - parent: 73 + parent: 1 type: Transform - - uid: 294 + - uid: 95 components: - pos: -0.5,-10.5 - parent: 73 + parent: 1 type: Transform - - uid: 295 + - uid: 96 components: - pos: -0.5,-11.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 296 + - uid: 97 components: - pos: -0.5,-12.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 297 + - uid: 98 components: - pos: -0.5,-13.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 298 + - uid: 99 components: - pos: -0.5,-14.5 - parent: 73 + parent: 1 type: Transform - - uid: 299 + - uid: 100 components: - pos: -1.5,-12.5 - parent: 73 + parent: 1 type: Transform - - uid: 300 + - uid: 101 components: - pos: 0.5,-12.5 - parent: 73 + parent: 1 type: Transform - - uid: 301 + - uid: 102 components: - pos: -0.5,-5.5 - parent: 73 + parent: 1 type: Transform - - uid: 302 + - uid: 103 components: - pos: 0.5,-5.5 - parent: 73 + parent: 1 type: Transform - - uid: 303 + - uid: 104 components: - pos: 1.5,-5.5 - parent: 73 + parent: 1 type: Transform - - uid: 304 + - uid: 105 components: - pos: 2.5,-5.5 - parent: 73 + parent: 1 type: Transform - - uid: 305 + - uid: 106 components: - pos: 3.5,-5.5 - parent: 73 + parent: 1 type: Transform - - uid: 306 + - uid: 107 components: - pos: 3.5,-4.5 - parent: 73 + parent: 1 type: Transform - - uid: 307 + - uid: 108 components: - pos: -0.5,-4.5 - parent: 73 + parent: 1 type: Transform - - uid: 308 + - uid: 109 components: - pos: -0.5,-3.5 - parent: 73 + parent: 1 type: Transform - - uid: 309 + - uid: 110 components: - pos: -0.5,-2.5 - parent: 73 + parent: 1 type: Transform - - uid: 310 + - uid: 111 components: - pos: 0.5,-2.5 - parent: 73 + parent: 1 type: Transform - - uid: 311 + - uid: 112 components: - pos: 1.5,-2.5 - parent: 73 + parent: 1 type: Transform - - uid: 312 + - uid: 113 components: - pos: -1.5,-2.5 - parent: 73 + parent: 1 type: Transform - - uid: 313 + - uid: 114 components: - pos: -2.5,-2.5 - parent: 73 + parent: 1 type: Transform - - uid: 314 + - uid: 115 components: - pos: -1.5,-4.5 - parent: 73 + parent: 1 type: Transform - - uid: 315 + - uid: 116 components: - pos: -3.5,-4.5 - parent: 73 + parent: 1 type: Transform - - uid: 316 + - uid: 117 components: - pos: -2.5,-4.5 - parent: 73 + parent: 1 type: Transform - - uid: 317 + - uid: 118 components: - pos: -4.5,-4.5 - parent: 73 + parent: 1 type: Transform - - uid: 318 + - uid: 119 components: - pos: -5.5,-4.5 - parent: 73 + parent: 1 type: Transform - - uid: 319 + - uid: 120 components: - pos: -5.5,-5.5 - parent: 73 + parent: 1 type: Transform - - uid: 320 + - uid: 121 components: - pos: -5.5,-6.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 321 + - uid: 122 components: - pos: -5.5,-3.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 322 + - uid: 123 components: - pos: 4.5,-4.5 - parent: 73 + parent: 1 type: Transform - - uid: 323 + - uid: 124 components: - pos: 4.5,-3.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 324 + - uid: 125 components: - pos: 3.5,-6.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 325 + - uid: 126 components: - pos: -0.5,-17.5 - parent: 73 + parent: 1 type: Transform - - uid: 326 + - uid: 127 components: - pos: -3.5,-20.5 - parent: 73 + parent: 1 type: Transform - - uid: 327 + - uid: 128 components: - pos: -3.5,-19.5 - parent: 73 + parent: 1 type: Transform - - uid: 328 + - uid: 129 components: - pos: -3.5,-21.5 - parent: 73 + parent: 1 type: Transform - - uid: 329 + - uid: 130 components: - pos: -4.5,-21.5 - parent: 73 + parent: 1 type: Transform - - uid: 330 + - uid: 131 components: - pos: -4.5,-22.5 - parent: 73 + parent: 1 type: Transform - - uid: 331 + - uid: 132 components: - pos: -4.5,-23.5 - parent: 73 + parent: 1 type: Transform - - uid: 332 + - uid: 133 components: - pos: -4.5,-24.5 - parent: 73 + parent: 1 type: Transform - - uid: 333 + - uid: 134 components: - pos: -4.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 334 + - uid: 135 components: - pos: -4.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 335 + - uid: 136 components: - pos: -4.5,-26.5 - parent: 73 + parent: 1 type: Transform - - uid: 336 + - uid: 137 components: - pos: -4.5,-27.5 - parent: 73 + parent: 1 type: Transform - - uid: 337 + - uid: 138 components: - pos: -5.5,-27.5 - parent: 73 + parent: 1 type: Transform - - uid: 338 + - uid: 139 components: - pos: -6.5,-27.5 - parent: 73 + parent: 1 type: Transform - - uid: 339 + - uid: 140 components: - pos: -6.5,-26.5 - parent: 73 + parent: 1 type: Transform - - uid: 340 + - uid: 141 components: - pos: -6.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 341 + - uid: 142 components: - pos: -6.5,-24.5 - parent: 73 + parent: 1 type: Transform - - uid: 342 + - uid: 143 components: - pos: -6.5,-23.5 - parent: 73 + parent: 1 type: Transform - - uid: 343 + - uid: 144 components: - pos: -6.5,-22.5 - parent: 73 + parent: 1 type: Transform - - uid: 344 + - uid: 145 components: - pos: -2.5,-20.5 - parent: 73 + parent: 1 type: Transform - - uid: 345 + - uid: 146 components: - pos: -1.5,-20.5 - parent: 73 + parent: 1 type: Transform - - uid: 346 + - uid: 147 components: - pos: -0.5,-20.5 - parent: 73 + parent: 1 type: Transform - - uid: 347 + - uid: 148 components: - pos: -0.5,-21.5 - parent: 73 + parent: 1 type: Transform - - uid: 348 + - uid: 149 components: - pos: -0.5,-23.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 349 + - uid: 150 components: - pos: -0.5,-22.5 - parent: 73 + parent: 1 type: Transform - - uid: 350 + - uid: 151 components: - pos: -0.5,-24.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 351 + - uid: 152 components: - pos: -0.5,-25.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 352 + - uid: 153 components: - pos: -0.5,-19.5 - parent: 73 + parent: 1 type: Transform - - uid: 353 + - uid: 154 components: - pos: 0.5,-20.5 - parent: 73 + parent: 1 type: Transform - - uid: 354 + - uid: 155 components: - pos: 1.5,-20.5 - parent: 73 + parent: 1 type: Transform - - uid: 355 + - uid: 156 components: - pos: 2.5,-20.5 - parent: 73 + parent: 1 type: Transform - - uid: 356 + - uid: 157 components: - pos: 3.5,-20.5 - parent: 73 + parent: 1 type: Transform - - uid: 357 + - uid: 158 components: - pos: 4.5,-20.5 - parent: 73 + parent: 1 type: Transform - - uid: 358 + - uid: 159 components: - pos: 3.5,-21.5 - parent: 73 + parent: 1 type: Transform - - uid: 359 + - uid: 160 components: - pos: 3.5,-22.5 - parent: 73 + parent: 1 type: Transform - - uid: 360 + - uid: 161 components: - pos: 3.5,-23.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 361 + - uid: 162 components: - pos: 3.5,-24.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 362 + - uid: 163 components: - pos: 3.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 363 + - uid: 164 components: - pos: 3.5,-26.5 - parent: 73 + parent: 1 type: Transform - - uid: 364 + - uid: 165 components: - pos: 3.5,-27.5 - parent: 73 + parent: 1 type: Transform - - uid: 365 + - uid: 166 components: - pos: 4.5,-27.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 366 + - uid: 167 components: - pos: 5.5,-27.5 - parent: 73 + parent: 1 type: Transform - - uid: 367 + - uid: 168 components: - pos: 5.5,-26.5 - parent: 73 + parent: 1 type: Transform - - uid: 368 + - uid: 169 components: - pos: 5.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 369 + - uid: 170 components: - pos: 5.5,-24.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 370 + - uid: 171 components: - pos: 5.5,-23.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 632 + - uid: 172 components: - pos: 0.5,-8.5 - parent: 73 + parent: 1 type: Transform - - uid: 650 + - uid: 173 components: - pos: 1.5,-26.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 659 + - uid: 174 components: - pos: 1.5,-8.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 671 + - uid: 175 components: - pos: -0.5,-26.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 691 + - uid: 176 components: - pos: -1.5,-26.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 751 + - uid: 177 components: - pos: 0.5,-26.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 752 + - uid: 178 components: - pos: -2.5,-26.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 814 + - uid: 179 components: - pos: -2.5,-27.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 816 + - uid: 180 components: - pos: 1.5,-27.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 825 + - uid: 181 components: - pos: -6.5,-28.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 826 + - uid: 182 components: - pos: -6.5,-29.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 827 + - uid: 183 components: - pos: -2.5,-28.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 828 + - uid: 184 components: - pos: -2.5,-29.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 829 + - uid: 185 components: - pos: -2.5,-30.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 830 + - uid: 186 components: - pos: -3.5,-30.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 831 + - uid: 187 components: - pos: -4.5,-30.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 832 + - uid: 188 components: - pos: -5.5,-30.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 833 + - uid: 189 components: - pos: 1.5,-28.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 834 + - uid: 190 components: - pos: 1.5,-29.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 835 + - uid: 191 components: - pos: 1.5,-30.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 836 + - uid: 192 components: - pos: 2.5,-30.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 837 + - uid: 193 components: - pos: 3.5,-30.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 838 + - uid: 194 components: - pos: 4.5,-30.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 839 + - uid: 195 components: - pos: 5.5,-28.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 840 + - uid: 196 components: - pos: 5.5,-29.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - proto: CableHV entities: - - uid: 65 + - uid: 197 components: - pos: -2.5,-21.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 202 + - uid: 198 components: - pos: -4.5,-26.5 - parent: 73 + parent: 1 type: Transform - - uid: 203 + - uid: 199 components: - pos: -4.5,-27.5 - parent: 73 + parent: 1 type: Transform - - uid: 204 + - uid: 200 components: - pos: -5.5,-27.5 - parent: 73 + parent: 1 type: Transform - - uid: 205 + - uid: 201 components: - pos: -6.5,-27.5 - parent: 73 + parent: 1 type: Transform - - uid: 208 + - uid: 202 components: - pos: -5.5,-23.5 - parent: 73 + parent: 1 type: Transform - - uid: 209 + - uid: 203 components: - pos: -5.5,-22.5 - parent: 73 + parent: 1 type: Transform - - uid: 214 + - uid: 204 components: - pos: -5.5,-20.5 - parent: 73 + parent: 1 type: Transform - - uid: 215 + - uid: 205 components: - pos: -4.5,-20.5 - parent: 73 + parent: 1 type: Transform - - uid: 216 + - uid: 206 components: - pos: -5.5,-19.5 - parent: 73 + parent: 1 type: Transform - - uid: 217 + - uid: 207 components: - pos: -4.5,-19.5 - parent: 73 + parent: 1 type: Transform - - uid: 218 + - uid: 208 components: - pos: -3.5,-19.5 - parent: 73 + parent: 1 type: Transform - - uid: 576 + - uid: 209 components: - pos: -5.5,-21.5 - parent: 73 + parent: 1 type: Transform - - uid: 579 + - uid: 210 components: - pos: -6.5,-26.5 - parent: 73 + parent: 1 type: Transform - - uid: 580 + - uid: 211 components: - pos: -6.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 581 + - uid: 212 components: - pos: -6.5,-24.5 - parent: 73 + parent: 1 type: Transform - - uid: 653 + - uid: 213 components: - pos: -4.5,-23.5 - parent: 73 + parent: 1 type: Transform - - uid: 663 + - uid: 214 components: - pos: -2.5,-20.5 - parent: 73 + parent: 1 type: Transform - - uid: 664 + - uid: 215 components: - pos: -2.5,-19.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 679 + - uid: 216 components: - pos: -4.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 712 + - uid: 217 components: - pos: -6.5,-23.5 - parent: 73 + parent: 1 type: Transform - - uid: 715 + - uid: 218 components: - pos: -6.5,-20.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 716 + - uid: 219 components: - pos: -4.5,-24.5 - parent: 73 + parent: 1 type: Transform - - uid: 853 + - uid: 220 components: - pos: -5.5,-18.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 854 + - uid: 221 components: - pos: -4.5,-18.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 855 + - uid: 222 components: - pos: -3.5,-18.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 856 + - uid: 223 components: - pos: -3.5,-21.5 - parent: 73 + parent: 1 type: Transform - - uid: 857 + - uid: 224 components: - pos: -4.5,-21.5 - parent: 73 + parent: 1 type: Transform - proto: CableMV entities: - - uid: 222 + - uid: 225 components: - pos: -3.5,-19.5 - parent: 73 + parent: 1 type: Transform - - uid: 223 + - uid: 226 components: - pos: -3.5,-18.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 224 + - uid: 227 components: - pos: -3.5,-17.5 - parent: 73 + parent: 1 type: Transform - - uid: 225 + - uid: 228 components: - pos: -3.5,-16.5 - parent: 73 + parent: 1 type: Transform - - uid: 226 + - uid: 229 components: - pos: -2.5,-16.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 227 + - uid: 230 components: - pos: -0.5,-16.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 228 + - uid: 231 components: - pos: -1.5,-16.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 229 + - uid: 232 components: - pos: -0.5,-15.5 - parent: 73 + parent: 1 type: Transform - - uid: 230 + - uid: 233 components: - pos: -0.5,-14.5 - parent: 73 + parent: 1 type: Transform - - uid: 231 + - uid: 234 components: - pos: -0.5,-13.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 232 + - uid: 235 components: - pos: -0.5,-12.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 233 + - uid: 236 components: - pos: -0.5,-11.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 234 + - uid: 237 components: - pos: -0.5,-10.5 - parent: 73 + parent: 1 type: Transform - - uid: 235 + - uid: 238 components: - pos: -0.5,-9.5 - parent: 73 + parent: 1 type: Transform - - uid: 236 + - uid: 239 components: - pos: -0.5,-8.5 - parent: 73 + parent: 1 type: Transform - uid: 240 components: - pos: -3.5,-20.5 - parent: 73 + parent: 1 type: Transform - uid: 241 components: - pos: -3.5,-21.5 - parent: 73 + parent: 1 type: Transform - uid: 242 components: - pos: -4.5,-21.5 - parent: 73 + parent: 1 type: Transform - uid: 243 components: - pos: -4.5,-22.5 - parent: 73 + parent: 1 type: Transform - uid: 244 components: - pos: -4.5,-23.5 - parent: 73 + parent: 1 type: Transform - uid: 245 components: - pos: -4.5,-24.5 - parent: 73 + parent: 1 type: Transform - uid: 246 components: - pos: -4.5,-25.5 - parent: 73 + parent: 1 type: Transform - uid: 247 components: - pos: -4.5,-26.5 - parent: 73 + parent: 1 type: Transform - uid: 248 components: - pos: -4.5,-27.5 - parent: 73 + parent: 1 type: Transform - - uid: 643 + - uid: 249 components: - pos: 1.5,-8.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 661 + - uid: 250 components: - pos: 0.5,-8.5 - parent: 73 + parent: 1 type: Transform - proto: CableTerminal entities: - - uid: 212 + - uid: 251 components: - rot: 3.141592653589793 rad pos: -5.5,-20.5 - parent: 73 + parent: 1 type: Transform - canCollide: False type: Physics - fixtures: {} type: Fixtures - - uid: 213 + - uid: 252 components: - rot: 3.141592653589793 rad pos: -4.5,-20.5 - parent: 73 + parent: 1 type: Transform - canCollide: False type: Physics @@ -2018,778 +1857,778 @@ entities: type: Fixtures - proto: Carpet entities: - - uid: 422 + - uid: 253 components: - rot: -1.5707963267948966 rad pos: 4.5,-5.5 - parent: 73 + parent: 1 type: Transform - - uid: 559 + - uid: 254 components: - rot: -1.5707963267948966 rad pos: 4.5,-4.5 - parent: 73 + parent: 1 type: Transform - proto: Catwalk entities: - - uid: 67 + - uid: 255 components: - pos: -2.5,-26.5 - parent: 73 + parent: 1 type: Transform - - uid: 68 + - uid: 256 components: - pos: -2.5,-28.5 - parent: 73 + parent: 1 type: Transform - - uid: 441 + - uid: 257 components: - pos: -8.5,-16.5 - parent: 73 + parent: 1 type: Transform - - uid: 543 + - uid: 258 components: - pos: -1.5,-16.5 - parent: 73 + parent: 1 type: Transform - - uid: 548 + - uid: 259 components: - pos: -2.5,-16.5 - parent: 73 + parent: 1 type: Transform - - uid: 582 + - uid: 260 components: - pos: 4.5,-24.5 - parent: 73 + parent: 1 type: Transform - - uid: 583 + - uid: 261 components: - pos: 5.5,-24.5 - parent: 73 + parent: 1 type: Transform - - uid: 587 + - uid: 262 components: - pos: -6.5,-16.5 - parent: 73 + parent: 1 type: Transform - - uid: 588 + - uid: 263 components: - pos: -7.5,-16.5 - parent: 73 + parent: 1 type: Transform - - uid: 589 + - uid: 264 components: - pos: -4.5,-13.5 - parent: 73 + parent: 1 type: Transform - - uid: 590 + - uid: 265 components: - pos: -4.5,-12.5 - parent: 73 + parent: 1 type: Transform - - uid: 591 + - uid: 266 components: - pos: -4.5,-11.5 - parent: 73 + parent: 1 type: Transform - - uid: 592 + - uid: 267 components: - pos: 3.5,-13.5 - parent: 73 + parent: 1 type: Transform - - uid: 593 + - uid: 268 components: - pos: 3.5,-12.5 - parent: 73 + parent: 1 type: Transform - - uid: 594 + - uid: 269 components: - pos: 3.5,-11.5 - parent: 73 + parent: 1 type: Transform - - uid: 595 + - uid: 270 components: - pos: 5.5,-16.5 - parent: 73 + parent: 1 type: Transform - - uid: 596 + - uid: 271 components: - pos: 6.5,-16.5 - parent: 73 + parent: 1 type: Transform - - uid: 597 + - uid: 272 components: - pos: -0.5,-24.5 - parent: 73 + parent: 1 type: Transform - - uid: 598 + - uid: 273 components: - pos: -0.5,-23.5 - parent: 73 + parent: 1 type: Transform - - uid: 631 + - uid: 274 components: - pos: -0.5,-16.5 - parent: 73 + parent: 1 type: Transform - - uid: 634 + - uid: 275 components: - pos: 5.5,-9.5 - parent: 73 + parent: 1 type: Transform - - uid: 640 + - uid: 276 components: - pos: 3.5,-9.5 - parent: 73 + parent: 1 type: Transform - - uid: 642 + - uid: 277 components: - pos: 0.5,-16.5 - parent: 73 + parent: 1 type: Transform - - uid: 645 + - uid: 278 components: - pos: 0.5,-26.5 - parent: 73 + parent: 1 type: Transform - - uid: 647 + - uid: 279 components: - pos: 1.5,-27.5 - parent: 73 + parent: 1 type: Transform - - uid: 648 + - uid: 280 components: - pos: -2.5,-27.5 - parent: 73 + parent: 1 type: Transform - - uid: 649 + - uid: 281 components: - pos: -2.5,-29.5 - parent: 73 + parent: 1 type: Transform - - uid: 654 + - uid: 282 components: - pos: 1.5,-26.5 - parent: 73 + parent: 1 type: Transform - - uid: 662 + - uid: 283 components: - pos: 4.5,-9.5 - parent: 73 + parent: 1 type: Transform - - uid: 666 + - uid: 284 components: - pos: -0.5,-26.5 - parent: 73 + parent: 1 type: Transform - - uid: 674 + - uid: 285 components: - pos: 1.5,-28.5 - parent: 73 + parent: 1 type: Transform - - uid: 675 + - uid: 286 components: - pos: 1.5,-29.5 - parent: 73 + parent: 1 type: Transform - - uid: 681 + - uid: 287 components: - pos: -1.5,-26.5 - parent: 73 + parent: 1 type: Transform - - uid: 685 + - uid: 288 components: - pos: -3.5,-9.5 - parent: 73 + parent: 1 type: Transform - - uid: 686 + - uid: 289 components: - pos: 1.5,-16.5 - parent: 73 + parent: 1 type: Transform - - uid: 701 + - uid: 290 components: - pos: 2.5,-9.5 - parent: 73 + parent: 1 type: Transform - - uid: 728 + - uid: 291 components: - pos: -6.5,-9.5 - parent: 73 + parent: 1 type: Transform - - uid: 731 + - uid: 292 components: - pos: -5.5,-9.5 - parent: 73 + parent: 1 type: Transform - - uid: 732 + - uid: 293 components: - pos: -4.5,-9.5 - parent: 73 + parent: 1 type: Transform - - uid: 733 + - uid: 294 components: - pos: 7.5,-16.5 - parent: 73 + parent: 1 type: Transform - - uid: 759 + - uid: 295 components: - pos: -0.5,-13.5 - parent: 73 + parent: 1 type: Transform - - uid: 760 + - uid: 296 components: - pos: -0.5,-12.5 - parent: 73 + parent: 1 type: Transform - - uid: 761 + - uid: 297 components: - pos: -0.5,-11.5 - parent: 73 + parent: 1 type: Transform - proto: Chair entities: - - uid: 112 + - uid: 298 components: - rot: -1.5707963267948966 rad pos: 2.5,-21.5 - parent: 73 + parent: 1 type: Transform - - uid: 696 + - uid: 299 components: - rot: 1.5707963267948966 rad pos: 0.5,-21.5 - parent: 73 + parent: 1 type: Transform - proto: ChairOfficeDark entities: - - uid: 698 + - uid: 300 components: - rot: 1.5707963267948966 rad pos: 0.5,-3.5 - parent: 73 + parent: 1 type: Transform - proto: ChairPilotSeat entities: - - uid: 36 + - uid: 301 components: - rot: 1.5707963267948966 rad pos: -1.5,-21.5 - parent: 73 + parent: 1 type: Transform - - uid: 601 + - uid: 302 components: - rot: 1.5707963267948966 rad pos: -1.5,-8.5 - parent: 73 + parent: 1 type: Transform - - uid: 602 + - uid: 303 components: - rot: 1.5707963267948966 rad pos: -1.5,-9.5 - parent: 73 + parent: 1 type: Transform - - uid: 603 + - uid: 304 components: - rot: 1.5707963267948966 rad pos: -1.5,-10.5 - parent: 73 + parent: 1 type: Transform - - uid: 604 + - uid: 305 components: - rot: -1.5707963267948966 rad pos: 0.5,-8.5 - parent: 73 + parent: 1 type: Transform - - uid: 605 + - uid: 306 components: - rot: -1.5707963267948966 rad pos: 0.5,-10.5 - parent: 73 + parent: 1 type: Transform - - uid: 606 + - uid: 307 components: - rot: -1.5707963267948966 rad pos: 0.5,-9.5 - parent: 73 + parent: 1 type: Transform - - uid: 758 + - uid: 308 components: - pos: -2.5,-15.5 - parent: 73 + parent: 1 type: Transform - - uid: 762 + - uid: 309 components: - pos: -1.5,-15.5 - parent: 73 + parent: 1 type: Transform - - uid: 763 + - uid: 310 components: - pos: 0.5,-15.5 - parent: 73 + parent: 1 type: Transform - - uid: 764 + - uid: 311 components: - pos: 1.5,-15.5 - parent: 73 + parent: 1 type: Transform - - uid: 767 + - uid: 312 components: - rot: 3.141592653589793 rad pos: -0.5,-3.5 - parent: 73 + parent: 1 type: Transform - proto: CigPackSyndicate entities: - - uid: 449 + - uid: 313 components: - pos: -3.5658307,-17.516623 - parent: 73 + parent: 1 type: Transform - proto: ClothingBackpackDuffelSyndicateFilledMedical entities: - - uid: 669 + - uid: 314 components: - pos: -3.5044222,-6.293252 - parent: 73 + parent: 1 type: Transform - proto: ClothingHeadHatSyndie entities: - - uid: 447 + - uid: 315 components: - pos: -3.1200604,-17.289778 - parent: 73 + parent: 1 type: Transform - proto: ClothingHeadHatSyndieMAA entities: - - uid: 709 + - uid: 35 components: - flags: InContainer type: MetaData - - parent: 692 + - parent: 33 type: Transform - canCollide: False type: Physics - type: InsideEntityStorage - proto: ClothingHeadPyjamaSyndicateRed entities: - - uid: 699 + - uid: 36 components: - flags: InContainer type: MetaData - - parent: 692 + - parent: 33 type: Transform - canCollide: False type: Physics - type: InsideEntityStorage - proto: ClothingHeadsetAltSyndicate entities: - - uid: 706 + - uid: 316 components: - pos: 1.3157192,-13.513277 - parent: 73 + parent: 1 type: Transform - proto: ClothingMaskGasSyndicate entities: - - uid: 705 + - uid: 317 components: - pos: 0.94071925,-13.482027 - parent: 73 + parent: 1 type: Transform - proto: ClothingNeckMantleHOS entities: - - uid: 563 + - uid: 37 components: - flags: InContainer desc: Looted from a fallen enemy, the commander earned this in battle. name: commander mantle type: MetaData - - parent: 692 + - parent: 33 type: Transform - canCollide: False type: Physics - type: InsideEntityStorage - proto: ClothingOuterCoatSyndieCap entities: - - uid: 694 + - uid: 38 components: - flags: InContainer type: MetaData - - parent: 692 + - parent: 33 type: Transform - canCollide: False type: Physics - type: InsideEntityStorage - proto: ClothingUniformJumpskirtSyndieFormalDress entities: - - uid: 700 + - uid: 39 components: - flags: InContainer type: MetaData - - parent: 692 + - parent: 33 type: Transform - canCollide: False type: Physics - type: InsideEntityStorage - proto: ClothingUniformJumpsuitPyjamaSyndicateRed entities: - - uid: 697 + - uid: 40 components: - flags: InContainer type: MetaData - - parent: 692 + - parent: 33 type: Transform - canCollide: False type: Physics - type: InsideEntityStorage - proto: ClothingUniformJumpsuitSyndieFormal entities: - - uid: 695 + - uid: 41 components: - flags: InContainer type: MetaData - - parent: 692 + - parent: 33 type: Transform - canCollide: False type: Physics - type: InsideEntityStorage - proto: ComfyChair entities: - - uid: 635 + - uid: 318 components: - rot: -1.5707963267948966 rad pos: 4.5,-4.5 - parent: 73 + parent: 1 type: Transform - proto: computerBodyScanner entities: - - uid: 721 + - uid: 319 components: - rot: 1.5707963267948966 rad pos: -5.5,-5.5 - parent: 73 + parent: 1 type: Transform - proto: ComputerIFFSyndicate entities: - - uid: 665 + - uid: 320 components: - rot: -1.5707963267948966 rad pos: 1.5,-3.5 - parent: 73 + parent: 1 type: Transform - proto: ComputerPowerMonitoring entities: - - uid: 668 + - uid: 321 components: - rot: -1.5707963267948966 rad pos: -3.5,-21.5 - parent: 73 + parent: 1 type: Transform - proto: ComputerRadar entities: - - uid: 771 + - uid: 322 components: - pos: 0.5,-2.5 - parent: 73 + parent: 1 type: Transform - proto: ComputerShuttleSyndie entities: - - uid: 766 + - uid: 323 components: - pos: -0.5,-2.5 - parent: 73 + parent: 1 type: Transform - proto: CrowbarRed entities: - - uid: 448 + - uid: 324 components: - pos: -3.492848,-22.485775 - parent: 73 + parent: 1 type: Transform - proto: DisposalBend entities: - - uid: 607 + - uid: 325 components: - rot: 1.5707963267948966 rad pos: -0.5,-6.5 - parent: 73 + parent: 1 type: Transform - proto: DisposalJunction entities: - - uid: 586 + - uid: 326 components: - rot: -1.5707963267948966 rad pos: -0.5,-19.5 - parent: 73 + parent: 1 type: Transform - proto: DisposalPipe entities: - - uid: 608 + - uid: 327 components: - rot: 1.5707963267948966 rad pos: 0.5,-6.5 - parent: 73 + parent: 1 type: Transform - - uid: 610 + - uid: 328 components: - rot: -1.5707963267948966 rad pos: -1.5,-19.5 - parent: 73 + parent: 1 type: Transform - - uid: 611 + - uid: 329 components: - rot: -1.5707963267948966 rad pos: -2.5,-19.5 - parent: 73 + parent: 1 type: Transform - - uid: 612 + - uid: 330 components: - rot: -1.5707963267948966 rad pos: -3.5,-19.5 - parent: 73 + parent: 1 type: Transform - - uid: 613 + - uid: 331 components: - rot: -1.5707963267948966 rad pos: -4.5,-19.5 - parent: 73 + parent: 1 type: Transform - - uid: 614 + - uid: 332 components: - rot: -1.5707963267948966 rad pos: -5.5,-19.5 - parent: 73 + parent: 1 type: Transform - - uid: 615 + - uid: 333 components: - rot: -1.5707963267948966 rad pos: -6.5,-19.5 - parent: 73 + parent: 1 type: Transform - - uid: 617 + - uid: 334 components: - pos: -0.5,-18.5 - parent: 73 + parent: 1 type: Transform - - uid: 618 + - uid: 335 components: - pos: -0.5,-17.5 - parent: 73 + parent: 1 type: Transform - - uid: 619 + - uid: 336 components: - pos: -0.5,-16.5 - parent: 73 + parent: 1 type: Transform - - uid: 620 + - uid: 337 components: - pos: -0.5,-15.5 - parent: 73 + parent: 1 type: Transform - - uid: 621 + - uid: 338 components: - pos: -0.5,-14.5 - parent: 73 + parent: 1 type: Transform - - uid: 622 + - uid: 339 components: - pos: -0.5,-13.5 - parent: 73 + parent: 1 type: Transform - - uid: 623 + - uid: 340 components: - pos: -0.5,-12.5 - parent: 73 + parent: 1 type: Transform - - uid: 624 + - uid: 341 components: - pos: -0.5,-11.5 - parent: 73 + parent: 1 type: Transform - - uid: 625 + - uid: 342 components: - pos: -0.5,-10.5 - parent: 73 + parent: 1 type: Transform - - uid: 626 + - uid: 343 components: - pos: -0.5,-9.5 - parent: 73 + parent: 1 type: Transform - - uid: 627 + - uid: 344 components: - pos: -0.5,-8.5 - parent: 73 + parent: 1 type: Transform - - uid: 628 + - uid: 345 components: - pos: -0.5,-7.5 - parent: 73 + parent: 1 type: Transform - proto: DisposalTrunk entities: - - uid: 609 + - uid: 346 components: - rot: -1.5707963267948966 rad pos: 1.5,-6.5 - parent: 73 + parent: 1 type: Transform - - uid: 616 + - uid: 347 components: - rot: 1.5707963267948966 rad pos: -7.5,-19.5 - parent: 73 + parent: 1 type: Transform - - uid: 667 + - uid: 348 components: - rot: -1.5707963267948966 rad pos: 0.5,-19.5 - parent: 73 + parent: 1 type: Transform - proto: DisposalUnit entities: - - uid: 629 + - uid: 349 components: - pos: 1.5,-6.5 - parent: 73 + parent: 1 type: Transform - - uid: 682 + - uid: 350 components: - pos: 0.5,-19.5 - parent: 73 + parent: 1 type: Transform - proto: DoubleEmergencyOxygenTankFilled entities: - - uid: 551 + - uid: 351 components: - pos: -1.6924903,-23.407444 - parent: 73 + parent: 1 type: Transform - - uid: 552 + - uid: 352 components: - pos: -1.4112403,-23.458082 - parent: 73 + parent: 1 type: Transform - - uid: 783 + - uid: 353 components: - pos: 5.390987,-17.346693 - parent: 73 + parent: 1 type: Transform - - uid: 784 + - uid: 354 components: - pos: -6.6334953,-17.346693 - parent: 73 + parent: 1 type: Transform - proto: DrinkGlass entities: - - uid: 537 + - uid: 355 components: - pos: 2.0779252,-19.21155 - parent: 73 + parent: 1 type: Transform - - uid: 538 + - uid: 356 components: - pos: 2.3123002,-19.21155 - parent: 73 + parent: 1 type: Transform - proto: DrinkMugDog entities: - - uid: 539 + - uid: 357 components: - pos: 2.2843437,-19.542192 - parent: 73 + parent: 1 type: Transform - proto: DrinkMugMetal entities: - - uid: 540 + - uid: 358 components: - pos: 2.0968437,-19.526567 - parent: 73 + parent: 1 type: Transform - proto: DrinkMugRed entities: - - uid: 600 + - uid: 359 components: - pos: 1.9918958,-17.588755 - parent: 73 + parent: 1 type: Transform - proto: DrinkVacuumFlask entities: - - uid: 541 + - uid: 360 components: - pos: 5.6435027,-21.180143 - parent: 73 + parent: 1 type: Transform - - uid: 542 + - uid: 361 components: - pos: 5.7372527,-21.398893 - parent: 73 + parent: 1 type: Transform - proto: ExtendedEmergencyOxygenTankFilled entities: - - uid: 703 + - uid: 362 components: - pos: -5.678572,-12.319441 - parent: 73 + parent: 1 type: Transform - - uid: 707 + - uid: 363 components: - pos: 4.305803,-12.272566 - parent: 73 + parent: 1 type: Transform - proto: FoodBoxDonkpocketPizza entities: - - uid: 531 + - uid: 364 components: - pos: 2.7185502,-19.320925 - parent: 73 + parent: 1 type: Transform - proto: FoodBoxDonut entities: - - uid: 756 + - uid: 365 components: - pos: 5.5401826,-21.187487 - parent: 73 + parent: 1 type: Transform - proto: FoodPizzaDonkpocket entities: - - uid: 644 + - uid: 366 components: - pos: 1.4776825,-21.296862 - parent: 73 + parent: 1 type: Transform - proto: FoodSnackSyndi entities: - - uid: 446 + - uid: 367 components: - pos: 1.5361897,-17.367903 - parent: 73 + parent: 1 type: Transform - proto: GasMinerNitrogen entities: - - uid: 390 + - uid: 368 components: - rot: 3.141592653589793 rad pos: 5.5,-27.5 - parent: 73 + parent: 1 type: Transform - proto: GasMinerOxygen entities: - - uid: 389 + - uid: 369 components: - rot: 3.141592653589793 rad pos: 3.5,-27.5 - parent: 73 + parent: 1 type: Transform - proto: GasMixer entities: - - uid: 395 + - uid: 370 components: - name: O2+N2 mixer type: MetaData - rot: 3.141592653589793 rad pos: 3.5,-24.5 - parent: 73 + parent: 1 type: Transform - inletTwoConcentration: 0.78 inletOneConcentration: 0.22 @@ -2798,983 +2637,923 @@ entities: type: AtmosPipeColor - proto: GasPassiveVent entities: - - uid: 387 + - uid: 371 components: - rot: 3.141592653589793 rad pos: 3.5,-26.5 - parent: 73 + parent: 1 type: Transform - - uid: 388 + - uid: 372 components: - rot: 3.141592653589793 rad pos: 5.5,-26.5 - parent: 73 + parent: 1 type: Transform - - uid: 451 + - uid: 373 components: - rot: -1.5707963267948966 rad pos: 6.5,-19.5 - parent: 73 + parent: 1 type: Transform - proto: GasPipeBend entities: - - uid: 378 + - uid: 374 components: - rot: 1.5707963267948966 rad pos: -0.5,-5.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 393 + - uid: 375 components: - pos: 5.5,-24.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 399 + - uid: 376 components: - pos: 3.5,-20.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 407 + - uid: 377 components: - rot: 1.5707963267948966 rad pos: -4.5,-20.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 424 + - uid: 378 components: - rot: -1.5707963267948966 rad pos: 0.5,-5.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 425 + - uid: 379 components: - rot: 1.5707963267948966 rad pos: -1.5,-4.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 474 + - uid: 380 components: - pos: 0.5,-8.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 476 + - uid: 381 components: - rot: 3.141592653589793 rad pos: -1.5,-8.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 482 + - uid: 382 components: - rot: -1.5707963267948966 rad pos: -0.5,-4.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 489 + - uid: 383 components: - rot: -1.5707963267948966 rad pos: 0.5,-21.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - proto: GasPipeFourway entities: - - uid: 396 + - uid: 384 components: - pos: 3.5,-23.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 403 + - uid: 385 components: - pos: -0.5,-20.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 411 + - uid: 386 components: - pos: -0.5,-16.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 459 + - uid: 387 components: - pos: 0.5,-17.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - proto: GasPipeStraight entities: - - uid: 391 + - uid: 388 components: - rot: 3.141592653589793 rad pos: 3.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 392 + - uid: 389 components: - rot: 3.141592653589793 rad pos: 5.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 394 + - uid: 390 components: - rot: -1.5707963267948966 rad pos: 4.5,-24.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 397 + - uid: 391 components: - pos: 3.5,-22.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 398 + - uid: 392 components: - pos: 3.5,-21.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 400 + - uid: 393 components: - rot: -1.5707963267948966 rad pos: 2.5,-20.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 401 + - uid: 394 components: - rot: -1.5707963267948966 rad pos: 1.5,-20.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 402 + - uid: 395 components: - rot: -1.5707963267948966 rad pos: 0.5,-20.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 404 + - uid: 396 components: - rot: -1.5707963267948966 rad pos: -1.5,-20.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 405 + - uid: 397 components: - rot: -1.5707963267948966 rad pos: -2.5,-20.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 406 + - uid: 398 components: - rot: -1.5707963267948966 rad pos: -3.5,-20.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 408 + - uid: 399 components: - pos: -0.5,-19.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 409 + - uid: 400 components: - pos: -0.5,-18.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 410 + - uid: 401 components: - pos: -0.5,-17.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 412 + - uid: 402 components: - pos: -0.5,-15.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 413 + - uid: 403 components: - pos: -0.5,-14.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 414 + - uid: 404 components: - pos: -0.5,-13.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 415 + - uid: 405 components: - pos: -0.5,-12.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 417 + - uid: 406 components: - pos: -0.5,-10.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 418 + - uid: 407 components: - pos: -0.5,-9.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 419 + - uid: 408 components: - pos: -0.5,-8.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 420 + - uid: 409 components: - pos: -0.5,-7.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 421 + - uid: 410 components: - pos: -0.5,-6.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 427 + - uid: 411 components: - pos: 0.5,-18.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 429 + - uid: 412 components: - rot: -1.5707963267948966 rad pos: -1.5,-16.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 433 + - uid: 413 components: - rot: -1.5707963267948966 rad pos: 0.5,-16.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 434 + - uid: 414 components: - rot: -1.5707963267948966 rad pos: 1.5,-16.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 435 + - uid: 415 components: - rot: -1.5707963267948966 rad pos: -2.5,-16.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 436 + - uid: 416 components: - rot: -1.5707963267948966 rad pos: -3.5,-16.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 437 + - uid: 417 components: - rot: -1.5707963267948966 rad pos: 2.5,-16.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 452 + - uid: 418 components: - rot: -1.5707963267948966 rad pos: 5.5,-19.5 - parent: 73 + parent: 1 type: Transform - - enabled: True - type: AmbientSound - - uid: 454 + - uid: 419 components: - rot: 1.5707963267948966 rad pos: 3.5,-19.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 456 + - uid: 420 components: - rot: -1.5707963267948966 rad pos: 1.5,-19.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 458 + - uid: 421 components: - rot: 3.141592653589793 rad pos: -1.5,-6.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 460 + - uid: 422 components: - rot: -1.5707963267948966 rad pos: -0.5,-17.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 461 + - uid: 423 components: - rot: -1.5707963267948966 rad pos: -1.5,-17.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 462 + - uid: 424 components: - rot: -1.5707963267948966 rad pos: -2.5,-17.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 463 + - uid: 425 components: - rot: -1.5707963267948966 rad pos: -3.5,-17.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 464 + - uid: 426 components: - rot: -1.5707963267948966 rad pos: 1.5,-17.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 465 + - uid: 427 components: - rot: -1.5707963267948966 rad pos: 2.5,-17.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 466 + - uid: 428 components: - rot: 3.141592653589793 rad pos: 0.5,-16.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 467 + - uid: 429 components: - rot: 3.141592653589793 rad pos: 0.5,-15.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 468 + - uid: 430 components: - rot: 3.141592653589793 rad pos: 0.5,-14.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 469 + - uid: 431 components: - rot: 3.141592653589793 rad pos: 0.5,-13.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 471 + - uid: 432 components: - pos: 0.5,-11.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 472 + - uid: 433 components: - pos: 0.5,-10.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 473 + - uid: 434 components: - pos: 0.5,-9.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 475 + - uid: 435 components: - rot: -1.5707963267948966 rad pos: -0.5,-8.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 477 + - uid: 436 components: - rot: 3.141592653589793 rad pos: -1.5,-7.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 488 + - uid: 437 components: - pos: 0.5,-20.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 490 + - uid: 438 components: - rot: -1.5707963267948966 rad pos: -0.5,-21.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 491 + - uid: 439 components: - rot: -1.5707963267948966 rad pos: -1.5,-21.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 492 + - uid: 440 components: - rot: -1.5707963267948966 rad pos: -2.5,-21.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 704 + - uid: 441 components: - rot: 3.141592653589793 rad pos: -1.5,-5.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 711 + - uid: 442 components: - rot: 3.141592653589793 rad pos: 0.5,-4.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - proto: GasPipeTJunction entities: - - uid: 416 + - uid: 443 components: - rot: 1.5707963267948966 rad pos: -0.5,-11.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 455 + - uid: 444 components: - pos: 2.5,-19.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 457 + - uid: 445 components: - rot: 1.5707963267948966 rad pos: 0.5,-19.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 470 + - uid: 446 components: - rot: 1.5707963267948966 rad pos: 0.5,-12.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - proto: GasPort entities: - - uid: 523 + - uid: 447 components: - rot: 1.5707963267948966 rad pos: 2.5,-23.5 - parent: 73 + parent: 1 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - proto: GasPressurePump entities: - - uid: 453 + - uid: 448 components: - name: waste pump type: MetaData - rot: 1.5707963267948966 rad pos: 4.5,-19.5 - parent: 73 + parent: 1 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - proto: GasVentPump entities: - - uid: 428 + - uid: 449 components: - rot: -1.5707963267948966 rad pos: 0.5,-11.5 - parent: 73 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - - uid: 430 + - uid: 450 components: - rot: 3.141592653589793 rad pos: -0.5,-21.5 - parent: 73 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - - uid: 431 + - uid: 451 components: - rot: -1.5707963267948966 rad pos: 4.5,-23.5 - parent: 73 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - - uid: 432 + - uid: 452 components: - rot: 3.141592653589793 rad pos: -4.5,-21.5 - parent: 73 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - - uid: 438 + - uid: 453 components: - rot: 1.5707963267948966 rad pos: -4.5,-16.5 - parent: 73 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - - uid: 440 + - uid: 454 components: - rot: -1.5707963267948966 rad pos: 3.5,-16.5 - parent: 73 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - - uid: 708 + - uid: 455 components: - pos: 0.5,-3.5 - parent: 73 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - proto: GasVentScrubber entities: - - uid: 484 + - uid: 456 components: - rot: -1.5707963267948966 rad pos: 1.5,-12.5 - parent: 73 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - - uid: 485 + - uid: 457 components: - rot: -1.5707963267948966 rad pos: 3.5,-17.5 - parent: 73 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - - uid: 486 + - uid: 458 components: - rot: 3.141592653589793 rad pos: 2.5,-20.5 - parent: 73 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - - uid: 487 + - uid: 459 components: - rot: 1.5707963267948966 rad pos: -4.5,-17.5 - parent: 73 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - - uid: 493 + - uid: 460 components: - rot: 1.5707963267948966 rad pos: -3.5,-21.5 - parent: 73 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - - uid: 714 + - uid: 461 components: - pos: -0.5,-3.5 - parent: 73 + parent: 1 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - proto: GeneratorBasic15kW entities: - - uid: 206 + - uid: 462 components: - pos: -4.5,-26.5 - parent: 73 + parent: 1 type: Transform - - uid: 207 + - uid: 463 components: - pos: -4.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 502 + - uid: 464 components: - pos: -4.5,-24.5 - parent: 73 + parent: 1 type: Transform - - uid: 567 + - uid: 465 components: - pos: -6.5,-24.5 - parent: 73 + parent: 1 type: Transform - - uid: 568 + - uid: 466 components: - pos: -6.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 570 + - uid: 467 components: - pos: -6.5,-26.5 - parent: 73 + parent: 1 type: Transform - proto: GeneratorWallmountAPU entities: - - uid: 676 + - uid: 468 components: - pos: -6.5,-20.5 - parent: 73 + parent: 1 type: Transform - proto: GravityGeneratorMini entities: - - uid: 652 + - uid: 469 components: - pos: -5.5,-22.5 - parent: 73 + parent: 1 type: Transform - proto: Grille entities: - - uid: 9 + - uid: 470 components: - pos: 2.5,-12.5 - parent: 73 + parent: 1 type: Transform - - uid: 16 + - uid: 471 components: - pos: -3.5,-12.5 - parent: 73 + parent: 1 type: Transform - - uid: 37 + - uid: 472 components: - rot: 1.5707963267948966 rad pos: -1.5,-7.5 - parent: 73 + parent: 1 type: Transform - - uid: 114 + - uid: 473 components: - pos: -2.5,-1.5 - parent: 73 + parent: 1 type: Transform - - uid: 117 + - uid: 474 components: - pos: -0.5,-1.5 - parent: 73 + parent: 1 type: Transform - - uid: 118 + - uid: 475 components: - pos: -4.5,-2.5 - parent: 73 + parent: 1 type: Transform - - uid: 119 + - uid: 476 components: - pos: -6.5,-4.5 - parent: 73 + parent: 1 type: Transform - - uid: 123 + - uid: 477 components: - pos: 3.5,-2.5 - parent: 73 + parent: 1 type: Transform - - uid: 125 + - uid: 478 components: - pos: -1.5,-1.5 - parent: 73 + parent: 1 type: Transform - - uid: 132 + - uid: 479 components: - pos: 5.5,-4.5 - parent: 73 + parent: 1 type: Transform - - uid: 137 + - uid: 480 components: - pos: 0.5,-1.5 - parent: 73 + parent: 1 type: Transform - - uid: 146 + - uid: 481 components: - pos: 1.5,-9.5 - parent: 73 + parent: 1 type: Transform - - uid: 148 + - uid: 482 components: - pos: -2.5,-9.5 - parent: 73 + parent: 1 type: Transform - - uid: 156 + - uid: 483 components: - pos: 1.5,-1.5 - parent: 73 + parent: 1 type: Transform - - uid: 177 + - uid: 484 components: - pos: -2.5,-21.5 - parent: 73 + parent: 1 type: Transform - - uid: 178 + - uid: 485 components: - pos: -2.5,-19.5 - parent: 73 + parent: 1 type: Transform - - uid: 179 + - uid: 486 components: - pos: 2.5,-22.5 - parent: 73 + parent: 1 type: Transform - - uid: 180 + - uid: 487 components: - pos: 4.5,-22.5 - parent: 73 + parent: 1 type: Transform - - uid: 186 + - uid: 488 components: - pos: -1.5,-18.5 - parent: 73 + parent: 1 type: Transform - - uid: 221 + - uid: 489 components: - pos: 0.5,-7.5 - parent: 73 + parent: 1 type: Transform - - uid: 385 + - uid: 490 components: - pos: 3.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 386 + - uid: 491 components: - pos: 5.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 494 + - uid: 492 components: - rot: 1.5707963267948966 rad pos: 5.5,-19.5 - parent: 73 + parent: 1 type: Transform - - uid: 547 + - uid: 493 components: - pos: 0.5,-18.5 - parent: 73 + parent: 1 type: Transform - proto: Gyroscope entities: - - uid: 560 + - uid: 494 components: - pos: -5.5,-13.5 - parent: 73 + parent: 1 type: Transform - - uid: 562 + - uid: 495 components: - pos: 4.5,-13.5 - parent: 73 + parent: 1 type: Transform - proto: HospitalCurtainsOpen entities: - - uid: 633 + - uid: 496 components: - pos: 3.5,-3.5 - parent: 73 + parent: 1 type: Transform - proto: KitchenMicrowave entities: - - uid: 530 + - uid: 497 components: - pos: 3.5,-19.5 - parent: 73 + parent: 1 type: Transform - proto: KnifePlastic entities: - - uid: 544 + - uid: 498 components: - pos: 5.3509636,-21.445768 - parent: 73 + parent: 1 type: Transform - proto: Lamp entities: - - uid: 88 + - uid: 499 components: - pos: -1.483297,-2.2444057 - parent: 73 + parent: 1 type: Transform - proto: LockerSyndicatePersonal entities: - - uid: 692 + - uid: 33 components: - pos: 4.5,-5.5 - parent: 73 + parent: 1 type: Transform - air: volume: 200 @@ -3799,14 +3578,14 @@ entities: showEnts: False occludes: True ents: - - 563 - - 700 - - 699 - - 697 - - 695 - - 694 - - 709 - - 710 + - 37 + - 39 + - 36 + - 40 + - 41 + - 38 + - 35 + - 34 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -3814,1993 +3593,1993 @@ entities: type: ContainerContainer - proto: MedicalBed entities: - - uid: 673 + - uid: 500 components: - pos: -4.5,-3.5 - parent: 73 + parent: 1 type: Transform - proto: MedkitCombatFilled entities: - - uid: 533 + - uid: 501 components: - pos: -3.401462,-3.5350046 - parent: 73 + parent: 1 type: Transform - - uid: 584 + - uid: 502 components: - pos: -3.557712,-3.4256296 - parent: 73 + parent: 1 type: Transform - proto: Mirror entities: - - uid: 884 + - uid: 503 components: - pos: 4.5,-3.5 - parent: 73 + parent: 1 type: Transform - proto: Multitool entities: - - uid: 499 + - uid: 504 components: - pos: -3.383473,-22.548275 - parent: 73 + parent: 1 type: Transform - proto: NitrogenTankFilled entities: - - uid: 376 + - uid: 505 components: - pos: 4.633928,-12.616316 - parent: 73 + parent: 1 type: Transform - - uid: 684 + - uid: 506 components: - pos: -5.397322,-12.569441 - parent: 73 + parent: 1 type: Transform - - uid: 788 + - uid: 507 components: - pos: -6.3522453,-17.549818 - parent: 73 + parent: 1 type: Transform - - uid: 790 + - uid: 508 components: - pos: 5.6633797,-17.565443 - parent: 73 + parent: 1 type: Transform - proto: NuclearBombUnanchored entities: - - uid: 76 + - uid: 509 components: - pos: -2.5,-12.5 - parent: 73 + parent: 1 type: Transform - proto: NukeCodePaper entities: - - uid: 846 + - uid: 510 components: - pos: -2.5286522,-11.44479 - parent: 73 + parent: 1 type: Transform - proto: Ointment entities: - - uid: 575 + - uid: 511 components: - pos: -3.651462,-4.5193796 - parent: 73 + parent: 1 type: Transform - - uid: 585 + - uid: 512 components: - pos: -3.667087,-4.2225046 - parent: 73 + parent: 1 type: Transform - proto: OperatingTable entities: - - uid: 720 + - uid: 513 components: - pos: -5.5,-4.5 - parent: 73 + parent: 1 type: Transform - proto: OxygenCanister entities: - - uid: 553 + - uid: 514 components: - pos: -1.5,-24.5 - parent: 73 + parent: 1 type: Transform - proto: OxygenTankFilled entities: - - uid: 66 + - uid: 515 components: - pos: -5.600447,-12.569441 - parent: 73 + parent: 1 type: Transform - - uid: 450 + - uid: 516 components: - pos: 4.399553,-12.522566 - parent: 73 + parent: 1 type: Transform - - uid: 785 + - uid: 517 components: - pos: 5.5227547,-17.440443 - parent: 73 + parent: 1 type: Transform - - uid: 786 + - uid: 518 components: - pos: -6.4928703,-17.440443 - parent: 73 + parent: 1 type: Transform - proto: PinpointerNuclear entities: - - uid: 872 + - uid: 519 components: - pos: -2.4942985,-13.37949 - parent: 73 + parent: 1 type: Transform - proto: PlasmaReinforcedWindowDirectional entities: - - uid: 549 + - uid: 520 components: - rot: -1.5707963267948966 rad pos: -2.5,-4.5 - parent: 73 + parent: 1 type: Transform - - uid: 573 + - uid: 521 components: - rot: -1.5707963267948966 rad pos: -2.5,-6.5 - parent: 73 + parent: 1 type: Transform - - uid: 727 + - uid: 522 components: - rot: -1.5707963267948966 rad pos: -2.5,-3.5 - parent: 73 + parent: 1 type: Transform - proto: PlushieNuke entities: - - uid: 92 + - uid: 523 components: - pos: -2.4227936,-2.3320491 - parent: 73 + parent: 1 type: Transform - proto: PosterContrabandC20r entities: - - uid: 778 + - uid: 524 components: - pos: 1.5,-14.5 - parent: 73 + parent: 1 type: Transform - proto: PosterContrabandCC64KAd entities: - - uid: 796 + - uid: 525 components: - pos: -5.5,-18.5 - parent: 73 + parent: 1 type: Transform - proto: PosterContrabandCybersun600 entities: - - uid: 793 + - uid: 526 components: - pos: 2.5,-6.5 - parent: 73 + parent: 1 type: Transform - proto: PosterContrabandDonk entities: - - uid: 719 + - uid: 527 components: - rot: 3.141592653589793 rad pos: 3.5,-18.5 - parent: 73 + parent: 1 type: Transform - proto: PosterContrabandDonutCorp entities: - - uid: 755 + - uid: 528 components: - rot: 3.141592653589793 rad pos: 1.5,-22.5 - parent: 73 + parent: 1 type: Transform - proto: PosterContrabandEnergySwords entities: - - uid: 534 + - uid: 529 components: - pos: 2.5,-18.5 - parent: 73 + parent: 1 type: Transform - proto: PosterContrabandEnlistGorlex entities: - - uid: 754 + - uid: 530 components: - rot: 3.141592653589793 rad pos: 2.5,-13.5 - parent: 73 + parent: 1 type: Transform - proto: PosterContrabandFreeSyndicateEncryptionKey entities: - - uid: 779 + - uid: 531 components: - pos: -2.5,-8.5 - parent: 73 + parent: 1 type: Transform - proto: PosterContrabandInterdyne entities: - - uid: 725 + - uid: 532 components: - rot: 3.141592653589793 rad pos: -4.5,-6.5 - parent: 73 + parent: 1 type: Transform - proto: PosterContrabandKosmicheskayaStantsiya entities: - - uid: 780 + - uid: 533 components: - pos: -2.5,-22.5 - parent: 73 + parent: 1 type: Transform - proto: PosterContrabandMoth entities: - - uid: 757 + - uid: 534 components: - pos: -2.5,-14.5 - parent: 73 + parent: 1 type: Transform - - uid: 792 + - uid: 535 components: - pos: 2.5,-3.5 - parent: 73 + parent: 1 type: Transform - proto: PosterContrabandNuclearDeviceInformational entities: - - uid: 717 + - uid: 536 components: - rot: 3.141592653589793 rad pos: -3.5,-13.5 - parent: 73 + parent: 1 type: Transform - - uid: 791 + - uid: 537 components: - pos: 0.5,-14.5 - parent: 73 + parent: 1 type: Transform - proto: PosterContrabandSyndicatePistol entities: - - uid: 776 + - uid: 538 components: - pos: 1.5,-10.5 - parent: 73 + parent: 1 type: Transform - proto: PosterContrabandSyndicateRecruitment entities: - - uid: 777 + - uid: 539 components: - pos: -1.5,-14.5 - parent: 73 + parent: 1 type: Transform - proto: PosterContrabandWaffleCorp entities: - - uid: 722 + - uid: 540 components: - rot: 3.141592653589793 rad pos: -2.5,-23.5 - parent: 73 + parent: 1 type: Transform - proto: Poweredlight entities: - - uid: 129 + - uid: 541 components: - rot: 1.5707963267948966 rad pos: -1.5,-8.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 139 + - uid: 542 components: - rot: -1.5707963267948966 rad pos: 1.5,-4.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 372 + - uid: 543 components: - rot: 1.5707963267948966 rad pos: -6.5,-23.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 373 + - uid: 544 components: - rot: 1.5707963267948966 rad pos: -6.5,-26.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 374 + - uid: 545 components: - pos: -4.5,-19.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 377 + - uid: 546 components: - rot: 3.141592653589793 rad pos: 1.5,-13.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 496 + - uid: 547 components: - rot: 3.141592653589793 rad pos: 3.5,-27.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 497 + - uid: 548 components: - rot: 3.141592653589793 rad pos: 5.5,-27.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 503 + - uid: 549 components: - pos: 2.5,-15.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 504 + - uid: 550 components: - pos: -3.5,-15.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 512 + - uid: 551 components: - rot: 3.141592653589793 rad pos: -4.5,-5.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 515 + - uid: 552 components: - rot: -1.5707963267948966 rad pos: 1.5,-2.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 724 + - uid: 553 components: - rot: -1.5707963267948966 rad pos: 1.5,-6.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - proto: PoweredSmallLight entities: - - uid: 19 + - uid: 554 components: - rot: 3.141592653589793 rad pos: 4.5,-13.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 239 + - uid: 555 components: - rot: 3.141592653589793 rad pos: 5.5,-21.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 423 + - uid: 556 components: - rot: 3.141592653589793 rad pos: 3.5,-5.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 483 + - uid: 557 components: - rot: -1.5707963267948966 rad pos: 5.5,-24.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 505 + - uid: 558 components: - rot: 3.141592653589793 rad pos: -5.5,-13.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 513 + - uid: 559 components: - rot: 1.5707963267948966 rad pos: -1.5,-24.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 655 + - uid: 560 components: - pos: -6.5,-15.5 - parent: 73 + parent: 1 type: Transform - - uid: 660 + - uid: 561 components: - pos: 5.5,-15.5 - parent: 73 + parent: 1 type: Transform - - uid: 740 + - uid: 562 components: - pos: 2.5,-19.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 741 + - uid: 563 components: - pos: -1.5,-26.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 742 + - uid: 564 components: - rot: 3.141592653589793 rad pos: -5.5,-9.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 744 + - uid: 565 components: - rot: 3.141592653589793 rad pos: 4.5,-9.5 - parent: 73 + parent: 1 type: Transform - powerLoad: 0 type: ApcPowerReceiver - proto: Rack entities: - - uid: 478 + - uid: 566 components: - pos: -3.5,-22.5 - parent: 73 + parent: 1 type: Transform - - uid: 525 + - uid: 567 components: - pos: 5.5,-23.5 - parent: 73 + parent: 1 type: Transform - - uid: 550 + - uid: 568 components: - rot: 3.141592653589793 rad pos: 4.5,-12.5 - parent: 73 + parent: 1 type: Transform - - uid: 554 + - uid: 569 components: - rot: 3.141592653589793 rad pos: -5.5,-12.5 - parent: 73 + parent: 1 type: Transform - - uid: 558 + - uid: 570 components: - pos: -1.5,-23.5 - parent: 73 + parent: 1 type: Transform - - uid: 689 + - uid: 571 components: - pos: -6.5,-17.5 - parent: 73 + parent: 1 type: Transform - - uid: 690 + - uid: 572 components: - pos: 5.5,-17.5 - parent: 73 + parent: 1 type: Transform - proto: ReinforcedPlasmaWindow entities: - - uid: 2 + - uid: 573 components: - pos: 3.5,-2.5 - parent: 73 + parent: 1 type: Transform - - uid: 95 + - uid: 574 components: - rot: 1.5707963267948966 rad pos: 5.5,-19.5 - parent: 73 + parent: 1 type: Transform - - uid: 115 + - uid: 575 components: - pos: -0.5,-1.5 - parent: 73 + parent: 1 type: Transform - - uid: 116 + - uid: 576 components: - pos: -6.5,-4.5 - parent: 73 + parent: 1 type: Transform - - uid: 126 + - uid: 577 components: - pos: -2.5,-1.5 - parent: 73 + parent: 1 type: Transform - - uid: 134 + - uid: 578 components: - pos: -4.5,-2.5 - parent: 73 + parent: 1 type: Transform - - uid: 145 + - uid: 579 components: - pos: 5.5,-4.5 - parent: 73 + parent: 1 type: Transform - - uid: 149 + - uid: 580 components: - pos: -1.5,-1.5 - parent: 73 + parent: 1 type: Transform - - uid: 153 + - uid: 581 components: - pos: 0.5,-1.5 - parent: 73 + parent: 1 type: Transform - - uid: 155 + - uid: 582 components: - pos: 1.5,-1.5 - parent: 73 + parent: 1 type: Transform - - uid: 159 + - uid: 583 components: - pos: -1.5,-7.5 - parent: 73 + parent: 1 type: Transform - - uid: 172 + - uid: 584 components: - pos: 4.5,-22.5 - parent: 73 + parent: 1 type: Transform - - uid: 173 + - uid: 585 components: - pos: 2.5,-22.5 - parent: 73 + parent: 1 type: Transform - - uid: 175 + - uid: 586 components: - pos: -2.5,-21.5 - parent: 73 + parent: 1 type: Transform - - uid: 176 + - uid: 587 components: - pos: -2.5,-19.5 - parent: 73 + parent: 1 type: Transform - - uid: 181 + - uid: 588 components: - pos: -2.5,-9.5 - parent: 73 + parent: 1 type: Transform - - uid: 182 + - uid: 589 components: - pos: 1.5,-9.5 - parent: 73 + parent: 1 type: Transform - - uid: 289 + - uid: 590 components: - pos: 0.5,-18.5 - parent: 73 + parent: 1 type: Transform - - uid: 383 + - uid: 591 components: - pos: 3.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 384 + - uid: 592 components: - pos: 5.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 506 + - uid: 593 components: - pos: 2.5,-12.5 - parent: 73 + parent: 1 type: Transform - - uid: 509 + - uid: 594 components: - pos: -3.5,-12.5 - parent: 73 + parent: 1 type: Transform - - uid: 510 + - uid: 595 components: - pos: 0.5,-7.5 - parent: 73 + parent: 1 type: Transform - - uid: 557 + - uid: 596 components: - pos: -1.5,-18.5 - parent: 73 + parent: 1 type: Transform - proto: ShuttersNormalOpen entities: - - uid: 4 + - uid: 597 components: - pos: -6.5,-4.5 - parent: 73 + parent: 1 type: Transform - links: - - 238 + - 610 type: DeviceLinkSink - - uid: 38 + - uid: 598 components: - pos: 5.5,-4.5 - parent: 73 + parent: 1 type: Transform - links: - - 630 + - 612 type: DeviceLinkSink - - uid: 48 + - uid: 599 components: - pos: 1.5,-9.5 - parent: 73 + parent: 1 type: Transform - links: - - 143 + - 609 type: DeviceLinkSink - - uid: 140 + - uid: 600 components: - pos: -2.5,-9.5 - parent: 73 + parent: 1 type: Transform - links: - - 143 + - 609 type: DeviceLinkSink - - uid: 160 + - uid: 601 components: - pos: -4.5,-2.5 - parent: 73 + parent: 1 type: Transform - links: - - 238 + - 610 type: DeviceLinkSink - - uid: 189 + - uid: 602 components: - pos: 3.5,-2.5 - parent: 73 + parent: 1 type: Transform - links: - - 630 + - 612 type: DeviceLinkSink - - uid: 193 + - uid: 603 components: - pos: 1.5,-1.5 - parent: 73 + parent: 1 type: Transform - links: - - 238 + - 610 type: DeviceLinkSink - - uid: 511 + - uid: 604 components: - pos: -0.5,-1.5 - parent: 73 + parent: 1 type: Transform - links: - - 238 + - 610 type: DeviceLinkSink - - uid: 577 + - uid: 605 components: - pos: 5.5,-19.5 - parent: 73 + parent: 1 type: Transform - links: - - 578 + - 611 type: DeviceLinkSink - - uid: 670 + - uid: 606 components: - pos: -1.5,-1.5 - parent: 73 + parent: 1 type: Transform - links: - - 238 + - 610 type: DeviceLinkSink - - uid: 687 + - uid: 607 components: - pos: 0.5,-1.5 - parent: 73 + parent: 1 type: Transform - links: - - 238 + - 610 type: DeviceLinkSink - - uid: 693 + - uid: 608 components: - pos: -2.5,-1.5 - parent: 73 + parent: 1 type: Transform - links: - - 238 + - 610 type: DeviceLinkSink - proto: SignalButton entities: - - uid: 143 + - uid: 609 components: - pos: -2.5,-10.5 - parent: 73 + parent: 1 type: Transform - linkedPorts: - 140: + 600: - Pressed: Toggle - 48: + 599: - Pressed: Toggle type: DeviceLinkSource - - uid: 238 + - uid: 610 components: - pos: -2.5,-7.5 - parent: 73 + parent: 1 type: Transform - linkedPorts: - 4: + 597: - Pressed: Toggle - 160: + 601: - Pressed: Toggle - 693: + 608: - Pressed: Toggle - 670: + 606: - Pressed: Toggle - 511: + 604: - Pressed: Toggle - 687: + 607: - Pressed: Toggle - 193: + 603: - Pressed: Toggle type: DeviceLinkSource - - uid: 578 + - uid: 611 components: - pos: 5.5,-20.5 - parent: 73 + parent: 1 type: Transform - linkedPorts: - 577: + 605: - Pressed: Toggle type: DeviceLinkSource - - uid: 630 + - uid: 612 components: - pos: 3.5,-6.5 - parent: 73 + parent: 1 type: Transform - linkedPorts: - 189: + 602: - Pressed: Toggle - 38: + 598: - Pressed: Toggle type: DeviceLinkSource - proto: SignDirectionalEvac entities: - - uid: 572 + - uid: 613 components: - pos: 0.5,-22.5 - parent: 73 + parent: 1 type: Transform - - uid: 574 + - uid: 614 components: - rot: 1.5707963267948966 rad pos: 4.5,-15.5 - parent: 73 + parent: 1 type: Transform - - uid: 680 + - uid: 615 components: - rot: 3.141592653589793 rad pos: -5.5,-14.5 - parent: 73 + parent: 1 type: Transform - - uid: 688 + - uid: 616 components: - rot: 3.141592653589793 rad pos: 4.5,-14.5 - parent: 73 + parent: 1 type: Transform - - uid: 718 + - uid: 617 components: - rot: -1.5707963267948966 rad pos: -5.5,-15.5 - parent: 73 + parent: 1 type: Transform - proto: SignElectricalMed entities: - - uid: 521 + - uid: 618 components: - pos: -2.5,-18.5 - parent: 73 + parent: 1 type: Transform - proto: SignNosmoking entities: - - uid: 522 + - uid: 619 components: - pos: 5.5,-22.5 - parent: 73 + parent: 1 type: Transform - proto: SignSecureSmallRed entities: - - uid: 745 + - uid: 620 components: - pos: -3.5,-11.5 - parent: 73 + parent: 1 type: Transform - - uid: 746 + - uid: 621 components: - pos: 4.5,-17.5 - parent: 73 + parent: 1 type: Transform - - uid: 747 + - uid: 622 components: - pos: 2.5,-11.5 - parent: 73 + parent: 1 type: Transform - proto: SMESBasic entities: - - uid: 210 + - uid: 623 components: - pos: -5.5,-19.5 - parent: 73 + parent: 1 type: Transform - - uid: 211 + - uid: 624 components: - pos: -4.5,-19.5 - parent: 73 + parent: 1 type: Transform - proto: SoapSyndie entities: - - uid: 797 + - uid: 625 components: - pos: 2.4424396,-17.430403 - parent: 73 + parent: 1 type: Transform - proto: soda_dispenser entities: - - uid: 535 + - uid: 626 components: - pos: 1.5,-19.5 - parent: 73 + parent: 1 type: Transform - proto: StorageCanister entities: - - uid: 498 + - uid: 627 components: - pos: 2.5,-23.5 - parent: 73 + parent: 1 type: Transform - proto: SubstationBasic entities: - - uid: 219 + - uid: 628 components: - pos: -3.5,-19.5 - parent: 73 + parent: 1 type: Transform - proto: SuitStorageEVASyndicate entities: - - uid: 426 + - uid: 629 components: - pos: 0.5,-24.5 - parent: 73 + parent: 1 type: Transform - - uid: 565 + - uid: 630 components: - pos: 0.5,-23.5 - parent: 73 + parent: 1 type: Transform - - uid: 774 + - uid: 631 components: - pos: 3.5,-17.5 - parent: 73 + parent: 1 type: Transform - - uid: 782 + - uid: 632 components: - pos: -4.5,-17.5 - parent: 73 + parent: 1 type: Transform - proto: SyndieMiniBomb entities: - - uid: 723 + - uid: 633 components: - pos: 1.4127003,-11.973867 - parent: 73 + parent: 1 type: Transform - - uid: 726 + - uid: 634 components: - pos: 1.6939503,-11.973867 - parent: 73 + parent: 1 type: Transform - proto: SyringeInaprovaline entities: - - uid: 526 + - uid: 635 components: - pos: -3.510837,-4.3787546 - parent: 73 + parent: 1 type: Transform - - uid: 536 + - uid: 636 components: - pos: -3.510837,-4.0193796 - parent: 73 + parent: 1 type: Transform - proto: Table entities: - - uid: 90 + - uid: 637 components: - pos: 5.5,-21.5 - parent: 73 + parent: 1 type: Transform - - uid: 445 + - uid: 638 components: - rot: 3.141592653589793 rad pos: 1.5,-21.5 - parent: 73 + parent: 1 type: Transform - - uid: 527 + - uid: 639 components: - pos: 3.5,-19.5 - parent: 73 + parent: 1 type: Transform - - uid: 528 + - uid: 640 components: - pos: 2.5,-19.5 - parent: 73 + parent: 1 type: Transform - - uid: 529 + - uid: 641 components: - pos: 1.5,-19.5 - parent: 73 + parent: 1 type: Transform - proto: TablePlasmaGlass entities: - - uid: 52 + - uid: 642 components: - pos: -3.5,-4.5 - parent: 73 + parent: 1 type: Transform - - uid: 672 + - uid: 643 components: - pos: -3.5,-6.5 - parent: 73 + parent: 1 type: Transform - - uid: 702 + - uid: 644 components: - pos: -3.5,-3.5 - parent: 73 + parent: 1 type: Transform - proto: TableReinforced entities: - - uid: 87 + - uid: 645 components: - pos: -2.5,-11.5 - parent: 73 + parent: 1 type: Transform - - uid: 190 + - uid: 646 components: - pos: -2.5,-13.5 - parent: 73 + parent: 1 type: Transform - - uid: 508 + - uid: 647 components: - pos: -1.5,-3.5 - parent: 73 + parent: 1 type: Transform - - uid: 532 + - uid: 648 components: - pos: -2.5,-2.5 - parent: 73 + parent: 1 type: Transform - - uid: 735 + - uid: 649 components: - pos: 0.5,-13.5 - parent: 73 + parent: 1 type: Transform - - uid: 736 + - uid: 650 components: - pos: 1.5,-13.5 - parent: 73 + parent: 1 type: Transform - - uid: 737 + - uid: 651 components: - pos: 1.5,-12.5 - parent: 73 + parent: 1 type: Transform - - uid: 738 + - uid: 652 components: - pos: 1.5,-11.5 - parent: 73 + parent: 1 type: Transform - - uid: 765 + - uid: 653 components: - pos: 2.5,-17.5 - parent: 73 + parent: 1 type: Transform - - uid: 768 + - uid: 654 components: - pos: 1.5,-17.5 - parent: 73 + parent: 1 type: Transform - - uid: 769 + - uid: 655 components: - pos: -2.5,-17.5 - parent: 73 + parent: 1 type: Transform - - uid: 770 + - uid: 656 components: - rot: -1.5707963267948966 rad pos: 1.5,-2.5 - parent: 73 + parent: 1 type: Transform - - uid: 772 + - uid: 657 components: - pos: -3.5,-17.5 - parent: 73 + parent: 1 type: Transform - - uid: 773 + - uid: 658 components: - rot: -1.5707963267948966 rad pos: -1.5,-2.5 - parent: 73 + parent: 1 type: Transform - proto: Thruster entities: - - uid: 187 + - uid: 659 components: - pos: -6.5,-2.5 - parent: 73 + parent: 1 type: Transform - - uid: 188 + - uid: 660 components: - pos: 5.5,-2.5 - parent: 73 + parent: 1 type: Transform - - uid: 191 + - uid: 661 components: - rot: 1.5707963267948966 rad pos: -5.5,-7.5 - parent: 73 + parent: 1 type: Transform - - uid: 192 + - uid: 662 components: - rot: -1.5707963267948966 rad pos: 4.5,-7.5 - parent: 73 + parent: 1 type: Transform - - uid: 657 + - uid: 663 components: - rot: 1.5707963267948966 rad pos: -7.5,-13.5 - parent: 73 + parent: 1 type: Transform - - uid: 658 + - uid: 664 components: - rot: -1.5707963267948966 rad pos: 6.5,-13.5 - parent: 73 + parent: 1 type: Transform - - uid: 819 + - uid: 665 components: - rot: 3.141592653589793 rad pos: -5.5,-30.5 - parent: 73 + parent: 1 type: Transform - - uid: 820 + - uid: 666 components: - rot: 3.141592653589793 rad pos: -4.5,-30.5 - parent: 73 + parent: 1 type: Transform - - uid: 821 + - uid: 667 components: - rot: 3.141592653589793 rad pos: 4.5,-30.5 - parent: 73 + parent: 1 type: Transform - - uid: 822 + - uid: 668 components: - rot: 3.141592653589793 rad pos: 3.5,-30.5 - parent: 73 + parent: 1 type: Transform - proto: ToolboxSyndicate entities: - - uid: 651 + - uid: 669 components: - pos: -2.5731854,-17.414778 - parent: 73 + parent: 1 type: Transform - proto: ToolboxSyndicateFilled entities: - - uid: 748 + - uid: 670 components: - pos: 1.5034143,-11.298322 - parent: 73 + parent: 1 type: Transform - proto: VendingMachineTankDispenserEVA entities: - - uid: 479 + - uid: 671 components: - flags: SessionSpecific type: MetaData - pos: 5.5,-15.5 - parent: 73 + parent: 1 type: Transform - - uid: 524 + - uid: 672 components: - flags: SessionSpecific name: tank dispenser type: MetaData - pos: 2.5,-24.5 - parent: 73 + parent: 1 type: Transform - - uid: 656 + - uid: 673 components: - flags: SessionSpecific type: MetaData - pos: -6.5,-15.5 - parent: 73 + parent: 1 type: Transform - proto: VendingMachineYouTool entities: - - uid: 507 + - uid: 674 components: - flags: SessionSpecific type: MetaData - pos: -3.5,-24.5 - parent: 73 + parent: 1 type: Transform - proto: WallPlastitanium entities: - - uid: 1 + - uid: 675 components: - pos: 2.5,-2.5 - parent: 73 + parent: 1 type: Transform - - uid: 3 + - uid: 676 components: - pos: 4.5,-3.5 - parent: 73 + parent: 1 type: Transform - - uid: 5 + - uid: 677 components: - pos: -3.5,-11.5 - parent: 73 + parent: 1 type: Transform - - uid: 6 + - uid: 678 components: - pos: 2.5,-14.5 - parent: 73 + parent: 1 type: Transform - - uid: 7 + - uid: 679 components: - pos: 4.5,-14.5 - parent: 73 + parent: 1 type: Transform - - uid: 8 + - uid: 680 components: - pos: -2.5,-14.5 - parent: 73 + parent: 1 type: Transform - - uid: 10 + - uid: 681 components: - pos: 2.5,-18.5 - parent: 73 + parent: 1 type: Transform - - uid: 11 + - uid: 682 components: - pos: 1.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 12 + - uid: 683 components: - pos: 1.5,-18.5 - parent: 73 + parent: 1 type: Transform - - uid: 13 + - uid: 684 components: - pos: 7.5,-17.5 - parent: 73 + parent: 1 type: Transform - - uid: 14 + - uid: 685 components: - pos: -3.5,-26.5 - parent: 73 + parent: 1 type: Transform - - uid: 15 + - uid: 686 components: - rot: 1.5707963267948966 rad pos: 3.5,-7.5 - parent: 73 + parent: 1 type: Transform - - uid: 17 + - uid: 687 components: - pos: 2.5,-13.5 - parent: 73 + parent: 1 type: Transform - - uid: 18 + - uid: 688 components: - pos: -3.5,-28.5 - parent: 73 + parent: 1 type: Transform - - uid: 20 + - uid: 689 components: - pos: 2.5,-10.5 - parent: 73 + parent: 1 type: Transform - - uid: 21 + - uid: 690 components: - pos: 4.5,-18.5 - parent: 73 + parent: 1 type: Transform - - uid: 22 + - uid: 691 components: - pos: -2.5,-10.5 - parent: 73 + parent: 1 type: Transform - - uid: 23 + - uid: 692 components: - pos: -3.5,-10.5 - parent: 73 + parent: 1 type: Transform - - uid: 24 + - uid: 693 components: - pos: -6.5,-11.5 - parent: 73 + parent: 1 type: Transform - - uid: 25 + - uid: 694 components: - pos: 4.5,-10.5 - parent: 73 + parent: 1 type: Transform - - uid: 26 + - uid: 695 components: - pos: 4.5,-2.5 - parent: 73 + parent: 1 type: Transform - - uid: 27 + - uid: 696 components: - rot: 1.5707963267948966 rad pos: -4.5,-7.5 - parent: 73 + parent: 1 type: Transform - - uid: 29 + - uid: 697 components: - pos: -6.5,-6.5 - parent: 73 + parent: 1 type: Transform - - uid: 30 + - uid: 698 components: - pos: -5.5,-6.5 - parent: 73 + parent: 1 type: Transform - - uid: 31 + - uid: 699 components: - pos: 4.5,-6.5 - parent: 73 + parent: 1 type: Transform - - uid: 32 + - uid: 700 components: - pos: -6.5,-5.5 - parent: 73 + parent: 1 type: Transform - - uid: 33 + - uid: 701 components: - rot: 1.5707963267948966 rad pos: -2.5,-8.5 - parent: 73 + parent: 1 type: Transform - - uid: 34 + - uid: 702 components: - rot: 1.5707963267948966 rad pos: 1.5,-7.5 - parent: 73 + parent: 1 type: Transform - - uid: 35 + - uid: 703 components: - rot: 1.5707963267948966 rad pos: 1.5,-8.5 - parent: 73 + parent: 1 type: Transform - - uid: 39 + - uid: 704 components: - pos: 2.5,-11.5 - parent: 73 + parent: 1 type: Transform - - uid: 40 + - uid: 705 components: - pos: 5.5,-18.5 - parent: 73 + parent: 1 type: Transform - - uid: 41 + - uid: 706 components: - pos: -8.5,-15.5 - parent: 73 + parent: 1 type: Transform - - uid: 42 + - uid: 707 components: - pos: -8.5,-17.5 - parent: 73 + parent: 1 type: Transform - - uid: 43 + - uid: 708 components: - pos: -7.5,-17.5 - parent: 73 + parent: 1 type: Transform - - uid: 44 + - uid: 709 components: - pos: -5.5,-10.5 - parent: 73 + parent: 1 type: Transform - - uid: 45 + - uid: 710 components: - pos: -3.5,-13.5 - parent: 73 + parent: 1 type: Transform - - uid: 46 + - uid: 711 components: - pos: 3.5,-18.5 - parent: 73 + parent: 1 type: Transform - - uid: 47 + - uid: 712 components: - rot: 1.5707963267948966 rad pos: -4.5,-6.5 - parent: 73 + parent: 1 type: Transform - - uid: 49 + - uid: 713 components: - rot: 1.5707963267948966 rad pos: -3.5,-7.5 - parent: 73 + parent: 1 type: Transform - - uid: 50 + - uid: 714 components: - rot: 1.5707963267948966 rad pos: -3.5,-8.5 - parent: 73 + parent: 1 type: Transform - - uid: 53 + - uid: 715 components: - pos: 5.5,-14.5 - parent: 73 + parent: 1 type: Transform - - uid: 54 + - uid: 716 components: - pos: 7.5,-15.5 - parent: 73 + parent: 1 type: Transform - - uid: 55 + - uid: 717 components: - pos: -6.5,-19.5 - parent: 73 + parent: 1 type: Transform - - uid: 56 + - uid: 718 components: - pos: -6.5,-18.5 - parent: 73 + parent: 1 type: Transform - - uid: 57 + - uid: 719 components: - pos: -3.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 58 + - uid: 720 components: - pos: 2.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 59 + - uid: 721 components: - pos: 2.5,-27.5 - parent: 73 + parent: 1 type: Transform - - uid: 60 + - uid: 722 components: - pos: 4.5,-17.5 - parent: 73 + parent: 1 type: Transform - - uid: 61 + - uid: 723 components: - pos: -7.5,-21.5 - parent: 73 + parent: 1 type: Transform - - uid: 62 + - uid: 724 components: - pos: -7.5,-27.5 - parent: 73 + parent: 1 type: Transform - - uid: 63 + - uid: 725 components: - pos: -7.5,-24.5 - parent: 73 + parent: 1 type: Transform - - uid: 64 + - uid: 726 components: - pos: 6.5,-21.5 - parent: 73 + parent: 1 type: Transform - - uid: 71 + - uid: 727 components: - pos: 6.5,-24.5 - parent: 73 + parent: 1 type: Transform - - uid: 72 + - uid: 728 components: - pos: 6.5,-26.5 - parent: 73 + parent: 1 type: Transform - - uid: 74 + - uid: 729 components: - rot: 1.5707963267948966 rad pos: 2.5,-3.5 - parent: 73 + parent: 1 type: Transform - - uid: 75 + - uid: 730 components: - pos: 1.5,-10.5 - parent: 73 + parent: 1 type: Transform - - uid: 77 + - uid: 731 components: - pos: -3.5,-27.5 - parent: 73 + parent: 1 type: Transform - - uid: 79 + - uid: 732 components: - pos: -6.5,-12.5 - parent: 73 + parent: 1 type: Transform - - uid: 80 + - uid: 733 components: - pos: 5.5,-12.5 - parent: 73 + parent: 1 type: Transform - - uid: 81 + - uid: 734 components: - pos: 5.5,-11.5 - parent: 73 + parent: 1 type: Transform - - uid: 82 + - uid: 735 components: - pos: -5.5,-11.5 - parent: 73 + parent: 1 type: Transform - - uid: 83 + - uid: 736 components: - pos: -6.5,-20.5 - parent: 73 + parent: 1 type: Transform - - uid: 84 + - uid: 737 components: - pos: 0.5,-14.5 - parent: 73 + parent: 1 type: Transform - - uid: 85 + - uid: 738 components: - pos: -1.5,-14.5 - parent: 73 + parent: 1 type: Transform - - uid: 86 + - uid: 739 components: - pos: 5.5,-20.5 - parent: 73 + parent: 1 type: Transform - - uid: 89 + - uid: 740 components: - pos: -5.5,-14.5 - parent: 73 + parent: 1 type: Transform - - uid: 91 + - uid: 741 components: - pos: 6.5,-17.5 - parent: 73 + parent: 1 type: Transform - - uid: 93 + - uid: 742 components: - pos: -3.5,-14.5 - parent: 73 + parent: 1 type: Transform - - uid: 94 + - uid: 743 components: - pos: -2.5,-18.5 - parent: 73 + parent: 1 type: Transform - - uid: 96 + - uid: 744 components: - pos: 2.5,-26.5 - parent: 73 + parent: 1 type: Transform - - uid: 97 + - uid: 745 components: - pos: 2.5,-28.5 - parent: 73 + parent: 1 type: Transform - - uid: 98 + - uid: 746 components: - pos: 6.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 99 + - uid: 747 components: - pos: 6.5,-22.5 - parent: 73 + parent: 1 type: Transform - - uid: 100 + - uid: 748 components: - pos: -7.5,-23.5 - parent: 73 + parent: 1 type: Transform - - uid: 101 + - uid: 749 components: - pos: -7.5,-26.5 - parent: 73 + parent: 1 type: Transform - - uid: 102 + - uid: 750 components: - pos: -7.5,-22.5 - parent: 73 + parent: 1 type: Transform - - uid: 103 + - uid: 751 components: - pos: -7.5,-20.5 - parent: 73 + parent: 1 type: Transform - - uid: 104 + - uid: 752 components: - pos: 4.5,-15.5 - parent: 73 + parent: 1 type: Transform - - uid: 105 + - uid: 753 components: - pos: 6.5,-28.5 - parent: 73 + parent: 1 type: Transform - - uid: 106 + - uid: 754 components: - pos: 6.5,-27.5 - parent: 73 + parent: 1 type: Transform - - uid: 107 + - uid: 755 components: - pos: 6.5,-23.5 - parent: 73 + parent: 1 type: Transform - - uid: 108 + - uid: 756 components: - pos: 6.5,-20.5 - parent: 73 + parent: 1 type: Transform - - uid: 109 + - uid: 757 components: - pos: -7.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 110 + - uid: 758 components: - pos: -7.5,-28.5 - parent: 73 + parent: 1 type: Transform - - uid: 111 + - uid: 759 components: - rot: 3.141592653589793 rad pos: -5.5,-15.5 - parent: 73 + parent: 1 type: Transform - - uid: 113 + - uid: 760 components: - pos: -5.5,-18.5 - parent: 73 + parent: 1 type: Transform - - uid: 120 + - uid: 761 components: - pos: -5.5,-3.5 - parent: 73 + parent: 1 type: Transform - - uid: 121 + - uid: 762 components: - pos: 5.5,-5.5 - parent: 73 + parent: 1 type: Transform - - uid: 122 + - uid: 763 components: - pos: -3.5,-2.5 - parent: 73 + parent: 1 type: Transform - - uid: 124 + - uid: 764 components: - pos: -6.5,-3.5 - parent: 73 + parent: 1 type: Transform - - uid: 127 + - uid: 765 components: - rot: 1.5707963267948966 rad pos: -2.5,-7.5 - parent: 73 + parent: 1 type: Transform - - uid: 128 + - uid: 766 components: - pos: -3.5,-18.5 - parent: 73 + parent: 1 type: Transform - - uid: 130 + - uid: 767 components: - pos: -3.5,-1.5 - parent: 73 + parent: 1 type: Transform - - uid: 131 + - uid: 768 components: - pos: 2.5,-1.5 - parent: 73 + parent: 1 type: Transform - - uid: 133 + - uid: 769 components: - pos: -6.5,-14.5 - parent: 73 + parent: 1 type: Transform - - uid: 135 + - uid: 770 components: - pos: -5.5,-2.5 - parent: 73 + parent: 1 type: Transform - - uid: 136 + - uid: 771 components: - pos: 5.5,-6.5 - parent: 73 + parent: 1 type: Transform - - uid: 141 + - uid: 772 components: - rot: 1.5707963267948966 rad pos: 2.5,-7.5 - parent: 73 + parent: 1 type: Transform - - uid: 142 + - uid: 773 components: - rot: 1.5707963267948966 rad pos: 2.5,-8.5 - parent: 73 + parent: 1 type: Transform - - uid: 144 + - uid: 774 components: - pos: 4.5,-11.5 - parent: 73 + parent: 1 type: Transform - - uid: 147 + - uid: 775 components: - pos: -6.5,-13.5 - parent: 73 + parent: 1 type: Transform - - uid: 150 + - uid: 776 components: - pos: -3.5,-30.5 - parent: 73 + parent: 1 type: Transform - - uid: 151 + - uid: 777 components: - pos: 6.5,-15.5 - parent: 73 + parent: 1 type: Transform - - uid: 152 + - uid: 778 components: - pos: 5.5,-13.5 - parent: 73 + parent: 1 type: Transform - - uid: 154 + - uid: 779 components: - pos: -7.5,-15.5 - parent: 73 + parent: 1 type: Transform - - uid: 157 + - uid: 780 components: - pos: 1.5,-14.5 - parent: 73 + parent: 1 type: Transform - - uid: 158 + - uid: 781 components: - pos: -4.5,-18.5 - parent: 73 + parent: 1 type: Transform - - uid: 161 + - uid: 782 components: - pos: -2.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 162 + - uid: 783 components: - pos: 0.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 163 + - uid: 784 components: - pos: -1.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 164 + - uid: 785 components: - pos: -1.5,-22.5 - parent: 73 + parent: 1 type: Transform - - uid: 165 + - uid: 786 components: - pos: 0.5,-22.5 - parent: 73 + parent: 1 type: Transform - - uid: 166 + - uid: 787 components: - pos: 1.5,-24.5 - parent: 73 + parent: 1 type: Transform - - uid: 167 + - uid: 788 components: - pos: 1.5,-23.5 - parent: 73 + parent: 1 type: Transform - - uid: 168 + - uid: 789 components: - pos: 1.5,-22.5 - parent: 73 + parent: 1 type: Transform - - uid: 169 + - uid: 790 components: - pos: -2.5,-24.5 - parent: 73 + parent: 1 type: Transform - - uid: 170 + - uid: 791 components: - pos: -2.5,-23.5 - parent: 73 + parent: 1 type: Transform - - uid: 171 + - uid: 792 components: - pos: -2.5,-22.5 - parent: 73 + parent: 1 type: Transform - - uid: 174 + - uid: 793 components: - pos: 5.5,-22.5 - parent: 73 + parent: 1 type: Transform - - uid: 183 + - uid: 794 components: - pos: -7.5,-14.5 - parent: 73 + parent: 1 type: Transform - - uid: 185 + - uid: 795 components: - pos: -7.5,-18.5 - parent: 73 + parent: 1 type: Transform - - uid: 195 + - uid: 796 components: - rot: -1.5707963267948966 rad pos: -4.5,-28.5 - parent: 73 + parent: 1 type: Transform - - uid: 196 + - uid: 797 components: - rot: -1.5707963267948966 rad pos: -5.5,-28.5 - parent: 73 + parent: 1 type: Transform - - uid: 197 + - uid: 798 components: - rot: -1.5707963267948966 rad pos: -6.5,-28.5 - parent: 73 + parent: 1 type: Transform - - uid: 198 + - uid: 799 components: - rot: -1.5707963267948966 rad pos: 3.5,-28.5 - parent: 73 + parent: 1 type: Transform - - uid: 199 + - uid: 800 components: - rot: -1.5707963267948966 rad pos: 4.5,-28.5 - parent: 73 + parent: 1 type: Transform - - uid: 200 + - uid: 801 components: - rot: -1.5707963267948966 rad pos: 5.5,-28.5 - parent: 73 + parent: 1 type: Transform - - uid: 379 + - uid: 802 components: - rot: -1.5707963267948966 rad pos: 2.5,-6.5 - parent: 73 + parent: 1 type: Transform - - uid: 380 + - uid: 803 components: - pos: 4.5,-27.5 - parent: 73 + parent: 1 type: Transform - - uid: 381 + - uid: 804 components: - pos: 4.5,-26.5 - parent: 73 + parent: 1 type: Transform - - uid: 382 + - uid: 805 components: - pos: 4.5,-25.5 - parent: 73 + parent: 1 type: Transform - - uid: 481 + - uid: 806 components: - pos: 2.5,-4.5 - parent: 73 + parent: 1 type: Transform - - uid: 514 + - uid: 807 components: - pos: 3.5,-6.5 - parent: 73 + parent: 1 type: Transform - - uid: 566 + - uid: 808 components: - pos: 2.5,-30.5 - parent: 73 + parent: 1 type: Transform - - uid: 569 + - uid: 809 components: - rot: 3.141592653589793 rad pos: -5.5,-17.5 - parent: 73 + parent: 1 type: Transform - - uid: 636 + - uid: 810 components: - pos: 3.5,-29.5 - parent: 73 + parent: 1 type: Transform - - uid: 637 + - uid: 811 components: - pos: -5.5,-29.5 - parent: 73 + parent: 1 type: Transform - - uid: 638 + - uid: 812 components: - pos: 4.5,-29.5 - parent: 73 + parent: 1 type: Transform - - uid: 639 + - uid: 813 components: - pos: -4.5,-29.5 - parent: 73 + parent: 1 type: Transform - - uid: 641 + - uid: 814 components: - pos: 5.5,-29.5 - parent: 73 + parent: 1 type: Transform - - uid: 677 + - uid: 815 components: - pos: -3.5,-29.5 - parent: 73 + parent: 1 type: Transform - - uid: 678 + - uid: 816 components: - pos: 2.5,-29.5 - parent: 73 + parent: 1 type: Transform - - uid: 683 + - uid: 817 components: - pos: 6.5,-14.5 - parent: 73 + parent: 1 type: Transform - - uid: 739 + - uid: 818 components: - pos: 6.5,-18.5 - parent: 73 + parent: 1 type: Transform - - uid: 753 + - uid: 819 components: - pos: 5.5,-3.5 - parent: 73 + parent: 1 type: Transform - - uid: 781 + - uid: 820 components: - pos: -6.5,-29.5 - parent: 73 + parent: 1 type: Transform - - uid: 823 + - uid: 821 components: - rot: 3.141592653589793 rad pos: -6.5,-30.5 - parent: 73 + parent: 1 type: Transform - - uid: 824 + - uid: 822 components: - rot: 3.141592653589793 rad pos: 5.5,-30.5 - parent: 73 + parent: 1 type: Transform - - uid: 847 + - uid: 823 components: - pos: 8.5,-15.5 - parent: 73 + parent: 1 type: Transform - - uid: 848 + - uid: 824 components: - pos: 8.5,-17.5 - parent: 73 + parent: 1 type: Transform - - uid: 849 + - uid: 825 components: - pos: -9.5,-17.5 - parent: 73 + parent: 1 type: Transform - - uid: 850 + - uid: 826 components: - pos: -9.5,-15.5 - parent: 73 + parent: 1 type: Transform - proto: WarningN2 entities: - - uid: 519 + - uid: 827 components: - pos: 4.5,-25.5 - parent: 73 + parent: 1 type: Transform - proto: WarningO2 entities: - - uid: 518 + - uid: 828 components: - pos: 2.5,-25.5 - parent: 73 + parent: 1 type: Transform - proto: WarningWaste entities: - - uid: 520 + - uid: 829 components: - pos: 4.5,-18.5 - parent: 73 + parent: 1 type: Transform - proto: WaterCooler entities: - - uid: 599 + - uid: 830 components: - pos: 0.5,-17.5 - parent: 73 + parent: 1 type: Transform - proto: WindoorSecure entities: - - uid: 713 + - uid: 831 components: - rot: -1.5707963267948966 rad pos: -2.5,-5.5 - parent: 73 + parent: 1 type: Transform - proto: Wrench entities: - - uid: 545 + - uid: 832 components: - pos: 5.4749,-23.512577 - parent: 73 + parent: 1 type: Transform - - uid: 546 + - uid: 833 components: - pos: 5.63115,-23.481327 - parent: 73 + parent: 1 type: Transform - - uid: 743 + - uid: 834 components: - pos: 1.6061028,-13.284962 - parent: 73 + parent: 1 type: Transform ... diff --git a/Resources/Maps/origin.yml b/Resources/Maps/origin.yml index 7c56cb9976a..eee6e1743cb 100644 --- a/Resources/Maps/origin.yml +++ b/Resources/Maps/origin.yml @@ -23,6 +23,7 @@ tilemap: 38: FloorDirt 39: FloorEighties 42: FloorFreezer + 43: FloorGlass 45: FloorGrass 52: FloorGreenCircuit 56: FloorHydro @@ -68,6 +69,8 @@ entities: - type: Transform - type: Map - type: PhysicsMap + - parallax: OriginStation + type: Parallax - type: Broadphase - type: OccluderTree - type: LoadedMap @@ -82,15 +85,15 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: WQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAXwAAAAADXAAAAAAAXwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAWQAAAAAAYgAAAAABXwAAAAADXAAAAAAAXwAAAAADcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAABcQAAAAAAXwAAAAABXAAAAAAAXwAAAAAAYgAAAAACcQAAAAAAWQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAWQAAAAAAYgAAAAABWQAAAAAAYAAAAAAAYAAAAAAAYgAAAAACcQAAAAAAXwAAAAADXAAAAAAAXwAAAAADYAAAAAAAcQAAAAAAYgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAABcQAAAAAAXwAAAAACXAAAAAAAXwAAAAABYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYgAAAAABYgAAAAAAYgAAAAABYgAAAAACcQAAAAAAWQAAAAAAWQAAAAAAYAAAAAAAYgAAAAABXwAAAAADXAAAAAAAXwAAAAADcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAACXwAAAAADXAAAAAAAXwAAAAABGwAAAAADcQAAAAAAWQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAWQAAAAAAYQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAXwAAAAACXAAAAAAAXwAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAXwAAAAADXAAAAAAAXwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABWQAAAAAAVAAAAAACCwAAAAAAcQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAcQAAAAAAXwAAAAAAXAAAAAAAXwAAAAADGwAAAAABbgAAAAAAbgAAAAABRwAAAAACVAAAAAADVAAAAAABCwAAAAAAcQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAcQAAAAAAXwAAAAADXAAAAAAAXwAAAAADGwAAAAAAbgAAAAADbgAAAAADVAAAAAABVAAAAAAAVAAAAAAACwAAAAAAcQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAcQAAAAAAXwAAAAAAXAAAAAAAXwAAAAABcQAAAAAAbgAAAAAAbgAAAAADcQAAAAAAVAAAAAABVAAAAAACVAAAAAACcQAAAAAAJwAAAAAAJwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXwAAAAAAXAAAAAAAXwAAAAAAcQAAAAAAbgAAAAABbgAAAAADcQAAAAAAVAAAAAAAVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAYgAAAAABcQAAAAAAGwAAAAAAGwAAAAACGwAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAVAAAAAAARwAAAAABVAAAAAACVAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAADVAAAAAAAVAAAAAABVAAAAAABWQAAAAAAVAAAAAACVAAAAAADVAAAAAADcQAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAABVAAAAAAC + tiles: WQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAXwAAAAADXAAAAAAAXwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAWQAAAAAAYgAAAAABXwAAAAADXAAAAAAAXwAAAAADcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAABcQAAAAAAXwAAAAABXAAAAAAAXwAAAAAAYgAAAAACcQAAAAAAWQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAWQAAAAAAYgAAAAABWQAAAAAAYAAAAAAAYAAAAAAAYgAAAAACcQAAAAAAXwAAAAADXAAAAAAAXwAAAAADYAAAAAAAcQAAAAAAYgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAABcQAAAAAAXwAAAAACXAAAAAAAXwAAAAABYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYgAAAAABYgAAAAAAYgAAAAABYgAAAAACcQAAAAAAWQAAAAAAWQAAAAAAYAAAAAAAYgAAAAABXwAAAAADXAAAAAAAXwAAAAADcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAACXwAAAAADXAAAAAAAXwAAAAABGwAAAAADcQAAAAAAWQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAWQAAAAAAYQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAXwAAAAACXAAAAAAAXwAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAXwAAAAADXAAAAAAAXwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABWQAAAAAAVAAAAAACCwAAAAAAcQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAcQAAAAAAXwAAAAAAXAAAAAAAXwAAAAADGwAAAAABbgAAAAAAbgAAAAABRwAAAAACXAAAAAAAXAAAAAAACwAAAAAAcQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAcQAAAAAAXwAAAAADXAAAAAAAXwAAAAADGwAAAAAAbgAAAAADbgAAAAADVAAAAAABVAAAAAAAXAAAAAAACwAAAAAAcQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAcQAAAAAAXwAAAAAAXAAAAAAAXwAAAAABcQAAAAAAbgAAAAAAbgAAAAADcQAAAAAAVAAAAAABXAAAAAAAVAAAAAACcQAAAAAAJwAAAAAAJwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXwAAAAAAXAAAAAAAXwAAAAAAcQAAAAAAbgAAAAABbgAAAAADcQAAAAAAVAAAAAAAXAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAYgAAAAABcQAAAAAAGwAAAAAAGwAAAAACGwAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAVAAAAAAARwAAAAABVAAAAAACVAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAADVAAAAAAAVAAAAAABVAAAAAABWQAAAAAAVAAAAAACVAAAAAADVAAAAAADcQAAAAAAVAAAAAACXAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAABVAAAAAAC version: 6 0,-1: ind: 0,-1 - tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAAAbgAAAAAAcQAAAAAAYgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAADbgAAAAADbgAAAAABGwAAAAADbgAAAAAAbgAAAAACbgAAAAAAbgAAAAACbgAAAAAAbgAAAAADQAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAAAbgAAAAACbgAAAAAAcQAAAAAAbgAAAAADbgAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAbgAAAAABbgAAAAABbgAAAAAAbgAAAAADcQAAAAAAbgAAAAACbgAAAAACbgAAAAABbgAAAAABbgAAAAACcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAGwAAAAACcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAACbgAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAbgAAAAADbgAAAAAAbgAAAAACbgAAAAAAcQAAAAAAGwAAAAAAbgAAAAACbgAAAAACbgAAAAADbgAAAAAAbgAAAAABbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAACbgAAAAAAbgAAAAABbgAAAAAAcQAAAAAAbgAAAAABbgAAAAACbgAAAAABbgAAAAABbgAAAAACbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABbgAAAAADbgAAAAAAbgAAAAACbgAAAAACbgAAAAABcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAABbgAAAAACbgAAAAAAbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAABbgAAAAACbgAAAAACbgAAAAADcQAAAAAAbgAAAAAAbgAAAAACbgAAAAAAbgAAAAADbgAAAAADbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAADbgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAACGwAAAAABGwAAAAADcQAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAACWQAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAABVAAAAAACVAAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAABRwAAAAACVAAAAAABVAAAAAABVAAAAAAAVAAAAAABVAAAAAABRwAAAAADVAAAAAACVAAAAAABVAAAAAACVAAAAAABVAAAAAAB + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAAAbgAAAAAAcQAAAAAAYgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAADbgAAAAADbgAAAAABGwAAAAADbgAAAAAAbgAAAAACbgAAAAAAbgAAAAACbgAAAAAAbgAAAAADQAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAAAbgAAAAACbgAAAAAAcQAAAAAAbgAAAAADbgAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAbgAAAAABbgAAAAABbgAAAAAAbgAAAAADcQAAAAAAbgAAAAACbgAAAAACbgAAAAABbgAAAAABbgAAAAACcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAGwAAAAACcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAACbgAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAbgAAAAADbgAAAAAAbgAAAAACbgAAAAAAcQAAAAAAGwAAAAAAbgAAAAACbgAAAAACbgAAAAADbgAAAAAAbgAAAAABbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAACbgAAAAAAbgAAAAABbgAAAAAAcQAAAAAAbgAAAAABbgAAAAACbgAAAAABbgAAAAABbgAAAAACbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABbgAAAAADbgAAAAAAbgAAAAACbgAAAAACbgAAAAABcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAABbgAAAAACbgAAAAAAbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAABbgAAAAACbgAAAAACbgAAAAADcQAAAAAAbgAAAAAAbgAAAAACbgAAAAAAbgAAAAADbgAAAAADbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAADbgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAACGwAAAAABGwAAAAADcQAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAACWQAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAABVAAAAAACVAAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAABRwAAAAACVAAAAAABVAAAAAABVAAAAAAAVAAAAAABVAAAAAABRwAAAAADVAAAAAACVAAAAAABVAAAAAACVAAAAAABVAAAAAAB version: 6 -1,0: ind: -1,0 - tiles: cQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAGwAAAAAAGwAAAAADGwAAAAADGwAAAAABGwAAAAADGwAAAAACGwAAAAADGwAAAAACGwAAAAABcQAAAAAAGwAAAAACcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAABGwAAAAABGwAAAAACGwAAAAACGwAAAAADGwAAAAACGwAAAAADcQAAAAAAGwAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAVAAAAAACRwAAAAABWQAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAVAAAAAADVAAAAAAAVAAAAAACcQAAAAAAGwAAAAACcQAAAAAAVAAAAAACVAAAAAABVAAAAAADcQAAAAAALQAAAAAALQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABWQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAABWQAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAABcQAAAAAAOgAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAABLQAAAAAAVAAAAAACVAAAAAAAVAAAAAAAWQAAAAAAVAAAAAAAVAAAAAACVAAAAAABWQAAAAAAVAAAAAADcQAAAAAAOgAAAAAARwAAAAACVAAAAAADVAAAAAADVAAAAAAALQAAAAAAOAAAAAAAVAAAAAADOAAAAAAAVAAAAAAAOAAAAAAAVAAAAAAAOAAAAAAAVAAAAAAAVAAAAAABOAAAAAAAOgAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAADVAAAAAACOAAAAAAAVAAAAAAAOAAAAAAAVAAAAAACOAAAAAAAVAAAAAACOAAAAAAAVAAAAAACVAAAAAADcQAAAAAAOgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADOAAAAAAAVAAAAAACOAAAAAAAVAAAAAAAOAAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAOgAAAAAAYAAAAAAAYAAAAAAAYgAAAAACYAAAAAAAVAAAAAADOAAAAAAAWQAAAAAAOAAAAAAAVAAAAAABOAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAYgAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAVAAAAAADOAAAAAAAVAAAAAADOAAAAAAAVAAAAAACOAAAAAAAcQAAAAAAVAAAAAACWQAAAAAAVAAAAAAAcQAAAAAAKgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAOAAAAAAAVAAAAAACOAAAAAAAVAAAAAABOAAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAADcQAAAAAAKgAAAAAAYQAAAAAAcQAAAAAAYgAAAAADcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAcQAAAAAAKgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAOAAAAAAAVAAAAAAAVAAAAAAAOAAAAAAAVAAAAAADGwAAAAADKgAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAWQAAAAAAcQAAAAAAcQAAAAAA + tiles: cQAAAAAAVAAAAAAAXAAAAAAAVAAAAAAAcQAAAAAAGwAAAAAAGwAAAAADGwAAAAADGwAAAAABGwAAAAADGwAAAAACGwAAAAADGwAAAAACGwAAAAABcQAAAAAAGwAAAAACcQAAAAAAVAAAAAABXAAAAAAAVAAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAABGwAAAAABGwAAAAACGwAAAAACGwAAAAADGwAAAAACGwAAAAADcQAAAAAAGwAAAAAAcQAAAAAAVAAAAAADXAAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAVAAAAAACRwAAAAABWQAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAVAAAAAADXAAAAAAAVAAAAAACcQAAAAAAGwAAAAACcQAAAAAAVAAAAAACVAAAAAABVAAAAAADcQAAAAAALQAAAAAALQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADXAAAAAAAWQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAABWQAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAABcQAAAAAAOgAAAAAAVAAAAAACVAAAAAADXAAAAAAAVAAAAAABLQAAAAAAVAAAAAACVAAAAAAAVAAAAAAAWQAAAAAAVAAAAAAAVAAAAAACVAAAAAABWQAAAAAAVAAAAAADcQAAAAAAOgAAAAAARwAAAAACXAAAAAAAXAAAAAAAVAAAAAAALQAAAAAAOAAAAAAAVAAAAAADOAAAAAAAVAAAAAAAOAAAAAAAVAAAAAAAOAAAAAAAVAAAAAAAVAAAAAABOAAAAAAAOgAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAADVAAAAAACOAAAAAAAVAAAAAAAOAAAAAAAVAAAAAACOAAAAAAAVAAAAAACOAAAAAAAVAAAAAACVAAAAAADcQAAAAAAOgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADOAAAAAAAVAAAAAACOAAAAAAAVAAAAAAAOAAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAOgAAAAAAYAAAAAAAYAAAAAAAYgAAAAACYAAAAAAAVAAAAAADOAAAAAAAWQAAAAAAOAAAAAAAVAAAAAABOAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAYgAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAVAAAAAADOAAAAAAAVAAAAAADOAAAAAAAVAAAAAACOAAAAAAAcQAAAAAAVAAAAAACWQAAAAAAVAAAAAAAcQAAAAAAKgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAOAAAAAAAVAAAAAACOAAAAAAAVAAAAAABOAAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAADcQAAAAAAKgAAAAAAYQAAAAAAcQAAAAAAYgAAAAADcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAcQAAAAAAKgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAOAAAAAAAVAAAAAAAVAAAAAAAOAAAAAAAVAAAAAADGwAAAAADKgAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAWQAAAAAAcQAAAAAAcQAAAAAA version: 6 0,0: ind: 0,0 @@ -98,11 +101,11 @@ entities: version: 6 -2,-1: ind: -2,-1 - tiles: VAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAcQAAAAAAVAAAAAADXAAAAAACVAAAAAABcQAAAAAAYQAAAAAAVAAAAAADcQAAAAAAVAAAAAADVAAAAAADVAAAAAACGwAAAAACVAAAAAADVAAAAAADVAAAAAAAVAAAAAADcQAAAAAAVAAAAAAAXAAAAAADVAAAAAADYAAAAAAAcQAAAAAAVAAAAAACcQAAAAAAVAAAAAADVAAAAAADVAAAAAADcQAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAADcQAAAAAAVAAAAAAAXAAAAAACVAAAAAABcQAAAAAAYAAAAAAAVAAAAAADcQAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAAAGwAAAAABVAAAAAADXAAAAAADVAAAAAADcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAVAAAAAADVAAAAAACVAAAAAABcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADGwAAAAACVAAAAAAAXAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABGwAAAAABVAAAAAABVAAAAAACVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAABcQAAAAAAVAAAAAADXAAAAAADVAAAAAAAcQAAAAAAYAAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAVAAAAAACWQAAAAAAVAAAAAABVAAAAAACcQAAAAAAVAAAAAACXAAAAAADVAAAAAABcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAAAcQAAAAAAVAAAAAAAXAAAAAABVAAAAAADcQAAAAAAYQAAAAAAZAAAAAAAZAAAAAACZAAAAAACUAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABCwAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADWQAAAAAAVAAAAAACZAAAAAADZAAAAAACZAAAAAABUAAAAAAAcQAAAAAAVAAAAAACWQAAAAAAVAAAAAADRwAAAAACVAAAAAAAVAAAAAADVAAAAAACRwAAAAABVAAAAAACVAAAAAAAWQAAAAAAcQAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAACVAAAAAADZAAAAAADZAAAAAABZAAAAAABZAAAAAADcQAAAAAAVAAAAAADVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAADZAAAAAABZAAAAAABZAAAAAADcQAAAAAAVAAAAAABVAAAAAAAVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAVAAAAAADRwAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAABGwAAAAABVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + tiles: VAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAcQAAAAAAVAAAAAADXAAAAAACVAAAAAABcQAAAAAAYQAAAAAAVAAAAAADcQAAAAAAVAAAAAADVAAAAAADVAAAAAACGwAAAAACVAAAAAADVAAAAAADVAAAAAAAVAAAAAADcQAAAAAAVAAAAAAAXAAAAAADVAAAAAADYAAAAAAAcQAAAAAAVAAAAAACcQAAAAAAVAAAAAADVAAAAAADVAAAAAADcQAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAADcQAAAAAAVAAAAAAAXAAAAAACVAAAAAABcQAAAAAAYAAAAAAAVAAAAAADcQAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAAAGwAAAAABVAAAAAADXAAAAAADVAAAAAADcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAVAAAAAADVAAAAAACVAAAAAABcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADGwAAAAACVAAAAAAAXAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABGwAAAAABVAAAAAABVAAAAAACVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAABcQAAAAAAVAAAAAADXAAAAAADVAAAAAAAcQAAAAAAYAAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAVAAAAAACWQAAAAAAVAAAAAABVAAAAAACcQAAAAAAVAAAAAACXAAAAAADVAAAAAABcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAAAcQAAAAAAVAAAAAAAXAAAAAABVAAAAAADcQAAAAAAYQAAAAAAZAAAAAAAZAAAAAACZAAAAAACUAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABCwAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAXAAAAAAAVAAAAAADWQAAAAAAVAAAAAACZAAAAAADZAAAAAACZAAAAAABUAAAAAAAcQAAAAAAVAAAAAACXAAAAAAAXAAAAAAARwAAAAACXAAAAAAAXAAAAAAAXAAAAAAARwAAAAABXAAAAAAAXAAAAAAAXAAAAAAAcQAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACXAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAACVAAAAAADZAAAAAADZAAAAAABZAAAAAABZAAAAAADcQAAAAAAVAAAAAADXAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAADZAAAAAABZAAAAAABZAAAAAADcQAAAAAAVAAAAAABXAAAAAAAVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAVAAAAAADRwAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAABGwAAAAABVAAAAAABXAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA version: 6 -2,0: ind: -2,0 - tiles: VAAAAAABVAAAAAACVAAAAAACVAAAAAAAGwAAAAADVAAAAAADVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACGwAAAAABVAAAAAAAVAAAAAACVAAAAAACcQAAAAAAVAAAAAAAVAAAAAAAGwAAAAAAGwAAAAADGwAAAAADVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAADcQAAAAAAVAAAAAAAVAAAAAADGwAAAAABGwAAAAACGwAAAAABVAAAAAABVAAAAAADLQAAAAAALQAAAAAALQAAAAAALQAAAAAAcQAAAAAAVAAAAAAARwAAAAADVAAAAAABcQAAAAAAVAAAAAADVAAAAAABGwAAAAADGwAAAAABGwAAAAABVAAAAAABVAAAAAABLQAAAAAALQAAAAAALQAAAAAALQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAACcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAADLQAAAAAALQAAAAAALQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACWQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAALQAAAAAALQAAAAAALQAAAAAAcQAAAAAAWQAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAADVAAAAAAAcQAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAARwAAAAABVAAAAAABVAAAAAABVAAAAAAARwAAAAADVAAAAAABVAAAAAACVAAAAAACIAAAAAADHwAAAAAAGwAAAAADGwAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAADVAAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAIAAAAAAAHwAAAAAAHwAAAAABHwAAAAABcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAVAAAAAADYAAAAAAAYAAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAADYAAAAAAAcQAAAAAAHgAAAAABHgAAAAADHgAAAAABcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAVAAAAAACWQAAAAAAWQAAAAAAcQAAAAAAYAAAAAAAHgAAAAAAHgAAAAAAHgAAAAACcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAHgAAAAADHgAAAAACHgAAAAACcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAACGwAAAAABcQAAAAAAcQAAAAAAHgAAAAACHgAAAAABHgAAAAABcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAGwAAAAADVAAAAAACXAAAAAADVAAAAAACcQAAAAAAYAAAAAAA + tiles: XAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAGwAAAAADXAAAAAAAXAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACGwAAAAABVAAAAAAAXAAAAAAAVAAAAAACcQAAAAAAVAAAAAAAVAAAAAAAGwAAAAAAGwAAAAADGwAAAAADVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAXAAAAAAAVAAAAAADcQAAAAAAVAAAAAAAVAAAAAADGwAAAAABGwAAAAACGwAAAAABVAAAAAABVAAAAAADLQAAAAAALQAAAAAALQAAAAAALQAAAAAAcQAAAAAAVAAAAAAARwAAAAADVAAAAAABcQAAAAAAVAAAAAADVAAAAAABGwAAAAADGwAAAAABGwAAAAABVAAAAAABVAAAAAABLQAAAAAALQAAAAAALQAAAAAALQAAAAAAcQAAAAAAVAAAAAABXAAAAAAAVAAAAAACcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAADLQAAAAAALQAAAAAALQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACXAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAALQAAAAAALQAAAAAALQAAAAAAcQAAAAAAWQAAAAAAVAAAAAAAXAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAADVAAAAAAAcQAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAXAAAAAAAXAAAAAAARwAAAAABXAAAAAAAXAAAAAAAXAAAAAAARwAAAAADXAAAAAAAXAAAAAAAXAAAAAAAIAAAAAADHwAAAAAAGwAAAAADGwAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADXAAAAAAAVAAAAAACVAAAAAADVAAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAXAAAAAAAVAAAAAACVAAAAAADVAAAAAAAIAAAAAAAHwAAAAAAHwAAAAABHwAAAAABcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAWQAAAAAAXAAAAAAAVAAAAAADYAAAAAAAYAAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAVAAAAAAAXAAAAAAAVAAAAAADYAAAAAAAcQAAAAAAHgAAAAABHgAAAAADHgAAAAABcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAVAAAAAACXAAAAAAAWQAAAAAAcQAAAAAAYAAAAAAAHgAAAAAAHgAAAAAAHgAAAAACcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAVAAAAAADXAAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAHgAAAAADHgAAAAACHgAAAAACcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAACGwAAAAABcQAAAAAAcQAAAAAAHgAAAAACHgAAAAABHgAAAAABcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAGwAAAAADVAAAAAACXAAAAAADVAAAAAACcQAAAAAAYAAAAAAA version: 6 1,-1: ind: 1,-1 @@ -130,15 +133,15 @@ entities: version: 6 -1,-2: ind: -1,-2 - tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADXAAAAAACWQAAAAAAWQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAXAAAAAACVAAAAAABcQAAAAAAcQAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAVAAAAAAAXAAAAAADVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACXAAAAAACVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACGwAAAAACVAAAAAAAVAAAAAAAVAAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAVAAAAAACWwAAAAAAWwAAAAABWwAAAAACVAAAAAAAVAAAAAAAGwAAAAACXAAAAAADXAAAAAAAGwAAAAAAXAAAAAADXAAAAAABXAAAAAADXAAAAAABXAAAAAACXAAAAAAAXAAAAAADWwAAAAACRwAAAAAAWwAAAAADXAAAAAAAXAAAAAABGwAAAAADVAAAAAADVAAAAAADGwAAAAADVAAAAAADVAAAAAACVAAAAAABVAAAAAABVAAAAAADVAAAAAAAVAAAAAADWwAAAAAAWwAAAAADWwAAAAABVAAAAAABVAAAAAABGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAGwAAAAAAGwAAAAABcQAAAAAAcQAAAAAAVAAAAAADXAAAAAABVAAAAAADcQAAAAAAGwAAAAABcQAAAAAAGwAAAAABcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAVAAAAAADXAAAAAABVAAAAAACcQAAAAAAPwAAAAAAEgAAAAAAHwAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAGwAAAAAAGwAAAAABGwAAAAABcQAAAAAAPwAAAAAAEgAAAAAAHwAAAAABcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAXwAAAAABXAAAAAAAXwAAAAADcQAAAAAAPwAAAAAAEgAAAAAAHwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAcQAAAAAAXwAAAAABXAAAAAAAXwAAAAACGwAAAAAAPwAAAAAAEgAAAAAAWQAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAXwAAAAACXAAAAAAAXwAAAAACcQAAAAAAPwAAAAAAEgAAAAAAWQAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAXwAAAAAAXAAAAAAAXwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAXwAAAAABXAAAAAAAXwAAAAAAGwAAAAADcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXwAAAAACXAAAAAAAXwAAAAACcQAAAAAAcQAAAAAAYgAAAAAD + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADXAAAAAACWQAAAAAAWQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAXAAAAAACVAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAVAAAAAAAXAAAAAADVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACXAAAAAACVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACGwAAAAACVAAAAAAAVAAAAAAAVAAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAVAAAAAACWwAAAAAAWwAAAAABWwAAAAACVAAAAAAAVAAAAAAAGwAAAAACXAAAAAADXAAAAAAAGwAAAAAAXAAAAAADXAAAAAABXAAAAAADXAAAAAABXAAAAAACXAAAAAAAXAAAAAADWwAAAAACRwAAAAAAWwAAAAADXAAAAAAAXAAAAAABGwAAAAADVAAAAAADVAAAAAADGwAAAAADVAAAAAADVAAAAAACVAAAAAABVAAAAAABVAAAAAADVAAAAAAAVAAAAAADWwAAAAAAWwAAAAADWwAAAAABVAAAAAABVAAAAAABGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAGwAAAAAAGwAAAAABcQAAAAAAcQAAAAAAVAAAAAADXAAAAAABVAAAAAADcQAAAAAAGwAAAAABcQAAAAAAGwAAAAABcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAVAAAAAADXAAAAAABVAAAAAACcQAAAAAAPwAAAAAAEgAAAAAAHwAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAGwAAAAAAGwAAAAABGwAAAAABcQAAAAAAPwAAAAAAEgAAAAAAHwAAAAABcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAXwAAAAABXAAAAAAAXwAAAAADcQAAAAAAPwAAAAAAEgAAAAAAHwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAcQAAAAAAXwAAAAABXAAAAAAAXwAAAAACGwAAAAAAPwAAAAAAEgAAAAAAWQAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAXwAAAAACXAAAAAAAXwAAAAACcQAAAAAAPwAAAAAAEgAAAAAAWQAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAXwAAAAAAXAAAAAAAXwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAXwAAAAABXAAAAAAAXwAAAAAAGwAAAAADcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXwAAAAACXAAAAAAAXwAAAAACcQAAAAAAcQAAAAAAYgAAAAAD version: 6 0,-2: ind: 0,-2 - tiles: AAAAAAAAcQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAWwAAAAABVAAAAAABVAAAAAACAAAAAAAAcQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABAAAAAAAAcQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcQAAAAAAYgAAAAABcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAABVAAAAAABVAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAADVAAAAAABGwAAAAACVAAAAAAAVAAAAAACWQAAAAAAVAAAAAADVAAAAAABXAAAAAABXAAAAAAAXAAAAAADRwAAAAADXAAAAAAAXAAAAAACRwAAAAACXAAAAAABXAAAAAABXAAAAAADGwAAAAADVAAAAAABVAAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAACGwAAAAABVAAAAAABWQAAAAAAWQAAAAAAVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABEgAAAAAAEgAAAAAAEgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAABGwAAAAACGwAAAAAAGwAAAAACcQAAAAAAVAAAAAADVAAAAAADEgAAAAAAEgAAAAAAEgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAABGwAAAAACGwAAAAAAGwAAAAACGwAAAAAAcQAAAAAAVAAAAAADVAAAAAABEgAAAAAAEgAAAAAAEgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAGwAAAAADNAAAAAAANAAAAAAANAAAAAAANAAAAAAAGwAAAAADGwAAAAACVAAAAAAAVAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAADcQAAAAAAVAAAAAABVAAAAAADEgAAAAAAEgAAAAAAEgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAAAGwAAAAADGwAAAAABcQAAAAAAGwAAAAADGwAAAAACGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAACcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAA + tiles: AAAAAAAAcQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAWwAAAAABVAAAAAABXAAAAAAAAAAAAAAAcQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACXAAAAAAAAAAAAAAAcQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcQAAAAAAYgAAAAABcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAADXAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAXAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAABVAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAADVAAAAAABGwAAAAACVAAAAAAAVAAAAAACWQAAAAAAVAAAAAADXAAAAAAAXAAAAAABXAAAAAAAXAAAAAADRwAAAAADXAAAAAAAXAAAAAACRwAAAAACXAAAAAABXAAAAAABXAAAAAADGwAAAAADXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAACGwAAAAABVAAAAAABWQAAAAAAWQAAAAAAVAAAAAADXAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABXAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAABGwAAAAACGwAAAAAAGwAAAAACcQAAAAAAVAAAAAADXAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAABGwAAAAACGwAAAAAAGwAAAAACGwAAAAAAcQAAAAAAVAAAAAADXAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAGwAAAAADNAAAAAAANAAAAAAANAAAAAAANAAAAAAAGwAAAAADGwAAAAACVAAAAAAAXAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAADcQAAAAAAVAAAAAABXAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAAAGwAAAAADGwAAAAABcQAAAAAAGwAAAAADXAAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACXAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADXAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAACcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: VAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbwAAAAACbwAAAAADbwAAAAAAbwAAAAABbwAAAAABcQAAAAAAYQAAAAAAcQAAAAAAbwAAAAABbwAAAAABbwAAAAACbwAAAAABVAAAAAADcQAAAAAAWQAAAAAAcQAAAAAAbwAAAAAAbwAAAAADbwAAAAADbwAAAAABbwAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAbwAAAAACbwAAAAACbwAAAAAAbwAAAAAAVAAAAAADcQAAAAAAYAAAAAAAcQAAAAAAbwAAAAAAbwAAAAADbwAAAAACbwAAAAABbwAAAAADcQAAAAAAYQAAAAAAcQAAAAAAbwAAAAABbwAAAAACbwAAAAADbwAAAAADVAAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAbwAAAAABbwAAAAABbwAAAAABbwAAAAADbwAAAAADcQAAAAAAYQAAAAAAcQAAAAAAbwAAAAACbwAAAAACbwAAAAACbwAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADGwAAAAABSgAAAAAAGwAAAAACVAAAAAABVAAAAAACVAAAAAACVAAAAAABVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAGwAAAAADVAAAAAACGwAAAAADSgAAAAAAGwAAAAADVAAAAAABVAAAAAADVAAAAAABVAAAAAABVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAACVAAAAAABVAAAAAADGwAAAAADWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAADVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAVAAAAAACcQAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAABVAAAAAADVAAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAABVAAAAAACVAAAAAABVAAAAAADVAAAAAADVAAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAABVAAAAAADVAAAAAADVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAAAXAAAAAACXAAAAAADXAAAAAADXAAAAAACXAAAAAADXAAAAAACXAAAAAACXAAAAAACXAAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAAAVAAAAAABXAAAAAACXAAAAAAAXAAAAAAAXAAAAAADXAAAAAACXAAAAAABXAAAAAABXAAAAAADXAAAAAABVAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAADVAAAAAABVAAAAAAAXAAAAAADXAAAAAABXAAAAAADXAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAAAVAAAAAAAVAAAAAAD + tiles: VAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbwAAAAACbwAAAAADbwAAAAAAbwAAAAABbwAAAAABcQAAAAAAYQAAAAAAcQAAAAAAbwAAAAABbwAAAAABbwAAAAACbwAAAAABVAAAAAADcQAAAAAAWQAAAAAAcQAAAAAAbwAAAAAAbwAAAAADbwAAAAADbwAAAAABbwAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAbwAAAAACbwAAAAACbwAAAAAAbwAAAAAAVAAAAAADcQAAAAAAYAAAAAAAcQAAAAAAbwAAAAAAbwAAAAADbwAAAAACbwAAAAABbwAAAAADcQAAAAAAYQAAAAAAcQAAAAAAbwAAAAABbwAAAAACbwAAAAADbwAAAAADVAAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAbwAAAAABbwAAAAABbwAAAAABbwAAAAADbwAAAAADcQAAAAAAYQAAAAAAcQAAAAAAbwAAAAACbwAAAAACbwAAAAACbwAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADGwAAAAABSgAAAAAAGwAAAAACVAAAAAABVAAAAAACVAAAAAACVAAAAAABVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAGwAAAAADVAAAAAACGwAAAAADSgAAAAAAGwAAAAADVAAAAAABVAAAAAADVAAAAAABVAAAAAABVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAACVAAAAAABVAAAAAADGwAAAAADWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAADVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAVAAAAAACcQAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAABVAAAAAADVAAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAABVAAAAAACVAAAAAABVAAAAAADVAAAAAADVAAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAABVAAAAAADVAAAAAADVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAAAXAAAAAACXAAAAAADXAAAAAADXAAAAAACXAAAAAADXAAAAAACXAAAAAACXAAAAAACXAAAAAAAVAAAAAACVAAAAAADXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAADXAAAAAACXAAAAAABXAAAAAABXAAAAAADXAAAAAABXAAAAAAAXAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAABVAAAAAAAXAAAAAADXAAAAAABXAAAAAADXAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAAAVAAAAAAAVAAAAAAD version: 6 2,0: ind: 2,0 @@ -170,7 +173,7 @@ entities: version: 6 2,-2: ind: 2,-2 - tiles: cQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbwAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAABGwAAAAABYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAbwAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAADcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASwAAAAAANAAAAAAANAAAAAAANAAAAAAAbwAAAAACcQAAAAAAVAAAAAACVAAAAAACVAAAAAABcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASwAAAAAANAAAAAAANAAAAAAANAAAAAAAbwAAAAACcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAGwAAAAABSwAAAAAASwAAAAAASwAAAAAASwAAAAAAcQAAAAAAGwAAAAAAWQAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAACVAAAAAADVAAAAAACSAAAAAAASAAAAAAAcQAAAAAASwAAAAAASwAAAAAAcQAAAAAAcQAAAAAASgAAAAAAGwAAAAADWQAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAACVAAAAAAAVAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADSwAAAAAASgAAAAAAGwAAAAAAVAAAAAADVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAGwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACWQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASwAAAAAANAAAAAAANAAAAAAANAAAAAAAVAAAAAABcQAAAAAAVAAAAAABVAAAAAADWQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASwAAAAAANAAAAAAANAAAAAAANAAAAAAAVAAAAAADcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAVAAAAAADcQAAAAAAVAAAAAABVAAAAAADVAAAAAACcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAABcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAVAAAAAACcQAAAAAA + tiles: cQAAAAAAcQAAAAAAWQAAAAAAXAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbwAAAAAAcQAAAAAAVAAAAAAAXAAAAAAAVAAAAAABGwAAAAABYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAbwAAAAAAcQAAAAAAVAAAAAABXAAAAAAAVAAAAAADcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASwAAAAAANAAAAAAANAAAAAAANAAAAAAAbwAAAAACcQAAAAAAVAAAAAACXAAAAAAAVAAAAAABcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASwAAAAAANAAAAAAANAAAAAAANAAAAAAAbwAAAAACcQAAAAAAVAAAAAAAXAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAGwAAAAABSwAAAAAASwAAAAAASwAAAAAASwAAAAAAcQAAAAAAGwAAAAAAWQAAAAAAXAAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAADVAAAAAACSAAAAAAASAAAAAAAcQAAAAAASwAAAAAASwAAAAAAcQAAAAAAcQAAAAAASgAAAAAAGwAAAAADWQAAAAAAXAAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAAAVAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADSwAAAAAASgAAAAAAGwAAAAAAVAAAAAADXAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAGwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAcQAAAAAAcQAAAAAAVAAAAAABXAAAAAAAWQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASwAAAAAANAAAAAAANAAAAAAANAAAAAAAVAAAAAABcQAAAAAAVAAAAAABXAAAAAAAWQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASwAAAAAANAAAAAAANAAAAAAANAAAAAAAVAAAAAADcQAAAAAAVAAAAAAAXAAAAAAAVAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAVAAAAAADcQAAAAAAVAAAAAABXAAAAAAAVAAAAAACcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAABcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAADVAAAAAADXAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAVAAAAAABVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAVAAAAAACcQAAAAAA version: 6 -2,-3: ind: -2,-3 @@ -178,19 +181,19 @@ entities: version: 6 -1,-3: ind: -1,-3 - tiles: ZwAAAAABZwAAAAABZwAAAAABZwAAAAABZwAAAAACcQAAAAAAZAAAAAADZAAAAAACZAAAAAABZAAAAAAAZAAAAAAAZAAAAAABZAAAAAAAZAAAAAABZAAAAAABZAAAAAABZwAAAAACZwAAAAADZwAAAAACZwAAAAAAZwAAAAACVAAAAAAAZAAAAAADZAAAAAADZAAAAAADZAAAAAABZAAAAAADZAAAAAAAZAAAAAAAZAAAAAABZAAAAAACZAAAAAAAZwAAAAADZwAAAAACZwAAAAAAZwAAAAADZwAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAABZAAAAAADZAAAAAACZAAAAAADZAAAAAACZAAAAAABZAAAAAADZAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAWQAAAAAAVAAAAAAAWQAAAAAAVAAAAAACVAAAAAABVAAAAAADWQAAAAAAWQAAAAAAWQAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAACVwAAAAADWQAAAAAAWQAAAAAAXAAAAAABXAAAAAAARwAAAAAAXAAAAAAAXAAAAAACXAAAAAAARwAAAAABXAAAAAADXAAAAAABVwAAAAADVwAAAAACVwAAAAAAVwAAAAAAVwAAAAADXAAAAAADXAAAAAADWQAAAAAAWQAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAADVAAAAAADVwAAAAACVwAAAAACVwAAAAAAVwAAAAABVwAAAAABVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAACVwAAAAACcQAAAAAAcQAAAAAAbgAAAAACbgAAAAAAcQAAAAAAbgAAAAABbgAAAAABbgAAAAACbgAAAAACbgAAAAACcQAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAABcQAAAAAAcQAAAAAAAAAAAAAAbgAAAAAAbgAAAAADGwAAAAABbgAAAAACbgAAAAACbgAAAAABbgAAAAABbgAAAAAAbgAAAAACcQAAAAAAVAAAAAAAXAAAAAAAVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAAAcQAAAAAAbgAAAAACbgAAAAADbgAAAAACbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAVAAAAAAAXAAAAAADVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAACbgAAAAABbgAAAAADbgAAAAABbgAAAAAAcQAAAAAAVAAAAAAAXAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAbgAAAAABbgAAAAADbgAAAAABbgAAAAADbgAAAAACcQAAAAAAcQAAAAAAVAAAAAADXAAAAAADWQAAAAAAWQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAYgAAAAABcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAVAAAAAACXAAAAAABWQAAAAAAWQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAYgAAAAADWQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAVAAAAAADXAAAAAADWQAAAAAAWQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAVAAAAAACXAAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAAAAAAAAA + tiles: ZwAAAAABZwAAAAABZwAAAAABZwAAAAABZwAAAAACcQAAAAAAZAAAAAADZAAAAAACZAAAAAABZAAAAAAAZAAAAAAAZAAAAAABZAAAAAAAZAAAAAABZAAAAAABZAAAAAABZwAAAAACZwAAAAADZwAAAAACZwAAAAAAZwAAAAACVAAAAAAAZAAAAAADZAAAAAADZAAAAAADZAAAAAABZAAAAAADZAAAAAAAZAAAAAAAZAAAAAABZAAAAAACZAAAAAAAZwAAAAADZwAAAAACZwAAAAAAZwAAAAADZwAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAABZAAAAAADZAAAAAACZAAAAAADZAAAAAACZAAAAAABZAAAAAADZAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAWQAAAAAAVAAAAAAAWQAAAAAAVAAAAAACVAAAAAABVAAAAAADWQAAAAAAWQAAAAAAWQAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAACVwAAAAADWQAAAAAAWQAAAAAAXAAAAAABXAAAAAAARwAAAAAAXAAAAAAAXAAAAAACXAAAAAAARwAAAAABXAAAAAADXAAAAAABVwAAAAADVwAAAAACVwAAAAAAVwAAAAAAVwAAAAADXAAAAAADXAAAAAADWQAAAAAAWQAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAADVAAAAAADVwAAAAACVwAAAAACVwAAAAAAVwAAAAABVwAAAAABVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAACVwAAAAACcQAAAAAAcQAAAAAAbgAAAAACbgAAAAAAcQAAAAAAbgAAAAABbgAAAAABbgAAAAACbgAAAAACbgAAAAACcQAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAABcQAAAAAAcQAAAAAAAAAAAAAAbgAAAAAAbgAAAAADGwAAAAABbgAAAAACbgAAAAACbgAAAAABbgAAAAABbgAAAAAAbgAAAAACcQAAAAAAVAAAAAAAXAAAAAAAVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAAAcQAAAAAAbgAAAAACbgAAAAADbgAAAAACbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAVAAAAAAAXAAAAAADVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAACbgAAAAABbgAAAAADbgAAAAABbgAAAAAAcQAAAAAAVAAAAAAAXAAAAAAAVAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAbgAAAAABbgAAAAADbgAAAAABbgAAAAADbgAAAAACcQAAAAAAcQAAAAAAVAAAAAADXAAAAAADWQAAAAAAWQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAYgAAAAABcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAVAAAAAACXAAAAAABWQAAAAAAWQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAYgAAAAADWQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAVAAAAAADXAAAAAADWQAAAAAAWQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAVAAAAAACXAAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAAAAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: ZAAAAAABcQAAAAAAZAAAAAABZAAAAAACZAAAAAABZAAAAAAAZAAAAAACZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAZAAAAAAAZAAAAAADZAAAAAACaAAAAAADZAAAAAADZAAAAAABZAAAAAAAZAAAAAABcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAZAAAAAADcQAAAAAAZAAAAAACZAAAAAABZAAAAAAAZAAAAAABZAAAAAACZAAAAAACcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACWQAAAAAAVAAAAAAAVAAAAAACWQAAAAAAVAAAAAABVAAAAAADVAAAAAACGwAAAAADVAAAAAABVAAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAACVAAAAAAAVAAAAAABRwAAAAADXAAAAAABXAAAAAADXAAAAAACRwAAAAACXAAAAAABXAAAAAADGwAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAADGwAAAAADVAAAAAADVAAAAAACVAAAAAADVAAAAAADVAAAAAACVAAAAAADVAAAAAACVAAAAAADcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAACAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABAAAAAAAAcQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAWwAAAAABVAAAAAAAVAAAAAAAAAAAAAAAcQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAWwAAAAACVAAAAAAARwAAAAADAAAAAAAAcQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAWwAAAAABVAAAAAACVAAAAAAAAAAAAAAAcQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAWwAAAAADVAAAAAACVAAAAAAC + tiles: ZAAAAAABcQAAAAAAZAAAAAABZAAAAAACZAAAAAABZAAAAAAAZAAAAAACZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAZAAAAAAAZAAAAAADZAAAAAACaAAAAAADZAAAAAADZAAAAAABZAAAAAAAZAAAAAABcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAZAAAAAADcQAAAAAAZAAAAAACZAAAAAABZAAAAAAAZAAAAAABZAAAAAACZAAAAAACcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACWQAAAAAAVAAAAAAAVAAAAAACWQAAAAAAVAAAAAABVAAAAAADVAAAAAACGwAAAAADVAAAAAABVAAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAACVAAAAAAAVAAAAAABRwAAAAADXAAAAAABXAAAAAADXAAAAAACRwAAAAACXAAAAAABXAAAAAADGwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAADGwAAAAADVAAAAAADVAAAAAACVAAAAAADVAAAAAADVAAAAAACVAAAAAADVAAAAAACXAAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADXAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADXAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAXAAAAAAAAAAAAAAAcQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAWwAAAAABVAAAAAAAXAAAAAAAAAAAAAAAcQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAWwAAAAACVAAAAAAARwAAAAADAAAAAAAAcQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAWwAAAAABVAAAAAACXAAAAAAAAAAAAAAAcQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAWwAAAAADVAAAAAACXAAAAAAA version: 6 1,-3: ind: 1,-3 - tiles: cQAAAAAAWQAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAADcQAAAAAAVAAAAAADVAAAAAAAVAAAAAADcQAAAAAAbwAAAAABbwAAAAACbgAAAAACbgAAAAACcQAAAAAAWQAAAAAAcQAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAAAcQAAAAAAWQAAAAAAVAAAAAACVAAAAAADcQAAAAAAGwAAAAADbgAAAAABbgAAAAABGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAcQAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAABGwAAAAABcQAAAAAAGwAAAAABGwAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAABVAAAAAADVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAACVAAAAAABVAAAAAADVAAAAAACVAAAAAADVAAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAALQAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAAAVAAAAAABcQAAAAAAbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAACbgAAAAAAbgAAAAACcQAAAAAALQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADbgAAAAADbgAAAAADbgAAAAAAbgAAAAAAbgAAAAABbgAAAAACbgAAAAADcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAADbgAAAAADcQAAAAAAAAAAAAAAVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAACbgAAAAAAbgAAAAADbgAAAAABbgAAAAAAbgAAAAADbgAAAAACbgAAAAADbgAAAAABcQAAAAAAAAAAAAAAVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAADbgAAAAAAbgAAAAACbgAAAAAAbgAAAAABbgAAAAADbgAAAAAAbgAAAAAAbgAAAAADcQAAAAAAAAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAADbgAAAAACbgAAAAADbgAAAAACbgAAAAACbgAAAAACcQAAAAAAAAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADWQAAAAAAYAAAAAAAYQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAA + tiles: cQAAAAAAWQAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAADcQAAAAAAVAAAAAADVAAAAAAAVAAAAAADcQAAAAAAbwAAAAABbwAAAAACbgAAAAACbgAAAAACcQAAAAAAWQAAAAAAcQAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAAAcQAAAAAAWQAAAAAAVAAAAAACVAAAAAADcQAAAAAAGwAAAAADbgAAAAABbgAAAAABGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAcQAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAABGwAAAAABcQAAAAAAGwAAAAABGwAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAABVAAAAAADVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAACVAAAAAABVAAAAAADVAAAAAACVAAAAAADVAAAAAACXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAALQAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAAAVAAAAAABcQAAAAAAbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAACbgAAAAAAbgAAAAACcQAAAAAALQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADbgAAAAADbgAAAAADbgAAAAAAbgAAAAAAbgAAAAABbgAAAAACbgAAAAADcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAADbgAAAAADcQAAAAAAAAAAAAAAVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAACbgAAAAAAbgAAAAADbgAAAAABbgAAAAAAbgAAAAADbgAAAAACbgAAAAADbgAAAAABcQAAAAAAAAAAAAAAVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAADbgAAAAAAbgAAAAACbgAAAAAAbgAAAAABbgAAAAADbgAAAAAAbgAAAAAAbgAAAAADcQAAAAAAAAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAADbgAAAAACbgAAAAADbgAAAAACbgAAAAACbgAAAAACcQAAAAAAAAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADWQAAAAAAYAAAAAAAYQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAA version: 6 2,-3: ind: 2,-3 - tiles: bgAAAAACbwAAAAABbwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAACcQAAAAAAbgAAAAADGwAAAAADbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAGwAAAAADHwAAAAAAHwAAAAADHwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAADVAAAAAADGwAAAAABXgAAAAACXgAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAACGwAAAAABVAAAAAACVAAAAAADVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABGwAAAAABXgAAAAADXgAAAAACXgAAAAADXgAAAAACXgAAAAACXgAAAAACGwAAAAADVAAAAAACVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAADVAAAAAABGwAAAAABXgAAAAACXgAAAAAAXgAAAAABXgAAAAACXgAAAAABXgAAAAACGwAAAAAALQAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAADGwAAAAACcQAAAAAALQAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAACcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAABcQAAAAAAVAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAACcQAAAAAAVAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAACGwAAAAABAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAABcQAAAAAAVAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAABcQAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAADVAAAAAACVAAAAAABVAAAAAABVAAAAAABcQAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAACYQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAWQAAAAAAVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAADYgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + tiles: bgAAAAACbwAAAAABbwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAACcQAAAAAAbgAAAAADGwAAAAADbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAGwAAAAADHwAAAAAAHwAAAAADHwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAADVAAAAAADGwAAAAABXgAAAAACXgAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAACGwAAAAABXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAGwAAAAABXgAAAAADXgAAAAACXgAAAAADXgAAAAACXgAAAAACXgAAAAACGwAAAAADVAAAAAACVAAAAAACVAAAAAAAXAAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAABGwAAAAABXgAAAAACXgAAAAAAXgAAAAABXgAAAAACXgAAAAABXgAAAAACGwAAAAAALQAAAAAAVAAAAAADVAAAAAABXAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAADGwAAAAACcQAAAAAALQAAAAAAVAAAAAADVAAAAAADXAAAAAAAVAAAAAACcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAABcQAAAAAAVAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAVAAAAAABXAAAAAAAVAAAAAACcQAAAAAAVAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAACGwAAAAABAAAAAAAAcQAAAAAAVAAAAAAAXAAAAAAAVAAAAAABcQAAAAAAVAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAABcQAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAXAAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAADVAAAAAACVAAAAAABVAAAAAABVAAAAAABcQAAAAAAAAAAAAAAcQAAAAAAVAAAAAACXAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAXAAAAAAAVAAAAAACYQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAWQAAAAAAXAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAADYgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA version: 6 2,2: ind: 2,2 @@ -230,7 +233,7 @@ entities: version: 6 0,-5: ind: 0,-5 - tiles: cQAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAbwAAAAADbwAAAAADbwAAAAACcQAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcAAAAAAAcQAAAAAAYQAAAAAAYAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAADYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAAWQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAZAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAWQAAAAAAZAAAAAABcQAAAAAAZAAAAAAAZAAAAAABZAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACWQAAAAAAZAAAAAADcQAAAAAAZAAAAAADUAAAAAAAZAAAAAAAcQAAAAAAYAAAAAAAWQAAAAAAWQAAAAAAYgAAAAADYAAAAAAAYgAAAAADYgAAAAAAcQAAAAAAcQAAAAAAWQAAAAAA + tiles: cQAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAbwAAAAADbwAAAAADbwAAAAACcQAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcAAAAAAAcQAAAAAAYQAAAAAAYAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAADYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAAWQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAZAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAWQAAAAAAZAAAAAABcQAAAAAAZAAAAAAAZAAAAAABZAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACWQAAAAAAZAAAAAADcQAAAAAAZAAAAAADUAAAAAAAZAAAAAAAcQAAAAAAYAAAAAAAWQAAAAAAWQAAAAAAYgAAAAADYAAAAAAAYgAAAAADYgAAAAAAcQAAAAAAcQAAAAAAWQAAAAAA version: 6 -1,-6: ind: -1,-6 @@ -238,11 +241,11 @@ entities: version: 6 -2,-6: ind: -2,-6 - tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADWQAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAABWQAAAAAAVAAAAAADcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAaAAAAAADaAAAAAABaAAAAAABaAAAAAABaAAAAAABaAAAAAABaAAAAAAAaAAAAAADcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAaAAAAAACaAAAAAACaAAAAAADaAAAAAACaAAAAAAAaAAAAAADaAAAAAAAaAAAAAACcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAaAAAAAABaAAAAAACaAAAAAACaAAAAAACaAAAAAAAaAAAAAABaAAAAAABaAAAAAABcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAaAAAAAABaAAAAAACaAAAAAAAaAAAAAABaAAAAAAAaAAAAAABaAAAAAABaAAAAAADcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAaAAAAAABaAAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAaAAAAAAAaAAAAAAAcQAAAAAAGwAAAAADcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAGwAAAAADcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAZAAAAAABZAAAAAAAZAAAAAABZAAAAAACZAAAAAAAZAAAAAADVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADWQAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAABWQAAAAAAVAAAAAADcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAaAAAAAADaAAAAAABaAAAAAABaAAAAAABaAAAAAABaAAAAAABaAAAAAAAaAAAAAADcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAaAAAAAACaAAAAAACaAAAAAADaAAAAAACaAAAAAAAaAAAAAADaAAAAAAAaAAAAAACcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAaAAAAAABaAAAAAACaAAAAAACaAAAAAACaAAAAAAAaAAAAAABaAAAAAABaAAAAAABcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAaAAAAAABaAAAAAACaAAAAAAAaAAAAAABaAAAAAAAaAAAAAABaAAAAAABaAAAAAADcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAaAAAAAABaAAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAaAAAAAAAaAAAAAAAcQAAAAAAGwAAAAADcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAGwAAAAADcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAZAAAAAABZAAAAAAAZAAAAAABZAAAAAACZAAAAAAAZAAAAAADVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA version: 6 0,-6: ind: 0,-6 - tiles: AAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAACQAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAKcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAACQAAAAAABwAAAAAACQAAAAAHBwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAbwAAAAABbwAAAAADbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAADbgAAAAADbgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbwAAAAAAbgAAAAACWwAAAAADWwAAAAADWwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbwAAAAACbgAAAAADWwAAAAADLQAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYgAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAbwAAAAACbgAAAAACWwAAAAAALQAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbwAAAAAAbgAAAAACWwAAAAAALQAAAAAALQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAbwAAAAAAbgAAAAADWwAAAAADWwAAAAABWwAAAAACcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAACbgAAAAAAbgAAAAAC + tiles: AAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAACQAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAKcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAACQAAAAAABwAAAAAACQAAAAAHBwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAbwAAAAABbwAAAAADbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAADbgAAAAADbgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbwAAAAAAbgAAAAACWwAAAAADWwAAAAADWwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbwAAAAACbgAAAAADWwAAAAADLQAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYgAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAbwAAAAACbgAAAAACWwAAAAAALQAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbwAAAAAAbgAAAAACWwAAAAAALQAAAAAALQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAbwAAAAAAbgAAAAADWwAAAAADWwAAAAABWwAAAAACcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAACbgAAAAAAbgAAAAAC version: 6 -3,-5: ind: -3,-5 @@ -250,7 +253,7 @@ entities: version: 6 1,-6: ind: 1,-6 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAGwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAWQAAAAAAXAAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADXAAAAAAAVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAACXAAAAAADVAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADXAAAAAACXAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADXAAAAAADVAAAAAACbwAAAAABbwAAAAACcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACXAAAAAADWQAAAAAAbgAAAAAAbgAAAAABbgAAAAABcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAABXAAAAAAAVAAAAAACWwAAAAAAWwAAAAACbgAAAAADbgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAWgAAAAADWgAAAAADWwAAAAAAVAAAAAACWQAAAAAAVAAAAAADXAAAAAACVAAAAAAALQAAAAAAWwAAAAADbgAAAAACbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWgAAAAADWgAAAAACWwAAAAACVAAAAAADVAAAAAACVAAAAAACXAAAAAAAVAAAAAACLQAAAAAAWwAAAAAAbgAAAAAAbgAAAAADGwAAAAADVAAAAAAAVAAAAAACGwAAAAADWgAAAAABWgAAAAAAWwAAAAACXAAAAAACXAAAAAABXAAAAAACXAAAAAADVAAAAAABLQAAAAAAWwAAAAACbgAAAAADbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWgAAAAACWgAAAAABWwAAAAACVAAAAAABWQAAAAAAVAAAAAACXAAAAAABXAAAAAAAWwAAAAADWwAAAAACbgAAAAAAbgAAAAABcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAWgAAAAACWgAAAAACWwAAAAABVAAAAAADVAAAAAAAWQAAAAAAXAAAAAABVAAAAAAAbgAAAAABbgAAAAAAbgAAAAACcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAABXAAAAAAAVAAAAAAC + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAGwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAWQAAAAAAXAAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADXAAAAAAAVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAACXAAAAAADVAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADXAAAAAACXAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADXAAAAAADVAAAAAACbwAAAAABbwAAAAACcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACXAAAAAADWQAAAAAAbgAAAAAAbgAAAAABbgAAAAABcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAABXAAAAAAAVAAAAAACWwAAAAAAWwAAAAACbgAAAAADbgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAWgAAAAADWgAAAAADWwAAAAAAVAAAAAACWQAAAAAAVAAAAAADXAAAAAACVAAAAAAALQAAAAAAWwAAAAADbgAAAAACbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWgAAAAADWgAAAAACWwAAAAACVAAAAAADVAAAAAACVAAAAAACXAAAAAAAVAAAAAACLQAAAAAAWwAAAAAAbgAAAAAAbgAAAAADGwAAAAADVAAAAAAAVAAAAAACGwAAAAADWgAAAAABWgAAAAAAWwAAAAACXAAAAAACXAAAAAABXAAAAAACXAAAAAADVAAAAAABLQAAAAAAWwAAAAACbgAAAAADbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWgAAAAACWgAAAAABWwAAAAACVAAAAAABWQAAAAAAVAAAAAACXAAAAAABXAAAAAAAWwAAAAADWwAAAAACbgAAAAAAbgAAAAABcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAWgAAAAACWgAAAAACWwAAAAABVAAAAAADVAAAAAAAWQAAAAAAXAAAAAABVAAAAAAAbgAAAAABbgAAAAAAbgAAAAACcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAABXAAAAAAAVAAAAAAC version: 6 0,-7: ind: 0,-7 @@ -258,7 +261,7 @@ entities: version: 6 1,-5: ind: 1,-5 - tiles: bwAAAAADbwAAAAABcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAXAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADXAAAAAADWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADXAAAAAABVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACXAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWQAAAAAAVAAAAAAAVAAAAAABXAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAVAAAAAADVAAAAAADVAAAAAACWQAAAAAAWQAAAAAAVAAAAAABXAAAAAAAVAAAAAACYgAAAAADYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACXAAAAAADXAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAWQAAAAAAVAAAAAACVAAAAAACWQAAAAAAWQAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABWQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + tiles: bwAAAAADbwAAAAABcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAXAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADXAAAAAADWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADXAAAAAABVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACXAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWQAAAAAAVAAAAAAAVAAAAAABXAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAVAAAAAADVAAAAAADVAAAAAACWQAAAAAAWQAAAAAAVAAAAAABXAAAAAAAVAAAAAACYgAAAAADYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACXAAAAAADXAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAWQAAAAAAVAAAAAACVAAAAAACWQAAAAAAWQAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABWQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA version: 6 2,-5: ind: 2,-5 @@ -298,7 +301,7 @@ entities: version: 6 4,-3: ind: 4,-3 - tiles: VAAAAAABVAAAAAACcQAAAAAAWQAAAAAAWQAAAAAAWwAAAAAAWwAAAAACWwAAAAADWwAAAAABWwAAAAADWQAAAAAAVAAAAAACVAAAAAACVAAAAAADcQAAAAAAcAAAAAAAVAAAAAACVAAAAAADGwAAAAADGwAAAAABGwAAAAADGwAAAAADGwAAAAADGwAAAAACGwAAAAABGwAAAAADGwAAAAACGwAAAAAAVAAAAAADWQAAAAAAcQAAAAAAcAAAAAAAVAAAAAABVAAAAAABGwAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAAAGwAAAAADGwAAAAADGwAAAAAAGwAAAAABGwAAAAACWQAAAAAAWQAAAAAAcQAAAAAAcAAAAAAAVAAAAAABVAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAACWQAAAAAAVAAAAAAAVAAAAAABVAAAAAABGwAAAAABGwAAAAADWQAAAAAAWQAAAAAAcQAAAAAAcAAAAAAAVAAAAAADVAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAGwAAAAAAGwAAAAABWQAAAAAAWQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAGwAAAAABGwAAAAACcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAGwAAAAABGwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAADGwAAAAACGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAGwAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAABGwAAAAADGwAAAAABGwAAAAABGwAAAAACGwAAAAABGwAAAAABVAAAAAABcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABGwAAAAACGwAAAAAAGwAAAAAAGwAAAAACGwAAAAADGwAAAAAAGwAAAAADGwAAAAADVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAWQAAAAAAGwAAAAADGwAAAAACGwAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABGwAAAAABVAAAAAABVAAAAAABGwAAAAACVAAAAAACWQAAAAAAGwAAAAAAGwAAAAACGwAAAAABGwAAAAACGwAAAAADGwAAAAABGwAAAAADGwAAAAABVAAAAAACVAAAAAADGwAAAAABVAAAAAACWQAAAAAAGwAAAAABVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAGwAAAAACGwAAAAABGwAAAAADGwAAAAABGwAAAAADGwAAAAACVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + tiles: VAAAAAABVAAAAAACcQAAAAAAWQAAAAAAWQAAAAAAWwAAAAAAWwAAAAACWwAAAAADWwAAAAABWwAAAAADWQAAAAAAVAAAAAACVAAAAAACVAAAAAADcQAAAAAAcAAAAAAAVAAAAAACVAAAAAADGwAAAAADGwAAAAABGwAAAAADGwAAAAADGwAAAAADGwAAAAACGwAAAAABGwAAAAADGwAAAAACGwAAAAAAVAAAAAADWQAAAAAAcQAAAAAAcAAAAAAAVAAAAAABVAAAAAABGwAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAAAGwAAAAADGwAAAAADGwAAAAAAGwAAAAABGwAAAAACWQAAAAAAWQAAAAAAcQAAAAAAcAAAAAAAVAAAAAABVAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAACWQAAAAAAVAAAAAAAVAAAAAABVAAAAAABGwAAAAABGwAAAAADWQAAAAAAWQAAAAAAcQAAAAAAcAAAAAAAVAAAAAADVAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAGwAAAAAAGwAAAAABWQAAAAAAWQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAGwAAAAABGwAAAAACcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAGwAAAAABGwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAADGwAAAAACGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAGwAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAABGwAAAAADGwAAAAABGwAAAAABGwAAAAACGwAAAAABGwAAAAABVAAAAAABcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABGwAAAAACGwAAAAAAGwAAAAAAGwAAAAACGwAAAAADGwAAAAAAGwAAAAADGwAAAAADVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAWQAAAAAAGwAAAAADGwAAAAACGwAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABGwAAAAABVAAAAAABVAAAAAABGwAAAAACVAAAAAACWQAAAAAAGwAAAAAAGwAAAAACGwAAAAABGwAAAAACGwAAAAADGwAAAAABGwAAAAADGwAAAAABRwAAAAAAVAAAAAADGwAAAAABVAAAAAACWQAAAAAAGwAAAAABVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAGwAAAAACGwAAAAABGwAAAAADGwAAAAABGwAAAAADGwAAAAACVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA version: 6 4,-2: ind: 4,-2 @@ -306,7 +309,7 @@ entities: version: 6 3,-3: ind: 3,-3 - tiles: VAAAAAADVAAAAAACVAAAAAACVAAAAAACcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAADHAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAHAAAAAADHAAAAAACHAAAAAADVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAADGwAAAAABXgAAAAABXgAAAAABXgAAAAACGwAAAAABVAAAAAACVAAAAAADVAAAAAADHAAAAAADVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADGwAAAAAAXgAAAAAAXgAAAAAAXgAAAAADGwAAAAADVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAACVAAAAAADVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAADVAAAAAADVAAAAAADcQAAAAAAGwAAAAACGwAAAAABVAAAAAACcQAAAAAAYQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAACGwAAAAABVAAAAAACVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAACcQAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAABVAAAAAACVAAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAACcQAAAAAAcQAAAAAAYgAAAAACVAAAAAADVAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAACVAAAAAACVAAAAAACcQAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAADVAAAAAADVAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAACVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAABVAAAAAABcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAYgAAAAACYgAAAAAAYgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYgAAAAAAYAAAAAAAYgAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADcQAAAAAAVAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYgAAAAAAYgAAAAAAYgAAAAACcQAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAACYQAAAAAAYQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAYgAAAAACYgAAAAACYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAA + tiles: VAAAAAADVAAAAAACVAAAAAACVAAAAAACcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAADHAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAHAAAAAADHAAAAAACHAAAAAADVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAADGwAAAAABXgAAAAABXgAAAAABXgAAAAACGwAAAAABVAAAAAACVAAAAAADVAAAAAADHAAAAAADVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADGwAAAAAAXgAAAAAAXgAAAAAAXgAAAAADGwAAAAADVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAACVAAAAAADVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAADVAAAAAADVAAAAAADcQAAAAAAGwAAAAACGwAAAAABVAAAAAACcQAAAAAAYQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAACGwAAAAABVAAAAAACVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAACcQAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAABVAAAAAACVAAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAACcQAAAAAAcQAAAAAAYgAAAAACVAAAAAADVAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAACVAAAAAACVAAAAAACcQAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAADVAAAAAADVAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAACVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAABVAAAAAABcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAYgAAAAACYgAAAAAAYgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYgAAAAAAYAAAAAAAYgAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADcQAAAAAAVAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYgAAAAAAYgAAAAAAYgAAAAACcQAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAABVAAAAAAARwAAAAAARwAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAARwAAAAAAVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAYgAAAAACYgAAAAACYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAABVAAAAAAARwAAAAAARwAAAAAA version: 6 3,-4: ind: 3,-4 @@ -314,7 +317,7 @@ entities: version: 6 4,-4: ind: 4,-4 - tiles: YQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAJBwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAYgAAAAADcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYgAAAAADYgAAAAACcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYgAAAAADcQAAAAAAcQAAAAAABwAAAAAABwAAAAAIBwAAAAAASwAAAAAAGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAASwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAAYQAAAAAASwAAAAAAGwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAABwAAAAAJBwAAAAAABwAAAAAASwAAAAAAYQAAAAAAGwAAAAADcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAAcAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAWQAAAAAAVAAAAAABWwAAAAABWwAAAAABWwAAAAABWwAAAAABWwAAAAADWQAAAAAAVAAAAAABWQAAAAAAcQAAAAAABwAAAAAMcAAAAAAAVAAAAAADVAAAAAABGwAAAAAAVAAAAAABWQAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAACWwAAAAACWQAAAAAAVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcAAAAAAA + tiles: YQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAJBwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAYgAAAAADcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYgAAAAADYgAAAAACcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYgAAAAADcQAAAAAAcQAAAAAABwAAAAAABwAAAAAIBwAAAAAASwAAAAAAGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAASwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAAYQAAAAAASwAAAAAAGwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAABwAAAAAJBwAAAAAABwAAAAAASwAAAAAAYQAAAAAAGwAAAAADcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAAcAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAWQAAAAAAVAAAAAABWwAAAAABWwAAAAABWwAAAAABWwAAAAABWwAAAAADWQAAAAAAVAAAAAABWQAAAAAAcQAAAAAABwAAAAAMcAAAAAAAVAAAAAADVAAAAAABGwAAAAAAVAAAAAABWQAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAACWwAAAAACWQAAAAAAVAAAAAAAVAAAAAADcQAAAAAABwAAAAAAcAAAAAAA version: 6 -3,-1: ind: -3,-1 @@ -358,11 +361,11 @@ entities: version: 6 -3,0: ind: -3,0 - tiles: VAAAAAACVAAAAAADVAAAAAADGwAAAAADVAAAAAADVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAABVAAAAAAAWQAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAADVAAAAAABGwAAAAAAVAAAAAABVAAAAAABVAAAAAACWQAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABGwAAAAAAGwAAAAADGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAAAYQAAAAAAcQAAAAAALQAAAAAALQAAAAAALQAAAAAAXwAAAAACXwAAAAABLQAAAAAALQAAAAAALQAAAAAAcQAAAAAALQAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAAAYAAAAAAAcQAAAAAALQAAAAAALQAAAAAALQAAAAAAXwAAAAADXwAAAAAALQAAAAAALQAAAAAALQAAAAAAcQAAAAAALQAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAADYAAAAAAAcQAAAAAALQAAAAAALQAAAAAALQAAAAAAXwAAAAACXwAAAAACLQAAAAAALQAAAAAALQAAAAAAcQAAAAAALQAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAACYQAAAAAAcQAAAAAALQAAAAAALQAAAAAALQAAAAAAXwAAAAAAXwAAAAABLQAAAAAALQAAAAAALQAAAAAAcQAAAAAALQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAACcQAAAAAAbgAAAAAAcQAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAACcQAAAAAAGwAAAAAAGwAAAAABcQAAAAAAGwAAAAADGwAAAAAAcQAAAAAAcQAAAAAAbgAAAAACcQAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAABIAAAAAADIAAAAAACcQAAAAAAHwAAAAAAHwAAAAADVAAAAAACVAAAAAADVAAAAAADcQAAAAAAbgAAAAADbgAAAAABcQAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAACIAAAAAAAIAAAAAADcQAAAAAAHwAAAAAAIAAAAAAAVAAAAAADWQAAAAAAVAAAAAADGwAAAAACbgAAAAAAbgAAAAABcQAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAAAIAAAAAACIAAAAAABcQAAAAAAHwAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAADIAAAAAADIAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAGwAAAAABcQAAAAAAcQAAAAAAXAAAAAADcQAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAAAIAAAAAABIAAAAAABGwAAAAADGwAAAAADcQAAAAAAVAAAAAABVAAAAAAAWQAAAAAAVAAAAAADYQAAAAAAXAAAAAAAcQAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAADGwAAAAACGwAAAAACGwAAAAACVAAAAAACWQAAAAAAWQAAAAAAVAAAAAADcQAAAAAAXAAAAAABcQAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAACIAAAAAABIAAAAAADGwAAAAADGwAAAAAAcQAAAAAA + tiles: VAAAAAACVAAAAAADVAAAAAADGwAAAAADXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAVAAAAAADVAAAAAADVAAAAAABGwAAAAAAVAAAAAABVAAAAAABVAAAAAACWQAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABGwAAAAAAGwAAAAADGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAAAYQAAAAAAcQAAAAAALQAAAAAALQAAAAAALQAAAAAAXwAAAAACXwAAAAABLQAAAAAALQAAAAAALQAAAAAAcQAAAAAALQAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAAAYAAAAAAAcQAAAAAALQAAAAAALQAAAAAALQAAAAAAXwAAAAADXwAAAAAALQAAAAAALQAAAAAALQAAAAAAcQAAAAAALQAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAADYAAAAAAAcQAAAAAALQAAAAAALQAAAAAALQAAAAAAXwAAAAACXwAAAAACLQAAAAAALQAAAAAALQAAAAAAcQAAAAAALQAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAACYQAAAAAAcQAAAAAALQAAAAAALQAAAAAALQAAAAAAXwAAAAAAXwAAAAABLQAAAAAALQAAAAAALQAAAAAAcQAAAAAALQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAACcQAAAAAAbgAAAAAAcQAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAACcQAAAAAAGwAAAAAAGwAAAAABcQAAAAAAGwAAAAADGwAAAAAAcQAAAAAAcQAAAAAAbgAAAAACcQAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAABIAAAAAADIAAAAAACcQAAAAAAHwAAAAAAHwAAAAADVAAAAAACVAAAAAADVAAAAAADcQAAAAAAbgAAAAADbgAAAAABcQAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAACIAAAAAAAIAAAAAADcQAAAAAAHwAAAAAAIAAAAAAAVAAAAAADWQAAAAAAVAAAAAADGwAAAAACbgAAAAAAbgAAAAABcQAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAAAIAAAAAACIAAAAAABcQAAAAAAHwAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAADIAAAAAADIAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAGwAAAAABcQAAAAAAcQAAAAAAXAAAAAADcQAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAAAIAAAAAABIAAAAAABGwAAAAADGwAAAAADcQAAAAAAVAAAAAABVAAAAAAAWQAAAAAAVAAAAAADYQAAAAAAXAAAAAAAcQAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAADGwAAAAACGwAAAAACGwAAAAACVAAAAAACWQAAAAAAWQAAAAAAVAAAAAADcQAAAAAAXAAAAAABcQAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAACIAAAAAABIAAAAAADGwAAAAADGwAAAAAAcQAAAAAA version: 6 -3,1: ind: -3,1 - tiles: WQAAAAAAVAAAAAADVAAAAAADVAAAAAADcQAAAAAAXAAAAAAAcQAAAAAAcQAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAVAAAAAACXAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAXAAAAAACXAAAAAAAXAAAAAACXAAAAAAAXAAAAAABXAAAAAACXAAAAAABXAAAAAACXAAAAAADXAAAAAADcQAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAABVAAAAAADXAAAAAADIAAAAAABIAAAAAABGwAAAAACIAAAAAAAIAAAAAAAGwAAAAACIAAAAAADIAAAAAADXAAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAACVwAAAAAAVwAAAAAAXAAAAAABIAAAAAACIAAAAAAAGwAAAAAAIAAAAAABIAAAAAAAGwAAAAAAIAAAAAADIAAAAAAAXAAAAAADcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVwAAAAADVwAAAAABXAAAAAAAGwAAAAADGwAAAAACGwAAAAACGwAAAAACGwAAAAABGwAAAAACGwAAAAADGwAAAAADXAAAAAADGwAAAAACWQAAAAAAVAAAAAABVAAAAAACVwAAAAACVwAAAAABXAAAAAABIAAAAAACIAAAAAACGwAAAAAAIAAAAAACIAAAAAADGwAAAAABIAAAAAADIAAAAAAAXAAAAAADGwAAAAAAWQAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAABXAAAAAACIAAAAAADIAAAAAADGwAAAAAAIAAAAAABIAAAAAABGwAAAAABIAAAAAAAIAAAAAAAXAAAAAACcQAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAACXAAAAAABXAAAAAADXAAAAAABXAAAAAABXAAAAAABXAAAAAACXAAAAAADXAAAAAACXAAAAAABXAAAAAACcQAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAACwAAAAAAVAAAAAACVAAAAAADcQAAAAAAGwAAAAABGwAAAAABcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADVAAAAAABWQAAAAAAWQAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAABcQAAAAAAVAAAAAACVAAAAAABVAAAAAACcQAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAABGwAAAAACVAAAAAACVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAXAAAAAADXAAAAAAAXAAAAAACXAAAAAAAXAAAAAACVAAAAAADcQAAAAAAVAAAAAACVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAACVwAAAAABXAAAAAADIAAAAAABIAAAAAABIAAAAAABXAAAAAABVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + tiles: WQAAAAAAVAAAAAADVAAAAAADVAAAAAADcQAAAAAAXAAAAAAAcQAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAVAAAAAACXAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAXAAAAAACXAAAAAAAXAAAAAACXAAAAAAAXAAAAAABXAAAAAACXAAAAAABXAAAAAACXAAAAAADXAAAAAADcQAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAABVAAAAAADXAAAAAADIAAAAAABIAAAAAABGwAAAAACIAAAAAAAIAAAAAAAGwAAAAACIAAAAAADIAAAAAADXAAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAACVwAAAAAAVwAAAAAAXAAAAAABIAAAAAACIAAAAAAAGwAAAAAAIAAAAAABIAAAAAAAGwAAAAAAIAAAAAADIAAAAAAAXAAAAAADcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVwAAAAADVwAAAAABXAAAAAAAGwAAAAADGwAAAAACGwAAAAACGwAAAAACGwAAAAABGwAAAAACGwAAAAADGwAAAAADXAAAAAADGwAAAAACWQAAAAAAVAAAAAABVAAAAAACVwAAAAACVwAAAAABXAAAAAABIAAAAAACIAAAAAACGwAAAAAAIAAAAAACIAAAAAADGwAAAAABIAAAAAADIAAAAAAAXAAAAAADGwAAAAAAWQAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAABXAAAAAACIAAAAAADIAAAAAADGwAAAAAAIAAAAAABIAAAAAABGwAAAAABIAAAAAAAIAAAAAAAXAAAAAACcQAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAACXAAAAAABXAAAAAADXAAAAAABXAAAAAABXAAAAAABXAAAAAACXAAAAAADXAAAAAACXAAAAAABXAAAAAACcQAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAACwAAAAAAVAAAAAACVAAAAAADcQAAAAAAGwAAAAABGwAAAAABcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADVAAAAAABWQAAAAAAWQAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAABcQAAAAAAVAAAAAACVAAAAAABVAAAAAACcQAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAABGwAAAAACVAAAAAACVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAXAAAAAADXAAAAAAAXAAAAAACXAAAAAAAXAAAAAACVAAAAAADcQAAAAAAVAAAAAACVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAACVwAAAAABXAAAAAADIAAAAAABIAAAAAABIAAAAAABXAAAAAABVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA version: 6 -4,-1: ind: -4,-1 @@ -390,11 +393,11 @@ entities: version: 6 -4,-6: ind: -4,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAATwAAAAAAGwAAAAADGwAAAAADTwAAAAAATwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAATwAAAAAAGwAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAADcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAATwAAAAAAGwAAAAAAGwAAAAADTwAAAAAATwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAACwAAAAAAcQAAAAAACwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAABGwAAAAABcQAAAAAACwAAAAAAVAAAAAADWQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAHwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAATwAAAAAAGwAAAAADHwAAAAAAcQAAAAAATwAAAAAATwAAAAAATwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAATwAAAAAAGwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAATwAAAAAAGwAAAAAAHwAAAAAAcQAAAAAATwAAAAAATwAAAAAATwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAHwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAACwAAAAAAcQAAAAAACwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAABGwAAAAABcQAAAAAACwAAAAAAVAAAAAADWQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAA version: 6 -3,-6: ind: -3,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYgAAAAACcQAAAAAAYgAAAAACcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAYgAAAAACYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYgAAAAADWQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAWQAAAAAAYAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAWQAAAAAAVAAAAAABCwAAAAAAVAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAcQAAAAAACwAAAAAAVAAAAAADWQAAAAAAVAAAAAAAVAAAAAADCwAAAAAAVAAAAAADWQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAWQAAAAAAWQAAAAAACwAAAAAAVAAAAAAAVAAAAAABcQAAAAAAWQAAAAAAVAAAAAADVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAcQAAAAAACwAAAAAAVAAAAAADVAAAAAABVAAAAAACYgAAAAABCwAAAAAAVAAAAAAAVAAAAAACWQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVAAAAAAACwAAAAAAcQAAAAAAVAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAWQAAAAAAVAAAAAADVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYgAAAAACcQAAAAAAYgAAAAACcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAYgAAAAACYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYgAAAAADWQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAWQAAAAAAYAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAWQAAAAAAVAAAAAABCwAAAAAAVAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAcQAAAAAACwAAAAAAVAAAAAADWQAAAAAAVAAAAAAAVAAAAAADCwAAAAAAVAAAAAADWQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAWQAAAAAAWQAAAAAACwAAAAAAVAAAAAAAVAAAAAABcQAAAAAAWQAAAAAAVAAAAAADVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAcQAAAAAACwAAAAAAVAAAAAADVAAAAAABVAAAAAACYgAAAAABCwAAAAAAVAAAAAAAVAAAAAACWQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVAAAAAAACwAAAAAAcQAAAAAAVAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAWQAAAAAAVAAAAAADVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,1: ind: -4,1 @@ -450,11 +453,11 @@ entities: version: 6 2,3: ind: 2,3 - tiles: cQAAAAAAcQAAAAAAcQAAAAAADAAAAAABDAAAAAAADAAAAAAADAAAAAAAcQAAAAAAbgAAAAADVAAAAAADVAAAAAACVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAACAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAADcQAAAAAAcQAAAAAAbgAAAAABcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAbgAAAAAAbgAAAAAAbgAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cQAAAAAAcQAAAAAAcQAAAAAADAAAAAABDAAAAAAADAAAAAAADAAAAAAAcQAAAAAAbgAAAAADVAAAAAADVAAAAAACVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAACAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAADcQAAAAAAcQAAAAAAbgAAAAABcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAbgAAAAAAbgAAAAAAbgAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,3: ind: 3,3 - tiles: VAAAAAACcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAVAAAAAADcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAVAAAAAADYAAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAVAAAAAACcQAAAAAAcQAAAAAAYAAAAAAAWQAAAAAAYAAAAAAAWQAAAAAAVAAAAAAAYAAAAAAAYAAAAAAAVAAAAAABcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYgAAAAACWQAAAAAAYgAAAAACcQAAAAAAVAAAAAABVAAAAAAAVAAAAAACYAAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYgAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACYAAAAAAAcQAAAAAABwAAAAAGBwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAWQAAAAAAVAAAAAABYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAJBwAAAAAABwAAAAAJBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAGwAAAAACcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAGwAAAAACcQAAAAAAWQAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYgAAAAADVAAAAAACGwAAAAADWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAWQAAAAAAVAAAAAACVAAAAAABYAAAAAAAYgAAAAACVAAAAAADWQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABYQAAAAAAYQAAAAAAYQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: VAAAAAACcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAVAAAAAADcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAVAAAAAADYAAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAVAAAAAACcQAAAAAAcQAAAAAAYAAAAAAAWQAAAAAAYAAAAAAAWQAAAAAAVAAAAAAAYAAAAAAAYAAAAAAAVAAAAAABcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYgAAAAACWQAAAAAAYgAAAAACcQAAAAAAVAAAAAABVAAAAAAAVAAAAAACYAAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYgAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACYAAAAAAAcQAAAAAABwAAAAAGBwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAWQAAAAAAVAAAAAABYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAJBwAAAAAABwAAAAAJBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAGwAAAAACcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAGwAAAAACcQAAAAAAWQAAAAAAVAAAAAAAYgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAYgAAAAAAcQAAAAAAYgAAAAADVAAAAAACGwAAAAADWQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAWQAAAAAAVAAAAAACVAAAAAABYAAAAAAAYgAAAAACVAAAAAADWQAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABYQAAAAAAYQAAAAAAYQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,4: ind: -2,4 @@ -498,7 +501,7 @@ entities: version: 6 -5,-4: ind: -5,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUAAAAAAAcAAAAAAAUAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAcAAAAAAAcAAAAAAAUAAAAAAAUAAAAAAAcAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAcAAAAAAAUAAAAAAAUAAAAAAAcAAAAAAAUAAAAAAAUAAAAAAAcQAAAAAAUAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAcAAAAAAAUAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAcAAAAAAAcAAAAAAAUAAAAAAAUAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUAAAAAAAcAAAAAAAUAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUAAAAAAAcAAAAAAAUAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAcAAAAAAAcAAAAAAAUAAAAAAAUAAAAAAAcAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAcAAAAAAAUAAAAAAAUAAAAAAAcQAAAAAAUAAAAAAAUAAAAAAAcQAAAAAAUAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAcQAAAAAAUAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAcAAAAAAAcAAAAAAAUAAAAAAAUAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUAAAAAAAcAAAAAAAUAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 5,-4: ind: 5,-4 @@ -520,6 +523,10 @@ entities: ind: -6,-3 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAA version: 6 + 2,4: + ind: 2,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 type: MapGrid - type: Broadphase - bodyStatus: InAir @@ -540,23 +547,23 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 3740: 6,-71 - 3741: -14,-16 - 4013: -69,-45 - 4026: 1,-2 + 3712: 6,-71 + 3713: -14,-16 + 3960: -69,-45 + 3973: 1,-2 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Arrows decals: - 4058: -71,-45 + 4005: -71,-45 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: Arrows decals: - 3206: 67,-46 - 3207: 67,-47 + 3178: 67,-46 + 3179: 67,-47 - node: color: '#FFFFFFFF' id: Bot @@ -564,571 +571,570 @@ entities: 30: 10,22 31: 10,21 32: 10,20 - 186: 68,-46 - 187: 68,-47 - 343: -59,-74 - 344: -59,-72 - 345: -59,-80 - 346: -59,-82 - 348: -38,23 - 349: -39,23 - 350: -41,23 - 351: -42,23 - 352: -44,23 - 353: -45,23 - 354: -45,22 - 355: -44,22 - 356: -41,22 - 357: -42,22 - 358: -39,22 - 359: -45,20 - 360: -44,20 - 361: -42,20 - 362: -41,20 - 363: -38,20 - 364: -38,19 - 365: -41,19 - 366: -42,19 - 367: -45,19 - 368: -44,19 - 369: -39,20 - 370: -39,19 - 371: -38,22 - 372: 52,-16 - 373: -51,22 - 374: -51,20 - 375: -53,22 - 376: -53,20 - 379: -45,33 - 380: -44,33 - 381: -43,33 - 382: -44,32 - 383: -43,32 - 384: -45,32 - 385: -45,31 - 386: -44,31 - 387: -43,31 - 388: -51,33 - 389: -51,31 - 390: -52,29 - 391: -51,29 - 392: -52,35 - 393: -51,35 - 399: -57,-2 - 426: -60,-55 - 427: 59,29 - 428: 60,29 - 429: 68,-4 - 430: 68,-6 - 431: 68,-12 - 432: 68,-14 - 475: 76,36 - 476: 68,36 - 477: 63,31 - 478: 29,42 - 579: -13,74 - 580: -14,74 - 581: -22,74 - 582: -23,74 - 587: -38,42 - 627: -36,-101 - 628: 67,-16 - 3094: 73,-37 - 3095: 73,-36 - 3096: 72,-36 - 3097: 73,-35 - 3164: -52,-59 - 3185: 68,-69 - 3200: 69,-46 - 3201: 69,-47 - 3202: 70,-46 - 3203: 70,-47 - 3377: -47,-41 - 3382: -12,-14 - 3577: 33,-83 - 3578: 33,-90 - 3579: 30,-95 - 3580: 48,-95 - 3581: 45,-90 - 3582: 45,-83 - 3690: -58,-19 - 3691: -18,69 - 3738: 6,-86 - 3750: -53,43 - 3751: -53,42 - 3752: -50,46 - 3791: 68,-29 - 3796: 68,-28 - 3797: 69,-29 - 3798: 67,-29 - 3799: 68,-30 - 3800: 51,-83 - 3801: 51,-90 - 3884: -77,-32 - 3889: -64,-46 - 4002: -67,-43 - 4020: -47,-40 - 4022: 1,-3 - 4023: 2,-3 - 4024: 3,-3 + 182: 68,-46 + 183: 68,-47 + 339: -59,-74 + 340: -59,-72 + 341: -59,-80 + 342: -59,-82 + 344: -38,23 + 345: -39,23 + 346: -41,23 + 347: -42,23 + 348: -44,23 + 349: -45,23 + 350: -45,22 + 351: -44,22 + 352: -41,22 + 353: -42,22 + 354: -39,22 + 355: -45,20 + 356: -44,20 + 357: -42,20 + 358: -41,20 + 359: -38,20 + 360: -38,19 + 361: -41,19 + 362: -42,19 + 363: -45,19 + 364: -44,19 + 365: -39,20 + 366: -39,19 + 367: -38,22 + 368: 52,-16 + 369: -51,22 + 370: -51,20 + 371: -53,22 + 372: -53,20 + 375: -45,33 + 376: -44,33 + 377: -43,33 + 378: -44,32 + 379: -43,32 + 380: -45,32 + 381: -45,31 + 382: -44,31 + 383: -43,31 + 384: -51,33 + 385: -51,31 + 386: -52,29 + 387: -51,29 + 388: -52,35 + 389: -51,35 + 395: -57,-2 + 417: -60,-55 + 418: 59,29 + 419: 60,29 + 420: 68,-4 + 421: 68,-6 + 422: 68,-12 + 423: 68,-14 + 466: 76,36 + 467: 68,36 + 468: 63,31 + 469: 29,42 + 570: -13,74 + 571: -14,74 + 572: -22,74 + 573: -23,74 + 578: -38,42 + 618: -36,-101 + 619: 67,-16 + 3067: 73,-37 + 3068: 73,-36 + 3069: 72,-36 + 3070: 73,-35 + 3136: -52,-59 + 3157: 68,-69 + 3172: 69,-46 + 3173: 69,-47 + 3174: 70,-46 + 3175: 70,-47 + 3349: -47,-41 + 3354: -12,-14 + 3549: 33,-83 + 3550: 33,-90 + 3551: 30,-95 + 3552: 48,-95 + 3553: 45,-90 + 3554: 45,-83 + 3662: -58,-19 + 3663: -18,69 + 3710: 6,-86 + 3722: -53,43 + 3723: -53,42 + 3724: -50,46 + 3763: 68,-29 + 3768: 68,-28 + 3769: 69,-29 + 3770: 67,-29 + 3771: 68,-30 + 3772: 51,-83 + 3773: 51,-90 + 3856: -77,-32 + 3861: -64,-46 + 3949: -67,-43 + 3967: -47,-40 + 3969: 1,-3 + 3970: 2,-3 + 3971: 3,-3 - node: color: '#60A5D9D6' id: BotGreyscale decals: - 3475: -25,-60 + 3447: -25,-60 - node: color: '#FFFFFFFF' id: BotLeft decals: - 225: -19,3 - 226: -21,1 - 3092: 72,-37 - 3792: 67,-28 - 3793: 69,-30 - 3794: 67,-30 - 3795: 69,-28 - 4011: -69,-45 - 4056: -71,-45 + 221: -19,3 + 222: -21,1 + 3065: 72,-37 + 3764: 67,-28 + 3765: 69,-30 + 3766: 67,-30 + 3767: 69,-28 + 3958: -69,-45 + 4003: -71,-45 - node: color: '#FFFFFFFF' id: BotRight decals: - 223: -21,3 - 224: -19,1 - 3093: 72,-35 - 4012: -69,-45 - 4057: -71,-45 + 219: -21,3 + 220: -19,1 + 3066: 72,-35 + 3959: -69,-45 + 4004: -71,-45 - node: color: '#FFFFFFFF' id: Box decals: - 218: -20,3 - 219: -20,2 - 220: -21,2 - 221: -19,2 - 222: -20,1 - 3739: 7,-83 + 214: -20,3 + 215: -20,2 + 216: -21,2 + 217: -19,2 + 218: -20,1 + 3711: 7,-83 - node: color: '#FFFFFFFF' id: BoxGreyscale decals: - 4083: 10,23 - 4084: 11,23 + 4030: 10,23 + 4031: 11,23 - node: color: '#D4D4D4D6' id: BrickTileSteelCornerNe decals: - 3403: 30,4 + 3375: 30,4 - node: color: '#D4D4D4D6' id: BrickTileSteelCornerNw decals: - 3402: 28,4 + 3374: 28,4 - node: color: '#D4D4D4D6' id: BrickTileSteelCornerSe decals: - 3401: 30,-1 + 3373: 30,-1 - node: color: '#D4D4D4D6' id: BrickTileSteelEndS decals: - 3398: 28,-3 + 3370: 28,-3 - node: color: '#D4D4D4D6' id: BrickTileSteelInnerNe decals: - 3435: 20,-3 + 3407: 20,-3 - node: color: '#D4D4D4D6' id: BrickTileSteelInnerNw decals: - 3437: 27,-3 + 3409: 27,-3 - node: color: '#D4D4D4D6' id: BrickTileSteelInnerSe decals: - 3409: 28,-1 - 3436: 20,4 + 3381: 28,-1 + 3408: 20,4 - node: color: '#D4D4D4D6' id: BrickTileSteelInnerSw decals: - 3434: 27,4 + 3406: 27,4 - node: color: '#D4D4D4D6' id: BrickTileSteelLineE decals: - 3399: 28,-2 - 3404: 30,3 - 3405: 30,2 - 3406: 30,1 - 3407: 30,0 - 3422: 20,3 - 3423: 20,2 - 3424: 20,1 - 3425: 20,0 - 3426: 20,-1 - 3427: 20,-2 + 3371: 28,-2 + 3376: 30,3 + 3377: 30,2 + 3378: 30,1 + 3379: 30,0 + 3394: 20,3 + 3395: 20,2 + 3396: 20,1 + 3397: 20,0 + 3398: 20,-1 + 3399: 20,-2 - node: color: '#D4D4D4D6' id: BrickTileSteelLineN decals: - 3408: 29,4 - 3428: 21,-3 - 3429: 22,-3 - 3430: 23,-3 - 3431: 24,-3 - 3432: 25,-3 - 3433: 26,-3 + 3380: 29,4 + 3400: 21,-3 + 3401: 22,-3 + 3402: 23,-3 + 3403: 24,-3 + 3404: 25,-3 + 3405: 26,-3 - node: color: '#D4D4D4D6' id: BrickTileSteelLineS decals: - 3400: 29,-1 - 3416: 26,4 - 3417: 25,4 - 3418: 24,4 - 3419: 23,4 - 3420: 22,4 - 3421: 21,4 + 3372: 29,-1 + 3388: 26,4 + 3389: 25,4 + 3390: 24,4 + 3391: 23,4 + 3392: 22,4 + 3393: 21,4 - node: color: '#D4D4D4D6' id: BrickTileSteelLineW decals: - 3392: 28,-2 - 3393: 28,3 - 3394: 28,2 - 3395: 28,1 - 3396: 28,0 - 3397: 28,-1 - 3410: 27,3 - 3411: 27,2 - 3412: 27,1 - 3413: 27,0 - 3414: 27,-1 - 3415: 27,-2 + 3364: 28,-2 + 3365: 28,3 + 3366: 28,2 + 3367: 28,1 + 3368: 28,0 + 3369: 28,-1 + 3382: 27,3 + 3383: 27,2 + 3384: 27,1 + 3385: 27,0 + 3386: 27,-1 + 3387: 27,-2 - node: color: '#334E6DC8' id: BrickTileWhiteBox decals: - 3697: 9,-21 + 3669: 9,-21 - node: color: '#3AB3DAFF' id: BrickTileWhiteBox decals: - 3505: -19,-47 + 3477: -19,-47 - node: color: '#3C44AAFF' id: BrickTileWhiteBox decals: - 3502: -19,-49 + 3474: -19,-49 - node: color: '#52B4E996' id: BrickTileWhiteBox decals: - 3693: 9,-23 + 3665: 9,-23 - node: color: '#80C71FFF' id: BrickTileWhiteBox decals: - 3504: -19,-48 + 3476: -19,-48 - node: color: '#835432FF' id: BrickTileWhiteBox decals: - 3500: -22,-47 + 3472: -22,-47 - node: color: '#9D9D97FF' id: BrickTileWhiteBox decals: - 3503: -19,-46 + 3475: -19,-46 - node: color: '#9FED5896' id: BrickTileWhiteBox decals: - 3695: 11,-23 + 3667: 11,-23 - node: color: '#A4610696' id: BrickTileWhiteBox decals: - 3696: 8,-21 + 3668: 8,-21 - node: color: '#B02E26FF' id: BrickTileWhiteBox decals: - 3501: -22,-49 + 3473: -22,-49 - node: color: '#C74EBDFF' id: BrickTileWhiteBox decals: - 3499: -22,-46 + 3471: -22,-46 - node: color: '#D381C996' id: BrickTileWhiteBox decals: - 3692: 8,-23 + 3664: 8,-23 - node: color: '#D4D4D496' id: BrickTileWhiteBox decals: - 3698: 10,-21 + 3670: 10,-21 - node: color: '#DE3A3A96' id: BrickTileWhiteBox decals: - 3694: 10,-23 + 3666: 10,-23 - node: color: '#EFB34196' id: BrickTileWhiteBox decals: - 3699: 11,-21 + 3671: 11,-21 - node: color: '#FEAC3DFF' id: BrickTileWhiteBox decals: - 3506: -22,-48 + 3478: -22,-48 - node: color: '#FFA5180C' id: BrickTileWhiteBox decals: - 3932: -42,0 - 3933: -37,0 + 3880: -42,0 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNe decals: - 3700: 12,-20 + 3672: 12,-20 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNw decals: - 3703: 7,-20 + 3675: 7,-20 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSe decals: - 3701: 12,-24 + 3673: 12,-24 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSw decals: - 3702: 7,-24 + 3674: 7,-24 - node: color: '#334E6DC8' id: BrickTileWhiteLineE decals: - 3708: 12,-21 - 3709: 12,-22 - 3710: 12,-23 + 3680: 12,-21 + 3681: 12,-22 + 3682: 12,-23 - node: color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 3704: 8,-20 - 3705: 9,-20 - 3706: 10,-20 - 3707: 11,-20 + 3676: 8,-20 + 3677: 9,-20 + 3678: 10,-20 + 3679: 11,-20 - node: color: '#334E6DC8' id: BrickTileWhiteLineS decals: - 3714: 8,-24 - 3715: 9,-24 - 3716: 10,-24 - 3717: 11,-24 + 3686: 8,-24 + 3687: 9,-24 + 3688: 10,-24 + 3689: 11,-24 - node: color: '#334E6DC8' id: BrickTileWhiteLineW decals: - 3711: 7,-21 - 3712: 7,-22 - 3713: 7,-23 + 3683: 7,-21 + 3684: 7,-22 + 3685: 7,-23 - node: color: '#FFFFFFFF' id: Busha1 decals: - 526: -8.396269,51.324306 - 527: -8.978583,51.511806 - 2978: 5.324413,-0.030564666 - 2984: 6.590038,0.46943533 - 2985: 10.590037,0.50068533 - 2986: 11.636912,0.26631033 + 517: -8.396269,51.324306 + 518: -8.978583,51.511806 + 2954: 5.324413,-0.030564666 + 2960: 6.590038,0.46943533 + 2961: 10.590037,0.50068533 + 2962: 11.636912,0.26631033 - node: color: '#FFFFFFFF' id: Busha2 decals: - 528: -9.822333,51.261806 - 529: -10.681708,51.293056 - 530: -11.416083,51.40243 + 519: -9.822333,51.261806 + 520: -10.681708,51.293056 + 521: -11.416083,51.40243 - node: color: '#FFFFFFFF' id: Bushc1 decals: - 577: -6.4137044,52.65711 - 578: -7.6637044,52.519527 + 568: -6.4137044,52.65711 + 569: -7.6637044,52.519527 - node: color: '#FFFFFFFF' id: Bushd2 decals: - 157: 53,-10 - 532: -6.1305466,49.392605 - 533: -5.6149216,48.955105 - 534: -5.5992966,48.06448 - 535: -5.6305466,48.47073 + 153: 53,-10 + 523: -6.1305466,49.392605 + 524: -5.6149216,48.955105 + 525: -5.5992966,48.06448 + 526: -5.6305466,48.47073 - node: color: '#FFFFFFFF' id: Bushd4 decals: - 531: -6.5836716,49.455547 + 522: -6.5836716,49.455547 - node: color: '#FFFFFFFF' id: Bushe1 decals: - 398: -4.6178575,3.9941478 + 394: -4.6178575,3.9941478 - node: color: '#FFFFFFFF' id: Bushe4 decals: - 3084: 65.93705,-9.8447485 - 3090: -11.957823,6.4384537 - 3091: -4.0984473,3.9853287 + 3057: 65.93705,-9.8447485 + 3063: -11.957823,6.4384537 + 3064: -4.0984473,3.9853287 - node: color: '#FFFFFFFF' id: Bushf1 decals: - 3567: 13.976057,-83.06645 - 3568: 14.054182,-84.08208 - 3569: 13.866682,-85.00395 - 3570: 16.304182,-85.19145 - 3571: 16.413557,-83.76958 - 3572: 16.085432,-82.48833 - 3573: 16.444807,-83.11333 - 3574: 15.538557,-85.22248 - 3575: 14.710432,-85.15998 + 3539: 13.976057,-83.06645 + 3540: 14.054182,-84.08208 + 3541: 13.866682,-85.00395 + 3542: 16.304182,-85.19145 + 3543: 16.413557,-83.76958 + 3544: 16.085432,-82.48833 + 3545: 16.444807,-83.11333 + 3546: 15.538557,-85.22248 + 3547: 14.710432,-85.15998 - node: color: '#FFFFFFFF' id: Bushf2 decals: - 3081: 66.0308,-8.000998 - 3082: 65.93705,-8.6728735 - 3083: 66.2183,-9.5634985 + 3054: 66.0308,-8.000998 + 3055: 65.93705,-8.6728735 + 3056: 66.2183,-9.5634985 - node: color: '#FFFFFFFF' id: Bushh2 decals: - 158: 50,-12 + 154: 50,-12 - node: color: '#FFFFFFFF' id: Bushi1 decals: - 518: -4.994979,50.827797 - 519: -5.541854,51.452797 - 520: -5.448104,50.905922 - 521: -6.7868943,51.465733 + 509: -4.994979,50.827797 + 510: -5.541854,51.452797 + 511: -5.448104,50.905922 + 512: -6.7868943,51.465733 - node: color: '#FFFFFFFF' id: Bushi2 decals: - 2983: 5.902538,0.18818533 - 3583: 33.10084,-87.77701 + 2959: 5.902538,0.18818533 + 3555: 33.10084,-87.77701 - node: color: '#FFFFFFFF' id: Bushi3 decals: - 522: -6.7243943,50.903233 - 523: -6.7400193,50.309483 - 524: -7.2868943,51.575108 + 513: -6.7243943,50.903233 + 514: -6.7400193,50.309483 + 515: -7.2868943,51.575108 - node: color: '#FFFFFFFF' id: Bushj1 decals: - 525: -7.8962693,51.361984 + 516: -7.8962693,51.361984 - node: color: '#FFFFFFFF' id: Bushk2 decals: - 479: -4.1263514,50.81898 + 470: -4.1263514,50.81898 - node: color: '#FFFFFFFF' id: Bushn1 decals: - 160: 50,-7 + 156: 50,-7 - node: color: '#FFFFFFFF' id: Caution decals: - 3149: 16.006746,36.692352 + 3122: 16.006746,36.692352 - node: color: '#334E6DC8' id: CheckerNESW decals: 27: 32,-26 - 424: 32,-25 + 415: 32,-25 - node: color: '#D381C9C7' id: CheckerNESW decals: - 181: 44,-37 - 182: 45,-37 - 183: 39,-37 - 184: 39,-38 - 185: 39,-39 + 177: 44,-37 + 178: 45,-37 + 179: 39,-37 + 180: 39,-38 + 181: 39,-39 - node: color: '#D381C9FF' id: CheckerNESW decals: - 164: 40,-37 - 165: 41,-37 - 166: 40,-38 - 167: 41,-38 - 168: 40,-39 - 169: 41,-39 - 170: 42,-37 - 171: 42,-38 - 172: 42,-39 - 173: 43,-37 - 174: 44,-38 - 175: 43,-37 - 176: 44,-39 - 177: 45,-39 - 178: 45,-38 - 179: 43,-38 - 180: 43,-39 + 160: 40,-37 + 161: 41,-37 + 162: 40,-38 + 163: 41,-38 + 164: 40,-39 + 165: 41,-39 + 166: 42,-37 + 167: 42,-38 + 168: 42,-39 + 169: 43,-37 + 170: 44,-38 + 171: 43,-37 + 172: 44,-39 + 173: 45,-39 + 174: 45,-38 + 175: 43,-38 + 176: 43,-39 - node: color: '#334E6DC8' id: CheckerNWSE decals: 26: 18,-26 - 425: 18,-25 + 416: 18,-25 - node: color: '#DE3A3A53' id: CheckerNWSE decals: - 3176: 29,32 + 3148: 29,32 - node: color: '#DE3A3A5A' id: CheckerNWSE decals: - 138: 26,31 - 139: 27,31 - 140: 28,31 - 141: 29,31 - 142: 30,31 - 143: 31,31 - 144: 32,31 - 145: 30,30 - 146: 29,30 - 147: 28,30 - 148: 30,29 - 149: 29,29 - 150: 28,29 - 151: 28,28 - 152: 29,28 - 153: 30,28 - 154: 30,27 - 155: 29,27 - 156: 28,27 + 134: 26,31 + 135: 27,31 + 136: 28,31 + 137: 29,31 + 138: 30,31 + 139: 31,31 + 140: 32,31 + 141: 30,30 + 142: 29,30 + 143: 28,30 + 144: 30,29 + 145: 29,29 + 146: 28,29 + 147: 28,28 + 148: 29,28 + 149: 30,28 + 150: 30,27 + 151: 29,27 + 152: 28,27 - node: color: '#DE3A3A96' id: CheckerNWSE @@ -1139,744 +1145,737 @@ entities: color: '#FFFFFFFF' id: Delivery decals: - 4025: 4,-3 - 4055: -70,-45 + 3972: 4,-3 + 4002: -70,-45 - node: cleanable: True color: '#DE3A3A96' id: Diablo decals: - 413: -43,-72 + 404: -43,-72 - node: cleanable: True color: '#0F267C34' id: DiagonalCheckerBOverlay decals: - 3978: -25,-33 - 3979: -25,-34 - 3980: -24,-34 - 3981: -24,-33 - 3982: -26,-33 - 3983: -26,-34 - 3984: -26,-32 - 3985: -25,-32 - 3986: -24,-32 - 3987: -23,-32 - 3988: -23,-33 - 3989: -23,-34 - 3990: -23,-36 - 3991: -23,-35 - 3992: -24,-35 - 3993: -24,-36 - 3994: -24,-37 - 3995: -23,-37 - 3996: -25,-37 - 3997: -26,-37 - 3998: -26,-36 - 3999: -25,-36 - 4000: -25,-35 - 4001: -26,-35 + 3925: -25,-33 + 3926: -25,-34 + 3927: -24,-34 + 3928: -24,-33 + 3929: -26,-33 + 3930: -26,-34 + 3931: -26,-32 + 3932: -25,-32 + 3933: -24,-32 + 3934: -23,-32 + 3935: -23,-33 + 3936: -23,-34 + 3937: -23,-36 + 3938: -23,-35 + 3939: -24,-35 + 3940: -24,-36 + 3941: -24,-37 + 3942: -23,-37 + 3943: -25,-37 + 3944: -26,-37 + 3945: -26,-36 + 3946: -25,-36 + 3947: -25,-35 + 3948: -26,-35 - node: color: '#923A3A93' id: DiagonalCheckerBOverlay decals: - 3804: -1,17 - 3805: -1,18 - 3806: -2,18 - 3807: -2,19 - 3808: -2,20 - 3809: -1,21 - 3810: -1,20 - 3811: -1,19 - 3812: 0,21 - 3813: 0,20 - 3814: 0,18 - 3815: 0,19 - 3816: 0,17 - 3817: 0,16 - 3818: 2,16 - 3819: 1,16 - 3820: 1,17 - 3821: 2,17 - 3822: 2,18 - 3823: 1,18 - 3824: 1,20 - 3825: 1,19 - 3826: 2,19 - 3827: 2,20 - 3828: 2,21 - 3829: 1,21 + 3776: -1,17 + 3777: -1,18 + 3778: -2,18 + 3779: -2,19 + 3780: -2,20 + 3781: -1,21 + 3782: -1,20 + 3783: -1,19 + 3784: 0,21 + 3785: 0,20 + 3786: 0,18 + 3787: 0,19 + 3788: 0,17 + 3789: 0,16 + 3790: 2,16 + 3791: 1,16 + 3792: 1,17 + 3793: 2,17 + 3794: 2,18 + 3795: 1,18 + 3796: 1,20 + 3797: 1,19 + 3798: 2,19 + 3799: 2,20 + 3800: 2,21 + 3801: 1,21 - node: color: '#983A3A93' id: DiagonalCheckerBOverlay decals: - 3830: -1,16 - 3831: -2,21 + 3802: -1,16 + 3803: -2,21 - node: cleanable: True color: '#D4D4D496' id: Dirt decals: - 70: -5,-30 - 71: -5,-30 + 68: -5,-30 + 69: -5,-30 - node: color: '#FFFFFFFF' id: Dirt decals: - 38: 5,-27 - 42: 20,-14 - 46: 26,-6 - 191: 53,-10 - 192: 53,-10 - 193: 53,-10 - 194: 54,-9 - 195: 54,-10 - 196: 54,-10 + 36: 5,-27 + 40: 20,-14 + 44: 26,-6 + 187: 53,-10 + 188: 53,-10 + 189: 53,-10 + 190: 54,-9 + 191: 54,-10 + 192: 54,-10 - node: cleanable: True color: '#FFFFFFFF' id: Dirt decals: - 107: 52,16 - 124: 53,22 - 125: 60,18 - 126: 62,12 - 127: 62,10 - 217: 68,-45 - 328: -39,-80 - 329: -48,-80 + 103: 52,16 + 120: 53,22 + 121: 60,18 + 122: 62,12 + 123: 62,10 + 213: 68,-45 + 324: -39,-80 + 325: -48,-80 - node: cleanable: True color: '#D4D4D496' id: DirtHeavy decals: - 68: -8,-27 - 69: -9,-27 - 72: -5,-12 - 75: 8,-1 - 76: 26,7 - 77: 25,12 - 82: 20,22 - 83: 15,20 - 84: 11,21 - 85: 11,20 - 86: 11,20 - 87: 11,22 - 88: 21,23 - 89: 20,20 - 90: 21,23 - 91: 21,22 - 92: 22,22 - 93: 33,15 - 237: -8,-47 - 239: -5,-54 - 240: 1,-54 - 241: -8,-67 - 242: -8,-67 - 243: -6,-65 - 244: -6,-65 + 66: -8,-27 + 67: -9,-27 + 70: -5,-12 + 71: 8,-1 + 72: 26,7 + 73: 25,12 + 78: 20,22 + 79: 15,20 + 80: 11,21 + 81: 11,20 + 82: 11,20 + 83: 11,22 + 84: 21,23 + 85: 20,20 + 86: 21,23 + 87: 21,22 + 88: 22,22 + 89: 33,15 + 233: -8,-47 + 235: -5,-54 + 236: 1,-54 + 237: -8,-67 + 238: -8,-67 + 239: -6,-65 + 240: -6,-65 - node: color: '#FFFFFFFF' id: DirtHeavy decals: - 37: 14,-27 - 50: 5,14 - 189: 57,-13 - 197: 61,-12 - 228: -25,-10 - 229: -21,-18 - 230: -26,-23 - 231: -25,-23 + 48: 5,14 + 185: 57,-13 + 193: 61,-12 + 224: -25,-10 + 225: -21,-18 + 226: -26,-23 + 227: -25,-23 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavy decals: - 52: 7,16 - 54: 6,7 - 58: 1,-1 - 59: 2,-1 - 60: 9,1 - 61: -4,2 - 62: -6,1 - 63: -8,2 - 65: -8,-1 - 66: -9,2 - 104: 56,15 - 105: 54,15 - 106: 53,15 - 108: 47,11 - 109: 48,9 - 110: 47,9 - 111: 48,8 - 128: 61,13 - 129: 60,15 - 130: 61,23 - 131: 63,21 - 132: 52,21 - 133: 47,14 - 134: 46,4 - 135: 49,4 - 202: 49,-39 - 207: 40,-39 - 208: 40,-39 - 209: 39,-37 - 211: 61,-56 - 212: 68,-48 - 213: 68,-48 - 214: 68,-48 - 215: 71,-47 - 216: 68,-46 - 298: -38,-82 - 299: -37,-83 - 300: -38,-83 - 336: -55,-75 - 337: -56,-76 - 403: -46,7 - 611: 64,-9 - 612: 63,-11 - 613: 63,-11 - 614: -9,5 - 619: -16,39 - 623: 0,46 - 624: 0,56 + 50: 7,16 + 52: 6,7 + 56: 1,-1 + 57: 2,-1 + 58: 9,1 + 59: -4,2 + 60: -6,1 + 61: -8,2 + 63: -8,-1 + 64: -9,2 + 100: 56,15 + 101: 54,15 + 102: 53,15 + 104: 47,11 + 105: 48,9 + 106: 47,9 + 107: 48,8 + 124: 61,13 + 125: 60,15 + 126: 61,23 + 127: 63,21 + 128: 52,21 + 129: 47,14 + 130: 46,4 + 131: 49,4 + 198: 49,-39 + 203: 40,-39 + 204: 40,-39 + 205: 39,-37 + 207: 61,-56 + 208: 68,-48 + 209: 68,-48 + 210: 68,-48 + 211: 71,-47 + 212: 68,-46 + 294: -38,-82 + 295: -37,-83 + 296: -38,-83 + 332: -55,-75 + 333: -56,-76 + 397: -46,7 + 602: 64,-9 + 603: 63,-11 + 604: 63,-11 + 605: -9,5 + 610: -16,39 + 614: 0,46 + 615: 0,56 - node: cleanable: True color: '#D4D4D496' id: DirtLight decals: - 78: 23,22 - 79: 24,21 - 236: 10,-43 + 74: 23,22 + 75: 24,21 + 232: 10,-43 - node: cleanable: True color: '#D4D4D4D6' id: DirtLight decals: - 3438: 29,3 - 3439: 29,3 + 3410: 29,3 + 3411: 29,3 - node: color: '#FFFFFFFF' id: DirtLight decals: - 41: 17,-12 - 44: 27,-13 - 45: 27,-13 - 47: 17,0 - 48: 17,0 - 49: 6,15 - 190: 53,-12 - 227: -25,-12 - 234: -27,-24 - 235: -27,-22 + 39: 17,-12 + 42: 27,-13 + 43: 27,-13 + 45: 17,0 + 46: 17,0 + 47: 6,15 + 186: 53,-12 + 223: -25,-12 + 230: -27,-24 + 231: -27,-22 - node: cleanable: True color: '#FFFFFFFF' id: DirtLight decals: - 53: 5,16 - 56: 1,2 - 64: -6,-1 - 94: 57,9 - 95: 56,9 - 96: 57,10 - 97: 57,10 - 101: 60,9 - 102: 60,8 - 103: 57,15 - 112: 45,6 - 113: 54,8 - 114: 54,8 - 115: 53,8 - 120: 47,20 - 121: 50,23 - 122: 47,23 - 123: 47,23 - 137: 29,16 - 198: 61,-9 - 199: 56,-46 - 203: 44,-38 - 204: 45,-38 - 205: 45,-38 - 210: 64,-54 - 301: -38,-83 - 302: -39,-83 - 303: -41,-81 - 304: -41,-83 - 305: -41,-83 - 324: -42,-68 - 325: -43,-77 - 326: -42,-77 - 334: -54,-80 - 335: -53,-81 - 400: -55,-8 - 401: -37,0 - 405: -14,1 - 406: -20,9 - 615: 3,5 - 616: 4,5 - 617: 4,5 - 620: -18,46 - 621: -16,46 - 625: -18,50 - 626: -18,50 + 51: 5,16 + 54: 1,2 + 62: -6,-1 + 90: 57,9 + 91: 56,9 + 92: 57,10 + 93: 57,10 + 97: 60,9 + 98: 60,8 + 99: 57,15 + 108: 45,6 + 109: 54,8 + 110: 54,8 + 111: 53,8 + 116: 47,20 + 117: 50,23 + 118: 47,23 + 119: 47,23 + 133: 29,16 + 194: 61,-9 + 195: 56,-46 + 199: 44,-38 + 200: 45,-38 + 201: 45,-38 + 206: 64,-54 + 297: -38,-83 + 298: -39,-83 + 299: -41,-81 + 300: -41,-83 + 301: -41,-83 + 320: -42,-68 + 321: -43,-77 + 322: -42,-77 + 330: -54,-80 + 331: -53,-81 + 396: -55,-8 + 606: 3,5 + 607: 4,5 + 608: 4,5 + 611: -18,46 + 612: -16,46 + 616: -18,50 + 617: -18,50 - node: cleanable: True color: '#D4D4D496' id: DirtMedium decals: - 67: -5,-27 - 80: 21,21 - 81: 20,21 - 238: -8,-47 - 245: -7,-65 - 246: -7,-65 - 247: -6,-67 + 65: -5,-27 + 76: 21,21 + 77: 20,21 + 234: -8,-47 + 241: -7,-65 + 242: -7,-65 + 243: -6,-67 - node: cleanable: True color: '#D4D4D4D6' id: DirtMedium decals: - 3440: 30,-1 - 3441: 27,-2 + 3412: 30,-1 + 3413: 27,-2 - node: color: '#FFFFFFFF' id: DirtMedium decals: - 36: 13,-27 - 39: 15,-24 - 40: 21,-11 - 43: 27,-11 - 51: 6,14 - 188: 58,-12 - 232: -26,-24 - 233: -25,-22 + 37: 15,-24 + 38: 21,-11 + 41: 27,-11 + 49: 6,14 + 184: 58,-12 + 228: -26,-24 + 229: -25,-22 - node: cleanable: True color: '#FFFFFFFF' id: DirtMedium decals: - 55: 1,5 - 57: 0,0 - 98: 56,10 - 99: 59,10 - 100: 60,10 - 116: 53,6 - 117: 49,20 - 118: 49,21 - 119: 46,21 - 136: 29,20 - 200: 51,-45 - 201: 49,-47 - 206: 42,-39 - 306: -41,-83 - 307: -41,-83 - 308: -41,-83 - 309: -40,-82 - 310: -47,-74 - 311: -46,-75 - 312: -46,-76 - 313: -43,-71 + 53: 1,5 + 55: 0,0 + 94: 56,10 + 95: 59,10 + 96: 60,10 + 112: 53,6 + 113: 49,20 + 114: 49,21 + 115: 46,21 + 132: 29,20 + 196: 51,-45 + 197: 49,-47 + 202: 42,-39 + 302: -41,-83 + 303: -41,-83 + 304: -41,-83 + 305: -40,-82 + 306: -47,-74 + 307: -46,-75 + 308: -46,-76 + 309: -43,-71 + 310: -42,-72 + 311: -42,-72 + 312: -42,-72 + 313: -42,-72 314: -42,-72 315: -42,-72 316: -42,-72 317: -42,-72 - 318: -42,-72 - 319: -42,-72 - 320: -42,-72 - 321: -42,-72 - 322: -41,-73 - 323: -43,-73 - 327: -41,-77 - 330: -48,-78 - 331: -47,-78 - 332: -55,-79 - 333: -56,-80 - 338: -56,-72 - 339: -55,-73 - 340: -57,-77 - 341: -57,-78 - 342: -51,-77 - 402: -39,0 - 404: -14,-3 - 618: -16,31 - 622: -8,45 + 318: -41,-73 + 319: -43,-73 + 323: -41,-77 + 326: -48,-78 + 327: -47,-78 + 328: -55,-79 + 329: -56,-80 + 334: -56,-72 + 335: -55,-73 + 336: -57,-77 + 337: -57,-78 + 338: -51,-77 + 609: -16,31 + 613: -8,45 - node: color: '#FFFFFFFF' id: FlowersBROne decals: - 3880: -4.2428155,17.233944 - 3881: -8.086565,18.640194 + 3852: -4.2428155,17.233944 + 3853: -8.086565,18.640194 - node: color: '#FFFFFFFF' id: Flowersbr1 decals: 19: 23,-20 - 2987: 5.027538,0.48506033 - 2988: 5.996288,0.81318533 - 2989: 6.683788,0.23506033 - 3882: -8.649066,17.499569 - 3883: -5.2115655,18.499569 + 2963: 5.027538,0.48506033 + 2964: 5.996288,0.81318533 + 2965: 6.683788,0.23506033 + 3854: -8.649066,17.499569 + 3855: -5.2115655,18.499569 - node: color: '#FFFFFFFF' id: Flowersbr2 decals: 18: 22,-20 - 488: -7.9438224,54.971848 - 489: -7.7875724,53.628098 - 490: -7.7250724,54.393723 - 491: -5.9438224,54.393723 - 492: -6.4438224,53.815598 - 493: -6.0844474,53.346848 - 494: -9.631323,52.971848 - 495: -10.225073,51.006943 - 496: -9.959448,51.163193 - 497: -11.115698,50.303818 - 498: -7.3188224,49.847054 - 499: -6.0531974,48.972054 - 500: -7.7406974,47.972054 - 501: -4.0050426,49.72508 - 502: -4.3175426,48.72508 - 503: -3.1144176,47.88133 - 504: -5.0675426,53.662476 - 505: -4.1456676,53.1781 - 3085: 66.015175,-7.813498 - 3086: 66.046425,-8.6728735 - 3087: 66.140175,-10.1103735 - 3472: 31.822735,-40.888805 + 479: -7.9438224,54.971848 + 480: -7.7875724,53.628098 + 481: -7.7250724,54.393723 + 482: -5.9438224,54.393723 + 483: -6.4438224,53.815598 + 484: -6.0844474,53.346848 + 485: -9.631323,52.971848 + 486: -10.225073,51.006943 + 487: -9.959448,51.163193 + 488: -11.115698,50.303818 + 489: -7.3188224,49.847054 + 490: -6.0531974,48.972054 + 491: -7.7406974,47.972054 + 492: -4.0050426,49.72508 + 493: -4.3175426,48.72508 + 494: -3.1144176,47.88133 + 495: -5.0675426,53.662476 + 496: -4.1456676,53.1781 + 3058: 66.015175,-7.813498 + 3059: 66.046425,-8.6728735 + 3060: 66.140175,-10.1103735 + 3444: 31.822735,-40.888805 - node: color: '#FFFFFFFF' id: Flowersbr3 decals: - 2990: 5.761913,0.21943533 - 2991: 11.324412,0.73506033 - 2992: 10.449412,0.29756033 - 2993: 11.465037,0.25068533 - 3447: -40.519615,3.8355665 - 3448: -41.269615,3.0543165 - 3449: -40.25399,5.8355665 + 2966: 5.761913,0.21943533 + 2967: 11.324412,0.73506033 + 2968: 10.449412,0.29756033 + 2969: 11.465037,0.25068533 + 3419: -40.519615,3.8355665 + 3420: -41.269615,3.0543165 + 3421: -40.25399,5.8355665 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: 21: 26,-20 22: 29,-20 - 3458: -35.06649,3.0386915 - 3459: -36.59774,5.4761915 - 3460: -32.2259,5.128909 - 3461: -32.647774,3.019534 - 3462: -31.054026,2.972659 + 3430: -35.06649,3.0386915 + 3431: -36.59774,5.4761915 + 3432: -32.2259,5.128909 + 3433: -32.647774,3.019534 + 3434: -31.054026,2.972659 - node: color: '#FFFFFFFF' id: Flowerspv2 decals: - 3543: 14.548721,-83.70324 - 3544: 14.283096,-84.48449 - 3545: 15.423721,-84.906364 - 3546: 15.876846,-83.750114 + 3515: 14.548721,-83.70324 + 3516: 14.283096,-84.48449 + 3517: 15.423721,-84.906364 + 3518: 15.876846,-83.750114 - node: color: '#FFFFFFFF' id: Flowersy1 decals: 20: 21,-20 23: 28,-20 - 161: 53.97966,-9.7814665 - 162: 53.38591,-8.9064665 - 163: 53.995285,-8.468966 - 3547: 14.220596,-83.85949 - 3548: 14.220596,-85.01574 - 3549: 15.892471,-84.45324 - 3550: 15.642471,-83.32824 - 3589: 45.435932,-87.78455 - 3590: 45.123432,-85.4408 + 157: 53.97966,-9.7814665 + 158: 53.38591,-8.9064665 + 159: 53.995285,-8.468966 + 3519: 14.220596,-83.85949 + 3520: 14.220596,-85.01574 + 3521: 15.892471,-84.45324 + 3522: 15.642471,-83.32824 + 3561: 45.435932,-87.78455 + 3562: 45.123432,-85.4408 - node: color: '#FFFFFFFF' id: Flowersy2 decals: - 511: -3.198104,50.273075 - 512: -5.010604,52.366825 - 513: -8.291855,53.364235 - 514: -6.135604,55.832985 - 515: -10.65123,52.966118 - 516: -7.307479,50.772125 - 517: -9.46373,48.678375 + 502: -3.198104,50.273075 + 503: -5.010604,52.366825 + 504: -8.291855,53.364235 + 505: -6.135604,55.832985 + 506: -10.65123,52.966118 + 507: -7.307479,50.772125 + 508: -9.46373,48.678375 - node: color: '#2B3F4A22' id: FullTileOverlayGreyscale decals: - 3974: -31,-4 - 3975: -29,-3 - 3976: -31,-7 + 3921: -31,-4 + 3922: -29,-3 + 3923: -31,-7 - node: color: '#D4D4D496' id: FullTileOverlayGreyscale decals: - 600: 48,48 - 601: 47,48 - 602: 46,48 - 603: 45,48 - 604: 48,50 - 605: 47,50 - 606: 48,46 - 607: 47,46 - 608: 46,46 - 609: 46,44 - 610: 45,44 + 591: 48,48 + 592: 47,48 + 593: 46,48 + 594: 45,48 + 595: 48,50 + 596: 47,50 + 597: 48,46 + 598: 47,46 + 599: 46,46 + 600: 46,44 + 601: 45,44 - node: color: '#DE3A3A96' id: FullTileOverlayGreyscale decals: - 588: 48,49 - 589: 47,49 - 590: 46,49 - 591: 45,49 - 592: 49,47 - 593: 48,47 - 594: 46,47 - 595: 45,47 - 596: 49,45 - 597: 48,45 - 598: 46,45 - 599: 45,45 + 579: 48,49 + 580: 47,49 + 581: 46,49 + 582: 45,49 + 583: 49,47 + 584: 48,47 + 585: 46,47 + 586: 45,47 + 587: 49,45 + 588: 48,45 + 589: 46,45 + 590: 45,45 - node: color: '#FFFFFFFF' id: Grassa1 decals: - 3442: -40.269615,3.5386915 - 3443: -41.50399,4.0230665 - 3463: -30.3509,4.378909 - 3464: -29.50715,3.753909 - 3465: -30.429026,5.613284 - 3466: -31.5384,5.925784 - 3467: -32.3509,5.816409 - 3468: -29.6634,5.738284 - 3469: -32.710274,3.2350059 - 3470: 30.932108,-40.326305 - 3471: 31.697735,-40.576305 - 3862: -8.570941,18.515194 - 3863: -7.4146905,18.405819 - 3864: -7.0709405,17.405819 - 3865: -7.9771905,18.515194 - 3866: -8.649066,17.233944 - 3867: -5.2115655,17.890194 - 3868: -5.6959405,17.249569 - 3869: -4.1803155,17.265194 - 3870: -5.2115655,18.671444 + 3414: -40.269615,3.5386915 + 3415: -41.50399,4.0230665 + 3435: -30.3509,4.378909 + 3436: -29.50715,3.753909 + 3437: -30.429026,5.613284 + 3438: -31.5384,5.925784 + 3439: -32.3509,5.816409 + 3440: -29.6634,5.738284 + 3441: -32.710274,3.2350059 + 3442: 30.932108,-40.326305 + 3443: 31.697735,-40.576305 + 3834: -8.570941,18.515194 + 3835: -7.4146905,18.405819 + 3836: -7.0709405,17.405819 + 3837: -7.9771905,18.515194 + 3838: -8.649066,17.233944 + 3839: -5.2115655,17.890194 + 3840: -5.6959405,17.249569 + 3841: -4.1803155,17.265194 + 3842: -5.2115655,18.671444 - node: color: '#FFFFFFFF' id: Grassa2 decals: - 3584: 32.48763,-86.22205 - 3585: 32.909504,-86.76893 - 3586: 44.967182,-87.42518 - 3587: 45.748432,-86.90955 - 3588: 44.967182,-86.36268 + 3556: 32.48763,-86.22205 + 3557: 32.909504,-86.76893 + 3558: 44.967182,-87.42518 + 3559: 45.748432,-86.90955 + 3560: 44.967182,-86.36268 - node: color: '#FFFFFFFF' id: Grassa3 decals: - 433: 12,54 - 434: 11.417037,54.859276 - 435: 8.745162,55.046776 - 436: 11.057662,53.3749 - 437: 10.995162,55.78115 - 438: 9.995162,55.1249 - 439: 12.135787,53.1874 - 440: 11.073287,52.3749 - 441: 9.463912,52.359276 - 442: 8.979537,54.046776 - 443: 6.2227497,52.7499 - 444: 7.0196247,54.3124 - 445: 7.2539997,55.3749 - 446: 8.675875,53.1874 + 424: 12,54 + 425: 11.417037,54.859276 + 426: 8.745162,55.046776 + 427: 11.057662,53.3749 + 428: 10.995162,55.78115 + 429: 9.995162,55.1249 + 430: 12.135787,53.1874 + 431: 11.073287,52.3749 + 432: 9.463912,52.359276 + 433: 8.979537,54.046776 + 434: 6.2227497,52.7499 + 435: 7.0196247,54.3124 + 436: 7.2539997,55.3749 + 437: 8.675875,53.1874 - node: color: '#FFFFFFFF' id: Grassa4 decals: - 3450: -36.175865,3.0074415 - 3451: -35.144615,3.8199415 - 3452: -35.394615,4.5855665 - 3453: -34.94149,4.6636915 - 3454: -36.59774,5.5230665 + 3422: -36.175865,3.0074415 + 3423: -35.144615,3.8199415 + 3424: -35.394615,4.5855665 + 3425: -34.94149,4.6636915 + 3426: -36.59774,5.5230665 - node: color: '#FFFFFFFF' id: Grassb2 decals: - 3089: -11.879698,6.0478287 + 3062: -11.879698,6.0478287 - node: color: '#FFFFFFFF' id: Grassb5 decals: - 3871: -5.8053155,18.655819 - 3872: -7.0553155,18.890194 - 3873: -7.2584405,17.108944 - 3874: -7.2740655,17.937069 - 3875: -8.633441,18.968319 - 3876: -5.8834405,17.124569 - 3877: -5.9303155,19.077694 - 3878: -4.1021905,17.968319 - 3879: -4.9615655,17.671444 + 3843: -5.8053155,18.655819 + 3844: -7.0553155,18.890194 + 3845: -7.2584405,17.108944 + 3846: -7.2740655,17.937069 + 3847: -8.633441,18.968319 + 3848: -5.8834405,17.124569 + 3849: -5.9303155,19.077694 + 3850: -4.1021905,17.968319 + 3851: -4.9615655,17.671444 - node: color: '#FFFFFFFF' id: Grassc1 decals: - 447: 11.441196,54.4999 - 448: 12.534946,54.03115 - 449: 12.050571,54.796776 - 450: 12.363071,54.359276 - 451: 12.394321,52.890526 - 452: 11.706821,52.28115 - 453: 11.316196,52.078026 - 454: 10.800571,53.296776 - 455: 11.441196,53.921776 - 456: 10.675571,55.84365 - 457: 10.012899,54.390526 - 458: 9.716024,53.265526 - 459: 10.559774,52.359276 - 460: 8.669149,54.109276 - 461: 7.621642,52.84365 - 462: 6.5747676,52.90615 - 463: 5.9810176,54.171776 - 464: 7.4810176,55.671776 - 465: 9.465392,55.265526 - 3444: -41.832115,3.1480665 - 3445: -42.082115,4.5074415 - 3446: -40.425865,5.7261915 - 3455: -36.44149,5.3668165 - 3456: -36.644615,3.3824415 - 3457: -35.37899,3.1168165 + 438: 11.441196,54.4999 + 439: 12.534946,54.03115 + 440: 12.050571,54.796776 + 441: 12.363071,54.359276 + 442: 12.394321,52.890526 + 443: 11.706821,52.28115 + 444: 11.316196,52.078026 + 445: 10.800571,53.296776 + 446: 11.441196,53.921776 + 447: 10.675571,55.84365 + 448: 10.012899,54.390526 + 449: 9.716024,53.265526 + 450: 10.559774,52.359276 + 451: 8.669149,54.109276 + 452: 7.621642,52.84365 + 453: 6.5747676,52.90615 + 454: 5.9810176,54.171776 + 455: 7.4810176,55.671776 + 456: 9.465392,55.265526 + 3416: -41.832115,3.1480665 + 3417: -42.082115,4.5074415 + 3418: -40.425865,5.7261915 + 3427: -36.44149,5.3668165 + 3428: -36.644615,3.3824415 + 3429: -35.37899,3.1168165 - node: color: '#FFFFFFFF' id: Grassc4 decals: - 396: -5.001564,4.018616 - 3088: -12.004698,6.9072037 + 392: -5.001564,4.018616 + 3061: -12.004698,6.9072037 - node: color: '#FFFFFFFF' id: Grasse2 decals: - 397: -4.6178575,4.009773 - 540: -6.076791,52.85032 - 541: -5.483041,52.022194 - 542: -5.623666,52.615944 - 543: -7.529916,54.67404 - 544: -7.592416,53.908417 - 545: -7.717416,56.181545 - 546: -7.623666,55.88467 - 547: -6.420541,56.25967 - 548: -6.311166,55.72842 - 549: -6.233041,55.10342 - 550: -6.311166,54.47842 - 551: -6.342416,54.94717 - 552: -5.983041,49.3346 - 553: -6.498666,49.8971 - 554: -5.764291,49.2096 - 555: -5.639291,48.05335 - 556: -9.6108055,52.803352 - 557: -9.0014305,52.881477 - 558: -10.1733055,52.725227 - 559: -10.9858055,52.709602 - 560: -11.0483055,52.818977 - 561: -10.1733055,52.772102 - 562: -4.410207,50.704334 - 563: -4.160207,49.860584 - 564: -4.253957,48.891834 - 565: -4.253957,49.298084 - 566: -4.160207,48.016834 - 567: -3.5221872,52.73997 - 568: -4.147187,52.02122 - 569: -5.303437,55.786846 - 570: -4.225312,56.23997 - 571: -2.9753122,53.286846 - 572: -3.0690622,51.286846 - 573: -8.428438,54.974346 - 574: -8.928438,56.05247 - 575: -10.678438,55.30247 - 576: -10.850313,53.86497 - 3850: -8.633441,18.608944 - 3851: -8.617816,17.921444 - 3852: -7.9146905,18.593319 - 3853: -7.3209405,18.265194 - 3854: -4.5709405,18.452694 - 3855: -5.6178155,17.983944 - 3856: -5.7896905,17.421444 - 3857: -4.5084405,17.358944 + 393: -4.6178575,4.009773 + 531: -6.076791,52.85032 + 532: -5.483041,52.022194 + 533: -5.623666,52.615944 + 534: -7.529916,54.67404 + 535: -7.592416,53.908417 + 536: -7.717416,56.181545 + 537: -7.623666,55.88467 + 538: -6.420541,56.25967 + 539: -6.311166,55.72842 + 540: -6.233041,55.10342 + 541: -6.311166,54.47842 + 542: -6.342416,54.94717 + 543: -5.983041,49.3346 + 544: -6.498666,49.8971 + 545: -5.764291,49.2096 + 546: -5.639291,48.05335 + 547: -9.6108055,52.803352 + 548: -9.0014305,52.881477 + 549: -10.1733055,52.725227 + 550: -10.9858055,52.709602 + 551: -11.0483055,52.818977 + 552: -10.1733055,52.772102 + 553: -4.410207,50.704334 + 554: -4.160207,49.860584 + 555: -4.253957,48.891834 + 556: -4.253957,49.298084 + 557: -4.160207,48.016834 + 558: -3.5221872,52.73997 + 559: -4.147187,52.02122 + 560: -5.303437,55.786846 + 561: -4.225312,56.23997 + 562: -2.9753122,53.286846 + 563: -3.0690622,51.286846 + 564: -8.428438,54.974346 + 565: -8.928438,56.05247 + 566: -10.678438,55.30247 + 567: -10.850313,53.86497 + 3822: -8.633441,18.608944 + 3823: -8.617816,17.921444 + 3824: -7.9146905,18.593319 + 3825: -7.3209405,18.265194 + 3826: -4.5709405,18.452694 + 3827: -5.6178155,17.983944 + 3828: -5.7896905,17.421444 + 3829: -4.5084405,17.358944 - node: color: '#FFFFFFFF' id: Grasse3 decals: - 466: 12.153599,54.59365 - 467: 11.419224,55.40615 - 468: 12.508601,53.68905 - 469: 12.571101,52.892174 - 470: 11.789851,52.392174 - 471: 12.117976,52.5328 - 472: 12.852351,53.9703 - 3858: -7.1178155,17.671444 - 3859: -4.1646905,18.749569 + 457: 12.153599,54.59365 + 458: 11.419224,55.40615 + 459: 12.508601,53.68905 + 460: 12.571101,52.892174 + 461: 11.789851,52.392174 + 462: 12.117976,52.5328 + 463: 12.852351,53.9703 + 3830: -7.1178155,17.671444 + 3831: -4.1646905,18.749569 - node: color: '#507FECFF' id: GrayConcreteTrimCornerNe decals: - 4066: 26,3 + 4013: 26,3 - node: color: '#507FECFF' id: GrayConcreteTrimCornerNw decals: - 4067: 21,3 + 4014: 21,3 - node: color: '#507FECFF' id: GrayConcreteTrimCornerSe decals: - 4068: 26,-2 + 4015: 26,-2 - node: color: '#507FECFF' id: GrayConcreteTrimCornerSw decals: - 4061: 21,-2 + 4008: 21,-2 - node: color: '#507FECFF' id: GrayConcreteTrimLineE decals: - 4062: 26,-1 - 4063: 26,0 - 4064: 26,1 - 4065: 26,2 + 4009: 26,-1 + 4010: 26,0 + 4011: 26,1 + 4012: 26,2 - node: color: '#507FECFF' id: GrayConcreteTrimLineN decals: - 4069: 22,3 - 4070: 23,3 - 4071: 24,3 - 4072: 25,3 + 4016: 22,3 + 4017: 23,3 + 4018: 24,3 + 4019: 25,3 - node: color: '#507FECFF' id: GrayConcreteTrimLineS decals: - 4077: 22,-2 - 4078: 23,-2 - 4079: 24,-2 - 4080: 25,-2 + 4024: 22,-2 + 4025: 23,-2 + 4026: 24,-2 + 4027: 25,-2 - node: color: '#507FECFF' id: GrayConcreteTrimLineW decals: - 4073: 21,2 - 4074: 21,1 - 4075: 21,0 - 4076: 21,-1 + 4020: 21,2 + 4021: 21,1 + 4022: 21,0 + 4023: 21,-1 - node: color: '#50AF7F6F' id: HalfTileOverlayGreyscale decals: - 3802: -8,12 - 3803: -10,12 + 3774: -8,12 + 3775: -10,12 - node: color: '#D381C996' id: HalfTileOverlayGreyscale decals: - 977: 62,-49 + 968: 62,-49 - node: color: '#D4D4D496' id: HalfTileOverlayGreyscale @@ -1888,54 +1887,54 @@ entities: color: '#EFB34150' id: HalfTileOverlayGreyscale decals: - 3076: -16,-5 + 3049: -16,-5 - node: color: '#EFB3415A' id: HalfTileOverlayGreyscale decals: - 281: -19,-5 - 282: -22,-5 + 277: -19,-5 + 278: -22,-5 - node: color: '#EFB34160' id: HalfTileOverlayGreyscale decals: - 3051: -24,-5 - 3052: -23,-5 - 3053: -21,-5 - 3054: -20,-5 - 3055: -18,-5 - 3056: -17,-5 + 3024: -24,-5 + 3025: -23,-5 + 3026: -21,-5 + 3027: -20,-5 + 3028: -18,-5 + 3029: -17,-5 - node: color: '#FFFFFF79' id: HalfTileOverlayGreyscale decals: - 636: 6,-62 - 637: 5,-62 - 638: 4,-62 - 639: 3,-62 - 640: 2,-62 - 641: 1,-62 - 642: 0,-62 - 643: -1,-62 - 644: -2,-62 - 645: -3,-62 - 646: -4,-62 - 647: -5,-62 - 648: -6,-62 - 649: -7,-62 - 650: -8,-62 - 651: -9,-62 - 652: -10,-62 - 653: -12,-62 - 654: -11,-62 - 655: -13,-62 - 656: -14,-62 - 657: -15,-62 - 658: -16,-62 - 659: -17,-62 - 660: -18,-62 - 661: -19,-62 - 662: -20,-62 + 627: 6,-62 + 628: 5,-62 + 629: 4,-62 + 630: 3,-62 + 631: 2,-62 + 632: 1,-62 + 633: 0,-62 + 634: -1,-62 + 635: -2,-62 + 636: -3,-62 + 637: -4,-62 + 638: -5,-62 + 639: -6,-62 + 640: -7,-62 + 641: -8,-62 + 642: -9,-62 + 643: -10,-62 + 644: -12,-62 + 645: -11,-62 + 646: -13,-62 + 647: -14,-62 + 648: -15,-62 + 649: -16,-62 + 650: -17,-62 + 651: -18,-62 + 652: -19,-62 + 653: -20,-62 - node: color: '#6C896FAB' id: HalfTileOverlayGreyscale180 @@ -1947,13 +1946,13 @@ entities: color: '#D381C996' id: HalfTileOverlayGreyscale180 decals: - 976: 62,-45 + 967: 62,-45 - node: color: '#D4D4D47C' id: HalfTileOverlayGreyscale180 decals: - 3375: 5,-60 - 3376: 6,-60 + 3347: 5,-60 + 3348: 6,-60 - node: color: '#D4D4D496' id: HalfTileOverlayGreyscale180 @@ -1966,30 +1965,30 @@ entities: color: '#EFB3415A' id: HalfTileOverlayGreyscale180 decals: - 280: -16,6 - 2354: -21,6 - 2355: -24,6 + 276: -16,6 + 2336: -21,6 + 2337: -24,6 - node: color: '#EFB34160' id: HalfTileOverlayGreyscale180 decals: - 3041: -22,6 - 3042: -23,6 - 3043: -20,6 + 3014: -22,6 + 3015: -23,6 + 3016: -20,6 - node: color: '#EFB34163' id: HalfTileOverlayGreyscale180 decals: - 2998: -19,6 - 2999: -18,6 - 3000: -17,6 + 2974: -19,6 + 2975: -18,6 + 2976: -17,6 - node: color: '#FFFFFF79' id: HalfTileOverlayGreyscale180 decals: - 666: -20,-60 - 667: -19,-60 - 668: -18,-60 + 657: -20,-60 + 658: -19,-60 + 659: -18,-60 - node: color: '#221F2E28' id: HalfTileOverlayGreyscale270 @@ -1999,7 +1998,7 @@ entities: color: '#D381C996' id: HalfTileOverlayGreyscale270 decals: - 983: 64,-47 + 974: 64,-47 - node: color: '#D4D4D496' id: HalfTileOverlayGreyscale270 @@ -2010,24 +2009,24 @@ entities: color: '#EFB34153' id: HalfTileOverlayGreyscale270 decals: - 3070: -15,5 + 3043: -15,5 - node: color: '#EFB3415A' id: HalfTileOverlayGreyscale270 decals: - 267: -15,-1 - 268: -15,-2 - 269: -15,-3 - 270: -15,0 - 271: -15,1 - 272: -15,2 - 273: -15,3 - 274: -15,4 + 263: -15,-1 + 264: -15,-2 + 265: -15,-3 + 266: -15,0 + 267: -15,1 + 268: -15,2 + 269: -15,3 + 270: -15,4 - node: color: '#EFB34160' id: HalfTileOverlayGreyscale270 decals: - 3049: -15,-4 + 3022: -15,-4 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale90 @@ -2038,7 +2037,7 @@ entities: color: '#D381C996' id: HalfTileOverlayGreyscale90 decals: - 982: 60,-47 + 973: 60,-47 - node: color: '#D4D4D496' id: HalfTileOverlayGreyscale90 @@ -2049,4192 +2048,4189 @@ entities: color: '#EFB3415A' id: HalfTileOverlayGreyscale90 decals: - 275: -25,3 - 276: -25,2 - 277: -25,1 - 278: -25,-3 - 279: -25,-4 - 2353: -25,-2 + 271: -25,3 + 272: -25,2 + 273: -25,1 + 274: -25,-3 + 275: -25,-4 + 2335: -25,-2 - node: color: '#EFB34160' id: HalfTileOverlayGreyscale90 decals: - 3045: -25,5 - 3046: -25,4 - 3047: -25,0 - 3048: -25,-1 + 3018: -25,5 + 3019: -25,4 + 3020: -25,0 + 3021: -25,-1 - node: color: '#FFFFFF79' id: HalfTileOverlayGreyscale90 decals: - 664: -21,-61 + 655: -21,-61 - node: color: '#FFFFFFFF' id: HatchSmall decals: - 3205: 51,-56 + 3177: 51,-56 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: LoadingArea decals: - 583: -13,70 - 584: -14,70 - 585: -22,70 - 586: -23,70 + 574: -13,70 + 575: -14,70 + 576: -22,70 + 577: -23,70 - node: color: '#EFB34196' id: MiniTileCheckerAOverlay decals: - 3304: -38,-9 - 3305: -37,-9 - 3306: -37,-10 - 3307: -38,-10 - 3308: -38,-11 - 3309: -37,-11 - 3310: -38,-12 - 3311: -37,-12 - 3312: -38,-8 - 3313: -37,-8 - 3314: -38,-7 - 3315: -37,-7 + 3276: -38,-9 + 3277: -37,-9 + 3278: -37,-10 + 3279: -38,-10 + 3280: -38,-11 + 3281: -37,-11 + 3282: -38,-12 + 3283: -37,-12 + 3284: -38,-8 + 3285: -37,-8 + 3286: -38,-7 + 3287: -37,-7 - node: color: '#D4D4D406' id: MiniTileOverlay decals: - 4110: -41,15 - 4111: -40,15 - 4112: -40,14 - 4113: -41,14 - 4116: -37,15 - 4117: -36,15 - 4118: -36,14 - 4119: -37,14 - 4120: -37,13 - 4121: -36,13 - 4128: -41,13 - 4129: -40,13 + 4050: -41,15 + 4051: -40,15 + 4052: -40,14 + 4053: -41,14 + 4054: -37,15 + 4055: -36,15 + 4056: -36,14 + 4057: -37,14 + 4058: -37,13 + 4059: -36,13 + 4060: -41,13 + 4061: -40,13 - node: color: '#D4D4D4C7' id: MiniTileSteelBox decals: - 3057: -20,-6 - 3058: -16,-6 - 3059: -20,7 + 3030: -20,-6 + 3031: -16,-6 + 3032: -20,7 - node: color: '#D4D4D4D3' id: MiniTileSteelBox decals: - 2316: -24,7 - 2317: -26,3 - 2318: -26,-2 - 2319: -24,-6 - 2320: -14,-2 - 2321: -14,3 - 2322: -16,7 - 2327: 6,-27 - 2328: 3,-27 - 2329: 4,-43 - 2330: 0,-43 - 2331: -10,-43 - 2332: -14,-43 - 2333: -5,-27 + 2298: -24,7 + 2299: -26,3 + 2300: -26,-2 + 2301: -24,-6 + 2302: -14,-2 + 2303: -14,3 + 2304: -16,7 + 2309: 6,-27 + 2310: 3,-27 + 2311: 4,-43 + 2312: 0,-43 + 2313: -10,-43 + 2314: -14,-43 + 2315: -5,-27 - node: color: '#C8C8C8FF' id: MiniTileSteelCornerNe decals: - 4101: -19,-10 + 4047: -19,-10 - node: color: '#D4D4D4CD' id: MiniTileSteelCornerNe decals: - 3263: 18,7 + 3235: 18,7 - node: color: '#D4D4D4D3' id: MiniTileSteelCornerNe decals: - 1062: 36,-17 - 1063: 37,-18 - 1119: 39,-42 - 1123: 36,-40 - 1140: 20,-40 - 1159: 34,-59 - 1169: 26,-46 - 1212: 41,-59 - 1251: 4,-41 - 1253: 6,-42 - 1280: -19,-41 - 1286: -18,-42 - 1294: -15,-26 - 1330: -4,-24 - 1349: -3,-32 - 1367: -2,-26 - 1455: -13,8 - 1456: -19,13 - 1461: -19,31 - 1499: -29,1 - 1532: -46,1 - 1537: -45,8 - 1591: -15,47 - 1602: -17,51 - 1621: -22,67 - 1648: -4,-4 - 1708: 1,52 - 1738: 1,59 - 1770: -13,67 - 1835: 30,8 - 1870: 34,8 - 1912: 30,-5 - 1957: 54,2 - 2016: 65,-6 - 2023: 53,-5 - 2055: 16,-21 - 2113: 9,-26 - 2114: 36,-21 - 2163: -3,-41 - 2168: -4,-26 - 2241: 14,1 - 2242: 4,1 - 2243: -3,1 + 1053: 36,-17 + 1054: 37,-18 + 1110: 39,-42 + 1114: 36,-40 + 1131: 20,-40 + 1150: 34,-59 + 1160: 26,-46 + 1203: 41,-59 + 1242: 4,-41 + 1244: 6,-42 + 1271: -19,-41 + 1277: -18,-42 + 1285: -15,-26 + 1321: -4,-24 + 1340: -3,-32 + 1358: -2,-26 + 1437: -13,8 + 1438: -19,13 + 1443: -19,31 + 1481: -29,1 + 1514: -46,1 + 1519: -45,8 + 1573: -15,47 + 1584: -17,51 + 1603: -22,67 + 1630: -4,-4 + 1690: 1,52 + 1720: 1,59 + 1752: -13,67 + 1817: 30,8 + 1852: 34,8 + 1894: 30,-5 + 1939: 54,2 + 1998: 65,-6 + 2005: 53,-5 + 2037: 16,-21 + 2095: 9,-26 + 2096: 36,-21 + 2145: -3,-41 + 2150: -4,-26 + 2223: 14,1 + 2224: 4,1 + 2225: -3,1 - node: color: '#DE3A3A96' id: MiniTileSteelCornerNe decals: - 2801: 18,23 + 2779: 18,23 - node: color: '#88EFB1D9' id: MiniTileSteelCornerNw decals: - 3078: -28,-78 + 3051: -28,-78 - node: color: '#C8C8C8FF' id: MiniTileSteelCornerNw decals: - 4100: -21,-10 + 4046: -21,-10 - node: color: '#D4D4D4AE' id: MiniTileSteelCornerNw decals: - 3266: 33,-40 + 3238: 33,-40 - node: color: '#D4D4D4B4' id: MiniTileSteelCornerNw decals: - 3372: -7,-41 + 3344: -7,-41 - node: color: '#D4D4D4CD' id: MiniTileSteelCornerNw decals: - 3264: 16,7 + 3236: 16,7 - node: color: '#D4D4D4D3' id: MiniTileSteelCornerNw decals: - 1061: 14,-17 - 1139: 14,-40 - 1142: 8,-42 - 1162: 24,-56 - 1163: 24,-46 - 1215: 36,-59 - 1252: 1,-41 - 1267: -16,-42 - 1281: -21,-41 - 1295: -21,-26 - 1331: -6,-24 - 1370: -13,-26 - 1444: -27,8 - 1454: -17,8 - 1457: -21,13 - 1460: -21,31 - 1497: -44,1 - 1531: -48,1 - 1540: -50,8 - 1592: -19,47 - 1620: -23,67 - 1647: -6,-4 - 1709: -1,52 - 1727: -13,46 - 1750: -11,59 - 1768: -15,51 - 1769: -14,67 - 1826: 16,-6 - 1837: 20,8 - 1871: 32,8 - 1914: 20,-5 - 1939: 36,2 - 2021: 51,-5 - 2022: 49,-8 - 2053: 11,-26 - 2054: 14,-21 - 2112: 0,-26 - 2115: 34,-21 - 2167: -6,-26 - 2240: 13,1 - 2244: -1,1 - 2245: -11,1 + 1052: 14,-17 + 1130: 14,-40 + 1133: 8,-42 + 1153: 24,-56 + 1154: 24,-46 + 1206: 36,-59 + 1243: 1,-41 + 1258: -16,-42 + 1272: -21,-41 + 1286: -21,-26 + 1322: -6,-24 + 1361: -13,-26 + 1426: -27,8 + 1436: -17,8 + 1439: -21,13 + 1442: -21,31 + 1479: -44,1 + 1513: -48,1 + 1522: -50,8 + 1574: -19,47 + 1602: -23,67 + 1629: -6,-4 + 1691: -1,52 + 1709: -13,46 + 1732: -11,59 + 1750: -15,51 + 1751: -14,67 + 1808: 16,-6 + 1819: 20,8 + 1853: 32,8 + 1896: 20,-5 + 1921: 36,2 + 2003: 51,-5 + 2004: 49,-8 + 2035: 11,-26 + 2036: 14,-21 + 2094: 0,-26 + 2097: 34,-21 + 2149: -6,-26 + 2222: 13,1 + 2226: -1,1 + 2227: -11,1 - node: color: '#DE3A3A96' id: MiniTileSteelCornerNw decals: - 2802: 14,23 + 2780: 14,23 - node: color: '#C8C8C8FF' id: MiniTileSteelCornerSe decals: - 4096: -19,-23 + 4042: -19,-23 - node: color: '#D4D4D4D3' id: MiniTileSteelCornerSe decals: - 1060: 37,-19 - 1117: 39,-44 - 1164: 34,-61 - 1165: 32,-63 - 1166: 31,-64 - 1210: 41,-61 - 1211: 40,-69 - 1254: 6,-44 - 1277: -18,-44 - 1292: -15,-28 - 1293: -19,-39 - 1350: -3,-36 - 1356: -4,-39 - 1366: -2,-28 - 1402: -13,-7 - 1403: -23,-7 - 1495: -19,15 - 1498: -29,-1 - 1534: -46,-1 - 1538: -45,3 - 1590: -15,29 - 1600: -17,49 - 1649: -4,-22 - 1700: 1,44 - 1732: 1,54 - 1766: -13,50 - 1804: 18,-7 - 1836: 30,6 - 1853: 34,-7 - 1892: 26,-15 - 1913: 30,-7 - 1961: 54,-2 - 1962: 53,-3 - 2015: 65,-14 - 2017: 59,-15 - 2059: 16,-38 - 2111: 9,-28 - 2122: 36,-38 - 2165: -3,-44 - 2166: -4,-28 - 2236: 4,0 - 2237: -3,0 - 2238: 14,0 + 1051: 37,-19 + 1108: 39,-44 + 1155: 34,-61 + 1156: 32,-63 + 1157: 31,-64 + 1201: 41,-61 + 1202: 40,-69 + 1245: 6,-44 + 1268: -18,-44 + 1283: -15,-28 + 1284: -19,-39 + 1341: -3,-36 + 1347: -4,-39 + 1357: -2,-28 + 1384: -13,-7 + 1385: -23,-7 + 1477: -19,15 + 1480: -29,-1 + 1516: -46,-1 + 1520: -45,3 + 1572: -15,29 + 1582: -17,49 + 1631: -4,-22 + 1682: 1,44 + 1714: 1,54 + 1748: -13,50 + 1786: 18,-7 + 1818: 30,6 + 1835: 34,-7 + 1874: 26,-15 + 1895: 30,-7 + 1943: 54,-2 + 1944: 53,-3 + 1997: 65,-14 + 1999: 59,-15 + 2041: 16,-38 + 2093: 9,-28 + 2104: 36,-38 + 2147: -3,-44 + 2148: -4,-28 + 2218: 4,0 + 2219: -3,0 + 2220: 14,0 - node: color: '#DE3A3A96' id: MiniTileSteelCornerSe decals: - 2793: 18,19 + 2771: 18,19 - node: color: '#88EFB1D9' id: MiniTileSteelCornerSw decals: - 3079: -28,-81 + 3052: -28,-81 - node: color: '#C8C8C8FF' id: MiniTileSteelCornerSw decals: - 4097: -21,-23 + 4043: -21,-23 - node: color: '#D4D4D4C3' id: MiniTileSteelCornerSw decals: - 3384: -27,-7 + 3356: -27,-7 - node: color: '#D4D4D4D3' id: MiniTileSteelCornerSw decals: - 1083: 14,-19 - 1141: 8,-44 - 1160: 25,-61 - 1161: 24,-57 - 1167: 30,-64 - 1168: 29,-63 - 1170: 24,-54 - 1213: 38,-69 - 1214: 36,-61 - 1268: -16,-44 - 1278: -21,-44 - 1296: -21,-39 - 1357: -6,-39 - 1369: -13,-28 - 1433: -21,-7 - 1494: -21,15 - 1496: -44,-1 - 1536: -48,-1 - 1539: -50,3 - 1589: -17,29 - 1593: -19,40 - 1599: -19,49 - 1644: -23,50 - 1650: -6,-22 - 1728: -13,44 - 1733: -1,54 - 1751: -11,58 - 1767: -15,50 - 1827: 16,-7 - 1828: 16,-4 - 1838: 20,6 - 1854: 32,-7 - 1891: 24,-15 - 1915: 20,-7 - 1963: 50,-2 - 1964: 51,-3 - 1967: 36,0 - 2018: 54,-15 - 2019: 49,-10 - 2020: 51,-14 - 2056: 11,-28 - 2057: 14,-38 - 2110: 0,-28 - 2123: 34,-38 - 2164: -7,-44 - 2169: -6,-28 - 2239: 13,0 - 2246: -11,0 - 2247: -1,0 + 1074: 14,-19 + 1132: 8,-44 + 1151: 25,-61 + 1152: 24,-57 + 1158: 30,-64 + 1159: 29,-63 + 1161: 24,-54 + 1204: 38,-69 + 1205: 36,-61 + 1259: -16,-44 + 1269: -21,-44 + 1287: -21,-39 + 1348: -6,-39 + 1360: -13,-28 + 1415: -21,-7 + 1476: -21,15 + 1478: -44,-1 + 1518: -48,-1 + 1521: -50,3 + 1571: -17,29 + 1575: -19,40 + 1581: -19,49 + 1626: -23,50 + 1632: -6,-22 + 1710: -13,44 + 1715: -1,54 + 1733: -11,58 + 1749: -15,50 + 1809: 16,-7 + 1810: 16,-4 + 1820: 20,6 + 1836: 32,-7 + 1873: 24,-15 + 1897: 20,-7 + 1945: 50,-2 + 1946: 51,-3 + 1949: 36,0 + 2000: 54,-15 + 2001: 49,-10 + 2002: 51,-14 + 2038: 11,-28 + 2039: 14,-38 + 2092: 0,-28 + 2105: 34,-38 + 2146: -7,-44 + 2151: -6,-28 + 2221: 13,0 + 2228: -11,0 + 2229: -1,0 - node: color: '#DE3A3A96' id: MiniTileSteelCornerSw decals: - 2794: 14,19 + 2772: 14,19 - node: color: '#D4D4D4C7' id: MiniTileSteelInnerNe decals: - 3063: -19,7 + 3036: -19,7 - node: color: '#D4D4D4D3' id: MiniTileSteelInnerNe decals: - 1084: 36,-18 - 1156: 20,-42 - 1206: 26,-59 - 1256: 4,-42 - 1259: 36,-42 - 1285: -19,-42 - 1355: -4,-32 - 1645: -22,51 - 2046: 53,-6 - 2047: 52,-11 - 2153: 36,-26 + 1075: 36,-18 + 1147: 20,-42 + 1197: 26,-59 + 1247: 4,-42 + 1250: 36,-42 + 1276: -19,-42 + 1346: -4,-32 + 1627: -22,51 + 2028: 53,-6 + 2029: 52,-11 + 2135: 36,-26 - node: color: '#D4D4D4D6' id: MiniTileSteelInnerNe decals: - 3072: -25.018312,-5.498596 - 3073: -25.283937,-5.498596 - 3074: -25.502687,-5.498596 + 3045: -25.018312,-5.498596 + 3046: -25.283937,-5.498596 + 3047: -25.502687,-5.498596 - node: color: '#D4D4D4FF' id: MiniTileSteelInnerNe decals: - 3345: -39,-13 + 3317: -39,-13 - node: color: '#D4D4D4AE' id: MiniTileSteelInnerNw decals: - 3271: 33,-42 + 3243: 33,-42 - node: color: '#D4D4D4C0' id: MiniTileSteelInnerNw decals: - 3035: -14.760899,-5.480981 - 3036: -15.010899,-5.480981 - 3037: -14.526524,-5.480981 + 3008: -14.760899,-5.480981 + 3009: -15.010899,-5.480981 + 3010: -14.526524,-5.480981 - node: color: '#D4D4D4C7' id: MiniTileSteelInnerNw decals: - 3064: -17,7 + 3037: -17,7 - node: color: '#D4D4D4D3' id: MiniTileSteelInnerNw decals: - 1207: 25,-56 - 1257: 1,-42 - 1258: 14,-42 - 1458: -21,8 - 1730: -1,46 - 1802: -14,51 - 1831: 17,-6 - 2044: 62,-11 - 2045: 51,-8 - 2083: 14,-26 + 1198: 25,-56 + 1248: 1,-42 + 1249: 14,-42 + 1440: -21,8 + 1712: -1,46 + 1784: -14,51 + 1813: 17,-6 + 2026: 62,-11 + 2027: 51,-8 + 2065: 14,-26 - node: color: '#D4D4D4FF' id: MiniTileSteelInnerNw decals: - 3343: -36,-13 + 3315: -36,-13 - node: color: '#D4D4D4C0' id: MiniTileSteelInnerSe decals: - 3038: -25.008694,6.5088334 - 3039: -25.274319,6.5088334 - 3040: -25.508694,6.5088334 + 3011: -25.008694,6.5088334 + 3012: -25.274319,6.5088334 + 3013: -25.508694,6.5088334 - node: color: '#D4D4D4C7' id: MiniTileSteelInnerSe decals: - 3062: -23,-6 + 3035: -23,-6 - node: color: '#D4D4D4D3' id: MiniTileSteelInnerSe decals: - 1202: 32,-61 - 1205: 31,-63 - 1239: 40,-61 - 1324: -19,-28 - 1354: -4,-36 - 1924: 26,-7 - 1970: 53,-2 - 2042: 52,-7 - 2043: 59,-14 - 2152: 36,-27 + 1193: 32,-61 + 1196: 31,-63 + 1230: 40,-61 + 1315: -19,-28 + 1345: -4,-36 + 1906: 26,-7 + 1952: 53,-2 + 2024: 52,-7 + 2025: 59,-14 + 2134: 36,-27 - node: color: '#D4D4D4FF' id: MiniTileSteelInnerSe decals: - 3344: -39,-6 + 3316: -39,-6 - node: color: '#D4D4D4C7' id: MiniTileSteelInnerSw decals: - 3061: -21,-6 - 3066: -14.7582035,6.5086117 - 3067: -14.5238285,6.5086117 - 3068: -15.0082035,6.5086117 + 3034: -21,-6 + 3039: -14.7582035,6.5086117 + 3040: -14.5238285,6.5086117 + 3041: -15.0082035,6.5086117 - node: color: '#D4D4D4D3' id: MiniTileSteelInnerSw decals: - 1203: 29,-61 - 1204: 30,-63 - 1208: 25,-57 - 1209: 25,-54 - 1238: 38,-61 - 1595: -17,40 - 1646: -19,50 - 1764: -1,58 - 1830: 17,-4 - 1923: 24,-7 - 1968: 50,0 - 1969: 51,-2 - 2040: 54,-14 - 2041: 62,-7 - 2048: 51,-10 - 2086: 14,-28 + 1194: 29,-61 + 1195: 30,-63 + 1199: 25,-57 + 1200: 25,-54 + 1229: 38,-61 + 1577: -17,40 + 1628: -19,50 + 1746: -1,58 + 1812: 17,-4 + 1905: 24,-7 + 1950: 50,0 + 1951: 51,-2 + 2022: 54,-14 + 2023: 62,-7 + 2030: 51,-10 + 2068: 14,-28 - node: color: '#D4D4D4FF' id: MiniTileSteelInnerSw decals: - 3342: -36,-6 + 3314: -36,-6 - node: color: '#C8C8C89E' id: MiniTileSteelLineE decals: - 3745: 18,0 - 3746: 18,1 + 3717: 18,0 + 3718: 18,1 - node: color: '#D4D4D4C0' id: MiniTileSteelLineE decals: - 3024: -25.510418,5.5102654 - 3025: -25.510418,4.5102654 - 3026: -25.510418,3.5239472 - 3027: -25.510418,2.5239472 - 3028: -25.510418,1.5420241 - 3029: -25.510418,0.5198039 - 3030: -25.510418,-0.4823848 - 3031: -25.510418,-1.4980098 - 3032: -25.510418,-2.4674516 - 3033: -25.510418,-3.5051284 - 3034: -25.510418,-4.481826 + 2997: -25.510418,5.5102654 + 2998: -25.510418,4.5102654 + 2999: -25.510418,3.5239472 + 3000: -25.510418,2.5239472 + 3001: -25.510418,1.5420241 + 3002: -25.510418,0.5198039 + 3003: -25.510418,-0.4823848 + 3004: -25.510418,-1.4980098 + 3005: -25.510418,-2.4674516 + 3006: -25.510418,-3.5051284 + 3007: -25.510418,-4.481826 - node: color: '#D4D4D4D3' id: MiniTileSteelLineE decals: - 1118: 39,-43 - 1122: 36,-41 - 1128: 20,-41 - 1176: 26,-47 - 1177: 26,-48 - 1178: 26,-49 - 1179: 26,-50 - 1180: 26,-51 - 1181: 26,-52 - 1182: 26,-53 - 1183: 26,-54 - 1184: 26,-55 - 1185: 26,-56 - 1186: 26,-57 - 1187: 26,-58 - 1188: 34,-60 - 1201: 32,-62 - 1222: 41,-60 - 1223: 40,-63 - 1224: 40,-62 - 1225: 40,-64 - 1226: 40,-65 - 1227: 40,-66 - 1228: 40,-67 - 1229: 40,-68 - 1243: 6,-43 - 1279: -18,-43 - 1301: -19,-29 - 1302: -19,-30 - 1303: -19,-31 - 1304: -19,-32 - 1305: -19,-33 - 1306: -19,-34 - 1307: -19,-35 - 1308: -19,-36 - 1309: -19,-37 - 1310: -19,-38 - 1323: -15,-27 - 1332: -4,-25 - 1333: -2,-27 - 1334: -4,-29 - 1335: -4,-30 - 1336: -4,-31 - 1337: -4,-37 - 1338: -4,-38 - 1351: -3,-35 - 1352: -3,-34 - 1353: -3,-33 - 1375: -19,-11 - 1376: -19,-12 - 1377: -19,-13 - 1378: -19,-14 - 1379: -19,-15 - 1380: -19,-17 - 1381: -19,-16 - 1382: -19,-18 - 1383: -19,-19 - 1384: -19,-20 - 1385: -19,-21 - 1386: -19,-22 - 1417: -13,7 - 1418: -13,6 - 1419: -13,4 - 1420: -13,5 - 1421: -13,3 - 1422: -13,2 - 1423: -13,1 - 1424: -13,0 - 1425: -13,-1 - 1426: -13,-2 - 1427: -13,-3 - 1428: -13,-4 - 1429: -13,-5 - 1430: -13,-6 - 1449: -19,12 - 1450: -19,11 - 1451: -19,10 - 1452: -19,9 - 1453: -19,8 - 1463: -19,30 - 1464: -19,29 - 1465: -19,28 - 1466: -19,27 - 1467: -19,26 - 1468: -19,25 - 1469: -19,24 - 1470: -19,23 - 1471: -19,22 - 1472: -19,21 - 1473: -19,20 - 1474: -19,19 - 1475: -19,18 - 1476: -19,17 - 1477: -19,16 - 1500: -29,0 - 1549: -45,7 - 1550: -45,6 - 1551: -45,5 - 1552: -45,4 - 1572: -15,46 - 1573: -15,45 - 1574: -15,44 - 1575: -15,43 - 1576: -15,42 - 1577: -15,41 - 1578: -15,40 - 1579: -15,39 - 1580: -15,38 - 1581: -15,37 - 1582: -15,36 - 1583: -15,35 - 1584: -15,34 - 1585: -15,33 - 1586: -15,32 - 1587: -15,31 - 1588: -15,30 - 1603: -17,50 - 1622: -22,66 - 1623: -22,65 - 1624: -22,64 - 1625: -22,63 - 1626: -22,62 - 1627: -22,61 - 1628: -22,60 - 1629: -22,58 - 1630: -22,59 - 1631: -22,57 - 1632: -22,56 - 1633: -22,55 - 1634: -22,54 - 1635: -22,53 - 1636: -22,52 - 1652: -4,-21 - 1653: -4,-20 - 1654: -4,-19 - 1655: -4,-18 - 1656: -4,-17 - 1657: -4,-16 - 1658: -4,-15 - 1659: -4,-14 - 1660: -4,-13 - 1661: -4,-12 - 1662: -4,-11 - 1663: -4,-10 - 1664: -4,-9 - 1665: -4,-8 - 1666: -4,-7 - 1667: -4,-6 - 1668: -4,-5 - 1701: 1,45 - 1702: 1,46 - 1703: 1,47 - 1704: 1,48 - 1705: 1,49 - 1706: 1,50 - 1707: 1,51 - 1734: 1,55 - 1735: 1,56 - 1736: 1,57 - 1737: 1,58 - 1771: -13,66 - 1772: -13,65 - 1773: -13,64 - 1774: -13,63 - 1775: -13,62 - 1776: -13,61 - 1777: -13,60 - 1778: -13,59 - 1779: -13,58 - 1780: -13,57 - 1781: -13,55 - 1782: -13,56 - 1783: -13,54 - 1784: -13,53 - 1785: -13,52 - 1786: -13,51 - 1805: 18,-6 - 1806: 18,-5 - 1807: 18,-3 - 1808: 18,-4 - 1809: 18,-1 - 1810: 18,-2 - 1811: 18,2 - 1812: 18,4 - 1813: 18,5 - 1814: 18,3 - 1815: 18,6 - 1839: 30,7 - 1856: 34,-6 - 1857: 34,-5 - 1858: 34,-4 - 1859: 34,-3 - 1860: 34,-2 - 1861: 34,-1 - 1862: 34,0 - 1863: 34,1 - 1864: 34,2 - 1865: 34,3 - 1866: 34,4 - 1867: 34,5 - 1868: 34,6 - 1869: 34,7 - 1894: 26,-14 - 1895: 26,-13 - 1896: 26,-12 - 1897: 26,-11 - 1898: 26,-10 - 1899: 26,-9 - 1900: 26,-8 - 1901: 30,-6 - 1958: 54,1 - 1959: 54,0 - 1960: 54,-1 - 2005: 52,-8 - 2006: 52,-9 - 2007: 52,-10 - 2008: 65,-8 - 2009: 65,-9 - 2010: 65,-10 - 2011: 65,-11 - 2012: 65,-12 - 2013: 65,-13 - 2014: 65,-7 - 2060: 16,-37 - 2061: 16,-36 - 2062: 16,-35 - 2063: 16,-34 - 2064: 16,-32 - 2065: 16,-33 - 2066: 16,-31 - 2067: 16,-30 - 2068: 16,-29 - 2069: 16,-28 - 2070: 16,-27 - 2071: 16,-24 - 2072: 16,-23 - 2073: 16,-22 - 2108: 9,-27 - 2124: 36,-37 - 2125: 36,-35 - 2126: 36,-36 - 2127: 36,-34 - 2128: 36,-33 - 2129: 36,-32 - 2130: 36,-31 - 2131: 36,-29 - 2132: 36,-28 - 2133: 36,-30 - 2134: 36,-25 - 2135: 36,-24 - 2136: 36,-23 - 2137: 36,-22 - 2154: -3,-42 - 2155: -3,-43 - 2171: -4,-27 + 1109: 39,-43 + 1113: 36,-41 + 1119: 20,-41 + 1167: 26,-47 + 1168: 26,-48 + 1169: 26,-49 + 1170: 26,-50 + 1171: 26,-51 + 1172: 26,-52 + 1173: 26,-53 + 1174: 26,-54 + 1175: 26,-55 + 1176: 26,-56 + 1177: 26,-57 + 1178: 26,-58 + 1179: 34,-60 + 1192: 32,-62 + 1213: 41,-60 + 1214: 40,-63 + 1215: 40,-62 + 1216: 40,-64 + 1217: 40,-65 + 1218: 40,-66 + 1219: 40,-67 + 1220: 40,-68 + 1234: 6,-43 + 1270: -18,-43 + 1292: -19,-29 + 1293: -19,-30 + 1294: -19,-31 + 1295: -19,-32 + 1296: -19,-33 + 1297: -19,-34 + 1298: -19,-35 + 1299: -19,-36 + 1300: -19,-37 + 1301: -19,-38 + 1314: -15,-27 + 1323: -4,-25 + 1324: -2,-27 + 1325: -4,-29 + 1326: -4,-30 + 1327: -4,-31 + 1328: -4,-37 + 1329: -4,-38 + 1342: -3,-35 + 1343: -3,-34 + 1344: -3,-33 + 1363: -19,-11 + 1364: -19,-12 + 1365: -19,-13 + 1366: -19,-14 + 1367: -19,-15 + 1368: -19,-17 + 1369: -19,-16 + 1370: -19,-18 + 1371: -19,-19 + 1372: -19,-20 + 1373: -19,-21 + 1374: -19,-22 + 1399: -13,7 + 1400: -13,6 + 1401: -13,4 + 1402: -13,5 + 1403: -13,3 + 1404: -13,2 + 1405: -13,1 + 1406: -13,0 + 1407: -13,-1 + 1408: -13,-2 + 1409: -13,-3 + 1410: -13,-4 + 1411: -13,-5 + 1412: -13,-6 + 1431: -19,12 + 1432: -19,11 + 1433: -19,10 + 1434: -19,9 + 1435: -19,8 + 1445: -19,30 + 1446: -19,29 + 1447: -19,28 + 1448: -19,27 + 1449: -19,26 + 1450: -19,25 + 1451: -19,24 + 1452: -19,23 + 1453: -19,22 + 1454: -19,21 + 1455: -19,20 + 1456: -19,19 + 1457: -19,18 + 1458: -19,17 + 1459: -19,16 + 1482: -29,0 + 1531: -45,7 + 1532: -45,6 + 1533: -45,5 + 1534: -45,4 + 1554: -15,46 + 1555: -15,45 + 1556: -15,44 + 1557: -15,43 + 1558: -15,42 + 1559: -15,41 + 1560: -15,40 + 1561: -15,39 + 1562: -15,38 + 1563: -15,37 + 1564: -15,36 + 1565: -15,35 + 1566: -15,34 + 1567: -15,33 + 1568: -15,32 + 1569: -15,31 + 1570: -15,30 + 1585: -17,50 + 1604: -22,66 + 1605: -22,65 + 1606: -22,64 + 1607: -22,63 + 1608: -22,62 + 1609: -22,61 + 1610: -22,60 + 1611: -22,58 + 1612: -22,59 + 1613: -22,57 + 1614: -22,56 + 1615: -22,55 + 1616: -22,54 + 1617: -22,53 + 1618: -22,52 + 1634: -4,-21 + 1635: -4,-20 + 1636: -4,-19 + 1637: -4,-18 + 1638: -4,-17 + 1639: -4,-16 + 1640: -4,-15 + 1641: -4,-14 + 1642: -4,-13 + 1643: -4,-12 + 1644: -4,-11 + 1645: -4,-10 + 1646: -4,-9 + 1647: -4,-8 + 1648: -4,-7 + 1649: -4,-6 + 1650: -4,-5 + 1683: 1,45 + 1684: 1,46 + 1685: 1,47 + 1686: 1,48 + 1687: 1,49 + 1688: 1,50 + 1689: 1,51 + 1716: 1,55 + 1717: 1,56 + 1718: 1,57 + 1719: 1,58 + 1753: -13,66 + 1754: -13,65 + 1755: -13,64 + 1756: -13,63 + 1757: -13,62 + 1758: -13,61 + 1759: -13,60 + 1760: -13,59 + 1761: -13,58 + 1762: -13,57 + 1763: -13,55 + 1764: -13,56 + 1765: -13,54 + 1766: -13,53 + 1767: -13,52 + 1768: -13,51 + 1787: 18,-6 + 1788: 18,-5 + 1789: 18,-3 + 1790: 18,-4 + 1791: 18,-1 + 1792: 18,-2 + 1793: 18,2 + 1794: 18,4 + 1795: 18,5 + 1796: 18,3 + 1797: 18,6 + 1821: 30,7 + 1838: 34,-6 + 1839: 34,-5 + 1840: 34,-4 + 1841: 34,-3 + 1842: 34,-2 + 1843: 34,-1 + 1844: 34,0 + 1845: 34,1 + 1846: 34,2 + 1847: 34,3 + 1848: 34,4 + 1849: 34,5 + 1850: 34,6 + 1851: 34,7 + 1876: 26,-14 + 1877: 26,-13 + 1878: 26,-12 + 1879: 26,-11 + 1880: 26,-10 + 1881: 26,-9 + 1882: 26,-8 + 1883: 30,-6 + 1940: 54,1 + 1941: 54,0 + 1942: 54,-1 + 1987: 52,-8 + 1988: 52,-9 + 1989: 52,-10 + 1990: 65,-8 + 1991: 65,-9 + 1992: 65,-10 + 1993: 65,-11 + 1994: 65,-12 + 1995: 65,-13 + 1996: 65,-7 + 2042: 16,-37 + 2043: 16,-36 + 2044: 16,-35 + 2045: 16,-34 + 2046: 16,-32 + 2047: 16,-33 + 2048: 16,-31 + 2049: 16,-30 + 2050: 16,-29 + 2051: 16,-28 + 2052: 16,-27 + 2053: 16,-24 + 2054: 16,-23 + 2055: 16,-22 + 2090: 9,-27 + 2106: 36,-37 + 2107: 36,-35 + 2108: 36,-36 + 2109: 36,-34 + 2110: 36,-33 + 2111: 36,-32 + 2112: 36,-31 + 2113: 36,-29 + 2114: 36,-28 + 2115: 36,-30 + 2116: 36,-25 + 2117: 36,-24 + 2118: 36,-23 + 2119: 36,-22 + 2136: -3,-42 + 2137: -3,-43 + 2153: -4,-27 - node: color: '#D4D4D4FF' id: MiniTileSteelLineE decals: - 3328: -39,-7 - 3329: -39,-8 - 3330: -39,-9 - 3331: -39,-10 - 3332: -39,-11 - 3333: -39,-12 + 3300: -39,-7 + 3301: -39,-8 + 3302: -39,-9 + 3303: -39,-10 + 3304: -39,-11 + 3305: -39,-12 - node: color: '#DE3A3A96' id: MiniTileSteelLineE decals: - 2803: 18,22 - 2804: 18,21 - 2805: 18,20 + 2781: 18,22 + 2782: 18,21 + 2783: 18,20 - node: color: '#C8C8C8FF' id: MiniTileSteelLineN decals: - 4099: -20,-10 + 4045: -20,-10 - node: color: '#D4D4D4AE' id: MiniTileSteelLineN decals: - 3268: 32,-42 - 3269: 31,-42 - 3270: 30,-42 + 3240: 32,-42 + 3241: 31,-42 + 3242: 30,-42 - node: color: '#D4D4D4B4' id: MiniTileSteelLineN decals: - 3373: -6,-41 + 3345: -6,-41 - node: color: '#D4D4D4C0' id: MiniTileSteelLineN decals: - 3011: -18.018867,-5.48975 - 3012: -17.019917,-5.49304 - 3013: -19.00948,-5.49304 - 3014: -20.010675,-5.49304 - 3015: -21.010675,-5.49304 - 3016: -22.0263,-5.49304 - 3017: -23.028214,-5.497755 - 3018: -24.012589,-5.497755 + 2984: -18.018867,-5.48975 + 2985: -17.019917,-5.49304 + 2986: -19.00948,-5.49304 + 2987: -20.010675,-5.49304 + 2988: -21.010675,-5.49304 + 2989: -22.0263,-5.49304 + 2990: -23.028214,-5.497755 + 2991: -24.012589,-5.497755 - node: color: '#D4D4D4C7' id: MiniTileSteelLineN decals: - 3060: -18,7 + 3033: -18,7 - node: color: '#D4D4D4CA' id: MiniTileSteelLineN decals: - 3071: -16.015686,-5.492559 + 3044: -16.015686,-5.492559 - node: color: '#D4D4D4CD' id: MiniTileSteelLineN decals: - 3265: 17,7 + 3237: 17,7 - node: color: '#D4D4D4D3' id: MiniTileSteelLineN decals: - 1064: 35,-17 - 1065: 34,-17 - 1066: 33,-17 - 1067: 31,-17 - 1068: 30,-17 - 1069: 29,-17 - 1070: 28,-17 - 1071: 27,-17 - 1072: 26,-17 - 1073: 24,-17 - 1074: 23,-17 - 1075: 21,-17 - 1076: 22,-17 - 1077: 19,-17 - 1078: 18,-17 - 1079: 17,-17 - 1080: 16,-17 - 1081: 15,-17 - 1091: 25,-17 - 1092: 27,-42 - 1093: 26,-42 - 1094: 25,-42 - 1095: 24,-42 - 1096: 23,-42 - 1097: 22,-42 - 1098: 21,-42 - 1099: 28,-42 - 1100: 29,-42 - 1120: 38,-42 - 1121: 37,-42 - 1124: 35,-40 - 1125: 34,-40 - 1129: 19,-40 - 1130: 18,-40 - 1131: 17,-40 - 1132: 16,-40 - 1133: 15,-40 - 1134: 9,-42 - 1135: 10,-42 - 1136: 11,-42 - 1137: 13,-42 - 1138: 12,-42 - 1157: 28,-59 - 1158: 27,-59 - 1171: 25,-46 - 1216: 40,-59 - 1217: 39,-59 - 1218: 38,-59 - 1219: 37,-59 - 1240: -2,-42 - 1241: -1,-42 - 1242: 0,-42 - 1249: 2,-41 - 1250: 3,-41 - 1255: 5,-42 - 1260: -8,-42 - 1261: -10,-42 - 1262: -11,-42 - 1263: -12,-42 - 1264: -13,-42 - 1265: -14,-42 - 1266: -15,-42 - 1284: -20,-41 - 1287: -18,-26 - 1288: -19,-26 - 1289: -20,-26 - 1290: -16,-26 - 1291: -17,-26 - 1325: -5,-24 - 1326: -3,-26 - 1327: -7,-26 - 1328: -8,-26 - 1329: -11,-26 - 1410: -14,8 - 1411: -15,8 - 1412: -20,13 - 1413: -22,8 - 1414: -23,8 - 1415: -25,8 - 1416: -26,8 - 1462: -20,31 - 1515: -43,1 - 1516: -42,1 - 1517: -41,1 - 1518: -39,1 - 1519: -40,1 - 1520: -38,1 - 1521: -37,1 - 1522: -36,1 - 1523: -34,1 - 1524: -33,1 - 1525: -35,1 - 1526: -32,1 - 1527: -30,1 - 1528: -31,1 - 1533: -47,1 - 1541: -46,8 - 1542: -47,8 - 1543: -48,8 - 1544: -49,8 - 1596: -16,47 - 1597: -17,47 - 1598: -18,47 - 1637: -18,51 - 1638: -19,51 - 1639: -20,51 - 1640: -21,51 - 1669: -5,-4 - 1710: 0,52 - 1716: -2,46 - 1717: -3,46 - 1718: -4,46 - 1719: -5,46 - 1720: -6,46 - 1721: -7,46 - 1722: -8,46 - 1723: -9,46 - 1724: -10,46 - 1725: -11,46 - 1726: -12,46 - 1739: 0,59 - 1740: -1,59 - 1741: -2,59 - 1742: -3,59 - 1743: -4,59 - 1744: -5,59 - 1745: -6,59 - 1746: -7,59 - 1747: -8,59 - 1748: -9,59 - 1749: -10,59 - 1832: 27,8 - 1833: 28,8 - 1834: 29,8 - 1850: 21,8 - 1851: 22,8 - 1852: 23,8 - 1872: 33,8 - 1903: 29,-5 - 1904: 28,-5 - 1905: 27,-5 - 1906: 26,-5 - 1907: 25,-5 - 1908: 24,-5 - 1909: 23,-5 - 1910: 22,-5 - 1911: 21,-5 - 1940: 53,2 - 1941: 52,2 - 1942: 50,2 - 1943: 51,2 - 1944: 49,2 - 1945: 48,2 - 1946: 47,2 - 1947: 46,2 - 1948: 45,2 - 1949: 44,2 - 1950: 43,2 - 1951: 41,2 - 1952: 42,2 - 1953: 40,2 - 1954: 39,2 - 1955: 38,2 - 1956: 37,2 - 1971: 64,-6 - 1972: 63,-6 - 1973: 62,-6 - 1974: 60,-6 - 1975: 59,-6 - 1976: 61,-6 - 1977: 58,-6 - 1978: 57,-6 - 1979: 56,-6 - 1980: 55,-6 - 1981: 54,-6 - 1982: 52,-5 - 1983: 50,-8 - 2029: 61,-11 - 2030: 60,-11 - 2031: 59,-11 - 2032: 58,-11 - 2033: 57,-11 - 2034: 56,-11 - 2035: 55,-11 - 2036: 54,-11 - 2037: 53,-11 - 2050: 15,-21 - 2051: 13,-26 - 2052: 12,-26 - 2100: 8,-26 - 2101: 7,-26 - 2102: 6,-26 - 2103: 5,-26 - 2104: 4,-26 - 2105: 3,-26 - 2106: 2,-26 - 2107: 1,-26 - 2116: 35,-21 - 2117: 37,-26 - 2118: 38,-26 - 2156: -5,-41 - 2157: -4,-41 - 2170: -5,-26 - 2248: 3,1 - 2249: 1,1 - 2250: 0,1 - 2251: 2,1 - 2252: -4,1 - 2253: -5,1 - 2254: -7,1 - 2255: -6,1 - 2256: -8,1 - 2257: -9,1 - 2258: -10,1 - 2325: -16,8 - 2326: -24,8 + 1055: 35,-17 + 1056: 34,-17 + 1057: 33,-17 + 1058: 31,-17 + 1059: 30,-17 + 1060: 29,-17 + 1061: 28,-17 + 1062: 27,-17 + 1063: 26,-17 + 1064: 24,-17 + 1065: 23,-17 + 1066: 21,-17 + 1067: 22,-17 + 1068: 19,-17 + 1069: 18,-17 + 1070: 17,-17 + 1071: 16,-17 + 1072: 15,-17 + 1082: 25,-17 + 1083: 27,-42 + 1084: 26,-42 + 1085: 25,-42 + 1086: 24,-42 + 1087: 23,-42 + 1088: 22,-42 + 1089: 21,-42 + 1090: 28,-42 + 1091: 29,-42 + 1111: 38,-42 + 1112: 37,-42 + 1115: 35,-40 + 1116: 34,-40 + 1120: 19,-40 + 1121: 18,-40 + 1122: 17,-40 + 1123: 16,-40 + 1124: 15,-40 + 1125: 9,-42 + 1126: 10,-42 + 1127: 11,-42 + 1128: 13,-42 + 1129: 12,-42 + 1148: 28,-59 + 1149: 27,-59 + 1162: 25,-46 + 1207: 40,-59 + 1208: 39,-59 + 1209: 38,-59 + 1210: 37,-59 + 1231: -2,-42 + 1232: -1,-42 + 1233: 0,-42 + 1240: 2,-41 + 1241: 3,-41 + 1246: 5,-42 + 1251: -8,-42 + 1252: -10,-42 + 1253: -11,-42 + 1254: -12,-42 + 1255: -13,-42 + 1256: -14,-42 + 1257: -15,-42 + 1275: -20,-41 + 1278: -18,-26 + 1279: -19,-26 + 1280: -20,-26 + 1281: -16,-26 + 1282: -17,-26 + 1316: -5,-24 + 1317: -3,-26 + 1318: -7,-26 + 1319: -8,-26 + 1320: -11,-26 + 1392: -14,8 + 1393: -15,8 + 1394: -20,13 + 1395: -22,8 + 1396: -23,8 + 1397: -25,8 + 1398: -26,8 + 1444: -20,31 + 1497: -43,1 + 1498: -42,1 + 1499: -41,1 + 1500: -39,1 + 1501: -40,1 + 1502: -38,1 + 1503: -37,1 + 1504: -36,1 + 1505: -34,1 + 1506: -33,1 + 1507: -35,1 + 1508: -32,1 + 1509: -30,1 + 1510: -31,1 + 1515: -47,1 + 1523: -46,8 + 1524: -47,8 + 1525: -48,8 + 1526: -49,8 + 1578: -16,47 + 1579: -17,47 + 1580: -18,47 + 1619: -18,51 + 1620: -19,51 + 1621: -20,51 + 1622: -21,51 + 1651: -5,-4 + 1692: 0,52 + 1698: -2,46 + 1699: -3,46 + 1700: -4,46 + 1701: -5,46 + 1702: -6,46 + 1703: -7,46 + 1704: -8,46 + 1705: -9,46 + 1706: -10,46 + 1707: -11,46 + 1708: -12,46 + 1721: 0,59 + 1722: -1,59 + 1723: -2,59 + 1724: -3,59 + 1725: -4,59 + 1726: -5,59 + 1727: -6,59 + 1728: -7,59 + 1729: -8,59 + 1730: -9,59 + 1731: -10,59 + 1814: 27,8 + 1815: 28,8 + 1816: 29,8 + 1832: 21,8 + 1833: 22,8 + 1834: 23,8 + 1854: 33,8 + 1885: 29,-5 + 1886: 28,-5 + 1887: 27,-5 + 1888: 26,-5 + 1889: 25,-5 + 1890: 24,-5 + 1891: 23,-5 + 1892: 22,-5 + 1893: 21,-5 + 1922: 53,2 + 1923: 52,2 + 1924: 50,2 + 1925: 51,2 + 1926: 49,2 + 1927: 48,2 + 1928: 47,2 + 1929: 46,2 + 1930: 45,2 + 1931: 44,2 + 1932: 43,2 + 1933: 41,2 + 1934: 42,2 + 1935: 40,2 + 1936: 39,2 + 1937: 38,2 + 1938: 37,2 + 1953: 64,-6 + 1954: 63,-6 + 1955: 62,-6 + 1956: 60,-6 + 1957: 59,-6 + 1958: 61,-6 + 1959: 58,-6 + 1960: 57,-6 + 1961: 56,-6 + 1962: 55,-6 + 1963: 54,-6 + 1964: 52,-5 + 1965: 50,-8 + 2011: 61,-11 + 2012: 60,-11 + 2013: 59,-11 + 2014: 58,-11 + 2015: 57,-11 + 2016: 56,-11 + 2017: 55,-11 + 2018: 54,-11 + 2019: 53,-11 + 2032: 15,-21 + 2033: 13,-26 + 2034: 12,-26 + 2082: 8,-26 + 2083: 7,-26 + 2084: 6,-26 + 2085: 5,-26 + 2086: 4,-26 + 2087: 3,-26 + 2088: 2,-26 + 2089: 1,-26 + 2098: 35,-21 + 2099: 37,-26 + 2100: 38,-26 + 2138: -5,-41 + 2139: -4,-41 + 2152: -5,-26 + 2230: 3,1 + 2231: 1,1 + 2232: 0,1 + 2233: 2,1 + 2234: -4,1 + 2235: -5,1 + 2236: -7,1 + 2237: -6,1 + 2238: -8,1 + 2239: -9,1 + 2240: -10,1 + 2307: -16,8 + 2308: -24,8 - node: color: '#D4D4D4FF' id: MiniTileSteelLineN decals: - 3340: -38,-13 - 3341: -37,-13 + 3312: -38,-13 + 3313: -37,-13 - node: color: '#DE3A3A96' id: MiniTileSteelLineN decals: - 2795: 17,23 - 2796: 16,23 - 2797: 15,23 + 2773: 17,23 + 2774: 16,23 + 2775: 15,23 - node: color: '#C8C8C8FF' id: MiniTileSteelLineS decals: - 4098: -20,-23 + 4044: -20,-23 - node: color: '#D4D4D4C0' id: MiniTileSteelLineS decals: - 3019: -20.013802,6.514251 - 3020: -21.019838,6.510408 - 3021: -22.019838,6.510408 - 3022: -23.019838,6.510408 - 3023: -24.019838,6.510408 - 3378: -25,-7 + 2992: -20.013802,6.514251 + 2993: -21.019838,6.510408 + 2994: -22.019838,6.510408 + 2995: -23.019838,6.510408 + 2996: -24.019838,6.510408 + 3350: -25,-7 - node: color: '#D4D4D4C3' id: MiniTileSteelLineS decals: - 2994: -18.011988,6.5150476 - 2995: -19.02412,6.5150476 - 2996: -16.008495,6.503191 - 2997: -17.022287,6.5092306 - 3387: -26,-7 + 2970: -18.011988,6.5150476 + 2971: -19.02412,6.5150476 + 2972: -16.008495,6.503191 + 2973: -17.022287,6.5092306 + 3359: -26,-7 - node: color: '#D4D4D4D3' id: MiniTileSteelLineS decals: - 1037: 26,-19 - 1038: 24,-19 - 1039: 25,-19 - 1040: 23,-19 - 1041: 21,-19 - 1042: 22,-19 - 1043: 20,-19 - 1044: 19,-19 - 1045: 18,-19 - 1046: 17,-19 - 1047: 16,-19 - 1048: 15,-19 - 1049: 27,-19 - 1050: 28,-19 - 1051: 28,-19 - 1052: 29,-19 - 1053: 30,-19 - 1054: 31,-19 - 1055: 32,-19 - 1056: 33,-19 - 1057: 34,-19 - 1058: 35,-19 - 1059: 36,-19 - 1101: 25,-44 - 1102: 23,-44 - 1103: 24,-44 - 1104: 26,-44 - 1105: 27,-44 - 1106: 28,-44 - 1107: 29,-44 - 1108: 30,-44 - 1109: 31,-44 - 1110: 32,-44 - 1111: 33,-44 - 1112: 35,-44 - 1113: 34,-44 - 1114: 36,-44 - 1115: 38,-44 - 1116: 37,-44 - 1143: 9,-44 - 1144: 10,-44 - 1145: 11,-44 - 1146: 12,-44 - 1147: 13,-44 - 1148: 14,-44 - 1149: 15,-44 - 1150: 16,-44 - 1151: 18,-44 - 1152: 17,-44 - 1153: 19,-44 - 1154: 21,-44 - 1155: 22,-44 - 1172: 33,-61 - 1173: 28,-61 - 1174: 27,-61 - 1175: 26,-61 - 1220: 39,-69 - 1221: 37,-61 - 1244: 5,-44 - 1245: 4,-44 - 1246: 3,-44 - 1247: 2,-44 - 1248: 1,-44 - 1270: -15,-44 - 1271: -14,-44 - 1272: -13,-44 - 1273: -12,-44 - 1274: -11,-44 - 1275: -19,-44 - 1276: -20,-44 - 1297: -20,-39 - 1298: -16,-28 - 1299: -17,-28 - 1300: -18,-28 - 1358: -5,-39 - 1359: -7,-28 - 1360: -8,-28 - 1361: -10,-28 - 1362: -9,-28 - 1363: -11,-28 - 1364: -12,-28 - 1365: -3,-28 - 1404: -22,-6 - 1405: -18,-7 - 1406: -17,-7 - 1407: -16,-7 - 1408: -15,-7 - 1409: -14,-7 - 1431: -19,-7 - 1432: -20,-7 - 1459: -24,-7 - 1493: -20,15 - 1501: -30,-1 - 1502: -31,-1 - 1503: -32,-1 - 1504: -33,-1 - 1505: -34,-1 - 1506: -35,-1 - 1507: -36,-1 - 1508: -38,-1 - 1509: -37,-1 - 1510: -39,-1 - 1511: -40,-1 - 1512: -41,-1 - 1513: -42,-1 - 1514: -43,-1 - 1530: -47,-1 - 1545: -46,3 - 1546: -47,3 - 1547: -48,3 - 1548: -49,3 - 1557: -16,29 - 1594: -18,40 - 1601: -18,49 - 1641: -20,50 - 1642: -21,50 - 1643: -22,50 - 1651: -5,-22 - 1687: -12,44 - 1688: -11,44 - 1689: -10,44 - 1690: -9,44 - 1691: -8,44 - 1692: -7,44 - 1693: -6,44 - 1694: -5,44 - 1695: -4,44 - 1696: -3,44 - 1697: -2,44 - 1698: -1,44 - 1699: 0,44 - 1731: 0,54 - 1752: -10,58 - 1753: -8,58 - 1754: -7,58 - 1755: -6,58 - 1756: -9,58 - 1757: -5,58 - 1758: -4,58 - 1759: -3,58 - 1760: -2,58 - 1765: -14,50 - 1803: 17,-7 - 1841: 21,6 - 1842: 24,6 - 1843: 23,6 - 1844: 22,6 - 1845: 25,6 - 1846: 26,6 - 1847: 27,6 - 1848: 28,6 - 1849: 29,6 - 1855: 33,-7 - 1885: 29,-7 - 1886: 27,-7 - 1887: 28,-7 - 1888: 23,-7 - 1889: 22,-7 - 1890: 21,-7 - 1893: 25,-15 - 1925: 52,-3 - 1926: 49,0 - 1927: 48,0 - 1928: 47,0 - 1929: 46,0 - 1930: 44,0 - 1931: 45,0 - 1932: 43,0 - 1933: 42,0 - 1934: 41,0 - 1935: 40,0 - 1936: 39,0 - 1937: 38,0 - 1938: 37,0 - 1984: 50,-10 - 1985: 52,-14 - 1986: 53,-14 - 1987: 55,-15 - 1988: 56,-15 - 1989: 57,-15 - 1990: 58,-15 - 1991: 60,-14 - 1992: 61,-14 - 1993: 62,-14 - 1994: 63,-14 - 1995: 64,-14 - 1996: 57,-7 - 1997: 58,-7 - 1998: 59,-7 - 1999: 60,-7 - 2000: 61,-7 - 2001: 56,-7 - 2002: 55,-7 - 2003: 54,-7 - 2004: 53,-7 - 2058: 15,-38 - 2074: 12,-28 - 2075: 13,-28 - 2092: 8,-28 - 2093: 7,-28 - 2094: 6,-28 - 2095: 5,-28 - 2096: 4,-28 - 2097: 3,-28 - 2098: 2,-28 - 2099: 1,-28 - 2119: 38,-27 - 2120: 37,-27 - 2121: 35,-38 - 2158: -4,-44 - 2159: -5,-44 - 2160: -6,-44 - 2173: -5,-28 - 2225: 3,0 - 2226: 2,0 - 2227: 1,0 - 2228: 0,0 - 2229: -4,0 - 2230: -5,0 - 2231: -6,0 - 2232: -7,0 - 2233: -8,0 - 2234: -9,0 - 2235: -10,0 + 1028: 26,-19 + 1029: 24,-19 + 1030: 25,-19 + 1031: 23,-19 + 1032: 21,-19 + 1033: 22,-19 + 1034: 20,-19 + 1035: 19,-19 + 1036: 18,-19 + 1037: 17,-19 + 1038: 16,-19 + 1039: 15,-19 + 1040: 27,-19 + 1041: 28,-19 + 1042: 28,-19 + 1043: 29,-19 + 1044: 30,-19 + 1045: 31,-19 + 1046: 32,-19 + 1047: 33,-19 + 1048: 34,-19 + 1049: 35,-19 + 1050: 36,-19 + 1092: 25,-44 + 1093: 23,-44 + 1094: 24,-44 + 1095: 26,-44 + 1096: 27,-44 + 1097: 28,-44 + 1098: 29,-44 + 1099: 30,-44 + 1100: 31,-44 + 1101: 32,-44 + 1102: 33,-44 + 1103: 35,-44 + 1104: 34,-44 + 1105: 36,-44 + 1106: 38,-44 + 1107: 37,-44 + 1134: 9,-44 + 1135: 10,-44 + 1136: 11,-44 + 1137: 12,-44 + 1138: 13,-44 + 1139: 14,-44 + 1140: 15,-44 + 1141: 16,-44 + 1142: 18,-44 + 1143: 17,-44 + 1144: 19,-44 + 1145: 21,-44 + 1146: 22,-44 + 1163: 33,-61 + 1164: 28,-61 + 1165: 27,-61 + 1166: 26,-61 + 1211: 39,-69 + 1212: 37,-61 + 1235: 5,-44 + 1236: 4,-44 + 1237: 3,-44 + 1238: 2,-44 + 1239: 1,-44 + 1261: -15,-44 + 1262: -14,-44 + 1263: -13,-44 + 1264: -12,-44 + 1265: -11,-44 + 1266: -19,-44 + 1267: -20,-44 + 1288: -20,-39 + 1289: -16,-28 + 1290: -17,-28 + 1291: -18,-28 + 1349: -5,-39 + 1350: -7,-28 + 1351: -8,-28 + 1352: -10,-28 + 1353: -9,-28 + 1354: -11,-28 + 1355: -12,-28 + 1356: -3,-28 + 1386: -22,-6 + 1387: -18,-7 + 1388: -17,-7 + 1389: -16,-7 + 1390: -15,-7 + 1391: -14,-7 + 1413: -19,-7 + 1414: -20,-7 + 1441: -24,-7 + 1475: -20,15 + 1483: -30,-1 + 1484: -31,-1 + 1485: -32,-1 + 1486: -33,-1 + 1487: -34,-1 + 1488: -35,-1 + 1489: -36,-1 + 1490: -38,-1 + 1491: -37,-1 + 1492: -39,-1 + 1493: -40,-1 + 1494: -41,-1 + 1495: -42,-1 + 1496: -43,-1 + 1512: -47,-1 + 1527: -46,3 + 1528: -47,3 + 1529: -48,3 + 1530: -49,3 + 1539: -16,29 + 1576: -18,40 + 1583: -18,49 + 1623: -20,50 + 1624: -21,50 + 1625: -22,50 + 1633: -5,-22 + 1669: -12,44 + 1670: -11,44 + 1671: -10,44 + 1672: -9,44 + 1673: -8,44 + 1674: -7,44 + 1675: -6,44 + 1676: -5,44 + 1677: -4,44 + 1678: -3,44 + 1679: -2,44 + 1680: -1,44 + 1681: 0,44 + 1713: 0,54 + 1734: -10,58 + 1735: -8,58 + 1736: -7,58 + 1737: -6,58 + 1738: -9,58 + 1739: -5,58 + 1740: -4,58 + 1741: -3,58 + 1742: -2,58 + 1747: -14,50 + 1785: 17,-7 + 1823: 21,6 + 1824: 24,6 + 1825: 23,6 + 1826: 22,6 + 1827: 25,6 + 1828: 26,6 + 1829: 27,6 + 1830: 28,6 + 1831: 29,6 + 1837: 33,-7 + 1867: 29,-7 + 1868: 27,-7 + 1869: 28,-7 + 1870: 23,-7 + 1871: 22,-7 + 1872: 21,-7 + 1875: 25,-15 + 1907: 52,-3 + 1908: 49,0 + 1909: 48,0 + 1910: 47,0 + 1911: 46,0 + 1912: 44,0 + 1913: 45,0 + 1914: 43,0 + 1915: 42,0 + 1916: 41,0 + 1917: 40,0 + 1918: 39,0 + 1919: 38,0 + 1920: 37,0 + 1966: 50,-10 + 1967: 52,-14 + 1968: 53,-14 + 1969: 55,-15 + 1970: 56,-15 + 1971: 57,-15 + 1972: 58,-15 + 1973: 60,-14 + 1974: 61,-14 + 1975: 62,-14 + 1976: 63,-14 + 1977: 64,-14 + 1978: 57,-7 + 1979: 58,-7 + 1980: 59,-7 + 1981: 60,-7 + 1982: 61,-7 + 1983: 56,-7 + 1984: 55,-7 + 1985: 54,-7 + 1986: 53,-7 + 2040: 15,-38 + 2056: 12,-28 + 2057: 13,-28 + 2074: 8,-28 + 2075: 7,-28 + 2076: 6,-28 + 2077: 5,-28 + 2078: 4,-28 + 2079: 3,-28 + 2080: 2,-28 + 2081: 1,-28 + 2101: 38,-27 + 2102: 37,-27 + 2103: 35,-38 + 2140: -4,-44 + 2141: -5,-44 + 2142: -6,-44 + 2155: -5,-28 + 2207: 3,0 + 2208: 2,0 + 2209: 1,0 + 2210: 0,0 + 2211: -4,0 + 2212: -5,0 + 2213: -6,0 + 2214: -7,0 + 2215: -8,0 + 2216: -9,0 + 2217: -10,0 - node: color: '#D4D4D4FF' id: MiniTileSteelLineS decals: - 3346: -38,-6 - 3347: -37,-6 + 3318: -38,-6 + 3319: -37,-6 - node: color: '#DE3A3A96' id: MiniTileSteelLineS decals: - 2798: 17,19 - 2799: 16,19 - 2800: 15,19 + 2776: 17,19 + 2777: 16,19 + 2778: 15,19 - node: color: '#C3C3C3BC' id: MiniTileSteelLineW decals: - 4059: 32,-4 - 4060: 32,-5 + 4006: 32,-4 + 4007: 32,-5 - node: color: '#D4D4D4AE' id: MiniTileSteelLineW decals: - 3267: 33,-41 + 3239: 33,-41 - node: color: '#D4D4D4C0' id: MiniTileSteelLineW decals: - 3001: -14.526791,4.511916 - 3002: -14.526791,3.535493 - 3003: -14.526791,2.535493 - 3004: -14.526791,1.5321715 - 3005: -14.526791,0.5164875 - 3006: -14.526791,-0.47854245 - 3007: -14.526791,-1.4661165 - 3008: -14.526791,-2.4650025 - 3009: -14.526791,-3.4650025 - 3010: -14.526791,-4.4806275 + 2977: -14.526791,4.511916 + 2978: -14.526791,3.535493 + 2979: -14.526791,2.535493 + 2980: -14.526791,1.5321715 + 2981: -14.526791,-0.47854245 + 2982: -14.526791,-1.4661165 + 2983: -14.526791,-4.4806275 - node: color: '#D4D4D4C3' id: MiniTileSteelLineW decals: - 2927: -17,38 - 2928: -17,37 - 3385: -27,-5 - 3386: -27,-6 + 2903: -17,38 + 2904: -17,37 + 3357: -27,-5 + 3358: -27,-6 - node: color: '#D4D4D4C7' id: MiniTileSteelLineW decals: - 3065: -14.529805,5.530867 + 3038: -14.529805,5.530867 - node: color: '#D4D4D4D3' id: MiniTileSteelLineW decals: - 1082: 14,-18 - 1126: 8,-43 - 1127: 14,-41 - 1189: 25,-60 - 1190: 25,-59 - 1191: 25,-58 - 1192: 25,-55 - 1193: 24,-53 - 1194: 24,-52 - 1195: 24,-50 - 1196: 24,-49 - 1197: 24,-51 - 1198: 24,-48 - 1199: 24,-47 - 1200: 29,-62 - 1230: 38,-68 - 1231: 38,-67 - 1232: 38,-66 - 1233: 38,-65 - 1234: 38,-64 - 1235: 38,-63 - 1236: 38,-62 - 1237: 36,-60 - 1269: -16,-43 - 1282: -21,-42 - 1283: -21,-43 - 1311: -21,-38 - 1312: -21,-37 - 1313: -21,-35 - 1314: -21,-34 - 1315: -21,-36 - 1316: -21,-33 - 1317: -21,-31 - 1318: -21,-30 - 1319: -21,-32 - 1320: -21,-28 - 1321: -21,-27 - 1322: -21,-29 - 1339: -6,-38 - 1340: -6,-37 - 1341: -6,-36 - 1342: -6,-35 - 1343: -6,-34 - 1344: -6,-33 - 1345: -6,-32 - 1346: -6,-31 - 1347: -6,-30 - 1348: -6,-29 - 1368: -6,-25 - 1371: -13,-27 - 1390: -21,-22 - 1391: -21,-21 - 1392: -21,-20 - 1394: -21,-11 - 1395: -21,-12 - 1396: -21,-13 - 1397: -21,-14 - 1398: -21,-15 - 1399: -21,-16 - 1434: -27,-4 - 1435: -28,-3 - 1436: -27,-3 - 1437: -27,-2 - 1438: -27,0 - 1439: -27,1 - 1440: -27,2 - 1441: -27,4 - 1442: -27,5 - 1443: -27,6 - 1445: -21,9 - 1446: -21,11 - 1447: -21,12 - 1448: -21,10 - 1478: -21,16 - 1479: -21,17 - 1480: -21,18 - 1481: -21,19 - 1482: -21,20 - 1483: -21,21 - 1484: -21,22 - 1485: -21,23 - 1486: -21,24 - 1487: -21,25 - 1488: -21,26 - 1489: -21,27 - 1490: -21,28 - 1491: -21,29 - 1492: -21,30 - 1529: -44,0 - 1535: -48,0 - 1553: -50,7 - 1554: -50,6 - 1555: -50,5 - 1556: -50,4 - 1558: -17,30 - 1559: -17,31 - 1560: -17,33 - 1561: -17,32 - 1562: -17,35 - 1563: -17,34 - 1564: -17,36 - 1565: -17,39 - 1566: -19,41 - 1567: -19,42 - 1568: -19,43 - 1569: -19,44 - 1570: -19,45 - 1571: -19,46 - 1604: -23,51 - 1605: -23,52 - 1606: -23,53 - 1607: -23,55 - 1608: -23,54 - 1609: -23,56 - 1610: -23,57 - 1611: -23,58 - 1612: -23,59 - 1613: -23,60 - 1614: -23,61 - 1615: -23,62 - 1616: -23,63 - 1617: -23,64 - 1618: -23,65 - 1619: -23,66 - 1670: -6,-5 - 1671: -6,-6 - 1672: -6,-7 - 1673: -6,-8 - 1674: -6,-9 - 1675: -6,-10 - 1676: -6,-11 - 1677: -6,-12 - 1678: -6,-13 - 1679: -6,-14 - 1680: -6,-15 - 1681: -6,-16 - 1682: -6,-17 - 1683: -6,-18 - 1684: -6,-19 - 1685: -6,-20 - 1686: -6,-21 - 1711: -1,51 - 1712: -1,50 - 1713: -1,48 - 1714: -1,49 - 1715: -1,47 - 1729: -13,45 - 1761: -1,57 - 1762: -1,56 - 1763: -1,55 - 1787: -14,52 - 1788: -14,54 - 1789: -14,53 - 1790: -14,55 - 1791: -14,57 - 1792: -14,56 - 1793: -14,58 - 1794: -14,59 - 1795: -14,60 - 1796: -14,62 - 1797: -14,61 - 1798: -14,63 - 1799: -14,64 - 1800: -14,65 - 1801: -14,66 - 1816: 16,6 - 1817: 16,5 - 1818: 16,4 - 1819: 16,3 - 1820: 16,2 - 1821: 16,1 - 1822: 16,0 - 1823: 16,-1 - 1824: 16,-2 - 1825: 16,-3 - 1829: 17,-5 - 1840: 20,7 - 1873: 32,7 - 1874: 32,6 - 1875: 32,4 - 1876: 32,5 - 1877: 32,3 - 1878: 32,2 - 1879: 32,1 - 1880: 32,0 - 1881: 32,-1 - 1882: 32,-2 - 1883: 32,-3 - 1884: 32,-6 - 1902: 20,-6 - 1916: 24,-14 - 1917: 24,-13 - 1918: 24,-11 - 1919: 24,-10 - 1920: 24,-9 - 1921: 24,-8 - 1922: 24,-12 - 1965: 50,-1 - 1966: 36,1 - 2024: 51,-13 - 2025: 51,-12 - 2026: 51,-11 - 2027: 51,-7 - 2028: 51,-6 - 2038: 62,-9 - 2039: 62,-10 - 2049: 62,-8 - 2076: 14,-29 - 2077: 14,-30 - 2078: 14,-31 - 2079: 14,-37 - 2080: 14,-24 - 2081: 14,-22 - 2082: 14,-23 - 2084: 14,-25 - 2085: 11,-27 - 2087: 14,-32 - 2088: 14,-34 - 2089: 14,-33 - 2090: 14,-35 - 2091: 14,-36 - 2109: 0,-27 - 2138: 34,-22 - 2139: 34,-23 - 2140: 34,-23 - 2141: 34,-24 - 2142: 34,-27 - 2143: 34,-28 - 2144: 34,-29 - 2145: 34,-30 - 2146: 34,-32 - 2147: 34,-33 - 2148: 34,-34 - 2149: 34,-35 - 2150: 34,-36 - 2151: 34,-37 - 2161: -7,-42 - 2162: -7,-43 - 2172: -6,-27 - 2323: -27,3 - 2324: -27,-1 - 3742: -21,-17 - 3743: -21,-18 - 3744: -21,-19 + 1073: 14,-18 + 1117: 8,-43 + 1118: 14,-41 + 1180: 25,-60 + 1181: 25,-59 + 1182: 25,-58 + 1183: 25,-55 + 1184: 24,-53 + 1185: 24,-52 + 1186: 24,-50 + 1187: 24,-49 + 1188: 24,-51 + 1189: 24,-48 + 1190: 24,-47 + 1191: 29,-62 + 1221: 38,-68 + 1222: 38,-67 + 1223: 38,-66 + 1224: 38,-65 + 1225: 38,-64 + 1226: 38,-63 + 1227: 38,-62 + 1228: 36,-60 + 1260: -16,-43 + 1273: -21,-42 + 1274: -21,-43 + 1302: -21,-38 + 1303: -21,-37 + 1304: -21,-35 + 1305: -21,-34 + 1306: -21,-36 + 1307: -21,-33 + 1308: -21,-31 + 1309: -21,-30 + 1310: -21,-32 + 1311: -21,-28 + 1312: -21,-27 + 1313: -21,-29 + 1330: -6,-38 + 1331: -6,-37 + 1332: -6,-36 + 1333: -6,-35 + 1334: -6,-34 + 1335: -6,-33 + 1336: -6,-32 + 1337: -6,-31 + 1338: -6,-30 + 1339: -6,-29 + 1359: -6,-25 + 1362: -13,-27 + 1375: -21,-22 + 1376: -21,-21 + 1377: -21,-20 + 1378: -21,-11 + 1379: -21,-12 + 1380: -21,-13 + 1381: -21,-14 + 1382: -21,-15 + 1383: -21,-16 + 1416: -27,-4 + 1417: -28,-3 + 1418: -27,-3 + 1419: -27,-2 + 1420: -27,0 + 1421: -27,1 + 1422: -27,2 + 1423: -27,4 + 1424: -27,5 + 1425: -27,6 + 1427: -21,9 + 1428: -21,11 + 1429: -21,12 + 1430: -21,10 + 1460: -21,16 + 1461: -21,17 + 1462: -21,18 + 1463: -21,19 + 1464: -21,20 + 1465: -21,21 + 1466: -21,22 + 1467: -21,23 + 1468: -21,24 + 1469: -21,25 + 1470: -21,26 + 1471: -21,27 + 1472: -21,28 + 1473: -21,29 + 1474: -21,30 + 1511: -44,0 + 1517: -48,0 + 1535: -50,7 + 1536: -50,6 + 1537: -50,5 + 1538: -50,4 + 1540: -17,30 + 1541: -17,31 + 1542: -17,33 + 1543: -17,32 + 1544: -17,35 + 1545: -17,34 + 1546: -17,36 + 1547: -17,39 + 1548: -19,41 + 1549: -19,42 + 1550: -19,43 + 1551: -19,44 + 1552: -19,45 + 1553: -19,46 + 1586: -23,51 + 1587: -23,52 + 1588: -23,53 + 1589: -23,55 + 1590: -23,54 + 1591: -23,56 + 1592: -23,57 + 1593: -23,58 + 1594: -23,59 + 1595: -23,60 + 1596: -23,61 + 1597: -23,62 + 1598: -23,63 + 1599: -23,64 + 1600: -23,65 + 1601: -23,66 + 1652: -6,-5 + 1653: -6,-6 + 1654: -6,-7 + 1655: -6,-8 + 1656: -6,-9 + 1657: -6,-10 + 1658: -6,-11 + 1659: -6,-12 + 1660: -6,-13 + 1661: -6,-14 + 1662: -6,-15 + 1663: -6,-16 + 1664: -6,-17 + 1665: -6,-18 + 1666: -6,-19 + 1667: -6,-20 + 1668: -6,-21 + 1693: -1,51 + 1694: -1,50 + 1695: -1,48 + 1696: -1,49 + 1697: -1,47 + 1711: -13,45 + 1743: -1,57 + 1744: -1,56 + 1745: -1,55 + 1769: -14,52 + 1770: -14,54 + 1771: -14,53 + 1772: -14,55 + 1773: -14,57 + 1774: -14,56 + 1775: -14,58 + 1776: -14,59 + 1777: -14,60 + 1778: -14,62 + 1779: -14,61 + 1780: -14,63 + 1781: -14,64 + 1782: -14,65 + 1783: -14,66 + 1798: 16,6 + 1799: 16,5 + 1800: 16,4 + 1801: 16,3 + 1802: 16,2 + 1803: 16,1 + 1804: 16,0 + 1805: 16,-1 + 1806: 16,-2 + 1807: 16,-3 + 1811: 17,-5 + 1822: 20,7 + 1855: 32,7 + 1856: 32,6 + 1857: 32,4 + 1858: 32,5 + 1859: 32,3 + 1860: 32,2 + 1861: 32,1 + 1862: 32,0 + 1863: 32,-1 + 1864: 32,-2 + 1865: 32,-3 + 1866: 32,-6 + 1884: 20,-6 + 1898: 24,-14 + 1899: 24,-13 + 1900: 24,-11 + 1901: 24,-10 + 1902: 24,-9 + 1903: 24,-8 + 1904: 24,-12 + 1947: 50,-1 + 1948: 36,1 + 2006: 51,-13 + 2007: 51,-12 + 2008: 51,-11 + 2009: 51,-7 + 2010: 51,-6 + 2020: 62,-9 + 2021: 62,-10 + 2031: 62,-8 + 2058: 14,-29 + 2059: 14,-30 + 2060: 14,-31 + 2061: 14,-37 + 2062: 14,-24 + 2063: 14,-22 + 2064: 14,-23 + 2066: 14,-25 + 2067: 11,-27 + 2069: 14,-32 + 2070: 14,-34 + 2071: 14,-33 + 2072: 14,-35 + 2073: 14,-36 + 2091: 0,-27 + 2120: 34,-22 + 2121: 34,-23 + 2122: 34,-23 + 2123: 34,-24 + 2124: 34,-27 + 2125: 34,-28 + 2126: 34,-29 + 2127: 34,-30 + 2128: 34,-32 + 2129: 34,-33 + 2130: 34,-34 + 2131: 34,-35 + 2132: 34,-36 + 2133: 34,-37 + 2143: -7,-42 + 2144: -7,-43 + 2154: -6,-27 + 2305: -27,3 + 2306: -27,-1 + 3714: -21,-17 + 3715: -21,-18 + 3716: -21,-19 - node: color: '#D4D4D4FF' id: MiniTileSteelLineW decals: - 3334: -36,-7 - 3335: -36,-8 - 3336: -36,-9 - 3337: -36,-10 - 3338: -36,-11 - 3339: -36,-12 + 3306: -36,-7 + 3307: -36,-8 + 3308: -36,-9 + 3309: -36,-10 + 3310: -36,-11 + 3311: -36,-12 - node: color: '#DE3A3A96' id: MiniTileSteelLineW decals: - 2806: 14,22 - 2807: 14,21 - 2808: 14,20 + 2784: 14,22 + 2785: 14,21 + 2786: 14,20 - node: color: '#FFFFFFFF' id: MiniTileWhiteBox decals: - 687: -1,-48 - 688: -13,-48 + 678: -1,-48 + 679: -13,-48 - node: color: '#258CC0EA' id: MiniTileWhiteCornerNe decals: - 3757: 7,-46 - 3785: -23,-58 + 3729: 7,-46 + 3757: -23,-58 - node: color: '#334E6DC8' id: MiniTileWhiteCornerNe decals: - 2959: 32,-21 - 2960: 19,-21 + 2935: 32,-21 + 2936: 19,-21 - node: color: '#478C5DDC' id: MiniTileWhiteCornerNe decals: - 839: -18,-70 - 867: -23,-76 - 885: -20,-85 - 888: -23,-83 + 830: -18,-70 + 858: -23,-76 + 876: -20,-85 + 879: -23,-83 - node: color: '#52B4E963' id: MiniTileWhiteCornerNe decals: - 3246: 73,-48 + 3218: 73,-48 - node: color: '#52B4E9B7' id: MiniTileWhiteCornerNe decals: - 3735: 47,7 - 3736: 46,8 + 3707: 47,7 + 3708: 46,8 - node: color: '#52B4E9CD' id: MiniTileWhiteCornerNe decals: - 692: 0,-46 - 752: 6,-53 - 799: -12,-46 - 808: 0,-64 - 809: -1,-65 + 683: 0,-46 + 743: 6,-53 + 790: -12,-46 + 799: 0,-64 + 800: -1,-65 - node: color: '#707070B7' id: MiniTileWhiteCornerNe decals: - 3551: 31,-72 - 3552: 28,-71 - 3553: 27,-70 + 3523: 31,-72 + 3524: 28,-71 + 3525: 27,-70 - node: color: '#73C2A496' id: MiniTileWhiteCornerNe decals: - 2629: -23,-32 - 2637: -32,-32 - 2638: -31,-33 - 2658: -36,-33 - 2667: -32,-38 - 2708: -34,-44 + 2607: -23,-32 + 2615: -32,-32 + 2616: -31,-33 + 2636: -36,-33 + 2645: -32,-38 + 2686: -34,-44 - node: color: '#787878B7' id: MiniTileWhiteCornerNe decals: - 3604: 31,-78 - 3645: 50,-72 - 3657: 49,-78 + 3576: 31,-78 + 3617: 50,-72 + 3629: 49,-78 - node: color: '#92CCA4BD' id: MiniTileWhiteCornerNe decals: - 3532: 17,-82 + 3504: 17,-82 - node: color: '#A4610696' id: MiniTileWhiteCornerNe decals: - 2387: -31,26 - 2388: -23,25 - 2390: -28,19 - 2410: -47,22 - 2423: -47,33 + 2369: -31,26 + 2370: -23,25 + 2372: -28,19 + 2392: -47,22 + 2405: -47,33 - node: color: '#D381C996' id: MiniTileWhiteCornerNe decals: - 920: 46,-42 - 944: 53,-40 - 945: 51,-38 - 957: 57,-45 - 989: 51,-50 - 990: 52,-51 - 991: 53,-52 - 1019: 46,-46 - 3099: 74,-32 - 3103: 73,-38 - 3219: 73,-44 - 3228: 68,-48 - 3234: 77,-44 - 3477: 64,-32 - 3478: 65,-33 + 911: 46,-42 + 935: 53,-40 + 936: 51,-38 + 948: 57,-45 + 980: 51,-50 + 981: 52,-51 + 982: 53,-52 + 1010: 46,-46 + 3072: 74,-32 + 3076: 73,-38 + 3191: 73,-44 + 3200: 68,-48 + 3206: 77,-44 + 3449: 64,-32 + 3450: 65,-33 - node: color: '#D381C9C0' id: MiniTileWhiteCornerNe decals: - 3166: 65,-44 - 3173: 63,-43 + 3138: 65,-44 + 3145: 63,-43 - node: color: '#D4D4D406' id: MiniTileWhiteCornerNe decals: - 4132: -40,15 - 4133: -36,15 + 4064: -40,15 + 4065: -36,15 - node: color: '#D4D4D40F' id: MiniTileWhiteCornerNe decals: - 3180: 55,-35 + 3152: 55,-35 - node: color: '#D4D4D428' id: MiniTileWhiteCornerNe decals: - 2487: -46,-9 + 2469: -46,-9 - node: color: '#D4D4D4D3' id: MiniTileWhiteCornerNe decals: - 2216: 14,3 - 2259: 14,-1 - 2281: 3,-1 - 2282: 9,-1 - 2305: -3,-1 - 2306: -3,3 + 2198: 14,3 + 2241: 14,-1 + 2263: 3,-1 + 2264: 9,-1 + 2287: -3,-1 + 2288: -3,3 - node: color: '#DE3A3A96' id: MiniTileWhiteCornerNe decals: - 2740: 26,13 - 2744: 26,18 - 2763: 18,17 - 2767: 13,17 - 2777: 8,17 - 2811: 42,16 - 3126: -16,-21 - 3192: 22,-46 - 3355: -15,27 + 2718: 26,13 + 2722: 26,18 + 2741: 18,17 + 2745: 13,17 + 2755: 8,17 + 2789: 42,16 + 3099: -16,-21 + 3164: 22,-46 + 3327: -15,27 - node: color: '#DE3A3AA7' id: MiniTileWhiteCornerNe decals: - 4082: 30,22 + 4029: 30,22 - node: color: '#EFB34196' id: MiniTileWhiteCornerNe decals: - 2444: -23,-9 - 2448: -28,-17 - 2476: -42,-10 - 2515: -45,-6 - 2543: -51,-6 - 2547: -51,-17 - 2548: -53,-13 - 2607: -71,-24 - 3291: -28,-10 - 3316: -35,-6 - 3349: -42,-6 - 3389: -32,-10 + 2426: -23,-9 + 2430: -28,-17 + 2458: -42,-10 + 2497: -45,-6 + 2521: -51,-6 + 2525: -51,-17 + 2526: -53,-13 + 2585: -71,-24 + 3263: -28,-10 + 3288: -35,-6 + 3321: -42,-6 + 3361: -32,-10 - node: color: '#EFB341A7' id: MiniTileWhiteCornerNe decals: - 4107: -32,-22 + 4048: -32,-22 - node: color: '#EFB341B1' id: MiniTileWhiteCornerNe decals: - 4091: -51,-23 + 4038: -51,-23 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerNe decals: - 682: 4,-64 + 673: 4,-64 - node: color: '#258CC0EA' id: MiniTileWhiteCornerNw decals: - 3758: 2,-46 - 3786: -27,-58 + 3730: 2,-46 + 3758: -27,-58 - node: color: '#334E6DC8' id: MiniTileWhiteCornerNw decals: - 2957: 18,-21 - 2958: 31,-21 + 2933: 18,-21 + 2934: 31,-21 - node: color: '#478C5DDC' id: MiniTileWhiteCornerNw decals: - 849: -26,-70 - 868: -26,-76 - 886: -27,-85 - 887: -24,-83 + 840: -26,-70 + 859: -26,-76 + 877: -27,-85 + 878: -24,-83 - node: color: '#52B4E963' id: MiniTileWhiteCornerNw decals: - 3250: 69,-48 + 3222: 69,-48 - node: color: '#52B4E9B7' id: MiniTileWhiteCornerNw decals: - 3734: 44,8 + 3706: 44,8 - node: color: '#52B4E9CD' id: MiniTileWhiteCornerNw decals: - 693: -10,-46 - 720: -16,-53 - 798: -17,-46 - 813: -4,-64 - 814: -3,-65 + 684: -10,-46 + 711: -16,-53 + 789: -17,-46 + 804: -4,-64 + 805: -3,-65 - node: color: '#707070B7' id: MiniTileWhiteCornerNw decals: - 3555: 22,-72 - 3556: 23,-71 - 3557: 24,-70 + 3527: 22,-72 + 3528: 23,-71 + 3529: 24,-70 - node: color: '#73C2A496' id: MiniTileWhiteCornerNw decals: - 2630: -26,-32 - 2639: -33,-32 - 2640: -34,-33 - 2659: -41,-33 - 2668: -33,-38 + 2608: -26,-32 + 2617: -33,-32 + 2618: -34,-33 + 2637: -41,-33 + 2646: -33,-38 - node: color: '#787878B7' id: MiniTileWhiteCornerNw decals: - 3605: 29,-78 - 3639: 27,-81 - 3646: 47,-72 - 3656: 47,-78 + 3577: 29,-78 + 3611: 27,-81 + 3618: 47,-72 + 3628: 47,-78 - node: color: '#92CCA4BD' id: MiniTileWhiteCornerNw decals: - 3534: 13,-82 + 3506: 13,-82 - node: color: '#A4610696' id: MiniTileWhiteCornerNw decals: - 2386: -35,26 - 2389: -26,25 - 2409: -49,22 - 2422: -49,33 + 2368: -35,26 + 2371: -26,25 + 2391: -49,22 + 2404: -49,33 - node: color: '#D381C996' id: MiniTileWhiteCornerNw decals: - 919: 41,-42 - 949: 48,-38 - 960: 55,-45 - 987: 48,-50 - 988: 45,-57 - 1021: 41,-46 - 3098: 71,-32 - 3104: 70,-33 - 3218: 67,-44 - 3227: 67,-48 - 3232: 74,-48 - 3233: 76,-44 - 3476: 60,-32 + 910: 41,-42 + 940: 48,-38 + 951: 55,-45 + 978: 48,-50 + 979: 45,-57 + 1012: 41,-46 + 3071: 71,-32 + 3077: 70,-33 + 3190: 67,-44 + 3199: 67,-48 + 3204: 74,-48 + 3205: 76,-44 + 3448: 60,-32 - node: color: '#D381C9C0' id: MiniTileWhiteCornerNw decals: - 3165: 59,-44 - 3172: 61,-43 + 3137: 59,-44 + 3144: 61,-43 - node: color: '#D4D4D406' id: MiniTileWhiteCornerNw decals: - 4136: -41,15 - 4137: -37,15 + 4068: -41,15 + 4069: -37,15 - node: color: '#D4D4D40F' id: MiniTileWhiteCornerNw decals: - 3178: 53,-35 + 3150: 53,-35 - node: color: '#D4D4D428' id: MiniTileWhiteCornerNw decals: - 2507: -48,-9 + 2489: -48,-9 - node: color: '#D4D4D4D3' id: MiniTileWhiteCornerNw decals: - 2219: -11,3 - 2220: -1,3 - 2266: -1,-1 - 2267: -11,-1 - 2279: 11,-1 - 2280: 5,-1 + 2201: -11,3 + 2202: -1,3 + 2248: -1,-1 + 2249: -11,-1 + 2261: 11,-1 + 2262: 5,-1 - node: color: '#DE3A3A96' id: MiniTileWhiteCornerNw decals: - 2739: 24,13 - 2746: 20,18 - 2766: 15,17 - 2773: 10,17 - 2778: 4,17 - 2810: 28,22 - 3124: -17,-21 - 3191: 19,-46 - 3354: -17,27 - 3368: 28,16 + 2717: 24,13 + 2724: 20,18 + 2744: 15,17 + 2751: 10,17 + 2756: 4,17 + 2788: 28,22 + 3097: -17,-21 + 3163: 19,-46 + 3326: -17,27 + 3340: 28,16 - node: color: '#EFB34196' id: MiniTileWhiteCornerNw decals: - 2447: -26,-9 - 2477: -43,-10 - 2516: -49,-6 - 2538: -56,-7 - 2539: -55,-6 - 2584: -55,-23 - 2586: -63,-24 - 2606: -75,-24 - 3290: -30,-10 - 3317: -40,-6 - 3350: -43,-6 - 3388: -33,-10 + 2429: -26,-9 + 2459: -43,-10 + 2498: -49,-6 + 2516: -56,-7 + 2517: -55,-6 + 2562: -55,-23 + 2564: -63,-24 + 2584: -75,-24 + 3262: -30,-10 + 3289: -40,-6 + 3322: -43,-6 + 3360: -33,-10 - node: color: '#EFB341A7' id: MiniTileWhiteCornerNw decals: - 4108: -33,-22 + 4049: -33,-22 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerNw decals: - 679: 2,-64 + 670: 2,-64 - node: color: '#258CC0EA' id: MiniTileWhiteCornerSe decals: - 3759: 7,-51 - 3789: -23,-63 + 3731: 7,-51 + 3761: -23,-63 - node: color: '#334E6DC8' id: MiniTileWhiteCornerSe decals: - 2963: 32,-23 - 2964: 30,-26 + 2939: 32,-23 + 2940: 30,-26 - node: color: '#478C5DDC' id: MiniTileWhiteCornerSe decals: - 840: -18,-74 - 866: -23,-81 - 901: -20,-88 + 831: -18,-74 + 857: -23,-81 + 892: -20,-88 - node: color: '#52B4E963' id: MiniTileWhiteCornerSe decals: - 3252: 73,-50 + 3224: 73,-50 - node: color: '#52B4E9B7' id: MiniTileWhiteCornerSe decals: - 3733: 47,4 + 3705: 47,4 - node: color: '#52B4E9CD' id: MiniTileWhiteCornerSe decals: - 689: 0,-50 - 710: -8,-50 - 719: 6,-55 - 788: -12,-51 - 811: -1,-67 - 812: 0,-68 + 680: 0,-50 + 701: -8,-50 + 710: 6,-55 + 779: -12,-51 + 802: -1,-67 + 803: 0,-68 - node: color: '#73C2A496' id: MiniTileWhiteCornerSe decals: - 2623: -23,-37 - 2643: -31,-36 - 2653: -36,-37 - 2669: -32,-42 - 2709: -34,-57 - 2710: -35,-58 + 2601: -23,-37 + 2621: -31,-36 + 2631: -36,-37 + 2647: -32,-42 + 2687: -34,-57 + 2688: -35,-58 - node: color: '#787878AB' id: MiniTileWhiteCornerSe decals: - 3594: 31,-76 + 3566: 31,-76 - node: color: '#787878B7' id: MiniTileWhiteCornerSe decals: - 3628: 31,-93 - 3642: 49,-76 - 3643: 50,-74 - 3658: 49,-93 + 3600: 31,-93 + 3614: 49,-76 + 3615: 50,-74 + 3630: 49,-93 - node: color: '#92CCA4BD' id: MiniTileWhiteCornerSe decals: - 3531: 17,-86 + 3503: 17,-86 - node: color: '#A4610696' id: MiniTileWhiteCornerSe decals: - 2391: -28,17 - 2411: -47,20 - 2420: -47,31 + 2373: -28,17 + 2393: -47,20 + 2402: -47,31 - node: color: '#D381C996' id: MiniTileWhiteCornerSe decals: - 915: 46,-44 - 946: 53,-46 - 947: 51,-48 - 958: 57,-46 - 967: 65,-50 - 984: 51,-59 - 985: 52,-56 - 986: 53,-54 - 1017: 46,-50 - 3101: 73,-34 - 3102: 73,-39 - 3217: 73,-45 - 3226: 68,-50 - 3235: 77,-48 - 3236: 76,-50 - 3479: 65,-36 - 3480: 64,-37 + 906: 46,-44 + 937: 53,-46 + 938: 51,-48 + 949: 57,-46 + 958: 65,-50 + 975: 51,-59 + 976: 52,-56 + 977: 53,-54 + 1008: 46,-50 + 3074: 73,-34 + 3075: 73,-39 + 3189: 73,-45 + 3198: 68,-50 + 3207: 77,-48 + 3208: 76,-50 + 3451: 65,-36 + 3452: 64,-37 - node: color: '#D4D4D406' id: MiniTileWhiteCornerSe decals: - 4134: -40,13 - 4135: -36,13 + 4066: -40,13 + 4067: -36,13 - node: color: '#D4D4D40F' id: MiniTileWhiteCornerSe decals: - 3179: 55,-37 + 3151: 55,-37 - node: color: '#D4D4D428' id: MiniTileWhiteCornerSe decals: - 2488: -46,-18 + 2470: -46,-18 - node: color: '#D4D4D4D3' id: MiniTileWhiteCornerSe decals: - 2217: 14,-2 - 2222: -3,-2 - 2268: -3,2 - 2269: 14,2 - 2271: 3,2 - 2274: 9,2 + 2199: 14,-2 + 2204: -3,-2 + 2250: -3,2 + 2251: 14,2 + 2253: 3,2 + 2256: 9,2 - node: color: '#DE3A3A96' id: MiniTileWhiteCornerSe decals: - 2741: 26,9 - 2745: 26,16 - 2764: 18,16 - 2768: 13,16 - 2783: 8,12 - 2809: 42,4 - 3127: -16,-24 - 3193: 22,-48 - 3357: -15,23 - 3369: 42,14 + 2719: 26,9 + 2723: 26,16 + 2742: 18,16 + 2746: 13,16 + 2761: 8,12 + 2787: 42,4 + 3100: -16,-24 + 3165: 22,-48 + 3329: -15,23 + 3341: 42,14 - node: color: '#EFB34196' id: MiniTileWhiteCornerSe decals: - 2442: -28,-15 - 2466: -35,-14 - 2479: -42,-14 - 2514: -45,-7 - 2519: -32,-30 - 2544: -51,-7 - 2575: -51,-21 - 2605: -71,-27 - 3286: -32,-19 - 3287: -24,-18 - 3288: -23,-16 - 3294: -28,-18 - 3348: -42,-8 + 2424: -28,-15 + 2448: -35,-14 + 2461: -42,-14 + 2496: -45,-7 + 2500: -32,-30 + 2522: -51,-7 + 2553: -51,-21 + 2583: -71,-27 + 3258: -32,-19 + 3259: -24,-18 + 3260: -23,-16 + 3266: -28,-18 + 3320: -42,-8 - node: color: '#EFB341B1' id: MiniTileWhiteCornerSe decals: - 4085: -51,-26 + 4032: -51,-26 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerSe decals: - 681: 4,-66 + 672: 4,-66 - node: color: '#258CC0EA' id: MiniTileWhiteCornerSw decals: - 3760: 2,-51 - 3787: -27,-62 - 3788: -26,-63 + 3732: 2,-51 + 3759: -27,-62 + 3760: -26,-63 - node: color: '#334E6DC8' id: MiniTileWhiteCornerSw decals: - 2961: 20,-26 - 2962: 18,-23 + 2937: 20,-26 + 2938: 18,-23 - node: color: '#478C5DDC' id: MiniTileWhiteCornerSw decals: - 848: -26,-74 - 884: -27,-88 + 839: -26,-74 + 875: -27,-88 - node: color: '#52B4E963' id: MiniTileWhiteCornerSw decals: - 3251: 69,-50 + 3223: 69,-50 - node: color: '#52B4E9B7' id: MiniTileWhiteCornerSw decals: - 3732: 44,4 + 3704: 44,4 - node: color: '#52B4E9CD' id: MiniTileWhiteCornerSw decals: - 691: -2,-50 - 709: -10,-50 - 721: -16,-55 - 789: -17,-51 - 810: -3,-67 - 827: -4,-68 + 682: -2,-50 + 700: -10,-50 + 712: -16,-55 + 780: -17,-51 + 801: -3,-67 + 818: -4,-68 - node: color: '#707070B7' id: MiniTileWhiteCornerSw decals: - 3554: 22,-74 + 3526: 22,-74 - node: color: '#73C2A496' id: MiniTileWhiteCornerSw decals: - 2624: -26,-37 - 2644: -34,-36 - 2654: -41,-37 - 2670: -33,-42 + 2602: -26,-37 + 2622: -34,-36 + 2632: -41,-37 + 2648: -33,-42 - node: color: '#787878AB' id: MiniTileWhiteCornerSw decals: - 3595: 24,-75 - 3596: 29,-76 + 3567: 24,-75 + 3568: 29,-76 - node: color: '#787878B7' id: MiniTileWhiteCornerSw decals: - 3629: 29,-93 - 3638: 27,-87 - 3644: 47,-76 - 3659: 47,-93 + 3601: 29,-93 + 3610: 27,-87 + 3616: 47,-76 + 3631: 47,-93 - node: color: '#92CCA4BD' id: MiniTileWhiteCornerSw decals: - 3533: 13,-86 + 3505: 13,-86 - node: color: '#A4610696' id: MiniTileWhiteCornerSw decals: - 2384: -26,17 - 2385: -35,17 - 2412: -49,20 - 2421: -49,31 + 2366: -26,17 + 2367: -35,17 + 2394: -49,20 + 2403: -49,31 - node: color: '#D381C996' id: MiniTileWhiteCornerSw decals: - 916: 41,-44 - 948: 48,-48 - 959: 55,-46 - 966: 59,-50 - 1018: 42,-50 - 1020: 41,-48 - 3208: 67,-45 - 3209: 67,-50 - 3210: 74,-50 - 3484: 60,-37 + 907: 41,-44 + 939: 48,-48 + 950: 55,-46 + 957: 59,-50 + 1009: 42,-50 + 1011: 41,-48 + 3180: 67,-45 + 3181: 67,-50 + 3182: 74,-50 + 3456: 60,-37 - node: color: '#D381C9AB' id: MiniTileWhiteCornerSw decals: - 3187: 70,-39 + 3159: 70,-39 - node: color: '#D4D4D406' id: MiniTileWhiteCornerSw decals: - 4130: -41,13 - 4131: -37,13 + 4062: -41,13 + 4063: -37,13 - node: color: '#D4D4D40F' id: MiniTileWhiteCornerSw decals: - 3177: 53,-37 + 3149: 53,-37 - node: color: '#D4D4D428' id: MiniTileWhiteCornerSw decals: - 2489: -48,-18 + 2471: -48,-18 - node: color: '#D4D4D4D3' id: MiniTileWhiteCornerSw decals: - 2218: -11,-2 - 2221: -1,-2 - 2270: -1,2 - 2272: 5,2 - 2273: 11,2 - 2307: -11,2 + 2200: -11,-2 + 2203: -1,-2 + 2252: -1,2 + 2254: 5,2 + 2255: 11,2 + 2289: -11,2 - node: color: '#DE3A3A96' id: MiniTileWhiteCornerSw decals: - 2742: 24,9 - 2743: 20,16 - 2765: 15,16 - 2774: 10,16 - 2781: 4,12 - 2833: 40,4 - 2855: 28,14 - 3125: -17,-24 - 3190: 19,-48 - 3356: -17,23 + 2720: 24,9 + 2721: 20,16 + 2743: 15,16 + 2752: 10,16 + 2759: 4,12 + 2811: 40,4 + 2833: 28,14 + 3098: -17,-24 + 3162: 19,-48 + 3328: -17,23 - node: color: '#EFB34196' id: MiniTileWhiteCornerSw decals: - 2443: -30,-15 - 2449: -33,-19 - 2467: -40,-14 - 2478: -43,-14 - 2517: -49,-7 - 2536: -33,-30 - 2545: -56,-19 - 2546: -55,-21 - 2585: -63,-26 - 2608: -75,-27 - 3289: -26,-18 - 3351: -43,-8 + 2425: -30,-15 + 2431: -33,-19 + 2449: -40,-14 + 2460: -43,-14 + 2499: -49,-7 + 2515: -33,-30 + 2523: -56,-19 + 2524: -55,-21 + 2563: -63,-26 + 2586: -75,-27 + 3261: -26,-18 + 3323: -43,-8 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerSw decals: - 680: 2,-66 + 671: 2,-66 - node: color: '#D381C996' id: MiniTileWhiteEndE decals: - 3100: 75,-33 + 3073: 75,-33 - node: color: '#52B4E9CD' id: MiniTileWhiteEndS decals: - 730: -6,-56 - 731: -9,-56 - 732: -12,-56 - 733: -3,-56 - 763: 0,-56 + 721: -6,-56 + 722: -9,-56 + 723: -12,-56 + 724: -3,-56 + 754: 0,-56 - node: color: '#334E6DC8' id: MiniTileWhiteInnerNe decals: - 2967: 19,-22 + 2943: 19,-22 - node: color: '#478C5DDC' id: MiniTileWhiteInnerNe decals: - 896: -23,-85 + 887: -23,-85 - node: color: '#52B4E9B7' id: MiniTileWhiteInnerNe decals: - 3737: 46,7 + 3709: 46,7 - node: color: '#707070B7' id: MiniTileWhiteInnerNe decals: - 3564: 27,-71 + 3536: 27,-71 - node: color: '#73C2A496' id: MiniTileWhiteInnerNe decals: - 2648: -32,-33 - 2712: -35,-44 + 2626: -32,-33 + 2690: -35,-44 - node: color: '#787878AB' id: MiniTileWhiteInnerNe decals: - 3591: 28,-72 + 3563: 28,-72 - node: color: '#A4610696' id: MiniTileWhiteInnerNe decals: - 2408: -31,19 + 2390: -31,19 - node: color: '#D381C996' id: MiniTileWhiteInnerNe decals: - 951: 51,-40 - 1003: 52,-52 - 1013: 51,-51 - 3120: 74,-33 - 3498: 64,-33 + 942: 51,-40 + 994: 52,-52 + 1004: 51,-51 + 3093: 74,-33 + 3470: 64,-33 - node: color: '#D381C9AB' id: MiniTileWhiteInnerNe decals: - 3189: 71,-38 + 3161: 71,-38 - node: color: '#D381C9C0' id: MiniTileWhiteInnerNe decals: - 3174: 63,-44 + 3146: 63,-44 - node: color: '#D4D4D4D3' id: MiniTileWhiteInnerNe decals: - 2312: 9,-2 - 2313: 3,-2 + 2294: 9,-2 + 2295: 3,-2 - node: color: '#EFB34196' id: MiniTileWhiteInnerNe decals: - 2461: -32,-17 - 2580: -54,-13 - 2581: -53,-17 + 2443: -32,-17 + 2558: -54,-13 + 2559: -53,-17 - node: color: '#FFFFFFFF' id: MiniTileWhiteInnerNe decals: - 779: -2,-55 - 780: -10,-55 + 770: -2,-55 + 771: -10,-55 - node: color: '#334E6DC8' id: MiniTileWhiteInnerNw decals: - 2968: 31,-22 + 2944: 31,-22 - node: color: '#478C5DDC' id: MiniTileWhiteInnerNw decals: - 877: -26,-78 - 895: -24,-85 + 868: -26,-78 + 886: -24,-85 - node: color: '#707070B7' id: MiniTileWhiteInnerNw decals: - 3565: 23,-72 - 3566: 24,-71 + 3537: 23,-72 + 3538: 24,-71 - node: color: '#73C2A496' id: MiniTileWhiteInnerNw decals: - 2647: -33,-33 - 2714: -36,-54 - 2715: -36,-42 + 2625: -33,-33 + 2692: -36,-54 + 2693: -36,-42 - node: color: '#787878B7' id: MiniTileWhiteInnerNw decals: - 3640: 29,-81 + 3612: 29,-81 - node: color: '#D381C996' id: MiniTileWhiteInnerNw decals: - 1010: 48,-57 - 3121: 71,-33 - 3244: 76,-48 + 1001: 48,-57 + 3094: 71,-33 + 3216: 76,-48 - node: color: '#D381C9C0' id: MiniTileWhiteInnerNw decals: - 3175: 61,-44 + 3147: 61,-44 - node: color: '#D4D4D4D3' id: MiniTileWhiteInnerNw decals: - 2314: 11,-2 - 2315: 5,-2 + 2296: 11,-2 + 2297: 5,-2 - node: color: '#EFB34196' id: MiniTileWhiteInnerNw decals: - 2583: -55,-7 - 2603: -55,-24 + 2561: -55,-7 + 2581: -55,-24 - node: color: '#FFFFFFFF' id: MiniTileWhiteInnerNw decals: - 778: 0,-55 - 781: -9,-55 - 782: -8,-55 + 769: 0,-55 + 772: -9,-55 + 773: -8,-55 - node: color: '#334E6DC8' id: MiniTileWhiteInnerSe decals: - 2965: 30,-23 + 2941: 30,-23 - node: color: '#52B4E9CD' id: MiniTileWhiteInnerSe decals: - 718: -8,-48 - 769: 0,-55 - 770: -3,-55 - 771: -6,-55 - 772: -9,-55 - 773: -12,-55 + 709: -8,-48 + 760: 0,-55 + 761: -3,-55 + 762: -6,-55 + 763: -9,-55 + 764: -12,-55 - node: color: '#73C2A496' id: MiniTileWhiteInnerSe decals: - 2711: -35,-57 + 2689: -35,-57 - node: color: '#787878B7' id: MiniTileWhiteInnerSe decals: - 3655: 49,-74 + 3627: 49,-74 - node: color: '#D381C996' id: MiniTileWhiteInnerSe decals: - 952: 51,-46 - 1002: 52,-54 - 1012: 51,-56 - 3118: 73,-33 - 3119: 71,-34 - 3245: 76,-48 - 3497: 64,-36 + 943: 51,-46 + 993: 52,-54 + 1003: 51,-56 + 3091: 73,-33 + 3092: 71,-34 + 3217: 76,-48 + 3469: 64,-36 - node: color: '#D4D4D4D3' id: MiniTileWhiteInnerSe decals: - 2310: 3,3 - 2311: 9,3 + 2292: 3,3 + 2293: 9,3 - node: color: '#EFB34196' id: MiniTileWhiteInnerSe decals: - 2579: -54,-7 - 3298: -32,-18 - 3303: -24,-16 + 2557: -54,-7 + 3270: -32,-18 + 3275: -24,-16 - node: color: '#FFFFFFFF' id: MiniTileWhiteInnerSe decals: - 774: -2,-53 - 785: -10,-53 + 765: -2,-53 + 776: -10,-53 - node: color: '#258CC0EA' id: MiniTileWhiteInnerSw decals: - 3790: -26,-62 + 3762: -26,-62 - node: color: '#334E6DC8' id: MiniTileWhiteInnerSw decals: - 2966: 20,-23 + 2942: 20,-23 - node: color: '#52B4E9CD' id: MiniTileWhiteInnerSw decals: - 764: 0,-55 - 765: -3,-55 - 766: -6,-55 - 767: -9,-55 - 768: -12,-55 - 3080: -2,-48 + 755: 0,-55 + 756: -3,-55 + 757: -6,-55 + 758: -9,-55 + 759: -12,-55 + 3053: -2,-48 - node: color: '#73C2A496' id: MiniTileWhiteInnerSw decals: - 2713: -36,-47 + 2691: -36,-47 - node: color: '#787878AB' id: MiniTileWhiteInnerSw decals: - 3603: 29,-75 + 3575: 29,-75 - node: color: '#787878B7' id: MiniTileWhiteInnerSw decals: - 3641: 29,-87 + 3613: 29,-87 - node: color: '#D381C996' id: MiniTileWhiteInnerSw decals: - 1031: 42,-48 + 1022: 42,-48 - node: color: '#D4D4D4D3' id: MiniTileWhiteInnerSw decals: - 2308: 11,3 - 2309: 5,3 + 2290: 11,3 + 2291: 5,3 - node: color: '#EFB34196' id: MiniTileWhiteInnerSw decals: - 2582: -55,-19 + 2560: -55,-19 - node: color: '#FFFFFFFF' id: MiniTileWhiteInnerSw decals: - 777: 0,-53 - 784: -8,-53 + 768: 0,-53 + 775: -8,-53 - node: color: '#258CC0EA' id: MiniTileWhiteLineE decals: - 3761: 7,-50 - 3762: 7,-49 - 3763: 7,-48 - 3764: 7,-47 - 3781: -23,-59 - 3782: -23,-60 - 3783: -23,-61 - 3784: -23,-62 + 3733: 7,-50 + 3734: 7,-49 + 3735: 7,-48 + 3736: 7,-47 + 3753: -23,-59 + 3754: -23,-60 + 3755: -23,-61 + 3756: -23,-62 - node: color: '#334E6DC8' id: MiniTileWhiteLineE decals: - 2954: 32,-22 - 2955: 30,-25 - 2956: 30,-24 - 2971: 16,-26 - 2972: 16,-25 + 2930: 32,-22 + 2931: 30,-25 + 2932: 30,-24 + 2947: 16,-26 + 2948: 16,-25 - node: color: '#478C5DDC' id: MiniTileWhiteLineE decals: - 836: -18,-71 - 837: -18,-72 - 838: -18,-73 - 871: -23,-77 - 872: -23,-78 - 873: -23,-79 - 874: -23,-80 - 892: -23,-84 - 899: -20,-86 - 900: -20,-87 + 827: -18,-71 + 828: -18,-72 + 829: -18,-73 + 862: -23,-77 + 863: -23,-78 + 864: -23,-79 + 865: -23,-80 + 883: -23,-84 + 890: -20,-86 + 891: -20,-87 - node: color: '#52B4E963' id: MiniTileWhiteLineE decals: - 3257: 73,-49 + 3229: 73,-49 - node: color: '#52B4E9B7' id: MiniTileWhiteLineE decals: - 3730: 47,6 - 3731: 47,5 + 3702: 47,6 + 3703: 47,5 - node: color: '#52B4E9CD' id: MiniTileWhiteLineE decals: - 703: 0,-47 - 704: 0,-48 - 705: 0,-49 - 711: -8,-49 - 753: 6,-54 - 800: -12,-47 - 801: -12,-48 - 802: -12,-49 - 803: -12,-50 - 815: 0,-65 - 816: 0,-66 - 817: 0,-67 - 818: -1,-66 + 694: 0,-47 + 695: 0,-48 + 696: 0,-49 + 702: -8,-49 + 744: 6,-54 + 791: -12,-47 + 792: -12,-48 + 793: -12,-49 + 794: -12,-50 + 806: 0,-65 + 807: 0,-66 + 808: 0,-67 + 809: -1,-66 - node: color: '#646464C7' id: MiniTileWhiteLineE decals: - 3934: -46,0 + 3881: -46,0 - node: color: '#707070B7' id: MiniTileWhiteLineE decals: - 3558: 31,-73 + 3530: 31,-73 - node: color: '#73C2A496' id: MiniTileWhiteLineE decals: - 2625: -23,-36 - 2626: -23,-35 - 2627: -23,-34 - 2628: -23,-33 - 2645: -31,-34 - 2646: -31,-35 - 2655: -36,-36 - 2656: -36,-35 - 2657: -36,-34 - 2671: -32,-39 - 2672: -32,-40 - 2673: -32,-41 - 2681: -35,-41 - 2683: -35,-42 - 2684: -35,-43 - 2685: -34,-45 - 2686: -34,-46 - 2687: -34,-47 - 2688: -34,-48 - 2689: -34,-49 - 2690: -34,-50 - 2691: -34,-51 - 2692: -34,-52 - 2693: -34,-53 - 2694: -34,-54 - 2695: -34,-55 - 2696: -34,-56 + 2603: -23,-36 + 2604: -23,-35 + 2605: -23,-34 + 2606: -23,-33 + 2623: -31,-34 + 2624: -31,-35 + 2633: -36,-36 + 2634: -36,-35 + 2635: -36,-34 + 2649: -32,-39 + 2650: -32,-40 + 2651: -32,-41 + 2659: -35,-41 + 2661: -35,-42 + 2662: -35,-43 + 2663: -34,-45 + 2664: -34,-46 + 2665: -34,-47 + 2666: -34,-48 + 2667: -34,-49 + 2668: -34,-50 + 2669: -34,-51 + 2670: -34,-52 + 2671: -34,-53 + 2672: -34,-54 + 2673: -34,-55 + 2674: -34,-56 - node: color: '#787878AB' id: MiniTileWhiteLineE decals: - 3592: 31,-74 - 3593: 31,-75 + 3564: 31,-74 + 3565: 31,-75 - node: color: '#787878B7' id: MiniTileWhiteLineE decals: - 3609: 31,-79 - 3610: 31,-80 - 3611: 31,-81 - 3612: 31,-82 - 3613: 31,-83 - 3614: 31,-84 - 3615: 31,-85 - 3616: 31,-86 - 3617: 31,-87 - 3618: 31,-88 - 3619: 31,-89 - 3620: 31,-90 - 3621: 31,-91 - 3622: 31,-92 - 3651: 50,-73 - 3652: 49,-75 - 3660: 49,-92 - 3661: 49,-91 - 3662: 49,-90 - 3663: 49,-89 - 3664: 49,-88 - 3665: 49,-87 - 3666: 49,-86 - 3667: 49,-85 - 3668: 49,-84 - 3669: 49,-83 - 3670: 49,-82 - 3671: 49,-81 - 3672: 49,-80 - 3673: 49,-79 + 3581: 31,-79 + 3582: 31,-80 + 3583: 31,-81 + 3584: 31,-82 + 3585: 31,-83 + 3586: 31,-84 + 3587: 31,-85 + 3588: 31,-86 + 3589: 31,-87 + 3590: 31,-88 + 3591: 31,-89 + 3592: 31,-90 + 3593: 31,-91 + 3594: 31,-92 + 3623: 50,-73 + 3624: 49,-75 + 3632: 49,-92 + 3633: 49,-91 + 3634: 49,-90 + 3635: 49,-89 + 3636: 49,-88 + 3637: 49,-87 + 3638: 49,-86 + 3639: 49,-85 + 3640: 49,-84 + 3641: 49,-83 + 3642: 49,-82 + 3643: 49,-81 + 3644: 49,-80 + 3645: 49,-79 - node: color: '#92CCA4BD' id: MiniTileWhiteLineE decals: - 3535: 17,-83 - 3536: 17,-84 - 3537: 17,-85 + 3507: 17,-83 + 3508: 17,-84 + 3509: 17,-85 - node: color: '#A4610696' id: MiniTileWhiteLineE decals: - 2364: -23,18 - 2365: -23,19 - 2366: -23,20 - 2367: -23,21 - 2368: -23,22 - 2369: -23,23 - 2370: -23,24 - 2371: -31,24 - 2372: -31,23 - 2373: -31,25 - 2374: -31,22 - 2375: -31,21 - 2376: -31,20 - 2392: -28,18 - 2414: -47,21 - 2418: -47,32 + 2346: -23,18 + 2347: -23,19 + 2348: -23,20 + 2349: -23,21 + 2350: -23,22 + 2351: -23,23 + 2352: -23,24 + 2353: -31,24 + 2354: -31,23 + 2355: -31,25 + 2356: -31,22 + 2357: -31,21 + 2358: -31,20 + 2374: -28,18 + 2396: -47,21 + 2400: -47,32 - node: color: '#D381C996' id: MiniTileWhiteLineE decals: - 918: 46,-43 - 928: 53,-45 - 929: 53,-44 - 930: 53,-43 - 931: 53,-42 - 932: 53,-41 - 933: 51,-39 - 934: 51,-47 - 968: 65,-46 - 969: 65,-47 - 970: 65,-48 - 971: 65,-49 - 992: 51,-58 - 993: 51,-57 - 1000: 53,-53 - 1001: 52,-55 - 1026: 46,-47 - 1027: 46,-48 - 1028: 46,-49 - 3109: 71,-37 - 3110: 71,-36 - 3111: 71,-35 - 3229: 68,-49 - 3237: 76,-49 - 3238: 77,-47 - 3239: 77,-46 - 3240: 77,-45 - 3485: 65,-34 - 3486: 65,-35 + 909: 46,-43 + 919: 53,-45 + 920: 53,-44 + 921: 53,-43 + 922: 53,-42 + 923: 53,-41 + 924: 51,-39 + 925: 51,-47 + 959: 65,-46 + 960: 65,-47 + 961: 65,-48 + 962: 65,-49 + 983: 51,-58 + 984: 51,-57 + 991: 53,-53 + 992: 52,-55 + 1017: 46,-47 + 1018: 46,-48 + 1019: 46,-49 + 3082: 71,-37 + 3083: 71,-36 + 3084: 71,-35 + 3201: 68,-49 + 3209: 76,-49 + 3210: 77,-47 + 3211: 77,-46 + 3212: 77,-45 + 3457: 65,-34 + 3458: 65,-35 - node: color: '#D381C9C0' id: MiniTileWhiteLineE decals: - 3167: 65,-45 + 3139: 65,-45 - node: color: '#D4D4D406' id: MiniTileWhiteLineE decals: - 4138: -40,14 - 4139: -36,14 + 4070: -40,14 + 4071: -36,14 - node: color: '#D4D4D40F' id: MiniTileWhiteLineE decals: - 3182: 55,-36 + 3154: 55,-36 - node: color: '#D4D4D428' id: MiniTileWhiteLineE decals: - 2491: -46,-17 - 2492: -46,-16 - 2493: -46,-14 - 2494: -46,-15 - 2495: -46,-13 - 2496: -46,-10 - 2497: -46,-11 - 2498: -46,-12 + 2473: -46,-17 + 2474: -46,-16 + 2475: -46,-14 + 2476: -46,-15 + 2477: -46,-13 + 2478: -46,-10 + 2479: -46,-11 + 2480: -46,-12 - node: color: '#DE3A3A96' id: MiniTileWhiteLineE decals: - 2733: 26,12 - 2734: 26,11 - 2735: 26,10 - 2752: 26,17 - 2784: 8,13 - 2785: 8,14 - 2786: 8,15 - 2787: 8,16 - 2822: 42,15 - 2823: 42,13 - 2824: 42,11 - 2825: 42,12 - 2826: 42,10 - 2827: 42,9 - 2828: 42,8 - 2829: 42,7 - 2830: 42,6 - 2831: 42,5 - 2848: 30,20 - 2856: 30,19 - 2857: 30,18 - 2858: 30,17 - 3128: -16,-22 - 3129: -16,-23 - 3199: 22,-47 - 3363: -15,26 - 3364: -15,25 - 3365: -15,24 + 2711: 26,12 + 2712: 26,11 + 2713: 26,10 + 2730: 26,17 + 2762: 8,13 + 2763: 8,14 + 2764: 8,15 + 2765: 8,16 + 2800: 42,15 + 2801: 42,13 + 2802: 42,11 + 2803: 42,12 + 2804: 42,10 + 2805: 42,9 + 2806: 42,8 + 2807: 42,7 + 2808: 42,6 + 2809: 42,5 + 2826: 30,20 + 2834: 30,19 + 2835: 30,18 + 2836: 30,17 + 3101: -16,-22 + 3102: -16,-23 + 3171: 22,-47 + 3335: -15,26 + 3336: -15,25 + 3337: -15,24 - node: color: '#DE3A3AA7' id: MiniTileWhiteLineE decals: - 4081: 30,21 + 4028: 30,21 - node: color: '#DE3A3AD3' id: MiniTileWhiteLineE decals: - 832: -19,-76 - 833: -19,-77 - 834: -19,-79 - 835: -19,-80 + 823: -19,-76 + 824: -19,-77 + 825: -19,-79 + 826: -19,-80 - node: color: '#EFB34196' id: MiniTileWhiteLineE decals: - 2425: -23,-14 - 2426: -23,-13 - 2427: -23,-12 - 2428: -23,-11 - 2429: -23,-10 - 2438: -28,-12 - 2439: -28,-13 - 2440: -28,-14 - 2450: -32,-16 - 2451: -32,-14 - 2452: -32,-13 - 2453: -32,-15 - 2468: -35,-13 - 2469: -35,-12 - 2470: -35,-11 - 2471: -35,-10 - 2480: -42,-11 - 2481: -42,-12 - 2482: -42,-13 - 2520: -32,-29 - 2521: -32,-28 - 2522: -32,-27 - 2523: -32,-26 - 2524: -32,-25 - 2525: -32,-23 - 2526: -32,-24 - 2549: -51,-20 - 2550: -51,-19 - 2551: -51,-18 - 2552: -53,-16 - 2553: -53,-15 - 2554: -53,-14 - 2555: -54,-12 - 2556: -54,-11 - 2557: -54,-10 - 2558: -54,-9 - 2559: -54,-8 - 2615: -71,-25 - 2616: -71,-26 - 3281: -32,-11 - 3282: -32,-12 - 3283: -28,-11 - 3284: -23,-15 - 3285: -24,-17 - 3325: -35,-7 - 3326: -35,-8 - 3327: -35,-9 - 3352: -42,-7 + 2407: -23,-14 + 2408: -23,-13 + 2409: -23,-12 + 2410: -23,-11 + 2411: -23,-10 + 2420: -28,-12 + 2421: -28,-13 + 2422: -28,-14 + 2432: -32,-16 + 2433: -32,-14 + 2434: -32,-13 + 2435: -32,-15 + 2450: -35,-13 + 2451: -35,-12 + 2452: -35,-11 + 2453: -35,-10 + 2462: -42,-11 + 2463: -42,-12 + 2464: -42,-13 + 2501: -32,-29 + 2502: -32,-28 + 2503: -32,-27 + 2504: -32,-26 + 2505: -32,-25 + 2506: -32,-23 + 2507: -32,-24 + 2527: -51,-20 + 2528: -51,-19 + 2529: -51,-18 + 2530: -53,-16 + 2531: -53,-15 + 2532: -53,-14 + 2533: -54,-12 + 2534: -54,-11 + 2535: -54,-10 + 2536: -54,-9 + 2537: -54,-8 + 2593: -71,-25 + 2594: -71,-26 + 3253: -32,-11 + 3254: -32,-12 + 3255: -28,-11 + 3256: -23,-15 + 3257: -24,-17 + 3297: -35,-7 + 3298: -35,-8 + 3299: -35,-9 + 3324: -42,-7 - node: color: '#EFB341B1' id: MiniTileWhiteLineE decals: - 4086: -51,-25 - 4087: -51,-24 + 4033: -51,-25 + 4034: -51,-24 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineE decals: - 677: -2,-54 - 685: 4,-65 - 3077: -10,-54 + 668: -2,-54 + 676: 4,-65 + 3050: -10,-54 - node: color: '#258CC0EA' id: MiniTileWhiteLineN decals: - 3769: 3,-46 - 3770: 4,-46 - 3771: 5,-46 - 3772: 6,-46 - 3773: -25,-58 - 3774: -26,-58 - 3775: -24,-58 + 3741: 3,-46 + 3742: 4,-46 + 3743: 5,-46 + 3744: 6,-46 + 3745: -25,-58 + 3746: -26,-58 + 3747: -24,-58 - node: color: '#334E6DC8' id: MiniTileWhiteLineN decals: - 1032: 32,-59 - 1033: 33,-59 - 1034: 31,-59 - 1035: 30,-59 - 1036: 29,-59 - 2792: 6,17 - 2940: 30,-22 - 2941: 29,-22 - 2942: 28,-22 - 2943: 27,-22 - 2944: 26,-22 - 2945: 25,-22 - 2946: 24,-22 - 2947: 23,-22 - 2948: 22,-22 - 2949: 21,-22 - 2950: 20,-22 - 2975: 32,-17 + 1023: 32,-59 + 1024: 33,-59 + 1025: 31,-59 + 1026: 30,-59 + 1027: 29,-59 + 2770: 6,17 + 2916: 30,-22 + 2917: 29,-22 + 2918: 28,-22 + 2919: 27,-22 + 2920: 26,-22 + 2921: 25,-22 + 2922: 24,-22 + 2923: 23,-22 + 2924: 22,-22 + 2925: 21,-22 + 2926: 20,-22 + 2951: 32,-17 - node: color: '#478C5DDC' id: MiniTileWhiteLineN decals: - 850: -25,-70 - 851: -24,-70 - 852: -23,-70 - 853: -22,-70 - 854: -21,-70 - 855: -20,-70 - 856: -19,-70 - 869: -25,-76 - 870: -24,-76 - 875: -27,-78 - 893: -21,-85 - 894: -22,-85 - 897: -25,-85 - 898: -26,-85 + 841: -25,-70 + 842: -24,-70 + 843: -23,-70 + 844: -22,-70 + 845: -21,-70 + 846: -20,-70 + 847: -19,-70 + 860: -25,-76 + 861: -24,-76 + 866: -27,-78 + 884: -21,-85 + 885: -22,-85 + 888: -25,-85 + 889: -26,-85 - node: color: '#52B4E963' id: MiniTileWhiteLineN decals: - 3247: 72,-48 - 3248: 71,-48 - 3249: 70,-48 + 3219: 72,-48 + 3220: 71,-48 + 3221: 70,-48 - node: color: '#52B4E996' id: MiniTileWhiteLineN decals: - 2977: -9,-42 + 2953: -9,-42 - node: color: '#52B4E9B7' id: MiniTileWhiteLineN decals: - 3724: 45,8 + 3696: 45,8 - node: color: '#52B4E9CD' id: MiniTileWhiteLineN decals: - 694: -2,-46 - 695: -1,-46 - 696: -3,-46 - 697: -4,-46 - 698: -5,-46 - 699: -6,-46 - 700: -7,-46 - 701: -8,-46 - 702: -9,-46 - 734: -15,-53 - 735: -14,-53 - 736: -11,-53 - 737: -9,-53 - 738: -8,-53 - 739: -7,-53 - 740: -6,-53 - 741: -5,-53 - 742: -4,-53 - 743: -3,-53 - 744: -2,-53 - 745: -1,-53 - 746: 0,-53 - 747: 1,-53 - 748: 2,-53 - 749: 3,-53 - 750: 4,-53 - 751: 5,-53 - 786: -10,-53 - 794: -13,-46 - 795: -14,-46 - 796: -16,-46 - 797: -15,-46 - 828: -2,-65 - 829: -1,-64 - 830: -2,-64 - 831: -3,-64 + 685: -2,-46 + 686: -1,-46 + 687: -3,-46 + 688: -4,-46 + 689: -5,-46 + 690: -6,-46 + 691: -7,-46 + 692: -8,-46 + 693: -9,-46 + 725: -15,-53 + 726: -14,-53 + 727: -11,-53 + 728: -9,-53 + 729: -8,-53 + 730: -7,-53 + 731: -6,-53 + 732: -5,-53 + 733: -4,-53 + 734: -3,-53 + 735: -2,-53 + 736: -1,-53 + 737: 0,-53 + 738: 1,-53 + 739: 2,-53 + 740: 3,-53 + 741: 4,-53 + 742: 5,-53 + 777: -10,-53 + 785: -13,-46 + 786: -14,-46 + 787: -16,-46 + 788: -15,-46 + 819: -2,-65 + 820: -1,-64 + 821: -2,-64 + 822: -3,-64 - node: color: '#5D9C7FC1' id: MiniTileWhiteLineN decals: - 3748: -41,-42 + 3720: -41,-42 - node: color: '#60A5D9D6' id: MiniTileWhiteLineN decals: - 3473: -13,-53 - 3474: -12,-53 + 3445: -13,-53 + 3446: -12,-53 - node: color: '#707070B7' id: MiniTileWhiteLineN decals: - 3559: 25,-70 - 3560: 26,-70 - 3562: 29,-72 - 3563: 30,-72 + 3531: 25,-70 + 3532: 26,-70 + 3534: 29,-72 + 3535: 30,-72 - node: color: '#73C2A496' id: MiniTileWhiteLineN decals: - 2619: -25,-32 - 2620: -24,-32 - 2660: -38,-33 - 2661: -39,-33 - 2662: -40,-33 - 2663: -37,-33 - 2677: -42,-42 - 2678: -40,-42 - 2679: -39,-42 - 2680: -38,-42 - 2699: -37,-54 - 2716: -37,-42 + 2597: -25,-32 + 2598: -24,-32 + 2638: -38,-33 + 2639: -39,-33 + 2640: -40,-33 + 2641: -37,-33 + 2655: -42,-42 + 2656: -40,-42 + 2657: -39,-42 + 2658: -38,-42 + 2677: -37,-54 + 2694: -37,-42 - node: color: '#787878B7' id: MiniTileWhiteLineN decals: - 3606: 30,-78 - 3632: 28,-81 - 3653: 48,-72 - 3654: 49,-72 - 3689: 48,-78 + 3578: 30,-78 + 3604: 28,-81 + 3625: 48,-72 + 3626: 49,-72 + 3661: 48,-78 - node: color: '#9FED5896' id: MiniTileWhiteLineN decals: - 908: -9,-26 - 909: -10,-26 - 910: -12,-26 + 899: -9,-26 + 900: -10,-26 + 901: -12,-26 - node: color: '#A4610696' id: MiniTileWhiteLineN decals: - 2377: -29,19 - 2378: -30,19 - 2379: -33,26 - 2380: -32,26 - 2381: -34,26 - 2382: -25,25 - 2383: -24,25 - 2413: -48,22 - 2424: -48,33 + 2359: -29,19 + 2360: -30,19 + 2361: -33,26 + 2362: -32,26 + 2363: -34,26 + 2364: -25,25 + 2365: -24,25 + 2395: -48,22 + 2406: -48,33 - node: color: '#D381C996' id: MiniTileWhiteLineN decals: - 921: 45,-42 - 922: 44,-42 - 923: 43,-42 - 924: 42,-42 - 950: 52,-40 - 953: 50,-38 - 954: 49,-38 - 956: 56,-45 - 996: 46,-57 - 997: 47,-57 - 998: 49,-50 - 999: 50,-50 - 1022: 45,-46 - 1023: 44,-46 - 1024: 42,-46 - 1025: 43,-46 - 3115: 72,-38 - 3116: 72,-32 - 3117: 73,-32 - 3220: 68,-44 - 3221: 69,-44 - 3222: 70,-44 - 3223: 71,-44 - 3224: 72,-44 - 3225: 75,-48 - 3491: 61,-32 - 3492: 62,-32 - 3493: 63,-32 + 912: 45,-42 + 913: 44,-42 + 914: 43,-42 + 915: 42,-42 + 941: 52,-40 + 944: 50,-38 + 945: 49,-38 + 947: 56,-45 + 987: 46,-57 + 988: 47,-57 + 989: 49,-50 + 990: 50,-50 + 1013: 45,-46 + 1014: 44,-46 + 1015: 42,-46 + 1016: 43,-46 + 3088: 72,-38 + 3089: 72,-32 + 3090: 73,-32 + 3192: 68,-44 + 3193: 69,-44 + 3194: 70,-44 + 3195: 71,-44 + 3196: 72,-44 + 3197: 75,-48 + 3463: 61,-32 + 3464: 62,-32 + 3465: 63,-32 - node: color: '#D381C9C0' id: MiniTileWhiteLineN decals: - 3169: 60,-44 - 3170: 64,-44 - 3171: 62,-43 + 3141: 60,-44 + 3142: 64,-44 + 3143: 62,-43 - node: color: '#D4D4D40F' id: MiniTileWhiteLineN decals: - 3181: 54,-35 + 3153: 54,-35 - node: color: '#D4D4D428' id: MiniTileWhiteLineN decals: - 2486: -47,-9 + 2468: -47,-9 - node: color: '#D4D4D4D3' id: MiniTileWhiteLineN decals: - 2195: -10,3 - 2196: -9,3 - 2197: -8,3 - 2198: -6,3 - 2199: -7,3 - 2200: -5,3 - 2201: -4,3 - 2202: 0,3 - 2203: 1,3 - 2204: 2,3 - 2205: 3,3 - 2206: 4,3 - 2207: 5,3 - 2208: 6,3 - 2209: 7,3 - 2210: 8,3 - 2211: 9,3 - 2212: 10,3 - 2213: 11,3 - 2214: 12,3 - 2215: 13,3 - 2223: 13,-1 - 2224: 12,-1 - 2260: 8,-1 - 2261: 7,-1 - 2262: 6,-1 - 2263: 2,-1 - 2264: 0,-1 - 2265: 1,-1 - 2277: 10,-2 - 2278: 4,-2 - 2298: -4,-1 - 2299: -5,-1 - 2300: -7,-1 - 2301: -6,-1 - 2302: -8,-1 - 2303: -9,-1 - 2304: -10,-1 + 2177: -10,3 + 2178: -9,3 + 2179: -8,3 + 2180: -6,3 + 2181: -7,3 + 2182: -5,3 + 2183: -4,3 + 2184: 0,3 + 2185: 1,3 + 2186: 2,3 + 2187: 3,3 + 2188: 4,3 + 2189: 5,3 + 2190: 6,3 + 2191: 7,3 + 2192: 8,3 + 2193: 9,3 + 2194: 10,3 + 2195: 11,3 + 2196: 12,3 + 2197: 13,3 + 2205: 13,-1 + 2206: 12,-1 + 2242: 8,-1 + 2243: 7,-1 + 2244: 6,-1 + 2245: 2,-1 + 2246: 0,-1 + 2247: 1,-1 + 2259: 10,-2 + 2260: 4,-2 + 2280: -4,-1 + 2281: -5,-1 + 2282: -7,-1 + 2283: -6,-1 + 2284: -8,-1 + 2285: -9,-1 + 2286: -10,-1 - node: color: '#DE3A3A96' id: MiniTileWhiteLineN decals: - 2728: 26,8 - 2729: 25,8 - 2730: 24,8 - 2732: 25,13 - 2747: 21,18 - 2748: 22,18 - 2749: 23,18 - 2750: 24,18 - 2751: 25,18 - 2761: 17,17 - 2762: 16,17 - 2769: 12,17 - 2770: 11,17 - 2775: 7,17 - 2776: 5,17 - 2812: 29,22 - 2813: 33,16 - 2814: 34,16 - 2815: 35,16 - 2816: 36,16 - 2817: 37,16 - 2818: 38,16 - 2819: 39,16 - 2820: 40,16 - 2821: 41,16 - 2859: 32,16 - 2860: 31,16 - 2974: 20,-17 - 3196: 21,-46 - 3197: 20,-46 - 3358: -16,27 - 3366: 30,16 - 3367: 29,16 + 2706: 26,8 + 2707: 25,8 + 2708: 24,8 + 2710: 25,13 + 2725: 21,18 + 2726: 22,18 + 2727: 23,18 + 2728: 24,18 + 2729: 25,18 + 2739: 17,17 + 2740: 16,17 + 2747: 12,17 + 2748: 11,17 + 2753: 7,17 + 2754: 5,17 + 2790: 29,22 + 2791: 33,16 + 2792: 34,16 + 2793: 35,16 + 2794: 36,16 + 2795: 37,16 + 2796: 38,16 + 2797: 39,16 + 2798: 40,16 + 2799: 41,16 + 2837: 32,16 + 2838: 31,16 + 2950: 20,-17 + 3168: 21,-46 + 3169: 20,-46 + 3330: -16,27 + 3338: 30,16 + 3339: 29,16 - node: color: '#EFB34196' id: MiniTileWhiteLineN decals: - 2445: -24,-9 - 2446: -25,-9 - 2458: -29,-17 - 2459: -30,-17 - 2460: -31,-17 - 2508: -46,-6 - 2509: -47,-6 - 2510: -48,-6 - 2540: -54,-6 - 2541: -53,-6 - 2542: -52,-6 - 2576: -52,-17 - 2587: -56,-24 - 2588: -57,-24 - 2589: -58,-24 - 2590: -59,-24 - 2591: -60,-24 - 2592: -61,-24 - 2593: -62,-24 - 2609: -72,-24 - 2610: -73,-24 - 2611: -74,-24 - 3292: -29,-10 - 3318: -39,-6 - 3319: -38,-6 - 3320: -37,-6 - 3321: -36,-6 + 2427: -24,-9 + 2428: -25,-9 + 2440: -29,-17 + 2441: -30,-17 + 2442: -31,-17 + 2490: -46,-6 + 2491: -47,-6 + 2492: -48,-6 + 2518: -54,-6 + 2519: -53,-6 + 2520: -52,-6 + 2554: -52,-17 + 2565: -56,-24 + 2566: -57,-24 + 2567: -58,-24 + 2568: -59,-24 + 2569: -60,-24 + 2570: -61,-24 + 2571: -62,-24 + 2587: -72,-24 + 2588: -73,-24 + 2589: -74,-24 + 3264: -29,-10 + 3290: -39,-6 + 3291: -38,-6 + 3292: -37,-6 + 3293: -36,-6 - node: color: '#EFB341B1' id: MiniTileWhiteLineN decals: - 4088: -54,-23 - 4089: -53,-23 - 4090: -52,-23 + 4035: -54,-23 + 4036: -53,-23 + 4037: -52,-23 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineN decals: - 675: -9,-55 - 683: 3,-64 - 775: -1,-55 + 666: -9,-55 + 674: 3,-64 + 766: -1,-55 - node: color: '#258CC0EA' id: MiniTileWhiteLineS decals: - 3753: 4,-51 - 3754: 5,-51 - 3755: 3,-51 - 3756: 6,-51 - 3776: -25,-63 - 3777: -24,-63 + 3725: 4,-51 + 3726: 5,-51 + 3727: 3,-51 + 3728: 6,-51 + 3748: -25,-63 + 3749: -24,-63 - node: color: '#334E6DC8' id: MiniTileWhiteLineS decals: - 2929: 29,-26 - 2930: 28,-26 - 2931: 27,-26 - 2932: 26,-26 - 2933: 25,-26 - 2934: 24,-26 - 2935: 23,-26 - 2936: 22,-26 - 2937: 21,-26 - 2938: 31,-23 - 2939: 19,-23 - 2976: 20,-44 + 2905: 29,-26 + 2906: 28,-26 + 2907: 27,-26 + 2908: 26,-26 + 2909: 25,-26 + 2910: 24,-26 + 2911: 23,-26 + 2912: 22,-26 + 2913: 21,-26 + 2914: 31,-23 + 2915: 19,-23 + 2952: 20,-44 - node: color: '#478C5DDC' id: MiniTileWhiteLineS decals: - 841: -20,-74 - 842: -21,-74 - 843: -19,-74 - 844: -22,-74 - 845: -23,-74 - 846: -24,-74 - 847: -25,-74 - 862: -27,-81 - 863: -26,-81 - 864: -25,-81 - 865: -24,-81 - 878: -21,-88 - 879: -22,-88 - 880: -23,-88 - 881: -24,-88 - 882: -25,-88 - 883: -26,-88 + 832: -20,-74 + 833: -21,-74 + 834: -19,-74 + 835: -22,-74 + 836: -23,-74 + 837: -24,-74 + 838: -25,-74 + 853: -27,-81 + 854: -26,-81 + 855: -25,-81 + 856: -24,-81 + 869: -21,-88 + 870: -22,-88 + 871: -23,-88 + 872: -24,-88 + 873: -25,-88 + 874: -26,-88 - node: color: '#52B4E963' id: MiniTileWhiteLineS decals: - 3253: 70,-50 - 3254: 71,-50 - 3255: 72,-50 + 3225: 70,-50 + 3226: 71,-50 + 3227: 72,-50 - node: color: '#52B4E9AE' id: MiniTileWhiteLineS decals: - 902: 0,-44 - 903: -1,-44 - 904: -2,-44 - 905: -8,-44 - 906: -9,-44 - 907: -10,-44 + 893: 0,-44 + 894: -1,-44 + 895: -2,-44 + 896: -8,-44 + 897: -9,-44 + 898: -10,-44 - node: color: '#52B4E9B7' id: MiniTileWhiteLineS decals: - 3725: 45,4 - 3726: 46,4 + 3697: 45,4 + 3698: 46,4 - node: color: '#52B4E9CD' id: MiniTileWhiteLineS decals: - 690: -1,-50 - 712: -7,-48 - 713: -6,-48 - 714: -5,-48 - 715: -4,-48 - 716: -3,-48 - 723: -15,-55 - 724: -14,-55 - 725: -13,-55 - 726: -11,-55 - 727: -10,-55 - 728: -8,-55 - 729: -7,-55 - 754: 5,-55 - 755: 4,-55 - 756: 3,-55 - 757: 2,-55 - 758: 1,-55 - 759: -1,-55 - 760: -2,-55 - 761: -4,-55 - 762: -5,-55 - 787: -9,-50 - 790: -13,-51 - 791: -14,-51 - 792: -16,-51 - 793: -15,-51 - 823: -2,-67 - 824: -2,-68 - 825: -1,-68 - 826: -3,-68 + 681: -1,-50 + 703: -7,-48 + 704: -6,-48 + 705: -5,-48 + 706: -4,-48 + 707: -3,-48 + 714: -15,-55 + 715: -14,-55 + 716: -13,-55 + 717: -11,-55 + 718: -10,-55 + 719: -8,-55 + 720: -7,-55 + 745: 5,-55 + 746: 4,-55 + 747: 3,-55 + 748: 2,-55 + 749: 1,-55 + 750: -1,-55 + 751: -2,-55 + 752: -4,-55 + 753: -5,-55 + 778: -9,-50 + 781: -13,-51 + 782: -14,-51 + 783: -16,-51 + 784: -15,-51 + 814: -2,-67 + 815: -2,-68 + 816: -1,-68 + 817: -3,-68 - node: color: '#73C2A496' id: MiniTileWhiteLineS decals: - 2621: -25,-37 - 2622: -24,-37 - 2641: -33,-36 - 2642: -32,-36 - 2649: -37,-37 - 2650: -38,-37 - 2651: -39,-37 - 2652: -40,-37 - 2697: -36,-58 - 2698: -37,-58 - 2706: -37,-47 - 2707: -38,-47 + 2599: -25,-37 + 2600: -24,-37 + 2619: -33,-36 + 2620: -32,-36 + 2627: -37,-37 + 2628: -38,-37 + 2629: -39,-37 + 2630: -40,-37 + 2675: -36,-58 + 2676: -37,-58 + 2684: -37,-47 + 2685: -38,-47 - node: color: '#787878AB' id: MiniTileWhiteLineS decals: - 3597: 28,-75 - 3598: 26,-75 - 3599: 27,-75 - 3600: 25,-75 - 3601: 23,-74 - 3602: 30,-76 + 3569: 28,-75 + 3570: 26,-75 + 3571: 27,-75 + 3572: 25,-75 + 3573: 23,-74 + 3574: 30,-76 - node: color: '#787878B7' id: MiniTileWhiteLineS decals: - 3630: 30,-93 - 3631: 28,-87 - 3647: 48,-76 - 3688: 48,-93 + 3602: 30,-93 + 3603: 28,-87 + 3619: 48,-76 + 3660: 48,-93 - node: color: '#92CCA4BD' id: MiniTileWhiteLineS decals: - 3540: 14,-86 - 3541: 15,-86 - 3542: 16,-86 + 3512: 14,-86 + 3513: 15,-86 + 3514: 16,-86 - node: color: '#A4610696' id: MiniTileWhiteLineS decals: - 2356: -25,17 - 2357: -24,17 - 2358: -29,17 - 2359: -30,17 - 2360: -31,17 - 2361: -34,17 - 2362: -33,17 - 2363: -32,17 - 2416: -48,20 - 2417: -48,31 + 2338: -25,17 + 2339: -24,17 + 2340: -29,17 + 2341: -30,17 + 2342: -31,17 + 2343: -34,17 + 2344: -33,17 + 2345: -32,17 + 2398: -48,20 + 2399: -48,31 - node: color: '#D381C996' id: MiniTileWhiteLineS decals: - 911: 45,-44 - 912: 44,-44 - 913: 43,-44 - 914: 42,-44 - 925: 50,-48 - 926: 49,-48 - 927: 52,-46 - 955: 56,-46 - 961: 62,-50 - 962: 63,-50 - 963: 64,-50 - 964: 61,-50 - 965: 60,-50 - 1004: 50,-59 - 1005: 49,-59 - 1006: 48,-59 - 1007: 47,-59 - 1014: 45,-50 - 1015: 44,-50 - 1016: 43,-50 - 3112: 72,-34 - 3113: 72,-39 - 3114: 74,-33 - 3211: 75,-50 - 3212: 68,-45 - 3213: 69,-45 - 3214: 70,-45 - 3215: 71,-45 - 3216: 72,-45 - 3481: 63,-37 - 3482: 62,-37 - 3483: 61,-37 + 902: 45,-44 + 903: 44,-44 + 904: 43,-44 + 905: 42,-44 + 916: 50,-48 + 917: 49,-48 + 918: 52,-46 + 946: 56,-46 + 952: 62,-50 + 953: 63,-50 + 954: 64,-50 + 955: 61,-50 + 956: 60,-50 + 995: 50,-59 + 996: 49,-59 + 997: 48,-59 + 998: 47,-59 + 1005: 45,-50 + 1006: 44,-50 + 1007: 43,-50 + 3085: 72,-34 + 3086: 72,-39 + 3087: 74,-33 + 3183: 75,-50 + 3184: 68,-45 + 3185: 69,-45 + 3186: 70,-45 + 3187: 71,-45 + 3188: 72,-45 + 3453: 63,-37 + 3454: 62,-37 + 3455: 61,-37 - node: color: '#D381C9AB' id: MiniTileWhiteLineS decals: - 3186: 71,-39 + 3158: 71,-39 - node: color: '#D4D4D40F' id: MiniTileWhiteLineS decals: - 3184: 54,-37 + 3156: 54,-37 - node: color: '#D4D4D428' id: MiniTileWhiteLineS decals: - 2490: -47,-18 + 2472: -47,-18 - node: color: '#D4D4D4D3' id: MiniTileWhiteLineS decals: - 2174: 6,-2 - 2175: 7,-2 - 2176: 8,-2 - 2177: 9,-2 - 2178: 10,-2 - 2179: 11,-2 - 2180: 12,-2 - 2181: 13,-2 - 2182: 5,-2 - 2183: 4,-2 - 2184: 3,-2 - 2185: 2,-2 - 2186: 1,-2 - 2187: 0,-2 - 2188: -4,-2 - 2189: -5,-2 - 2190: -6,-2 - 2191: -7,-2 - 2192: -8,-2 - 2193: -9,-2 - 2194: -10,-2 - 2275: 10,3 - 2276: 4,3 - 2283: 12,2 - 2284: 13,2 - 2285: 8,2 - 2286: 7,2 - 2287: 6,2 - 2288: 2,2 - 2289: 1,2 - 2290: 0,2 - 2291: -4,2 - 2292: -5,2 - 2293: -6,2 - 2294: -7,2 - 2295: -8,2 - 2296: -9,2 - 2297: -10,2 + 2156: 6,-2 + 2157: 7,-2 + 2158: 8,-2 + 2159: 9,-2 + 2160: 10,-2 + 2161: 11,-2 + 2162: 12,-2 + 2163: 13,-2 + 2164: 5,-2 + 2165: 4,-2 + 2166: 3,-2 + 2167: 2,-2 + 2168: 1,-2 + 2169: 0,-2 + 2170: -4,-2 + 2171: -5,-2 + 2172: -6,-2 + 2173: -7,-2 + 2174: -8,-2 + 2175: -9,-2 + 2176: -10,-2 + 2257: 10,3 + 2258: 4,3 + 2265: 12,2 + 2266: 13,2 + 2267: 8,2 + 2268: 7,2 + 2269: 6,2 + 2270: 2,2 + 2271: 1,2 + 2272: 0,2 + 2273: -4,2 + 2274: -5,2 + 2275: -6,2 + 2276: -7,2 + 2277: -8,2 + 2278: -9,2 + 2279: -10,2 - node: color: '#DE3A3A96' id: MiniTileWhiteLineS decals: - 2731: 25,9 - 2753: 25,16 - 2754: 24,16 - 2755: 23,16 - 2756: 21,16 - 2757: 22,16 - 2759: 17,16 - 2760: 16,16 - 2771: 12,16 - 2772: 11,16 - 2779: 6,12 - 2780: 7,12 - 2782: 5,12 - 2832: 41,4 - 2837: 39,14 - 2838: 38,14 - 2839: 37,14 - 2840: 36,14 - 2841: 34,14 - 2842: 35,14 - 2843: 33,14 - 2844: 32,14 - 2845: 31,14 - 2846: 29,14 - 2847: 30,14 - 3194: 21,-48 - 3195: 20,-48 - 3359: -16,23 - 3370: 41,14 - 3371: 40,14 + 2709: 25,9 + 2731: 25,16 + 2732: 24,16 + 2733: 23,16 + 2734: 21,16 + 2735: 22,16 + 2737: 17,16 + 2738: 16,16 + 2749: 12,16 + 2750: 11,16 + 2757: 6,12 + 2758: 7,12 + 2760: 5,12 + 2810: 41,4 + 2815: 39,14 + 2816: 38,14 + 2817: 37,14 + 2818: 36,14 + 2819: 34,14 + 2820: 35,14 + 2821: 33,14 + 2822: 32,14 + 2823: 31,14 + 2824: 29,14 + 2825: 30,14 + 3166: 21,-48 + 3167: 20,-48 + 3331: -16,23 + 3342: 41,14 + 3343: 40,14 - node: color: '#EFB34196' id: MiniTileWhiteLineS decals: - 2441: -29,-15 - 2462: -37,-14 - 2463: -38,-14 - 2464: -39,-14 - 2465: -36,-14 - 2511: -46,-7 - 2512: -48,-7 - 2513: -47,-7 - 2572: -54,-21 - 2573: -53,-21 - 2574: -52,-21 - 2577: -52,-7 - 2578: -53,-7 - 2594: -62,-26 - 2595: -61,-26 - 2596: -61,-26 - 2597: -60,-26 - 2598: -59,-26 - 2599: -58,-26 - 2600: -57,-26 - 2601: -56,-26 - 2602: -55,-26 - 2612: -72,-27 - 2613: -73,-27 - 2614: -74,-27 - 3295: -29,-18 - 3296: -30,-18 - 3297: -31,-18 - 3299: -25,-18 + 2423: -29,-15 + 2444: -37,-14 + 2445: -38,-14 + 2446: -39,-14 + 2447: -36,-14 + 2493: -46,-7 + 2494: -48,-7 + 2495: -47,-7 + 2550: -54,-21 + 2551: -53,-21 + 2552: -52,-21 + 2555: -52,-7 + 2556: -53,-7 + 2572: -62,-26 + 2573: -61,-26 + 2574: -61,-26 + 2575: -60,-26 + 2576: -59,-26 + 2577: -58,-26 + 2578: -57,-26 + 2579: -56,-26 + 2580: -55,-26 + 2590: -72,-27 + 2591: -73,-27 + 2592: -74,-27 + 3267: -29,-18 + 3268: -30,-18 + 3269: -31,-18 + 3271: -25,-18 - node: color: '#EFB341B1' id: MiniTileWhiteLineS decals: - 4092: -52,-26 - 4093: -53,-26 - 4094: -54,-26 + 4039: -52,-26 + 4040: -53,-26 + 4041: -54,-26 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineS decals: - 684: 3,-66 - 776: -1,-53 - 783: -9,-53 + 675: 3,-66 + 767: -1,-53 + 774: -9,-53 - node: color: '#258CC0EA' id: MiniTileWhiteLineW decals: - 3765: 2,-50 - 3766: 2,-49 - 3767: 2,-48 - 3768: 2,-47 - 3778: -27,-59 - 3779: -27,-60 - 3780: -27,-61 + 3737: 2,-50 + 3738: 2,-49 + 3739: 2,-48 + 3740: 2,-47 + 3750: -27,-59 + 3751: -27,-60 + 3752: -27,-61 - node: color: '#334E6DC8' id: MiniTileWhiteLineW decals: - 2951: 20,-25 - 2952: 20,-24 - 2953: 18,-22 - 2969: 34,-25 - 2970: 34,-26 - 2973: 34,-31 + 2927: 20,-25 + 2928: 20,-24 + 2929: 18,-22 + 2945: 34,-25 + 2946: 34,-26 + 2949: 34,-31 - node: color: '#478C5DDC' id: MiniTileWhiteLineW decals: - 857: -26,-71 - 858: -26,-72 - 859: -26,-73 - 860: -28,-79 - 861: -28,-80 - 876: -26,-77 - 889: -27,-86 - 890: -27,-87 - 891: -24,-84 + 848: -26,-71 + 849: -26,-72 + 850: -26,-73 + 851: -28,-79 + 852: -28,-80 + 867: -26,-77 + 880: -27,-86 + 881: -27,-87 + 882: -24,-84 - node: color: '#52B4E963' id: MiniTileWhiteLineW decals: - 3256: 69,-49 + 3228: 69,-49 - node: color: '#52B4E9B7' id: MiniTileWhiteLineW decals: - 3727: 44,7 - 3728: 44,6 - 3729: 44,5 + 3699: 44,7 + 3700: 44,6 + 3701: 44,5 - node: color: '#52B4E9CD' id: MiniTileWhiteLineW decals: - 706: -10,-47 - 707: -10,-48 - 708: -10,-49 - 717: -2,-49 - 722: -16,-54 - 804: -17,-47 - 805: -17,-48 - 806: -17,-49 - 807: -17,-50 - 819: -4,-65 - 820: -4,-66 - 821: -4,-67 - 822: -3,-66 + 697: -10,-47 + 698: -10,-48 + 699: -10,-49 + 708: -2,-49 + 713: -16,-54 + 795: -17,-47 + 796: -17,-48 + 797: -17,-49 + 798: -17,-50 + 810: -4,-65 + 811: -4,-66 + 812: -4,-67 + 813: -3,-66 - node: color: '#707070B7' id: MiniTileWhiteLineW decals: - 3561: 22,-73 + 3533: 22,-73 - node: color: '#73C2A496' id: MiniTileWhiteLineW decals: - 2631: -26,-33 - 2632: -26,-34 - 2633: -26,-35 - 2634: -26,-36 - 2635: -34,-34 - 2636: -34,-35 - 2664: -41,-34 - 2665: -41,-35 - 2666: -41,-36 - 2674: -33,-39 - 2675: -33,-40 - 2676: -33,-41 - 2682: -36,-41 - 2700: -36,-53 - 2701: -36,-51 - 2702: -36,-50 - 2703: -36,-52 - 2704: -36,-49 - 2705: -36,-48 + 2609: -26,-33 + 2610: -26,-34 + 2611: -26,-35 + 2612: -26,-36 + 2613: -34,-34 + 2614: -34,-35 + 2642: -41,-34 + 2643: -41,-35 + 2644: -41,-36 + 2652: -33,-39 + 2653: -33,-40 + 2654: -33,-41 + 2660: -36,-41 + 2678: -36,-53 + 2679: -36,-51 + 2680: -36,-50 + 2681: -36,-52 + 2682: -36,-49 + 2683: -36,-48 - node: color: '#787878B7' id: MiniTileWhiteLineW decals: - 3607: 29,-79 - 3608: 29,-80 - 3623: 29,-92 - 3624: 29,-91 - 3625: 29,-90 - 3626: 29,-89 - 3627: 29,-88 - 3633: 27,-82 - 3634: 27,-83 - 3635: 27,-84 - 3636: 27,-85 - 3637: 27,-86 - 3648: 47,-75 - 3649: 47,-74 - 3650: 47,-73 - 3674: 47,-79 - 3675: 47,-80 - 3676: 47,-82 - 3677: 47,-81 - 3678: 47,-83 - 3679: 47,-84 - 3680: 47,-85 - 3681: 47,-86 - 3682: 47,-88 - 3683: 47,-87 - 3684: 47,-89 - 3685: 47,-90 - 3686: 47,-91 - 3687: 47,-92 + 3579: 29,-79 + 3580: 29,-80 + 3595: 29,-92 + 3596: 29,-91 + 3597: 29,-90 + 3598: 29,-89 + 3599: 29,-88 + 3605: 27,-82 + 3606: 27,-83 + 3607: 27,-84 + 3608: 27,-85 + 3609: 27,-86 + 3620: 47,-75 + 3621: 47,-74 + 3622: 47,-73 + 3646: 47,-79 + 3647: 47,-80 + 3648: 47,-82 + 3649: 47,-81 + 3650: 47,-83 + 3651: 47,-84 + 3652: 47,-85 + 3653: 47,-86 + 3654: 47,-88 + 3655: 47,-87 + 3656: 47,-89 + 3657: 47,-90 + 3658: 47,-91 + 3659: 47,-92 - node: color: '#92CCA4BD' id: MiniTileWhiteLineW decals: - 3538: 13,-84 - 3539: 13,-85 + 3510: 13,-84 + 3511: 13,-85 - node: color: '#95BCA4FF' id: MiniTileWhiteLineW decals: - 3576: 13,-83 + 3548: 13,-83 - node: color: '#A4610696' id: MiniTileWhiteLineW decals: - 2393: -26,18 - 2394: -26,19 - 2395: -26,20 - 2396: -26,21 - 2397: -26,22 - 2398: -26,23 - 2399: -26,24 - 2400: -35,18 - 2401: -35,19 - 2402: -35,21 - 2403: -35,22 - 2404: -35,20 - 2405: -35,23 - 2406: -35,24 - 2407: -35,25 - 2415: -49,21 - 2419: -49,32 + 2375: -26,18 + 2376: -26,19 + 2377: -26,20 + 2378: -26,21 + 2379: -26,22 + 2380: -26,23 + 2381: -26,24 + 2382: -35,18 + 2383: -35,19 + 2384: -35,21 + 2385: -35,22 + 2386: -35,20 + 2387: -35,23 + 2388: -35,24 + 2389: -35,25 + 2397: -49,21 + 2401: -49,32 - node: color: '#D381C996' id: MiniTileWhiteLineW decals: - 917: 41,-43 - 935: 48,-47 - 936: 48,-46 - 937: 48,-45 - 938: 48,-44 - 939: 48,-43 - 940: 48,-42 - 941: 48,-41 - 942: 48,-40 - 943: 48,-39 - 972: 59,-46 - 973: 59,-47 - 974: 59,-48 - 975: 59,-49 - 994: 48,-51 - 995: 45,-58 - 1011: 48,-56 - 1029: 41,-47 - 1030: 42,-49 - 3105: 70,-34 - 3106: 70,-35 - 3107: 70,-36 - 3108: 70,-37 - 3230: 67,-49 - 3231: 74,-49 - 3241: 76,-47 - 3242: 76,-46 - 3243: 76,-45 - 3487: 60,-33 - 3488: 60,-34 - 3489: 60,-35 - 3490: 60,-36 + 908: 41,-43 + 926: 48,-47 + 927: 48,-46 + 928: 48,-45 + 929: 48,-44 + 930: 48,-43 + 931: 48,-42 + 932: 48,-41 + 933: 48,-40 + 934: 48,-39 + 963: 59,-46 + 964: 59,-47 + 965: 59,-48 + 966: 59,-49 + 985: 48,-51 + 986: 45,-58 + 1002: 48,-56 + 1020: 41,-47 + 1021: 42,-49 + 3078: 70,-34 + 3079: 70,-35 + 3080: 70,-36 + 3081: 70,-37 + 3202: 67,-49 + 3203: 74,-49 + 3213: 76,-47 + 3214: 76,-46 + 3215: 76,-45 + 3459: 60,-33 + 3460: 60,-34 + 3461: 60,-35 + 3462: 60,-36 - node: color: '#D381C9AB' id: MiniTileWhiteLineW decals: - 3188: 70,-38 + 3160: 70,-38 - node: color: '#D381C9C0' id: MiniTileWhiteLineW decals: - 3168: 59,-45 + 3140: 59,-45 - node: color: '#D4D4D406' id: MiniTileWhiteLineW decals: - 4140: -41,14 - 4141: -37,14 + 4072: -41,14 + 4073: -37,14 - node: color: '#D4D4D40F' id: MiniTileWhiteLineW decals: - 3183: 53,-36 + 3155: 53,-36 - node: color: '#D4D4D428' id: MiniTileWhiteLineW decals: - 2499: -48,-10 - 2500: -48,-11 - 2501: -48,-12 - 2502: -48,-13 - 2503: -48,-14 - 2504: -48,-15 - 2505: -48,-16 - 2506: -48,-17 + 2481: -48,-10 + 2482: -48,-11 + 2483: -48,-12 + 2484: -48,-13 + 2485: -48,-14 + 2486: -48,-15 + 2487: -48,-16 + 2488: -48,-17 - node: color: '#DE3A3A96' id: MiniTileWhiteLineW decals: - 2736: 24,12 - 2737: 24,11 - 2738: 24,10 - 2758: 20,17 - 2788: 4,16 - 2789: 4,15 - 2790: 4,13 - 2791: 4,14 - 2834: 40,5 - 2835: 40,6 - 2836: 40,7 - 2849: 28,21 - 2850: 28,20 - 2851: 28,19 - 2852: 28,18 - 2853: 28,17 - 2854: 28,15 - 3130: -17,-22 - 3131: -17,-23 - 3198: 19,-47 - 3360: -17,24 - 3361: -17,25 - 3362: -17,26 - 3718: 40,13 - 3719: 40,12 - 3720: 40,11 - 3721: 40,10 - 3722: 40,9 - 3723: 40,8 + 2714: 24,12 + 2715: 24,11 + 2716: 24,10 + 2736: 20,17 + 2766: 4,16 + 2767: 4,15 + 2768: 4,13 + 2769: 4,14 + 2812: 40,5 + 2813: 40,6 + 2814: 40,7 + 2827: 28,21 + 2828: 28,20 + 2829: 28,19 + 2830: 28,18 + 2831: 28,17 + 2832: 28,15 + 3103: -17,-22 + 3104: -17,-23 + 3170: 19,-47 + 3332: -17,24 + 3333: -17,25 + 3334: -17,26 + 3690: 40,13 + 3691: 40,12 + 3692: 40,11 + 3693: 40,10 + 3694: 40,9 + 3695: 40,8 - node: color: '#EFB34196' id: MiniTileWhiteLineW decals: - 2430: -26,-14 - 2431: -26,-13 - 2432: -26,-11 - 2433: -26,-12 - 2434: -26,-10 - 2435: -30,-12 - 2436: -30,-13 - 2437: -30,-14 - 2454: -33,-15 - 2455: -33,-17 - 2456: -33,-16 - 2457: -33,-18 - 2472: -40,-10 - 2473: -40,-11 - 2474: -40,-12 - 2475: -40,-13 - 2483: -43,-11 - 2484: -43,-12 - 2485: -43,-13 - 2528: -33,-23 - 2529: -33,-24 - 2531: -33,-25 - 2532: -33,-26 - 2533: -33,-27 - 2534: -33,-28 - 2535: -33,-29 - 2560: -56,-8 - 2561: -56,-9 - 2562: -56,-10 - 2563: -56,-11 - 2564: -56,-12 - 2565: -56,-14 - 2566: -56,-13 - 2567: -56,-15 - 2568: -56,-16 - 2569: -56,-17 - 2570: -56,-18 - 2571: -55,-20 - 2604: -63,-25 - 2617: -75,-25 - 2618: -75,-26 - 3279: -33,-12 - 3280: -33,-11 - 3293: -30,-11 - 3300: -26,-17 - 3301: -26,-16 - 3302: -26,-15 - 3322: -40,-7 - 3323: -40,-8 - 3324: -40,-9 - 3353: -43,-7 - 3972: -33,-14 - 3973: -33,-13 + 2412: -26,-14 + 2413: -26,-13 + 2414: -26,-11 + 2415: -26,-12 + 2416: -26,-10 + 2417: -30,-12 + 2418: -30,-13 + 2419: -30,-14 + 2436: -33,-15 + 2437: -33,-17 + 2438: -33,-16 + 2439: -33,-18 + 2454: -40,-10 + 2455: -40,-11 + 2456: -40,-12 + 2457: -40,-13 + 2465: -43,-11 + 2466: -43,-12 + 2467: -43,-13 + 2508: -33,-23 + 2509: -33,-24 + 2510: -33,-25 + 2511: -33,-26 + 2512: -33,-27 + 2513: -33,-28 + 2514: -33,-29 + 2538: -56,-8 + 2539: -56,-9 + 2540: -56,-10 + 2541: -56,-11 + 2542: -56,-12 + 2543: -56,-14 + 2544: -56,-13 + 2545: -56,-15 + 2546: -56,-16 + 2547: -56,-17 + 2548: -56,-18 + 2549: -55,-20 + 2582: -63,-25 + 2595: -75,-25 + 2596: -75,-26 + 3251: -33,-12 + 3252: -33,-11 + 3265: -30,-11 + 3272: -26,-17 + 3273: -26,-16 + 3274: -26,-15 + 3294: -40,-7 + 3295: -40,-8 + 3296: -40,-9 + 3325: -43,-7 + 3919: -33,-14 + 3920: -33,-13 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineW decals: - 676: -8,-54 - 678: 0,-54 - 686: 2,-65 + 667: -8,-54 + 669: 0,-54 + 677: 2,-65 - node: color: '#646C6447' id: MonoOverlay decals: - 3935: -20,-19 - 3936: -20,-23 - 3937: -20,-11 - 3938: -20,-28 - 3939: -16,-27 - 3940: -20,-35 - 3941: -10,-27 - 3942: -5,-33 - 3943: -5,-25 - 3944: 1,-27 - 3945: 8,-27 - 3946: -1,-43 - 3947: -12,-43 - 3948: -19,-43 - 3949: -20,-37 - 3950: 33,-3 - 3951: 43,1 - 3952: 52,-2 - 3953: 32,7 + 3882: -20,-19 + 3883: -20,-23 + 3884: -20,-11 + 3885: -20,-28 + 3886: -16,-27 + 3887: -20,-35 + 3888: -10,-27 + 3889: -5,-33 + 3890: -5,-25 + 3891: 1,-27 + 3892: 8,-27 + 3893: -1,-43 + 3894: -12,-43 + 3895: -19,-43 + 3896: -20,-37 + 3897: 33,-3 + 3898: 43,1 + 3899: 52,-2 + 3900: 32,7 - node: color: '#D4F8D406' id: MonoOverlay decals: - 4145: -5,-11 - 4146: -5,-5 - 4147: -5,-20 - 4148: -20,-13 - 4149: -17,-27 + 4074: -5,-11 + 4075: -5,-5 + 4076: -5,-20 + 4077: -20,-13 + 4078: -17,-27 - node: color: '#646C6447' id: OffsetCheckerAOverlay decals: - 3954: -4,-26 - 3955: -5,-28 + 3901: -4,-26 + 3902: -5,-28 - node: color: '#8259640C' id: OffsetCheckerBOverlay decals: - 3956: -32,9 - 3957: -33,9 - 3958: -34,9 - 3959: -34,10 - 3960: -31,10 - 3961: -31,9 - 3962: -31,8 - 3963: -30,10 - 3964: -30,9 + 3903: -32,9 + 3904: -33,9 + 3905: -34,9 + 3906: -34,10 + 3907: -31,10 + 3908: -31,9 + 3909: -31,8 + 3910: -30,10 + 3911: -30,9 - node: color: '#FFFFFFFF' id: OriginStationSign1 decals: - 417: 22,-18 + 408: 22,-18 - node: color: '#FFFFFFFF' id: OriginStationSign10 decals: - 1087: 26,-17 + 1078: 26,-17 - node: color: '#FFFFFFFF' id: OriginStationSign11 decals: - 1089: 24,-19 + 1080: 24,-19 - node: color: '#FFFFFFFF' id: OriginStationSign12 decals: - 1088: 25,-19 + 1079: 25,-19 - node: color: '#FFFFFFFF' id: OriginStationSign13 decals: - 1090: 26,-19 + 1081: 26,-19 - node: color: '#FFFFFFFF' id: OriginStationSign2 decals: - 418: 23,-18 + 409: 23,-18 - node: color: '#FFFFFFFF' id: OriginStationSign3 decals: - 419: 24,-18 + 410: 24,-18 - node: color: '#FFFFFFFF' id: OriginStationSign4 decals: - 420: 25,-18 + 411: 25,-18 - node: color: '#FFFFFFFF' id: OriginStationSign5 decals: - 421: 26,-18 + 412: 26,-18 - node: color: '#FFFFFFFF' id: OriginStationSign6 decals: - 422: 27,-18 + 413: 27,-18 - node: color: '#FFFFFFFF' id: OriginStationSign7 decals: - 423: 28,-18 + 414: 28,-18 - node: color: '#FFFFFFFF' id: OriginStationSign8 decals: - 1086: 24,-17 + 1077: 24,-17 - node: color: '#FFFFFFFF' id: OriginStationSign9 decals: - 1085: 25,-17 + 1076: 25,-17 - node: color: '#3B000098' id: PavementVerticalCheckerAOverlay decals: - 3916: -39,6 - 3917: -39,5 - 3918: -39,4 - 3919: -39,3 - 3920: -38,3 - 3921: -38,4 - 3922: -38,5 - 3923: -38,6 + 3864: -39,6 + 3865: -39,5 + 3866: -39,4 + 3867: -39,3 + 3868: -38,3 + 3869: -38,4 + 3870: -38,5 + 3871: -38,6 - node: color: '#476F6433' id: PavementVerticalCheckerAOverlay decals: - 3965: -42,-13 - 3966: -43,-11 - 3967: -42,-7 - 3968: -43,-8 - 3969: -39,-11 - 3970: -30,-13 - 3971: -29,-15 + 3912: -42,-13 + 3913: -43,-11 + 3914: -42,-7 + 3915: -43,-8 + 3916: -39,-11 + 3917: -30,-13 + 3918: -29,-15 - node: color: '#00000093' id: PavementVerticalCheckerBOverlay decals: - 3924: -39,6 - 3925: -38,6 - 3926: -39,5 - 3927: -38,5 - 3928: -39,4 - 3929: -38,4 - 3930: -39,3 - 3931: -38,3 + 3872: -39,6 + 3873: -38,6 + 3874: -39,5 + 3875: -38,5 + 3876: -39,4 + 3877: -38,4 + 3878: -39,3 + 3879: -38,3 - node: color: '#EFB34160' id: QuarterTileOverlayGreyscale decals: - 3050: -15,-5 + 3023: -15,-5 - node: color: '#EFB34160' id: QuarterTileOverlayGreyscale180 decals: - 3044: -25,6 + 3017: -25,6 - node: color: '#FFFFFF79' id: QuarterTileOverlayGreyscale180 decals: - 665: -21,-60 + 656: -21,-60 - node: color: '#EFB34153' id: QuarterTileOverlayGreyscale270 decals: - 3069: -15,6 + 3042: -15,6 - node: color: '#EFB34150' id: QuarterTileOverlayGreyscale90 decals: - 3075: -25,-5 + 3048: -25,-5 - node: color: '#FFFFFF79' id: QuarterTileOverlayGreyscale90 decals: - 663: -21,-62 + 654: -21,-62 - node: color: '#FFFFFFFF' id: Rock02 decals: - 506: -10.301918,53.89685 - 507: -9.380043,53.8031 - 508: -3.5987926,53.818726 - 3860: -8.789691,17.921444 - 3861: -4.6178155,17.827694 + 497: -10.301918,53.89685 + 498: -9.380043,53.8031 + 499: -3.5987926,53.818726 + 3832: -8.789691,17.921444 + 3833: -4.6178155,17.827694 - node: color: '#FFFFFFFF' id: Rock03 decals: - 480: -10.764814,50.076122 - 481: -10.296064,50.404247 - 482: -7.1241894,49.888622 - 509: -4.3331676,54.14685 - 510: -8.959863,49.049328 - 2979: 6.230663,0.73506033 - 2980: 11.183787,0.86006033 - 2981: 10.168162,0.37568533 + 471: -10.764814,50.076122 + 472: -10.296064,50.404247 + 473: -7.1241894,49.888622 + 500: -4.3331676,54.14685 + 501: -8.959863,49.049328 + 2955: 6.230663,0.73506033 + 2956: 11.183787,0.86006033 + 2957: 10.168162,0.37568533 - node: color: '#FFFFFFFF' id: Rock04 decals: - 483: -7.4210644,49.888622 - 484: -3.3754807,48.982372 - 485: -4.0786057,48.216747 - 486: -7.6469474,55.2557 - 487: -6.2719474,53.567944 - 3275: -36,6 - 3276: -32,5 - 3277: -31,3 + 474: -7.4210644,49.888622 + 475: -3.3754807,48.982372 + 476: -4.0786057,48.216747 + 477: -7.6469474,55.2557 + 478: -6.2719474,53.567944 + 3247: -36,6 + 3248: -32,5 + 3249: -31,3 - node: color: '#FFFFFFFF' id: Rock05 decals: - 2982: 11.168162,0.25068533 + 2958: 11.168162,0.25068533 - node: color: '#FFFFFFFF' id: Rock06 decals: - 3272: -42,3 - 3274: -35,4 - 3278: -33,3 + 3244: -42,3 + 3246: -35,4 + 3250: -33,3 - node: color: '#FFFFFFFF' id: Rock07 decals: - 3273: -40,5 + 3245: -40,5 - node: color: '#FFFFFFFF' id: SpaceStationSign1 decals: - 256: 36,-73 + 252: 36,-73 - node: color: '#FFFFFFFF' id: SpaceStationSign2 decals: - 257: 37,-73 + 253: 37,-73 - node: color: '#FFFFFFFF' id: SpaceStationSign3 decals: - 258: 38,-73 + 254: 38,-73 - node: color: '#FFFFFFFF' id: SpaceStationSign4 decals: - 259: 39,-73 + 255: 39,-73 - node: color: '#FFFFFFFF' id: SpaceStationSign5 decals: - 260: 40,-73 + 256: 40,-73 - node: color: '#FFFFFFFF' id: SpaceStationSign6 decals: - 261: 41,-73 + 257: 41,-73 - node: color: '#FFFFFFFF' id: SpaceStationSign7 decals: - 262: 42,-73 + 258: 42,-73 - node: color: '#FFFFFFFF' id: StandClear decals: - 415: -9,-45 - 416: -1,-45 - 3157: 77.48695,-34.5492 - 3158: 77.50258,-37.51795 - 3390: -9,-52 - 3391: -1,-52 + 406: -9,-45 + 407: -1,-45 + 3130: 77.48695,-34.5492 + 3131: 77.50258,-37.51795 + 3362: -9,-52 + 3363: -1,-52 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale decals: - 979: 63,-48 + 970: 63,-48 - node: color: '#D4D4D496' id: ThreeQuarterTileOverlayGreyscale @@ -6244,7 +6240,7 @@ entities: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 980: 61,-46 + 971: 61,-46 - node: color: '#D4D4D496' id: ThreeQuarterTileOverlayGreyscale180 @@ -6254,23 +6250,23 @@ entities: color: '#FFFFFF79' id: ThreeQuarterTileOverlayGreyscale180 decals: - 630: -7,-60 - 631: 2,-60 - 632: -1,-60 - 633: -10,-60 - 634: -13,-60 - 635: -17,-60 - 674: -4,-60 + 621: -7,-60 + 622: 2,-60 + 623: -1,-60 + 624: -10,-60 + 625: -13,-60 + 626: -17,-60 + 665: -4,-60 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 981: 63,-46 + 972: 63,-46 - node: color: '#D4D4D47C' id: ThreeQuarterTileOverlayGreyscale270 decals: - 3374: 4,-60 + 3346: 4,-60 - node: color: '#D4D4D496' id: ThreeQuarterTileOverlayGreyscale270 @@ -6280,17 +6276,17 @@ entities: color: '#FFFFFF79' id: ThreeQuarterTileOverlayGreyscale270 decals: - 629: -5,-60 - 669: -14,-60 - 670: -11,-60 - 671: -8,-60 - 672: -2,-60 - 673: 1,-60 + 620: -5,-60 + 660: -14,-60 + 661: -11,-60 + 662: -8,-60 + 663: -2,-60 + 664: 1,-60 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 978: 61,-48 + 969: 61,-48 - node: color: '#D4D4D496' id: ThreeQuarterTileOverlayGreyscale90 @@ -6301,114 +6297,114 @@ entities: color: '#DE3A3A96' id: Tunnel decals: - 412: -37,-81 + 403: -37,-81 - node: color: '#FFFFFFFF' id: VentSmall decals: - 3204: 62,-44 + 3176: 62,-44 - node: color: '#A46106FF' id: WarnBox decals: - 3380: -13,-13 + 3352: -13,-13 - node: color: '#FFFFFFFF' id: WarnBox decals: - 377: -52,22 - 378: -52,20 - 394: -52,33 - 395: -52,31 - 3381: -11,-13 - 3383: -41,18 + 373: -52,22 + 374: -52,20 + 390: -52,33 + 391: -52,31 + 3353: -11,-13 + 3355: -41,18 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 3122: -40,-59 - 3152: 54,-62 - 3155: 78,-34 - 3156: 78,-37 - 4014: -50,-37 + 3095: -40,-59 + 3125: 54,-62 + 3128: 78,-34 + 3129: 78,-37 + 3961: -50,-37 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 3123: -38,-59 - 3151: 56,-61 - 3153: 77,-34 - 3154: 77,-37 + 3096: -38,-59 + 3124: 56,-61 + 3126: 77,-34 + 3127: 77,-37 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: - 3159: 78,-38 - 3160: 78,-35 - 3885: -72,-40 + 3132: 78,-38 + 3133: 78,-35 + 3857: -72,-40 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 3161: 77,-35 - 3162: 77,-38 + 3134: 77,-35 + 3135: 77,-38 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 3145: 17,36 - 3146: 15,37 - 4009: -78,-43 - 4019: -50,-40 + 3118: 17,36 + 3119: 15,37 + 3956: -78,-43 + 3966: -50,-40 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 3147: 15,36 - 3148: 17,37 - 4008: -76,-43 + 3120: 15,36 + 3121: 17,37 + 3955: -76,-43 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 3143: 15,39 - 3144: 17,38 - 4007: -78,-41 + 3116: 15,39 + 3117: 17,38 + 3954: -78,-41 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 347: 47,-58 - 2726: -38,-42 - 3141: 17,39 - 3142: 15,38 - 4010: -76,-41 + 343: 47,-58 + 2704: -38,-42 + 3114: 17,39 + 3115: 15,38 + 3957: -76,-41 - node: color: '#FFFFFFFF' id: WarnEndN decals: - 3890: -70,-46 + 3862: -70,-46 - node: color: '#FFFFFFFF' id: WarnEndS decals: - 3891: -70,-47 + 3863: -70,-47 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 293: -39,-53 - 294: -39,-54 - 295: -39,-55 - 2351: 38,-26 - 2352: 38,-27 - 3135: 15,38 - 3139: 17,37 - 3886: -72,-39 - 4006: -78,-42 - 4017: -50,-38 - 4018: -50,-39 - 4021: -72,-38 + 289: -39,-53 + 290: -39,-54 + 291: -39,-55 + 2333: 38,-26 + 2334: 38,-27 + 3108: 15,38 + 3112: 17,37 + 3858: -72,-39 + 3953: -78,-42 + 3964: -50,-38 + 3965: -50,-39 + 3968: -72,-38 - node: color: '#DE3A3A96' id: WarnLineGreyscaleE @@ -6419,469 +6415,467 @@ entities: color: '#FFFFFFFF' id: WarnLineN decals: - 248: 53,-59 - 249: 54,-59 - 250: 55,-59 - 251: 56,-59 - 255: 46,-58 - 289: -40,-55 - 290: -39,-55 - 296: -39,-42 - 297: -40,-42 - 1009: 45,-58 - 3134: 14,38 - 3137: 16,39 - 3138: 18,38 - 3494: 63,-31 - 3495: 62,-31 - 3496: 61,-31 - 3747: -42,-42 - 3749: -41,-42 - 3887: -73,-40 - 3888: -74,-40 - 4005: -77,-41 + 244: 53,-59 + 245: 54,-59 + 246: 55,-59 + 247: 56,-59 + 251: 46,-58 + 285: -40,-55 + 286: -39,-55 + 292: -39,-42 + 293: -40,-42 + 1000: 45,-58 + 3107: 14,38 + 3110: 16,39 + 3111: 18,38 + 3466: 63,-31 + 3467: 62,-31 + 3468: 61,-31 + 3719: -42,-42 + 3721: -41,-42 + 3859: -73,-40 + 3860: -74,-40 + 3952: -77,-41 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 253: 56,-62 - 263: 48,-55 - 264: 48,-54 - 265: 48,-52 - 266: 48,-53 - 283: -37,-55 - 284: -37,-56 - 285: -37,-57 - 286: -40,-53 - 287: -40,-54 - 288: -40,-55 - 1008: 47,-59 - 2719: -38,-43 - 2720: -38,-44 - 2721: -38,-45 - 2722: -38,-46 - 2723: -38,-47 - 2724: -37,-54 - 2725: -37,-58 - 2727: -42,-42 - 3132: 15,37 - 3136: 17,38 - 4004: -76,-42 + 249: 56,-62 + 259: 48,-55 + 260: 48,-54 + 261: 48,-52 + 262: 48,-53 + 279: -37,-55 + 280: -37,-56 + 281: -37,-57 + 282: -40,-53 + 283: -40,-54 + 284: -40,-55 + 999: 47,-59 + 2697: -38,-43 + 2698: -38,-44 + 2699: -38,-45 + 2700: -38,-46 + 2701: -38,-47 + 2702: -37,-54 + 2703: -37,-58 + 2705: -42,-42 + 3105: 15,37 + 3109: 17,38 + 3951: -76,-42 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 252: 57,-61 - 254: 53,-62 - 291: -40,-53 - 292: -39,-53 - 2717: -36,-41 - 2718: -35,-41 - 3133: 14,36 - 3140: 18,36 - 3150: 16,37 - 4003: -77,-43 - 4015: -49,-40 - 4016: -51,-37 + 248: 57,-61 + 250: 53,-62 + 287: -40,-53 + 288: -39,-53 + 2695: -36,-41 + 2696: -35,-41 + 3106: 14,36 + 3113: 18,36 + 3123: 16,37 + 3950: -77,-43 + 3962: -49,-40 + 3963: -51,-37 - node: color: '#A7A5FFFF' id: WoodTrimThinCornerNe decals: - 4030: 29,-35 - 4031: 29,-39 + 3977: 29,-35 + 3978: 29,-39 - node: color: '#B7AFC7FF' id: WoodTrimThinCornerNe decals: - 3507: 19,-82 - 3508: 18,-81 + 3479: 19,-82 + 3480: 18,-81 - node: color: '#D4D4D4E3' id: WoodTrimThinCornerNe decals: - 2864: 14,14 - 2890: 18,14 - 2901: 13,-11 - 2902: 12,-4 + 2842: 14,14 + 2868: 18,14 + 2879: 13,-11 + 2880: 12,-4 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: - 2342: 34,-54 - 3836: 2,21 + 2324: 34,-54 + 3808: 2,21 - node: color: '#A7A5FFFF' id: WoodTrimThinCornerNw decals: - 4027: 21,-35 + 3974: 21,-35 - node: color: '#B7AFC7FF' id: WoodTrimThinCornerNw decals: - 3512: 12,-81 + 3484: 12,-81 - node: color: '#D4D4D4E3' id: WoodTrimThinCornerNw decals: - 2862: 8,10 - 2863: 10,14 - 2891: 16,14 - 2903: 10,-4 + 2840: 8,10 + 2841: 10,14 + 2869: 16,14 + 2881: 10,-4 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: - 2343: 28,-54 - 3834: -2,21 + 2325: 28,-54 + 3806: -2,21 - node: color: '#A7A5FFFF' id: WoodTrimThinCornerSe decals: - 4032: 29,-37 - 4033: 29,-40 + 3979: 29,-37 + 3980: 29,-40 - node: color: '#B7AFC7FF' id: WoodTrimThinCornerSe decals: - 3509: 19,-86 - 3510: 18,-87 + 3481: 19,-86 + 3482: 18,-87 - node: color: '#D4D4D4E3' id: WoodTrimThinCornerSe decals: - 2861: 14,5 - 2899: 13,-13 + 2839: 14,5 + 2877: 13,-13 - node: color: '#D4D4D4E9' id: WoodTrimThinCornerSe decals: - 3258: 18,9 + 3230: 18,9 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: - 2339: 34,-57 - 3835: 2,16 + 2321: 34,-57 + 3807: 2,16 - node: color: '#A7A5FFFF' id: WoodTrimThinCornerSw decals: - 4028: 21,-38 - 4029: 22,-40 + 3975: 21,-38 + 3976: 22,-40 - node: color: '#B7AFC7FF' id: WoodTrimThinCornerSw decals: - 3511: 12,-87 + 3483: 12,-87 - node: color: '#D4D4D4E3' id: WoodTrimThinCornerSw decals: - 2865: 8,5 - 2900: 8,-13 + 2843: 8,5 + 2878: 8,-13 - node: color: '#D4D4D4E9' id: WoodTrimThinCornerSw decals: - 3259: 16,9 + 3231: 16,9 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: - 2338: 28,-57 - 3832: -1,16 - 3833: -2,17 + 2320: 28,-57 + 3804: -1,16 + 3805: -2,17 - node: color: '#A7A5FFFF' id: WoodTrimThinInnerNe decals: - 4053: 28,-39 + 4000: 28,-39 - node: color: '#D4D4D4E3' id: WoodTrimThinInnerNe decals: - 2923: 12,-11 + 2899: 12,-11 - node: color: '#D4D4D4E3' id: WoodTrimThinInnerNw decals: - 2888: 10,10 - 2924: 10,-5 + 2866: 10,10 + 2900: 10,-5 - node: color: '#A7A5FFFF' id: WoodTrimThinInnerSe decals: - 4054: 28,-37 + 4001: 28,-37 - node: color: '#A7A5FFFF' id: WoodTrimThinInnerSw decals: - 4052: 22,-38 + 3999: 22,-38 - node: color: '#D4D4D4E3' id: WoodTrimThinInnerSw decals: - 2889: 10,13 - 2925: 8,-8 + 2867: 10,13 + 2901: 8,-8 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: - 3849: -1,17 + 3821: -1,17 - node: color: '#A7A5FFFF' id: WoodTrimThinLineE decals: - 4040: 29,-36 - 4041: 28,-38 + 3987: 29,-36 + 3988: 28,-38 - node: color: '#B7AFC7FF' id: WoodTrimThinLineE decals: - 3518: 19,-83 - 3519: 19,-84 - 3520: 19,-85 + 3490: 19,-83 + 3491: 19,-84 + 3492: 19,-85 - node: color: '#D4D4D4E3' id: WoodTrimThinLineE decals: - 2870: 14,6 - 2871: 14,7 - 2872: 14,10 - 2873: 14,11 - 2874: 14,12 - 2875: 14,13 - 2892: 18,11 - 2893: 18,12 - 2894: 18,13 - 2916: 12,-5 - 2917: 12,-6 - 2918: 12,-7 - 2919: 12,-8 - 2920: 12,-9 - 2921: 12,-10 - 2922: 13,-12 + 2848: 14,6 + 2849: 14,7 + 2850: 14,10 + 2851: 14,11 + 2852: 14,12 + 2853: 14,13 + 2870: 18,11 + 2871: 18,12 + 2872: 18,13 + 2892: 12,-5 + 2893: 12,-6 + 2894: 12,-7 + 2895: 12,-8 + 2896: 12,-9 + 2897: 12,-10 + 2898: 13,-12 - node: color: '#D4D4D4E9' id: WoodTrimThinLineE decals: - 3261: 14,8 - 3262: 14,9 + 3233: 14,8 + 3234: 14,9 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 2340: 34,-56 - 2341: 34,-55 - 3845: 2,17 - 3846: 2,18 - 3847: 2,19 - 3848: 2,20 + 2322: 34,-56 + 2323: 34,-55 + 3817: 2,17 + 3818: 2,18 + 3819: 2,19 + 3820: 2,20 - node: color: '#A7A5FFFF' id: WoodTrimThinLineN decals: - 4042: 22,-35 - 4043: 23,-35 - 4044: 24,-35 - 4045: 25,-35 - 4046: 26,-35 - 4047: 27,-35 - 4048: 28,-35 + 3989: 22,-35 + 3990: 23,-35 + 3991: 24,-35 + 3992: 25,-35 + 3993: 26,-35 + 3994: 27,-35 + 3995: 28,-35 - node: color: '#B7AFC7FF' id: WoodTrimThinLineN decals: - 3513: 13,-81 - 3514: 14,-81 - 3515: 15,-81 - 3516: 16,-81 - 3517: 17,-81 + 3485: 13,-81 + 3486: 14,-81 + 3487: 15,-81 + 3488: 16,-81 + 3489: 17,-81 - node: color: '#D4D4D4E3' id: WoodTrimThinLineN decals: - 2866: 9,10 - 2867: 11,14 - 2868: 12,14 - 2869: 13,14 - 2898: 17,14 - 2913: 7,-5 - 2914: 8,-5 - 2915: 9,-5 - 2926: 11,-4 + 2844: 9,10 + 2845: 11,14 + 2846: 12,14 + 2847: 13,14 + 2876: 17,14 + 2889: 7,-5 + 2890: 8,-5 + 2891: 9,-5 + 2902: 11,-4 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 2344: 33,-54 - 2345: 32,-54 - 2346: 31,-54 - 2347: 30,-54 - 2348: 29,-54 - 3837: -1,21 - 3838: 0,21 - 3839: 1,21 + 2326: 33,-54 + 2327: 32,-54 + 2328: 31,-54 + 2329: 30,-54 + 2330: 29,-54 + 3809: -1,21 + 3810: 0,21 + 3811: 1,21 - node: color: '#A7A5FFFF' id: WoodTrimThinLineS decals: - 4034: 23,-40 - 4035: 24,-40 - 4036: 25,-40 - 4037: 26,-40 - 4038: 27,-40 - 4039: 28,-40 + 3981: 23,-40 + 3982: 24,-40 + 3983: 25,-40 + 3984: 26,-40 + 3985: 27,-40 + 3986: 28,-40 - node: color: '#B7AFC7FF' id: WoodTrimThinLineS decals: - 3526: 13,-87 - 3527: 14,-87 - 3528: 15,-87 - 3529: 16,-87 - 3530: 17,-87 + 3498: 13,-87 + 3499: 14,-87 + 3500: 15,-87 + 3501: 16,-87 + 3502: 17,-87 - node: color: '#D4D4D4E3' id: WoodTrimThinLineS decals: - 2883: 13,5 - 2884: 12,5 - 2885: 11,5 - 2886: 10,5 - 2887: 9,5 - 2904: 7,-8 - 2905: 9,-13 - 2906: 10,-13 - 2907: 11,-13 - 2908: 12,-13 + 2861: 13,5 + 2862: 12,5 + 2863: 11,5 + 2864: 10,5 + 2865: 9,5 + 2882: 9,-13 + 2883: 10,-13 + 2884: 11,-13 + 2885: 12,-13 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 2334: 32,-57 - 2335: 33,-57 - 2336: 30,-57 - 2337: 29,-57 - 3843: 0,16 - 3844: 1,16 + 2316: 32,-57 + 2317: 33,-57 + 2318: 30,-57 + 2319: 29,-57 + 3815: 0,16 + 3816: 1,16 - node: color: '#A7A5FFFF' id: WoodTrimThinLineW decals: - 4049: 21,-36 - 4050: 21,-37 - 4051: 22,-39 + 3996: 21,-36 + 3997: 21,-37 + 3998: 22,-39 - node: color: '#B7AFC7FF' id: WoodTrimThinLineW decals: - 3521: 12,-82 - 3522: 12,-83 - 3523: 12,-84 - 3524: 12,-86 - 3525: 12,-85 + 3493: 12,-82 + 3494: 12,-83 + 3495: 12,-84 + 3496: 12,-86 + 3497: 12,-85 - node: color: '#D4D4D4E3' id: WoodTrimThinLineW decals: - 2876: 10,13 - 2877: 10,12 - 2878: 10,11 - 2879: 8,9 - 2880: 8,8 - 2881: 8,7 - 2882: 8,6 - 2895: 16,13 - 2896: 16,12 - 2897: 16,11 - 2909: 8,-12 - 2910: 8,-11 - 2911: 8,-10 - 2912: 8,-9 + 2854: 10,13 + 2855: 10,12 + 2856: 10,11 + 2857: 8,9 + 2858: 8,8 + 2859: 8,7 + 2860: 8,6 + 2873: 16,13 + 2874: 16,12 + 2875: 16,11 + 2886: 8,-12 + 2887: 8,-11 + 2888: 8,-10 - node: color: '#D4D4D4E9' id: WoodTrimThinLineW decals: - 3260: 16,10 + 3232: 16,10 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 2349: 28,-55 - 2350: 28,-56 - 3840: -2,18 - 3841: -2,19 - 3842: -2,20 + 2331: 28,-55 + 2332: 28,-56 + 3812: -2,18 + 3813: -2,19 + 3814: -2,20 - node: color: '#FFFFFFFF' id: bushsnowa2 decals: - 159: 50,-6 + 155: 50,-6 - node: cleanable: True color: '#D03F4A21' id: corgi decals: - 3977: 27,-19 + 3924: 27,-19 - node: color: '#FFFFFFFF' id: grasssnowb2 decals: - 539: -6.3993635,53.002754 + 530: -6.3993635,53.002754 - node: color: '#FFFFFFFF' id: grasssnowc1 decals: - 473: 9.76384,53.565598 - 474: 6.3516917,53.659348 + 464: 9.76384,53.565598 + 465: 6.3516917,53.659348 - node: color: '#FFFFFFFF' id: grasssnowc2 decals: - 536: -7.712725,52.914776 - 537: -8.29085,52.758526 + 527: -7.712725,52.914776 + 528: -8.29085,52.758526 - node: color: '#FFFFFFFF' id: grasssnowc3 decals: - 538: -8.806476,52.64177 + 529: -8.806476,52.64177 - node: cleanable: True color: '#DE3A3A96' id: revolution decals: - 411: -44,-83 + 402: -44,-83 - node: color: '#EFB341F5' id: shop decals: - 3379: -49,12 + 3351: -49,12 - node: cleanable: True color: '#A4610696' id: skull decals: - 414: -48,-77 + 405: -48,-77 - node: cleanable: True color: '#7F728818' id: splatter decals: - 407: 12,12 - 408: 14,6 + 398: 12,12 + 399: 14,6 - node: cleanable: True color: '#7F7288DF' id: splatter decals: - 409: 17,1 + 400: 17,1 - node: cleanable: True color: '#9FED5896' id: stickman decals: - 410: -47,-79 + 401: -47,-79 type: DecalGrid - version: 2 data: @@ -8879,18 +8873,21 @@ entities: 0: 65532 -15,-23: 0: 60608 + 2: 512 -15,-22: 0: 52462 + 2: 512 -14,-23: 0: 65392 + 2: 128 -14,-22: 0: 32767 -14,-21: 0: 65535 -13,-23: - 0: 12544 + 0: 29440 -13,-22: - 0: 35127 + 0: 35703 -13,-21: 0: 47496 -12,-22: @@ -9288,9 +9285,9 @@ entities: 12,12: 0: 65535 12,13: - 0: 55534 + 0: 63726 12,14: - 0: 64989 + 0: 65535 12,15: 0: 61721 13,12: @@ -9300,13 +9297,13 @@ entities: 13,14: 0: 65535 13,15: - 0: 61951 + 0: 65535 14,12: 0: 65535 14,13: - 0: 29695 + 0: 62463 14,14: - 0: 63351 + 0: 65535 14,15: 0: 61715 15,12: @@ -9999,6 +9996,22 @@ entities: 0: 8738 -21,-9: 0: 8738 + 8,15: + 0: 34816 + 9,15: + 0: 65534 + 9,14: + 0: 51336 + 10,14: + 0: 4352 + 10,15: + 0: 65395 + 8,16: + 0: 8 + 9,16: + 0: 52991 + 10,16: + 0: 4991 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -10109,1688 +10122,1695 @@ entities: - pos: -10.438177,-4.48881 parent: 2 type: Transform -- proto: AirAlarm +- proto: AcousticGuitarInstrument entities: - uid: 4 components: - - pos: -0.5,-40.5 + - pos: 39.451984,66.471794 parent: 2 type: Transform - - devices: - - 19720 - - 812 - - 19516 - - 14858 - - 14918 - - 14920 - - 14942 - - 14941 - - 14943 - - 14699 - - 14677 - - 14678 - - 14676 - - 14674 - - 14675 - - 14947 - - 14849 - - 14848 - - 14847 - type: DeviceList +- proto: AirAlarm + entities: - uid: 5 components: - - pos: -2.5,-13.5 + - pos: -0.5,-40.5 parent: 2 type: Transform - devices: - - 19752 - - 19483 - - 836 - - 14868 - - 14913 - - 14867 - - 14938 - - 14905 + - 19791 + - 814 + - 19586 + - 14909 + - 14969 + - 14971 + - 14993 + - 14992 + - 14994 + - 14751 + - 14729 + - 14730 + - 14728 + - 14726 + - 14727 + - 14998 + - 14900 - 14899 + - 14898 type: DeviceList - uid: 6 components: - - pos: 15.5,8.5 + - pos: -2.5,-13.5 parent: 2 type: Transform - devices: - - 19772 - - 839 - - 19486 - - 19721 - - 14810 - - 14809 - - 14893 - - 14833 - - 14830 - - 14864 - - 14886 - - 14906 - - 14837 - - 14871 - - 14843 - - 14880 + - 19823 + - 19553 + - 838 + - 14919 + - 14964 + - 14918 + - 14989 + - 14956 + - 14950 type: DeviceList - uid: 7 components: - - pos: 48.5,17.5 + - pos: 15.5,8.5 parent: 2 type: Transform - devices: - - 852 - - 19780 - - 19552 - - 19789 - - 19553 - - 19788 - - 19544 - - 19787 - - 19546 - - 19547 - - 19786 - - 19548 - - 19785 - - 19549 - - 19784 - - 19550 - - 19783 - - 19551 - - 19782 + - 19843 + - 841 + - 19556 + - 19792 + - 14861 + - 14860 + - 14944 + - 14884 + - 14881 + - 14915 + - 14937 + - 14957 + - 14888 + - 14922 + - 14894 + - 14931 type: DeviceList - uid: 8 components: - - pos: 20.5,-51.5 + - pos: 48.5,17.5 parent: 2 type: Transform - devices: - - 871 - - 19643 - - 19879 + - 854 + - 19851 + - 19622 + - 19860 + - 19623 + - 19859 + - 19614 + - 19858 + - 19616 + - 19617 + - 19857 + - 19618 + - 19856 + - 19619 + - 19855 + - 19620 + - 19854 + - 19621 + - 19853 type: DeviceList - uid: 9 components: - - pos: -2.5,4.5 + - pos: 20.5,-51.5 parent: 2 type: Transform - devices: - - 837 - - 19710 - - 19471 - - 15049 - - 15050 - - 15047 - - 15048 - - 14709 - - 14868 - - 14913 - - 14867 - - 14888 - - 14890 - - 14852 - - 14838 - - 14887 - - 14851 - - 15058 + - 873 + - 19713 + - 19950 type: DeviceList - uid: 10 components: - - pos: -0.5,10.5 + - pos: -2.5,4.5 parent: 2 type: Transform - devices: - - 841 - - 19482 - - 19759 - - 14944 - - 14904 - - 14945 - - 14914 - - 14886 - - 14906 - - 14837 - - 14910 + - 839 + - 19781 + - 19541 + - 15100 + - 15101 + - 15098 + - 15099 + - 14761 + - 14919 + - 14964 + - 14918 - 14939 - - 14940 + - 14941 + - 14903 + - 14889 + - 14938 + - 14902 + - 15109 type: DeviceList - uid: 11 components: - - pos: 24.5,5.5 + - pos: -0.5,10.5 parent: 2 type: Transform - devices: - - 924 - - 19708 - - 19521 - - 14879 + - 843 + - 19552 + - 19830 + - 14995 + - 14955 + - 14996 + - 14965 + - 14937 + - 14957 + - 14888 + - 14961 + - 14990 + - 14991 type: DeviceList - uid: 12 components: - - pos: -21.5,-25.5 + - pos: 24.5,5.5 parent: 2 type: Transform - devices: - - 876 - - 19830 - - 19593 - - 14983 - - 15001 - - 14901 - - 14825 - - 14937 - - 15043 - - 15044 - - 15045 - - 14980 - - 15007 - - 15008 + - 926 + - 19779 + - 19591 + - 14930 type: DeviceList - uid: 13 + components: + - pos: -21.5,-25.5 + parent: 2 + type: Transform + - devices: + - 878 + - 19901 + - 19663 + - 15034 + - 15052 + - 14952 + - 14876 + - 14988 + - 15094 + - 15095 + - 15096 + - 15031 + - 15058 + - 15059 + type: DeviceList + - uid: 14 components: - rot: 1.5707963267948966 rad pos: 31.5,5.5 parent: 2 type: Transform - devices: - - 19515 - - 19742 - - 865 - - 14879 - - 14882 - - 14907 - - 15041 - - 14878 - - 14861 - - 14892 - - 14836 - - 14863 - - 14891 + - 19585 + - 19813 + - 867 - 14930 + - 14933 + - 14958 + - 15092 + - 14929 + - 14912 + - 14943 + - 14887 + - 14914 + - 14942 + - 14981 type: DeviceList - - uid: 14 + - uid: 15 components: - pos: 64.5,-42.5 parent: 2 type: Transform - devices: - - 896 - - 19569 - - 19806 - - 14965 - - 14821 - - 14820 - - 14712 - - 14966 - - 15076 - - 15077 + - 898 + - 19639 + - 19877 + - 15016 + - 14872 + - 14871 + - 14764 + - 15017 + - 15127 + - 15128 type: DeviceList - - uid: 15 + - uid: 16 components: - pos: 43.5,-34.5 parent: 2 type: Transform - devices: - - 14714 - - 14713 - - 894 - - 19801 - - 14961 + - 14766 + - 14765 + - 896 + - 19872 + - 15012 type: DeviceList - - uid: 16 + - uid: 17 components: - pos: 27.5,-57.5 parent: 2 type: Transform - devices: - - 851 - - 19576 + - 853 + - 19646 type: DeviceList - - uid: 17 + - uid: 18 components: - pos: 7.5,-31.5 parent: 2 type: Transform - - uid: 18 + - uid: 19 components: - pos: -20.5,52.5 parent: 2 type: Transform - devices: - - 857 - - 19899 - - 19664 - - 15106 - - 15105 - - 15099 - - 15098 - - 15097 - - 15089 - - 15088 - - 15102 - - 15101 + - 859 + - 19970 + - 19734 + - 15157 + - 15156 + - 15150 + - 15149 + - 15148 + - 15140 + - 15139 + - 15153 + - 15152 type: DeviceList - - uid: 19 + - uid: 20 components: - pos: -47.5,17.5 parent: 2 type: Transform - devices: - - 19878 - - 860 - - 19639 - - 14746 - - 14743 + - 19949 + - 862 + - 19709 + - 14798 + - 14795 type: DeviceList - - uid: 20 + - uid: 21 components: - pos: 11.5,-40.5 parent: 2 type: Transform - devices: - - 19882 - - 19479 - - 816 - - 19646 - - 19711 - - 14859 - - 14933 - - 15057 - - 14858 - - 14918 - - 14920 - - 14686 - - 14970 + - 19953 + - 19549 + - 818 + - 19716 + - 19782 + - 14910 + - 14984 + - 15108 + - 14909 - 14969 - - 14968 - - 14925 - - 14960 - - 14897 - - 14922 - - 14844 - - 14866 + - 14971 + - 14738 + - 15021 + - 15020 + - 15019 + - 14976 + - 15011 - 14948 - - 14946 - - 14788 + - 14973 + - 14895 + - 14917 + - 14999 + - 14997 + - 14840 type: DeviceList - - uid: 21 + - uid: 22 components: - pos: 3.5,4.5 parent: 2 type: Transform - devices: - - 19507 - - 19757 - - 838 - - 14852 - - 14890 - - 14888 - - 14944 + - 19577 + - 19828 + - 840 + - 14903 + - 14941 + - 14939 + - 14995 + - 14955 + - 14996 + - 14961 + - 14915 + - 14881 + - 14880 + - 14911 - 14904 - - 14945 - - 14910 - - 14864 - - 14830 - - 14829 - - 14860 - - 14853 - - 14839 - - 14831 - - 14896 - type: DeviceList - - uid: 22 - components: - - pos: -20.5,-3.5 - parent: 2 - type: Transform - - devices: - - 19601 - - 861 - - 19583 - - 19819 - - 15020 - - 15021 - - 15022 - - 15049 - - 15050 - - 15047 - - 15048 - - 15040 - - 15038 - - 15039 - - 14982 - - 14979 - - 14917 - - 15051 - - 14696 + - 14890 + - 14882 + - 14947 type: DeviceList - uid: 23 components: - - pos: 28.5,-3.5 + - pos: -20.5,-3.5 parent: 2 type: Transform - devices: - - 862 - - 19474 - - 19706 - - 14836 - - 14863 - - 14891 - - 14935 - - 14916 - - 14854 - - 14828 - - 14924 - - 14850 + - 19671 + - 863 + - 19653 + - 19890 + - 15071 + - 15072 + - 15073 + - 15100 + - 15101 + - 15098 + - 15099 + - 15091 + - 15089 + - 15090 + - 15033 + - 15030 + - 14968 + - 15102 + - 14748 type: DeviceList - uid: 24 components: - - pos: 21.5,19.5 + - pos: 28.5,-3.5 parent: 2 type: Transform - devices: - - 866 - - 19758 - - 19513 - - 15070 - - 15055 - - 15054 - - 15053 - - 14835 - - 14884 - - 14670 - - 14672 - - 14682 - - 14688 - - 14702 - - 14834 + - 864 + - 19544 + - 19777 + - 14887 + - 14914 + - 14942 + - 14986 + - 14967 + - 14905 + - 14879 + - 14975 + - 14901 type: DeviceList - uid: 25 components: - - pos: -3.5,-51.5 + - pos: 21.5,19.5 parent: 2 type: Transform - devices: - - 814 - - 19733 - - 19499 - - 14921 - - 14926 - - 14934 - - 14932 - - 15069 - - 14873 - - 14874 - - 14919 - - 14993 - - 14992 - - 14994 - - 15000 - - 14928 - - 14909 - - 14841 - - 14846 - - 15030 - - 14799 + - 868 + - 19829 + - 19583 + - 15121 + - 15106 + - 15105 + - 15104 + - 14886 + - 14935 + - 14722 + - 14724 + - 14734 + - 14740 + - 14754 + - 14885 type: DeviceList - uid: 26 components: - - pos: -33.5,-42.5 + - pos: -3.5,-51.5 parent: 2 type: Transform - devices: - - 19884 - - 19647 - - 872 - - 15002 - - 15003 + - 816 + - 19804 + - 19569 + - 14972 + - 14977 + - 14985 + - 14983 + - 15120 + - 14924 + - 14925 + - 14970 + - 15044 + - 15043 + - 15045 + - 15051 + - 14979 + - 14960 + - 14892 + - 14897 + - 15081 + - 14850 type: DeviceList - uid: 27 components: - - pos: -30.5,-31.5 + - pos: -33.5,-42.5 parent: 2 type: Transform - devices: + - 19955 + - 19717 - 874 - - 19850 - - 19611 - - 14719 - - 14720 - - 14976 - - 14977 - - 14724 - - 14723 - - 15002 - - 15003 + - 15053 + - 15054 type: DeviceList - uid: 28 components: - - pos: -17.5,-58.5 + - pos: -30.5,-31.5 parent: 2 type: Transform - devices: - - 19732 - - 19472 - - 815 - - 14875 - - 14693 - - 14903 - - 14988 - - 14989 - - 14680 - - 14876 - - 15032 - - 15036 - - 14995 - - 15060 - - 14877 - - 15031 - - 15061 - - 15059 - - 15065 + - 876 + - 19921 + - 19681 + - 14771 + - 14772 + - 15027 + - 15028 + - 14776 + - 14775 + - 15053 + - 15054 type: DeviceList - uid: 29 components: - - pos: 21.5,-20.5 + - pos: -17.5,-58.5 parent: 2 type: Transform - devices: - - 14663 - - 14667 - - 14668 - - 14666 - - 14700 - - 14695 - - 19763 - - 19528 - - 877 + - 19803 + - 19542 + - 817 + - 14926 + - 14745 + - 14954 + - 15039 + - 15040 + - 14732 + - 14927 + - 15083 + - 15087 + - 15046 + - 15111 + - 14928 + - 15082 + - 15112 + - 15110 + - 15116 type: DeviceList - uid: 30 components: - - pos: 41.5,-69.5 + - pos: 21.5,-20.5 parent: 2 type: Transform - devices: - - 853 - - 19594 + - 14715 + - 14719 + - 14720 + - 14718 + - 14752 + - 14747 - 19834 - - 15137 - - 15138 - - 15139 - - 15134 - - 15135 - - 15136 + - 19598 + - 879 type: DeviceList - uid: 31 components: - - pos: 58.5,-4.5 + - pos: 41.5,-69.5 parent: 2 type: Transform - devices: - - 14975 - - 14957 - - 14956 - - 14955 - - 850 - - 19564 - - 19799 + - 855 + - 19664 + - 19905 + - 15188 + - 15189 + - 15190 + - 15185 + - 15186 + - 15187 type: DeviceList - uid: 32 components: - - pos: -12.5,-24.5 + - pos: 58.5,-4.5 parent: 2 type: Transform - devices: - - 19881 - - 19645 - - 835 - - 15043 - - 15044 - - 15045 - - 14870 - - 14900 - - 14936 - - 14899 - - 14905 - - 14938 - - 14941 - - 14942 - - 14943 - - 14685 + - 15026 + - 15008 + - 15007 + - 15006 + - 852 + - 19634 + - 19870 type: DeviceList - uid: 33 components: - - pos: 23.5,-15.5 + - pos: -12.5,-24.5 parent: 2 type: Transform - devices: - - 14828 - - 14924 - - 14850 - - 14927 - - 14885 - - 14872 - - 14911 - - 14889 - - 14856 - - 14857 - - 19725 - - 878 - - 19525 + - 19952 + - 19715 + - 837 + - 15094 + - 15095 + - 15096 + - 14921 + - 14951 + - 14987 + - 14950 + - 14956 + - 14989 + - 14992 + - 14993 + - 14994 + - 14737 type: DeviceList - uid: 34 components: - - rot: -1.5707963267948966 rad - pos: 19.5,4.5 + - pos: 23.5,-15.5 parent: 2 type: Transform - devices: - - 863 - - 19490 - - 19741 - - 14829 - - 14860 - - 14853 - - 14839 - - 14833 - - 14893 - - 14894 - - 14912 - - 14935 - - 14916 - - 14854 + - 14879 + - 14975 + - 14901 + - 14978 + - 14936 + - 14923 + - 14962 + - 14940 + - 14907 + - 14908 + - 19796 + - 880 + - 19595 type: DeviceList - uid: 35 components: - - pos: 11.5,-24.5 + - rot: -1.5707963267948966 rad + pos: 19.5,4.5 parent: 2 type: Transform - devices: - - 833 - - 19751 - - 19523 + - 865 + - 19560 + - 19812 + - 14880 + - 14911 + - 14904 + - 14890 + - 14884 + - 14944 + - 14945 + - 14963 + - 14986 + - 14967 + - 14905 type: DeviceList - uid: 36 components: - - pos: 13.5,-36.5 + - pos: 11.5,-24.5 parent: 2 type: Transform - devices: - - 833 - - 19751 - - 19523 + - 835 + - 19822 + - 19593 type: DeviceList - uid: 37 components: - - pos: 40.5,-24.5 + - pos: 13.5,-36.5 parent: 2 type: Transform - devices: - - 19765 - - 19532 - - 880 - - 19755 - - 19520 - - 19487 - - 19754 + - 835 + - 19822 + - 19593 type: DeviceList - uid: 38 components: - - pos: 33.5,-21.5 + - pos: 40.5,-24.5 parent: 2 type: Transform - devices: - - 19537 - - 819 - - 19771 - - 14668 - - 14666 - - 14889 - - 14856 - - 14857 - - 14662 - - 14661 - - 14922 - - 14844 - - 14866 + - 19836 + - 19602 + - 882 + - 19826 + - 19590 + - 19557 + - 19825 type: DeviceList - uid: 39 components: - - pos: 33.5,-37.5 + - pos: 33.5,-21.5 parent: 2 type: Transform - devices: - - 19537 - - 819 - - 19771 + - 19607 + - 821 + - 19842 + - 14720 + - 14718 + - 14940 + - 14907 + - 14908 + - 14714 + - 14713 + - 14973 + - 14895 + - 14917 type: DeviceList - uid: 40 components: - - pos: -5.5,9.5 + - pos: 33.5,-37.5 parent: 2 type: Transform - devices: - - 19713 - - 843 - - 19522 - - 14914 - - 14718 - - 15058 - - 14851 - - 14887 - - 14838 + - 19607 + - 821 + - 19842 type: DeviceList - uid: 41 components: - - pos: 50.5,3.5 + - pos: -5.5,9.5 parent: 2 type: Transform - devices: - - 848 - - 19556 - - 19796 - - 14907 - - 14882 - - 15041 - - 14923 - - 14955 - - 14956 - - 14957 - - 15111 - - 15112 - - 15145 + - 19784 + - 845 + - 19592 + - 14965 + - 14770 + - 15109 + - 14902 + - 14938 + - 14889 type: DeviceList - uid: 42 components: - - pos: -33.5,2.5 + - pos: 50.5,3.5 parent: 2 type: Transform - devices: - - 15025 - - 15024 - - 15026 - - 15027 - - 15034 - - 14917 - - 14979 - - 14982 - - 881 - - 19634 + - 850 + - 19626 - 19867 + - 14958 + - 14933 + - 15092 + - 14974 + - 15006 + - 15007 + - 15008 + - 15162 + - 15163 + - 15196 type: DeviceList - uid: 43 components: - - pos: -44.5,9.5 + - pos: -33.5,2.5 parent: 2 type: Transform - devices: - - 882 - - 19636 - - 19876 - - 15037 + - 15076 + - 15075 + - 15077 + - 15078 + - 15085 + - 14968 + - 15030 - 15033 - - 15026 - - 15027 - - 15034 + - 883 + - 19704 + - 19938 type: DeviceList - uid: 44 components: - - pos: -50.5,12.5 + - pos: -44.5,9.5 parent: 2 type: Transform - devices: - - 19873 - - 19641 - - 883 + - 884 + - 19706 + - 19947 + - 15088 + - 15084 + - 15077 + - 15078 + - 15085 type: DeviceList - uid: 45 components: - - pos: -39.5,26.5 + - pos: -50.5,12.5 parent: 2 type: Transform - devices: - - 19622 - - 19862 - - 884 - - 15125 - - 15127 - - 14881 + - 19944 + - 19711 + - 885 type: DeviceList - uid: 46 components: - - pos: -39.5,30.5 + - pos: -39.5,26.5 parent: 2 type: Transform - devices: - - 19626 - - 885 - - 15125 - - 15127 - - 14881 + - 19692 + - 19933 + - 886 + - 15176 + - 15178 + - 14932 type: DeviceList - uid: 47 components: - - pos: -29.5,20.5 + - pos: -39.5,30.5 parent: 2 type: Transform - devices: - - 19620 - - 886 - - 19861 + - 19696 + - 887 + - 15176 + - 15178 + - 14932 type: DeviceList - uid: 48 components: - - pos: -17.5,18.5 + - pos: -29.5,20.5 parent: 2 type: Transform - devices: - - 19618 - - 19858 + - 19690 - 888 - - 15019 - - 15018 - - 14958 - - 15083 - - 15084 - - 15020 - - 15021 - - 15022 - - 15023 + - 19932 type: DeviceList - uid: 49 components: - - pos: -30.5,-15.5 + - pos: -17.5,18.5 parent: 2 type: Transform - devices: - - 870 - - 19836 + - 19688 + - 19929 + - 890 + - 15070 + - 15069 - 15009 - - 15010 - - 14997 - - 14996 - - 15012 - - 15011 - - 14753 - - 14981 + - 15134 + - 15135 + - 15071 + - 15072 + - 15073 + - 15074 type: DeviceList - uid: 50 + components: + - pos: -30.5,-15.5 + parent: 2 + type: Transform + - devices: + - 872 + - 19907 + - 15060 + - 15061 + - 15048 + - 15047 + - 15063 + - 15062 + - 14805 + - 15032 + type: DeviceList + - uid: 51 components: - pos: -39.5,-4.5 parent: 2 type: Transform - devices: - - 892 - - 14999 - - 14998 - - 19599 - - 14754 - - 19839 - - 15015 + - 894 + - 15050 + - 15049 + - 19669 + - 14806 + - 19910 - 15066 + - 15117 type: DeviceList - - uid: 51 + - uid: 52 components: - pos: -53.5,-4.5 parent: 2 type: Transform - devices: - - 891 - - 19844 - - 19604 - - 14729 - - 14730 - - 15005 - - 15004 + - 893 + - 19915 + - 19674 + - 14781 + - 14782 + - 15056 + - 15055 type: DeviceList - - uid: 52 + - uid: 53 components: - pos: -55.5,-22.5 parent: 2 type: Transform - devices: - - 19846 - - 890 - - 19607 - - 15004 - - 15005 - - 15016 - - 15046 - - 14725 + - 19917 + - 892 + - 19677 + - 15055 + - 15056 + - 15067 + - 15097 + - 14777 type: DeviceList - - uid: 53 + - uid: 54 components: - pos: -71.5,-22.5 parent: 2 type: Transform - devices: - - 889 - - 14781 - - 15006 - - 14824 + - 891 + - 14833 + - 15057 + - 14875 type: DeviceList - - uid: 54 + - uid: 55 components: - pos: -30.5,-24.5 parent: 2 type: Transform - devices: - - 893 - - 19837 - - 19597 + - 895 + - 19908 + - 19667 type: DeviceList - - uid: 55 + - uid: 56 components: - pos: 48.5,-36.5 parent: 2 type: Transform - devices: - - 856 - - 19802 - - 19565 - - 14961 - - 14964 - - 14973 - - 14962 - - 14963 - - 14967 - - 14971 - - 14972 - - 15074 - - 15075 + - 858 + - 19873 + - 19635 + - 15012 + - 15015 + - 15024 + - 15013 + - 15014 + - 15018 + - 15022 + - 15023 + - 15125 + - 15126 type: DeviceList - - uid: 56 + - uid: 57 components: - pos: 52.5,-49.5 parent: 2 type: Transform - devices: - - 19575 - - 19811 - - 19812 - - 855 - - 14971 - - 14972 + - 19645 + - 19882 + - 19883 + - 857 + - 15022 + - 15023 type: DeviceList - - uid: 57 + - uid: 58 components: - pos: 60.5,0.5 parent: 2 type: Transform - devices: - - 14975 - - 19808 - - 19572 - - 907 + - 15026 + - 19879 + - 19642 + - 909 type: DeviceList - - uid: 58 + - uid: 59 components: - pos: 65.5,-53.5 parent: 2 type: Transform - devices: - - 897 - - 19809 - - 19573 - - 14966 + - 899 + - 19880 + - 19643 + - 15017 type: DeviceList - - uid: 59 + - uid: 60 components: - pos: -39.5,-73.5 parent: 2 type: Transform - devices: - - 901 - - 19615 - - 19857 - - 15113 - - 15114 + - 903 + - 19685 + - 19928 + - 15164 + - 15165 type: DeviceList - - uid: 60 + - uid: 61 components: - pos: -51.5,-72.5 parent: 2 type: Transform - devices: - - 19880 - - 19644 - - 900 + - 19951 + - 19714 + - 902 type: DeviceList - - uid: 61 + - uid: 62 components: - pos: 31.5,20.5 parent: 2 type: Transform - devices: - - 19795 - - 19561 - - 19712 - - 19560 - - 849 - - 14703 - - 14692 - - 14673 - - 14949 - - 14835 - - 14884 - - 14953 - - 14862 - - 15112 - - 15111 + - 19866 + - 19631 + - 19783 + - 19630 + - 851 + - 14755 + - 14744 + - 14725 + - 15000 + - 14886 + - 14935 + - 15004 + - 14913 + - 15163 + - 15162 type: DeviceList - - uid: 62 + - uid: 63 components: - pos: 23.5,24.5 parent: 2 type: Transform - devices: - - 19749 - - 847 - - 19493 - - 15070 - - 15055 - - 15054 - - 15053 - - 14949 + - 19820 + - 849 + - 19563 + - 15121 + - 15106 + - 15105 + - 15104 + - 15000 type: DeviceList - - uid: 63 + - uid: 64 components: - pos: 27.5,9.5 parent: 2 type: Transform - devices: - - 864 - - 19723 - - 19481 - - 14682 - - 14672 - - 14670 - - 14878 - - 14861 - - 14892 - - 14894 + - 866 + - 19794 + - 19551 + - 14734 + - 14724 + - 14722 + - 14929 - 14912 - - 14750 + - 14943 + - 14945 + - 14963 + - 14802 type: DeviceList - - uid: 64 + - uid: 65 components: - pos: -21.5,-83.5 parent: 2 type: Transform - devices: - - 824 - - 19738 - - 19477 - - 14883 - - 14931 - - 15073 + - 826 + - 19809 + - 19547 + - 14934 + - 14982 + - 15124 type: DeviceList - - uid: 65 + - uid: 66 components: - pos: -27.5,-76.5 parent: 2 type: Transform - devices: - - 19739 - - 19511 - - 822 - - 15064 - - 14931 - - 14883 + - 19810 + - 19581 + - 824 + - 15115 + - 14982 + - 14934 type: DeviceList - - uid: 66 + - uid: 67 components: - pos: 37.5,-63.5 parent: 2 type: Transform - devices: - - 854 - - 19828 - - 19590 + - 856 + - 19899 + - 19660 type: DeviceList - - uid: 67 + - uid: 68 components: - pos: -25.5,-56.5 parent: 2 type: Transform - devices: - - 19854 - - 19614 - - 903 - - 15017 + - 19925 + - 19684 + - 905 + - 15068 type: DeviceList - - uid: 68 + - uid: 69 components: - pos: -29.5,-68.5 parent: 2 type: Transform - - uid: 69 + - uid: 70 components: - pos: -15.5,68.5 parent: 2 type: Transform - devices: - - 906 - - 19681 - - 19931 - - 15144 - - 15143 + - 908 + - 19751 + - 20002 + - 15195 + - 15194 type: DeviceList - - uid: 70 + - uid: 71 components: - pos: 43.5,49.5 parent: 2 type: Transform - - uid: 71 + - uid: 72 components: - pos: -17.5,39.5 parent: 2 type: Transform - devices: - - 19890 - - 908 - - 19654 - - 14775 - - 14772 - - 14774 - - 14773 - - 15083 - - 15084 - - 15091 - - 15092 - - 15093 - - 15099 - - 15098 - - 15097 - - 14771 - - 15080 - - 15081 - - 15082 - - 14751 + - 19961 + - 910 + - 19724 + - 14827 + - 14824 + - 14826 + - 14825 + - 15134 + - 15135 + - 15142 + - 15143 + - 15144 + - 15150 + - 15149 + - 15148 + - 14823 + - 15131 + - 15132 + - 15133 + - 14803 type: DeviceList - - uid: 72 + - uid: 73 components: - pos: -10.5,47.5 parent: 2 type: Transform - devices: - - 909 - - 19659 - - 19898 - - 15091 - - 15092 - - 15093 - - 15086 - - 15087 - - 15107 - - 15095 - - 15096 - - 15094 + - 911 + - 19729 + - 19969 + - 15142 + - 15143 + - 15144 + - 15137 + - 15138 + - 15158 + - 15146 + - 15147 + - 15145 type: DeviceList - - uid: 73 + - uid: 74 components: - rot: -1.5707963267948966 rad pos: -11.5,57.5 parent: 2 type: Transform - ShutdownSubscribers: - - 19903 - - 19660 - - 858 - - 15103 - - 15104 - - 15108 - - 15105 - - 15106 - - 15143 - - 15100 - - 15078 + - 19974 + - 19730 + - 860 + - 15154 + - 15155 + - 15159 + - 15156 + - 15157 + - 15194 + - 15151 + - 15129 type: DeviceNetwork - devices: - - 19903 - - 19660 - - 858 - - 15103 - - 15104 - - 15108 - - 15105 - - 15106 - - 15143 - - 15100 - - 15078 + - 19974 + - 19730 + - 860 + - 15154 + - 15155 + - 15159 + - 15156 + - 15157 + - 15194 + - 15151 + - 15129 type: DeviceList - - uid: 74 + - uid: 75 components: - pos: 0.5,60.5 parent: 2 type: Transform - devices: - - 859 - - 19665 - - 19904 - - 15096 - - 15095 - - 15094 - - 15109 - - 15103 - - 15104 + - 861 + - 19735 + - 19975 + - 15147 + - 15146 + - 15145 + - 15160 + - 15154 + - 15155 type: DeviceList - - uid: 75 + - uid: 76 components: - pos: -33.5,-95.5 parent: 2 type: Transform - devices: - - 19672 - - 19911 - - 911 + - 19742 + - 19982 + - 913 type: DeviceList - - uid: 76 + - uid: 77 components: - pos: -10.5,-48.5 parent: 2 type: Transform - devices: - - 811 - - 19735 - - 19501 - - 14676 - - 14675 - - 14674 - - 14699 - - 14677 - - 14678 - - 15028 - - 15029 - - 14994 - - 14992 - - 14993 - - 14874 - - 14873 - - 14919 - - 14764 - - 14799 + - 813 + - 19806 + - 19571 + - 14728 + - 14727 + - 14726 + - 14751 + - 14729 + - 14730 + - 15079 + - 15080 + - 15045 + - 15043 + - 15044 + - 14925 + - 14924 + - 14970 + - 14816 + - 14850 type: DeviceList - - uid: 77 + - uid: 78 components: - pos: -22.5,-68.5 parent: 2 type: Transform - devices: - - 19767 - - 821 - - 19533 - - 15072 - - 15064 - - 14826 - - 14766 + - 19838 + - 823 + - 19603 + - 15123 + - 15115 + - 14877 + - 14818 type: DeviceList - - uid: 78 + - uid: 79 components: - pos: 26.5,-33.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15157 - - 15158 - - 15160 - - 19699 - - 19941 - - 934 + - 15208 + - 15209 + - 15211 + - 19769 + - 20012 + - 936 type: DeviceNetwork - devices: - - 15157 - - 15158 - - 15160 - - 19699 - - 19941 - - 934 + - 15208 + - 15209 + - 15211 + - 19769 + - 20012 + - 936 type: DeviceList - - uid: 79 + - uid: 80 components: - pos: 19.5,-9.5 parent: 2 type: Transform - devices: - - 19761 - - 879 - - 19524 - - 14927 - - 14706 + - 19832 + - 881 + - 19594 + - 14978 + - 14758 type: DeviceList - - uid: 80 + - uid: 81 components: - pos: 65.5,-31.5 parent: 2 type: Transform - devices: - - 19673 - - 19912 - - 898 - - 14783 - - 14784 - - 915 - - 14715 - - 14782 + - 19743 + - 19983 + - 900 + - 14835 + - 14836 + - 917 + - 14767 + - 14834 type: DeviceList - - uid: 81 + - uid: 82 components: - pos: 70.5,-31.5 parent: 2 type: Transform - devices: - - 14785 - - 14786 - - 15117 - - 15118 - - 914 - - 19914 + - 14837 + - 14838 + - 15168 + - 15169 + - 916 + - 19985 type: DeviceList - - uid: 82 + - uid: 83 components: - pos: 72.5,-42.5 parent: 2 type: Transform - devices: - - 19676 - - 899 - - 14821 - - 14820 - - 14712 - - 15119 - - 15120 + - 19746 + - 901 + - 14872 + - 14871 + - 14764 + - 15170 + - 15171 type: DeviceList - - uid: 83 + - uid: 84 components: - pos: 4.5,-24.5 parent: 2 type: Transform - devices: - - 15124 - - 14870 - - 14900 - - 14936 - - 14908 - - 14827 - - 14902 - - 19709 - - 19478 - - 834 + - 15175 + - 14921 + - 14951 + - 14987 + - 14959 + - 14878 + - 14953 + - 19780 + - 19548 + - 836 type: DeviceList - - uid: 84 + - uid: 85 components: - pos: -22.5,-7.5 parent: 2 type: Transform - devices: - - 19821 - - 868 - - 19585 - - 15056 - - 14865 - - 14869 - - 15009 - - 15010 - - 14752 + - 19892 + - 870 + - 19655 + - 15107 + - 14916 + - 14920 + - 15060 + - 15061 + - 14804 type: DeviceList - - uid: 85 + - uid: 86 components: - pos: -21.5,-16.5 parent: 2 type: Transform - devices: - - 869 - - 19823 - - 19587 - - 14869 - - 14865 - - 15040 - - 15038 - - 15039 - - 14978 - - 15007 - - 14980 - - 15008 - - 15121 - - 15122 - - 14787 + - 871 + - 19894 + - 19657 + - 14920 + - 14916 + - 15091 + - 15089 + - 15090 + - 15029 + - 15058 + - 15031 + - 15059 + - 15172 + - 15173 + - 14839 type: DeviceList - - uid: 86 + - uid: 87 components: - pos: 22.5,-70.5 parent: 2 type: Transform - devices: - - 19929 - - 922 - - 19690 - - 15134 - - 15135 - - 15136 - - 15133 - - 15132 - - 15131 + - 20000 + - 924 + - 19760 + - 15185 + - 15186 + - 15187 + - 15184 + - 15183 + - 15182 type: DeviceList - - uid: 87 + - uid: 88 components: - pos: 19.5,-80.5 parent: 2 type: Transform - devices: - - 15130 - - 19691 - - 19928 - - 923 + - 15181 + - 19761 + - 19999 + - 925 type: DeviceList - - uid: 88 + - uid: 89 components: - rot: -1.5707963267948966 rad pos: 32.5,-83.5 parent: 2 type: Transform - devices: - - 19688 - - 905 - - 19832 - - 15129 - - 15131 - - 15132 - - 15133 + - 19758 + - 907 + - 19903 + - 15180 + - 15182 + - 15183 + - 15184 type: DeviceList - - uid: 89 + - uid: 90 components: - rot: 1.5707963267948966 rad pos: 46.5,-80.5 parent: 2 type: Transform - devices: - - 912 - - 19930 - - 19692 - - 15140 - - 15141 - - 15142 + - 914 + - 20001 + - 19762 + - 15191 + - 15192 + - 15193 type: DeviceList - - uid: 90 + - uid: 91 components: - rot: 1.5707963267948966 rad pos: 43.5,4.5 parent: 2 type: Transform - devices: - - 809 - - 14950 - - 15145 - - 15052 - - 19694 - - 19933 + - 811 + - 15001 + - 15196 + - 15103 + - 19764 + - 20004 type: DeviceList - - uid: 91 + - uid: 92 components: - rot: 1.5707963267948966 rad pos: 39.5,10.5 parent: 2 type: Transform - devices: - - 14953 - - 14862 - - 19798 - - 19560 - - 849 - - 19712 - - 19561 - - 19795 - - 15052 - - 15111 - - 15112 - - 14835 - - 14884 - - 14949 - - 14703 - - 14692 - - 14673 + - 15004 + - 14913 + - 19869 + - 19630 + - 851 + - 19783 + - 19631 + - 19866 + - 15103 + - 15162 + - 15163 + - 14886 + - 14935 + - 15000 + - 14755 + - 14744 + - 14725 type: DeviceList - - uid: 92 + - uid: 93 components: - pos: 6.5,-44.5 parent: 2 type: Transform - devices: - - 829 - - 15030 - - 15029 - - 15028 - - 19734 - - 19500 + - 831 + - 15081 + - 15080 + - 15079 + - 19805 + - 19570 type: DeviceList - - uid: 93 + - uid: 94 components: - rot: -1.5707963267948966 rad pos: -44.5,42.5 parent: 2 type: Transform - devices: - - 19935 - - 19695 - - 926 - - 15147 - - 15148 + - 20006 + - 19765 + - 928 + - 15198 + - 15199 type: DeviceList - - uid: 94 + - uid: 95 components: - pos: -7.5,20.5 parent: 2 type: Transform - ShutdownSubscribers: - - 927 - - 19937 - - 19697 - - 14801 - - 14718 - - 14745 - - 14800 + - 929 + - 20008 + - 19767 + - 14852 + - 14770 + - 14797 + - 14851 type: DeviceNetwork - devices: - - 927 - - 19937 - - 19697 - - 14801 - - 14718 - - 14745 - - 14800 + - 929 + - 20008 + - 19767 + - 14852 + - 14770 + - 14797 + - 14851 type: DeviceList - - uid: 95 + - uid: 96 components: - pos: -68.5,-36.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14802 - - 14806 + - 14853 + - 14857 type: DeviceNetwork - devices: - - 928 - - 19469 - - 19703 - - 15149 - - 15150 - - 14802 - - 14806 + - 930 + - 19539 + - 19774 + - 15200 + - 15201 + - 14853 + - 14857 type: DeviceList - - uid: 96 + - uid: 97 components: - rot: 1.5707963267948966 rad pos: -74.5,-39.5 parent: 2 type: Transform - ShutdownSubscribers: - - 19938 - - 929 + - 20009 + - 931 type: DeviceNetwork - devices: - - 19938 - - 929 + - 20009 + - 931 type: DeviceList - - uid: 97 + - uid: 98 components: - rot: 1.5707963267948966 rad pos: -45.5,-38.5 parent: 2 type: Transform - ShutdownSubscribers: - - 930 - - 19853 + - 932 + - 19924 type: DeviceNetwork - devices: - - 930 - - 19853 + - 932 + - 19924 type: DeviceList - - uid: 98 + - uid: 99 components: - pos: 5.5,-3.5 parent: 2 type: Transform - ShutdownSubscribers: - - 932 - - 19701 - - 19467 - - 15151 - - 15153 - - 15154 + - 934 + - 19772 + - 19537 + - 15202 + - 15204 + - 15205 type: DeviceNetwork - devices: - - 932 - - 19701 - - 19467 - - 15151 - - 15153 - - 15154 + - 934 + - 19772 + - 19537 + - 15202 + - 15204 + - 15205 type: DeviceList - - uid: 99 + - uid: 100 components: - rot: 3.141592653589793 rad pos: -0.5,-7.5 parent: 2 type: Transform - ShutdownSubscribers: - - 931 - - 19939 - - 19466 - - 15153 - - 15152 + - 933 + - 20010 + - 19536 + - 15204 + - 15203 type: DeviceNetwork - devices: - - 931 - - 19939 - - 19466 - - 15153 - - 15152 + - 933 + - 20010 + - 19536 + - 15204 + - 15203 type: DeviceList - - uid: 100 + - uid: 101 components: - pos: -1.5,-18.5 parent: 2 type: Transform - ShutdownSubscribers: - - 933 - - 19698 - - 19940 - - 15155 - - 15156 + - 935 + - 19768 + - 20011 + - 15206 + - 15207 type: DeviceNetwork - devices: - - 933 - - 19698 - - 19940 - - 15155 - - 15156 + - 935 + - 19768 + - 20011 + - 15206 + - 15207 type: DeviceList - proto: AirAlarmElectronics entities: - - uid: 101 + - uid: 102 components: - pos: -8.750197,39.61815 parent: 2 type: Transform - proto: AirCanister entities: - - uid: 102 + - uid: 103 components: - pos: -34.5,-57.5 parent: 2 type: Transform - - uid: 103 + - uid: 104 components: - pos: -29.5,-48.5 parent: 2 type: Transform - - uid: 104 + - uid: 105 components: - pos: 60.5,29.5 parent: 2 type: Transform - - uid: 105 + - uid: 106 components: - pos: 45.5,-53.5 parent: 2 type: Transform - - uid: 106 + - uid: 107 components: - pos: -15.5,-10.5 parent: 2 type: Transform - - uid: 107 + - uid: 108 components: - pos: 71.5,38.5 parent: 2 type: Transform - - uid: 108 + - uid: 109 components: - pos: -42.5,37.5 parent: 2 type: Transform - - uid: 109 + - uid: 110 components: - pos: 51.5,-34.5 parent: 2 type: Transform - - uid: 110 + - uid: 111 components: - pos: 46.5,-53.5 parent: 2 type: Transform - proto: Airlock entities: - - uid: 111 + - uid: 112 components: - rot: 3.141592653589793 rad pos: -44.5,11.5 parent: 2 type: Transform - links: - - 23898 + - 24123 type: DeviceLinkSink - - uid: 112 + - uid: 113 components: - pos: -51.5,12.5 parent: 2 type: Transform - links: - - 23896 + - 24121 type: DeviceLinkSink - - uid: 113 + - uid: 114 components: - rot: 3.141592653589793 rad pos: -52.5,9.5 parent: 2 type: Transform - links: - - 23897 + - 24122 type: DeviceLinkSink - - uid: 114 + - uid: 115 components: - rot: -1.5707963267948966 rad pos: -21.5,30.5 @@ -11798,27 +11818,27 @@ entities: type: Transform - invokeCounter: 1 links: - - 23900 + - 24125 type: DeviceLinkSink - - uid: 115 + - uid: 116 components: - rot: -1.5707963267948966 rad pos: -17.5,34.5 parent: 2 type: Transform - links: - - 23901 + - 24126 type: DeviceLinkSink - - uid: 116 + - uid: 117 components: - rot: -1.5707963267948966 rad pos: -13.5,34.5 parent: 2 type: Transform - links: - - 23903 + - 24128 type: DeviceLinkSink - - uid: 117 + - uid: 118 components: - rot: -1.5707963267948966 rad pos: -29.5,-1.5 @@ -11826,7 +11846,7 @@ entities: type: Transform - proto: AirlockArmoryGlassLocked entities: - - uid: 118 + - uid: 119 components: - name: secway garage type: MetaData @@ -11834,7 +11854,7 @@ entities: pos: 11.5,18.5 parent: 2 type: Transform - - uid: 119 + - uid: 120 components: - name: warden office type: MetaData @@ -11842,7 +11862,7 @@ entities: pos: 27.5,21.5 parent: 2 type: Transform - - uid: 120 + - uid: 121 components: - name: secway garage type: MetaData @@ -11850,7 +11870,7 @@ entities: pos: 13.5,22.5 parent: 2 type: Transform - - uid: 121 + - uid: 122 components: - name: wardens office type: MetaData @@ -11858,19 +11878,19 @@ entities: pos: 22.5,19.5 parent: 2 type: Transform - - uid: 122 + - uid: 123 components: - pos: 46.5,15.5 parent: 2 type: Transform - - uid: 123 + - uid: 124 components: - pos: 46.5,14.5 parent: 2 type: Transform - proto: AirlockArmoryLocked entities: - - uid: 124 + - uid: 125 components: - name: wardens office type: MetaData @@ -11880,61 +11900,61 @@ entities: type: Transform - proto: AirlockAtmosphericsGlassLocked entities: - - uid: 125 + - uid: 126 components: - name: atmos type: MetaData - pos: -21.5,-32.5 parent: 2 type: Transform - - uid: 126 + - uid: 127 components: - pos: -45.5,-40.5 parent: 2 type: Transform - - uid: 127 + - uid: 128 components: - rot: -1.5707963267948966 rad pos: -33.5,-40.5 parent: 2 type: Transform - - uid: 128 + - uid: 129 components: - rot: -1.5707963267948966 rad pos: -33.5,-41.5 parent: 2 type: Transform - - uid: 129 + - uid: 130 components: - pos: -34.5,-33.5 parent: 2 type: Transform - - uid: 130 + - uid: 131 components: - pos: -34.5,-34.5 parent: 2 type: Transform - - uid: 131 + - uid: 132 components: - pos: -52.5,-58.5 parent: 2 type: Transform - - uid: 132 + - uid: 133 components: - pos: -47.5,-39.5 parent: 2 type: Transform - - uid: 133 + - uid: 134 components: - pos: -43.5,-37.5 parent: 2 type: Transform - - uid: 134 + - uid: 135 components: - pos: -47.5,-40.5 parent: 2 type: Transform - - uid: 135 + - uid: 136 components: - rot: -1.5707963267948966 rad pos: -45.5,-39.5 @@ -11942,65 +11962,65 @@ entities: type: Transform - proto: AirlockAtmosphericsLocked entities: - - uid: 136 + - uid: 137 components: - rot: 1.5707963267948966 rad pos: -29.5,-34.5 parent: 2 type: Transform - - uid: 137 + - uid: 138 components: - rot: 1.5707963267948966 rad pos: -29.5,-33.5 parent: 2 type: Transform - - uid: 138 + - uid: 139 components: - pos: -31.5,-36.5 parent: 2 type: Transform - - uid: 139 + - uid: 140 components: - pos: -32.5,-36.5 parent: 2 type: Transform - - uid: 140 + - uid: 141 components: - name: atmos type: MetaData - pos: -31.5,-30.5 parent: 2 type: Transform - - uid: 141 + - uid: 142 components: - name: atmos type: MetaData - pos: -32.5,-30.5 parent: 2 type: Transform - - uid: 142 + - uid: 143 components: - pos: -26.5,-33.5 parent: 2 type: Transform - - uid: 143 + - uid: 144 components: - pos: -26.5,-34.5 parent: 2 type: Transform - - uid: 144 + - uid: 145 components: - rot: -1.5707963267948966 rad pos: 5.5,-74.5 parent: 2 type: Transform - - uid: 145 + - uid: 146 components: - rot: 1.5707963267948966 rad pos: -51.5,-37.5 parent: 2 type: Transform - - uid: 146 + - uid: 147 components: - rot: 1.5707963267948966 rad pos: -51.5,-36.5 @@ -12008,7 +12028,7 @@ entities: type: Transform - proto: AirlockBarLocked entities: - - uid: 147 + - uid: 148 components: - name: bartender quarters type: MetaData @@ -12016,7 +12036,7 @@ entities: pos: 19.5,14.5 parent: 2 type: Transform - - uid: 148 + - uid: 149 components: - name: bartender quarters type: MetaData @@ -12026,82 +12046,82 @@ entities: type: Transform - proto: AirlockBrigGlassLocked entities: - - uid: 149 + - uid: 150 components: - name: interrogation type: MetaData - pos: 16.5,18.5 parent: 2 type: Transform - - uid: 150 + - uid: 151 components: - pos: 19.5,17.5 parent: 2 type: Transform - - uid: 151 + - uid: 152 components: - pos: 3.5,-58.5 parent: 2 type: Transform - - uid: 152 + - uid: 153 components: - pos: 19.5,16.5 parent: 2 type: Transform - - uid: 153 + - uid: 154 components: - name: brig type: MetaData - pos: 42.5,3.5 parent: 2 type: Transform - - uid: 154 + - uid: 155 components: - name: brig type: MetaData - pos: 41.5,3.5 parent: 2 type: Transform - - uid: 155 + - uid: 156 components: - pos: 40.5,-4.5 parent: 2 type: Transform - - uid: 156 + - uid: 157 components: - pos: 53.5,10.5 parent: 2 type: Transform - - uid: 157 + - uid: 158 components: - pos: 40.5,-1.5 parent: 2 type: Transform - - uid: 158 + - uid: 159 components: - name: suspect treatment type: MetaData - pos: 3.5,-55.5 parent: 2 type: Transform - - uid: 159 + - uid: 160 components: - pos: 39.5,11.5 parent: 2 type: Transform - - uid: 160 + - uid: 161 components: - pos: 27.5,17.5 parent: 2 type: Transform - - uid: 161 + - uid: 162 components: - pos: 27.5,18.5 parent: 2 type: Transform - proto: AirlockBrigLocked entities: - - uid: 162 + - uid: 163 components: - name: lawyers office type: MetaData @@ -12110,7 +12130,7 @@ entities: type: Transform - proto: AirlockCaptainLocked entities: - - uid: 163 + - uid: 164 components: - name: captains quarters type: MetaData @@ -12119,17 +12139,17 @@ entities: type: Transform - proto: AirlockCargoGlassLocked entities: - - uid: 164 + - uid: 165 components: - pos: -26.5,18.5 parent: 2 type: Transform - - uid: 165 + - uid: 166 components: - pos: -29.5,22.5 parent: 2 type: Transform - - uid: 166 + - uid: 167 components: - name: cargo access type: MetaData @@ -12137,21 +12157,21 @@ entities: pos: -26.5,19.5 parent: 2 type: Transform - - uid: 167 + - uid: 168 components: - name: cargo dock type: MetaData - pos: -35.5,22.5 parent: 2 type: Transform - - uid: 168 + - uid: 169 components: - name: cargo dock type: MetaData - pos: -35.5,21.5 parent: 2 type: Transform - - uid: 169 + - uid: 170 components: - rot: -1.5707963267948966 rad pos: -43.5,14.5 @@ -12159,25 +12179,25 @@ entities: type: Transform - proto: AirlockCargoLocked entities: - - uid: 170 + - uid: 171 components: - pos: -45.5,17.5 parent: 2 type: Transform - - uid: 171 + - uid: 172 components: - pos: -45.5,13.5 parent: 2 type: Transform - proto: AirlockChapelLocked entities: - - uid: 172 + - uid: 173 components: - rot: -1.5707963267948966 rad pos: -32.5,14.5 parent: 2 type: Transform - - uid: 173 + - uid: 174 components: - rot: -1.5707963267948966 rad pos: -30.5,11.5 @@ -12185,7 +12205,7 @@ entities: type: Transform - proto: AirlockChemistryLocked entities: - - uid: 174 + - uid: 175 components: - rot: 3.141592653589793 rad pos: 5.5,-51.5 @@ -12193,7 +12213,7 @@ entities: type: Transform - proto: AirlockChiefEngineerLocked entities: - - uid: 175 + - uid: 176 components: - name: vault substation type: MetaData @@ -12201,7 +12221,7 @@ entities: pos: 37.5,-30.5 parent: 2 type: Transform - - uid: 176 + - uid: 177 components: - name: ce room type: MetaData @@ -12209,14 +12229,14 @@ entities: pos: -33.5,-16.5 parent: 2 type: Transform - - uid: 177 + - uid: 178 components: - pos: -36.5,-14.5 parent: 2 type: Transform - proto: AirlockChiefMedicalOfficerLocked entities: - - uid: 178 + - uid: 179 components: - name: cmo office type: MetaData @@ -12226,62 +12246,62 @@ entities: type: Transform - proto: AirlockCommandGlassLocked entities: - - uid: 179 + - uid: 180 components: - pos: 19.5,-25.5 parent: 2 type: Transform - - uid: 180 + - uid: 181 components: - pos: 19.5,-24.5 parent: 2 type: Transform - - uid: 181 + - uid: 182 components: - pos: 33.5,-24.5 parent: 2 type: Transform - - uid: 182 + - uid: 183 components: - name: EVA type: MetaData - pos: 32.5,-15.5 parent: 2 type: Transform - - uid: 183 + - uid: 184 components: - pos: 31.5,-24.5 parent: 2 type: Transform - - uid: 184 + - uid: 185 components: - pos: 17.5,-24.5 parent: 2 type: Transform - - uid: 185 + - uid: 186 components: - rot: -1.5707963267948966 rad pos: 64.5,-4.5 parent: 2 type: Transform - - uid: 186 + - uid: 187 components: - pos: 17.5,-25.5 parent: 2 type: Transform - - uid: 187 + - uid: 188 components: - pos: 33.5,-25.5 parent: 2 type: Transform - - uid: 188 + - uid: 189 components: - pos: 31.5,-25.5 parent: 2 type: Transform - proto: AirlockCommandLocked entities: - - uid: 189 + - uid: 190 components: - name: conference room type: MetaData @@ -12289,7 +12309,7 @@ entities: pos: 23.5,-26.5 parent: 2 type: Transform - - uid: 190 + - uid: 191 components: - name: bridge bar type: MetaData @@ -12297,7 +12317,7 @@ entities: pos: 22.5,-33.5 parent: 2 type: Transform - - uid: 191 + - uid: 192 components: - name: bridge bar type: MetaData @@ -12305,21 +12325,21 @@ entities: pos: 28.5,-33.5 parent: 2 type: Transform - - uid: 192 + - uid: 193 components: - pos: 25.5,-40.5 parent: 2 type: Transform - proto: AirlockDetectiveGlassLocked entities: - - uid: 193 + - uid: 194 components: - pos: 20.5,-15.5 parent: 2 type: Transform - proto: AirlockEngineering entities: - - uid: 194 + - uid: 195 components: - name: PA smes type: MetaData @@ -12328,72 +12348,72 @@ entities: type: Transform - proto: AirlockEngineeringGlassLocked entities: - - uid: 195 + - uid: 196 components: - pos: -69.5,-23.5 parent: 2 type: Transform - - uid: 196 + - uid: 197 components: - pos: -63.5,-24.5 parent: 2 type: Transform - - uid: 197 + - uid: 198 components: - rot: 3.141592653589793 rad pos: -26.5,-17.5 parent: 2 type: Transform - - uid: 198 + - uid: 199 components: - rot: 3.141592653589793 rad pos: -26.5,-16.5 parent: 2 type: Transform - - uid: 199 + - uid: 200 components: - rot: 1.5707963267948966 rad pos: -30.5,-10.5 parent: 2 type: Transform - - uid: 200 + - uid: 201 components: - pos: -40.5,-6.5 parent: 2 type: Transform - - uid: 201 + - uid: 202 components: - pos: -43.5,-5.5 parent: 2 type: Transform - - uid: 202 + - uid: 203 components: - pos: -69.5,-24.5 parent: 2 type: Transform - - uid: 203 + - uid: 204 components: - pos: -32.5,-19.5 parent: 2 type: Transform - - uid: 204 + - uid: 205 components: - pos: -31.5,-19.5 parent: 2 type: Transform - - uid: 205 + - uid: 206 components: - rot: 1.5707963267948966 rad pos: -53.5,-21.5 parent: 2 type: Transform - - uid: 206 + - uid: 207 components: - rot: 1.5707963267948966 rad pos: -54.5,-21.5 parent: 2 type: Transform - - uid: 207 + - uid: 208 components: - name: particle accelerator type: MetaData @@ -12401,44 +12421,44 @@ entities: pos: -63.5,-23.5 parent: 2 type: Transform - - uid: 208 + - uid: 209 components: - rot: -1.5707963267948966 rad pos: -40.5,-11.5 parent: 2 type: Transform - - uid: 209 + - uid: 210 components: - rot: -1.5707963267948966 rad pos: -40.5,-10.5 parent: 2 type: Transform - - uid: 210 + - uid: 211 components: - pos: -33.5,-11.5 parent: 2 type: Transform - - uid: 211 + - uid: 212 components: - pos: -33.5,-10.5 parent: 2 type: Transform - - uid: 212 + - uid: 213 components: - pos: -43.5,-6.5 parent: 2 type: Transform - - uid: 213 + - uid: 214 components: - pos: -64.5,-29.5 parent: 2 type: Transform - - uid: 214 + - uid: 215 components: - pos: -68.5,-29.5 parent: 2 type: Transform - - uid: 215 + - uid: 216 components: - name: electrical storage type: MetaData @@ -12446,108 +12466,108 @@ entities: pos: -13.5,38.5 parent: 2 type: Transform - - uid: 216 + - uid: 217 components: - rot: 1.5707963267948966 rad pos: -43.5,-22.5 parent: 2 type: Transform - - uid: 217 + - uid: 218 components: - pos: -40.5,-5.5 parent: 2 type: Transform - - uid: 218 + - uid: 219 components: - rot: 3.141592653589793 rad pos: -63.5,-30.5 parent: 2 type: Transform - - uid: 219 + - uid: 220 components: - rot: -1.5707963267948966 rad pos: -74.5,-41.5 parent: 2 type: Transform - - uid: 220 + - uid: 221 components: - pos: -69.5,-31.5 parent: 2 type: Transform - - uid: 221 + - uid: 222 components: - rot: 3.141592653589793 rad pos: -60.5,-26.5 parent: 2 type: Transform - - uid: 222 + - uid: 223 components: - rot: -1.5707963267948966 rad pos: -72.5,-33.5 parent: 2 type: Transform - - uid: 223 + - uid: 224 components: - rot: -1.5707963267948966 rad pos: -73.5,-33.5 parent: 2 type: Transform - - uid: 224 + - uid: 225 components: - rot: -1.5707963267948966 rad pos: -73.5,-36.5 parent: 2 type: Transform - - uid: 225 + - uid: 226 components: - rot: -1.5707963267948966 rad pos: -72.5,-36.5 parent: 2 type: Transform - - uid: 226 + - uid: 227 components: - rot: -1.5707963267948966 rad pos: -64.5,-45.5 parent: 2 type: Transform - - uid: 227 + - uid: 228 components: - pos: -64.5,-36.5 parent: 2 type: Transform - - uid: 228 + - uid: 229 components: - pos: -49.5,-23.5 parent: 2 type: Transform - - uid: 229 + - uid: 230 components: - pos: -64.5,-37.5 parent: 2 type: Transform - proto: AirlockEngineeringLocked entities: - - uid: 230 + - uid: 231 components: - pos: -58.5,-36.5 parent: 2 type: Transform - - uid: 231 + - uid: 232 components: - pos: -58.5,-37.5 parent: 2 type: Transform - - uid: 232 + - uid: 233 components: - pos: -19.5,-1.5 parent: 2 type: Transform - - uid: 233 + - uid: 234 components: - pos: -26.5,-14.5 parent: 2 type: Transform - - uid: 234 + - uid: 235 components: - name: command substation type: MetaData @@ -12555,14 +12575,14 @@ entities: pos: 17.5,-29.5 parent: 2 type: Transform - - uid: 235 + - uid: 236 components: - name: medical substation type: MetaData - pos: 9.5,-44.5 parent: 2 type: Transform - - uid: 236 + - uid: 237 components: - name: detective substation type: MetaData @@ -12570,38 +12590,38 @@ entities: pos: 12.5,-15.5 parent: 2 type: Transform - - uid: 237 + - uid: 238 components: - pos: -6.5,-19.5 parent: 2 type: Transform - - uid: 238 + - uid: 239 components: - name: virology substation type: MetaData - pos: -11.5,-70.5 parent: 2 type: Transform - - uid: 239 + - uid: 240 components: - pos: 30.5,-3.5 parent: 2 type: Transform - - uid: 240 + - uid: 241 components: - name: gravity generator type: MetaData - pos: -19.5,-3.5 parent: 2 type: Transform - - uid: 241 + - uid: 242 components: - name: south solar type: MetaData - pos: -1.5,-76.5 parent: 2 type: Transform - - uid: 242 + - uid: 243 components: - name: medical substation type: MetaData @@ -12609,31 +12629,31 @@ entities: pos: 13.5,-57.5 parent: 2 type: Transform - - uid: 243 + - uid: 244 components: - name: substation type: MetaData - pos: 32.5,23.5 parent: 2 type: Transform - - uid: 244 + - uid: 245 components: - pos: 46.5,-0.5 parent: 2 type: Transform - - uid: 245 + - uid: 246 components: - pos: 63.5,27.5 parent: 2 type: Transform - - uid: 246 + - uid: 247 components: - name: evac substation type: MetaData - pos: 47.5,-6.5 parent: 2 type: Transform - - uid: 247 + - uid: 248 components: - name: science substation type: MetaData @@ -12641,42 +12661,42 @@ entities: pos: 38.5,-44.5 parent: 2 type: Transform - - uid: 248 + - uid: 249 components: - name: engineering substation type: MetaData - pos: -27.5,-22.5 parent: 2 type: Transform - - uid: 249 + - uid: 250 components: - name: engineering substation type: MetaData - pos: -30.5,-23.5 parent: 2 type: Transform - - uid: 250 + - uid: 251 components: - name: arrivals substation type: MetaData - pos: 42.5,-59.5 parent: 2 type: Transform - - uid: 251 + - uid: 252 components: - name: storage type: MetaData - pos: -41.5,-14.5 parent: 2 type: Transform - - uid: 252 + - uid: 253 components: - name: ame type: MetaData - pos: -43.5,-10.5 parent: 2 type: Transform - - uid: 253 + - uid: 254 components: - name: ame type: MetaData @@ -12684,54 +12704,54 @@ entities: pos: -43.5,-11.5 parent: 2 type: Transform - - uid: 254 + - uid: 255 components: - name: singularity type: MetaData - pos: -49.5,-6.5 parent: 2 type: Transform - - uid: 255 + - uid: 256 components: - name: singularity type: MetaData - pos: -49.5,-5.5 parent: 2 type: Transform - - uid: 256 + - uid: 257 components: - name: atmos substation type: MetaData - pos: -27.5,-35.5 parent: 2 type: Transform - - uid: 257 + - uid: 258 components: - pos: -72.5,-27.5 parent: 2 type: Transform - - uid: 258 + - uid: 259 components: - name: singularity substation type: MetaData - pos: -52.5,-8.5 parent: 2 type: Transform - - uid: 259 + - uid: 260 components: - name: maints bar substation type: MetaData - pos: -29.5,-55.5 parent: 2 type: Transform - - uid: 260 + - uid: 261 components: - name: cargo substation type: MetaData - pos: -21.5,15.5 parent: 2 type: Transform - - uid: 261 + - uid: 262 components: - name: substation type: MetaData @@ -12739,7 +12759,7 @@ entities: pos: 14.5,-59.5 parent: 2 type: Transform - - uid: 262 + - uid: 263 components: - name: chapel substation type: MetaData @@ -12747,7 +12767,7 @@ entities: pos: -35.5,-2.5 parent: 2 type: Transform - - uid: 263 + - uid: 264 components: - name: maints substation type: MetaData @@ -12755,33 +12775,33 @@ entities: pos: 49.5,28.5 parent: 2 type: Transform - - uid: 264 + - uid: 265 components: - name: north maints substation type: MetaData - pos: -8.5,33.5 parent: 2 type: Transform - - uid: 265 + - uid: 266 components: - name: ai substation type: MetaData - pos: -10.5,60.5 parent: 2 type: Transform - - uid: 266 + - uid: 267 components: - name: robotics substation type: MetaData - pos: 68.5,-60.5 parent: 2 type: Transform - - uid: 267 + - uid: 268 components: - pos: -21.5,0.5 parent: 2 type: Transform - - uid: 268 + - uid: 269 components: - name: telecoms substation type: MetaData @@ -12789,12 +12809,12 @@ entities: pos: 6.5,-21.5 parent: 2 type: Transform - - uid: 269 + - uid: 270 components: - pos: -41.5,-19.5 parent: 2 type: Transform - - uid: 270 + - uid: 271 components: - name: teg substation type: MetaData @@ -12802,233 +12822,233 @@ entities: pos: -71.5,-35.5 parent: 2 type: Transform - - uid: 271 + - uid: 272 components: - pos: -49.5,-16.5 parent: 2 type: Transform - - uid: 272 + - uid: 273 components: - pos: -49.5,-17.5 parent: 2 type: Transform - proto: AirlockExternalGlass entities: - - uid: 273 + - uid: 274 components: - pos: -1.5,-80.5 parent: 2 type: Transform - - uid: 274 + - uid: 275 components: - pos: -57.5,-71.5 parent: 2 type: Transform - - uid: 275 + - uid: 276 components: - rot: 1.5707963267948966 rad pos: 66.5,-5.5 parent: 2 type: Transform - - uid: 276 + - uid: 277 components: - pos: 52.5,-14.5 parent: 2 type: Transform - - uid: 277 + - uid: 278 components: - pos: 76.5,-34.5 parent: 2 type: Transform - - uid: 278 + - uid: 279 components: - rot: -1.5707963267948966 rad pos: 32.5,-89.5 parent: 2 type: Transform - - uid: 279 + - uid: 280 components: - rot: -1.5707963267948966 rad pos: 30.5,-93.5 parent: 2 type: Transform - - uid: 280 + - uid: 281 components: - pos: -57.5,-81.5 parent: 2 type: Transform - - uid: 281 + - uid: 282 components: - pos: -57.5,-79.5 parent: 2 type: Transform - - uid: 282 + - uid: 283 components: - pos: -57.5,-73.5 parent: 2 type: Transform - - uid: 283 + - uid: 284 components: - rot: 1.5707963267948966 rad pos: 66.5,-3.5 parent: 2 type: Transform - - uid: 284 + - uid: 285 components: - rot: 1.5707963267948966 rad pos: 66.5,-11.5 parent: 2 type: Transform - - uid: 285 + - uid: 286 components: - rot: 1.5707963267948966 rad pos: 66.5,-13.5 parent: 2 type: Transform - - uid: 286 + - uid: 287 components: - pos: 27.5,45.5 parent: 2 type: Transform - - uid: 287 + - uid: 288 components: - pos: 21.5,45.5 parent: 2 type: Transform - - uid: 288 + - uid: 289 components: - rot: 3.141592653589793 rad pos: -17.5,68.5 parent: 2 type: Transform - - uid: 289 + - uid: 290 components: - pos: 16.5,41.5 parent: 2 type: Transform - - uid: 290 + - uid: 291 components: - pos: -7.5,-94.5 parent: 2 type: Transform - - uid: 291 + - uid: 292 components: - pos: -7.5,-89.5 parent: 2 type: Transform - - uid: 292 + - uid: 293 components: - pos: 67.5,-14.5 parent: 2 type: Transform - - uid: 293 + - uid: 294 components: - pos: 76.5,-36.5 parent: 2 type: Transform - - uid: 294 + - uid: 295 components: - pos: 76.5,-37.5 parent: 2 type: Transform - - uid: 295 + - uid: 296 components: - pos: 76.5,-33.5 parent: 2 type: Transform - - uid: 296 + - uid: 297 components: - rot: -1.5707963267948966 rad pos: 32.5,-82.5 parent: 2 type: Transform - - uid: 297 + - uid: 298 components: - pos: 6.5,-84.5 parent: 2 type: Transform - - uid: 298 + - uid: 299 components: - pos: 48.5,-93.5 parent: 2 type: Transform - - uid: 299 + - uid: 300 components: - rot: 1.5707963267948966 rad pos: 46.5,-82.5 parent: 2 type: Transform - - uid: 300 + - uid: 301 components: - rot: 1.5707963267948966 rad pos: 46.5,-89.5 parent: 2 type: Transform - - uid: 301 + - uid: 302 components: - rot: -1.5707963267948966 rad pos: 67.5,-16.5 parent: 2 type: Transform - - uid: 302 + - uid: 303 components: - rot: 3.141592653589793 rad pos: -37.5,41.5 parent: 2 type: Transform - - uid: 303 + - uid: 304 components: - rot: 3.141592653589793 rad pos: 6.5,-86.5 parent: 2 type: Transform - - uid: 304 + - uid: 305 components: - pos: 50.5,-82.5 parent: 2 type: Transform - - uid: 305 + - uid: 306 components: - pos: 50.5,-89.5 parent: 2 type: Transform - - uid: 306 + - uid: 307 components: - rot: 1.5707963267948966 rad pos: 33.5,-90.5 parent: 2 type: Transform - - uid: 307 + - uid: 308 components: - rot: 3.141592653589793 rad pos: 45.5,-81.5 parent: 2 type: Transform - - uid: 308 + - uid: 309 components: - rot: 3.141592653589793 rad pos: 33.5,-81.5 parent: 2 type: Transform - - uid: 309 + - uid: 310 components: - rot: 1.5707963267948966 rad pos: 45.5,-90.5 parent: 2 type: Transform - - uid: 310 + - uid: 311 components: - rot: 3.141592653589793 rad pos: -37.5,43.5 parent: 2 type: Transform - - uid: 311 + - uid: 312 components: - rot: 3.141592653589793 rad pos: -58.5,-54.5 parent: 2 type: Transform - - uid: 312 + - uid: 313 components: - rot: 3.141592653589793 rad pos: -60.5,-54.5 @@ -13036,227 +13056,233 @@ entities: type: Transform - proto: AirlockExternalGlassLocked entities: - - uid: 313 + - uid: 314 components: - pos: -1.5,-84.5 parent: 2 type: Transform - - uid: 314 + - uid: 315 components: - pos: 52.5,-16.5 parent: 2 type: Transform - - uid: 315 + - uid: 316 components: - pos: -57.5,-1.5 parent: 2 type: Transform - - uid: 316 + - uid: 317 components: - pos: -55.5,-1.5 parent: 2 type: Transform - - uid: 317 + - uid: 318 components: - rot: -1.5707963267948966 rad pos: -58.5,-18.5 parent: 2 type: Transform - - uid: 318 + - uid: 319 components: - pos: -46.5,-41.5 parent: 2 type: Transform - - uid: 319 + - uid: 320 components: - pos: -49.5,20.5 parent: 2 type: Transform - - uid: 320 + - uid: 321 components: - pos: -49.5,22.5 parent: 2 type: Transform - - uid: 321 + - uid: 322 components: - pos: -49.5,33.5 parent: 2 type: Transform - - uid: 322 + - uid: 323 components: - pos: -49.5,31.5 parent: 2 type: Transform - - uid: 323 + - uid: 324 components: - pos: -52.5,33.5 parent: 2 type: Transform - - uid: 324 + - uid: 325 components: - pos: -52.5,31.5 parent: 2 type: Transform - - uid: 325 + - uid: 326 components: - rot: -1.5707963267948966 rad pos: 63.5,30.5 parent: 2 type: Transform - - uid: 326 + - uid: 327 components: - pos: 69.5,36.5 parent: 2 type: Transform - - uid: 327 + - uid: 328 components: - pos: 75.5,36.5 parent: 2 type: Transform - - uid: 328 + - uid: 329 components: - pos: 77.5,36.5 parent: 2 type: Transform - - uid: 329 + - uid: 330 components: - pos: 67.5,36.5 parent: 2 type: Transform - - uid: 330 + - uid: 331 components: - pos: 63.5,32.5 parent: 2 type: Transform - - uid: 331 + - uid: 332 components: - pos: 29.5,41.5 parent: 2 type: Transform - - uid: 332 + - uid: 333 components: - pos: 29.5,43.5 parent: 2 type: Transform - - uid: 333 + - uid: 334 components: - pos: -12.5,71.5 parent: 2 type: Transform - - uid: 334 + - uid: 335 components: - pos: -13.5,71.5 parent: 2 type: Transform - - uid: 335 + - uid: 336 components: - pos: -21.5,71.5 parent: 2 type: Transform - - uid: 336 + - uid: 337 components: - pos: -22.5,71.5 parent: 2 type: Transform - - uid: 337 + - uid: 338 components: - rot: -1.5707963267948966 rad pos: -56.5,-18.5 parent: 2 type: Transform - - uid: 338 + - uid: 339 components: - pos: -35.5,-99.5 parent: 2 type: Transform - - uid: 339 + - uid: 340 components: - pos: -35.5,-101.5 parent: 2 type: Transform - - uid: 340 + - uid: 341 components: - rot: 1.5707963267948966 rad pos: -50.5,-58.5 parent: 2 type: Transform - - uid: 341 + - uid: 342 components: - pos: 68.5,-67.5 parent: 2 type: Transform - - uid: 342 + - uid: 343 components: - pos: 68.5,-69.5 parent: 2 type: Transform - - uid: 343 + - uid: 344 components: - rot: -1.5707963267948966 rad pos: -51.5,42.5 parent: 2 type: Transform - - uid: 344 + - uid: 345 components: - rot: -1.5707963267948966 rad pos: -51.5,43.5 parent: 2 type: Transform - - uid: 345 + - uid: 346 components: - rot: -1.5707963267948966 rad pos: -49.5,45.5 parent: 2 type: Transform - - uid: 346 + - uid: 347 components: - rot: -1.5707963267948966 rad pos: -49.5,47.5 parent: 2 type: Transform - - uid: 347 + - uid: 348 components: - pos: -75.5,-31.5 parent: 2 type: Transform - - uid: 348 + - uid: 349 components: - pos: -77.5,-31.5 parent: 2 type: Transform - - uid: 349 + - uid: 350 components: - rot: -1.5707963267948966 rad pos: -62.5,-45.5 parent: 2 type: Transform - - uid: 350 + - uid: 351 components: - rot: 3.141592653589793 rad pos: -63.5,-44.5 parent: 2 type: Transform + - uid: 352 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,59.5 + parent: 2 + type: Transform - proto: AirlockExternalGlassShuttleArrivals entities: - - uid: 351 + - uid: 353 components: - rot: 1.5707963267948966 rad pos: 34.5,-89.5 parent: 2 type: Transform - - uid: 352 + - uid: 354 components: - rot: -1.5707963267948966 rad pos: 44.5,-82.5 parent: 2 type: Transform - - uid: 353 + - uid: 355 components: - rot: -1.5707963267948966 rad pos: 44.5,-89.5 parent: 2 type: Transform - - uid: 354 + - uid: 356 components: - rot: 1.5707963267948966 rad pos: 34.5,-82.5 @@ -13264,25 +13290,25 @@ entities: type: Transform - proto: AirlockExternalGlassShuttleEmergencyLocked entities: - - uid: 355 + - uid: 357 components: - rot: 1.5707963267948966 rad pos: 69.5,-3.5 parent: 2 type: Transform - - uid: 356 + - uid: 358 components: - rot: 1.5707963267948966 rad pos: 69.5,-13.5 parent: 2 type: Transform - - uid: 357 + - uid: 359 components: - rot: 1.5707963267948966 rad pos: 69.5,-11.5 parent: 2 type: Transform - - uid: 358 + - uid: 360 components: - rot: 1.5707963267948966 rad pos: 69.5,-5.5 @@ -13290,94 +13316,107 @@ entities: type: Transform - proto: AirlockExternalGlassShuttleEscape entities: - - uid: 359 + - uid: 361 components: - rot: 3.141592653589793 rad pos: -17.5,70.5 parent: 2 type: Transform - - uid: 360 + - uid: 362 components: - pos: 48.5,-95.5 parent: 2 type: Transform - - uid: 361 + - uid: 363 components: - pos: 30.5,-95.5 parent: 2 type: Transform - proto: AirlockExternalGlassShuttleLocked entities: - - uid: 362 + - uid: 364 components: - rot: -1.5707963267948966 rad pos: -53.5,20.5 parent: 2 type: Transform - - uid: 363 + - uid: 365 components: - rot: -1.5707963267948966 rad pos: -53.5,22.5 parent: 2 type: Transform - - uid: 364 + - uid: 366 components: - rot: 3.141592653589793 rad pos: -13.5,75.5 parent: 2 type: Transform - - uid: 365 + - uid: 367 components: - rot: 3.141592653589793 rad pos: -12.5,75.5 parent: 2 type: Transform - - uid: 366 + - uid: 368 components: - rot: 3.141592653589793 rad pos: -21.5,75.5 parent: 2 type: Transform - - uid: 367 + - uid: 369 components: - rot: 3.141592653589793 rad pos: -22.5,75.5 parent: 2 type: Transform - - uid: 368 + - uid: 370 components: - rot: -1.5707963267948966 rad pos: -53.5,42.5 parent: 2 type: Transform - - uid: 369 + - uid: 371 components: - rot: -1.5707963267948966 rad pos: -53.5,43.5 parent: 2 type: Transform +- proto: AirlockExternalGlassShuttleSyndicateLocked + entities: + - uid: 372 + components: + - pos: -54.5,-90.5 + parent: 2 + type: Transform + - uid: 373 + components: + - rot: 3.141592653589793 rad + pos: -54.5,-84.5 + parent: 2 + type: Transform - proto: AirlockFreezerKitchenHydroLocked entities: - - uid: 370 + - uid: 374 components: - pos: 0.5,10.5 parent: 2 type: Transform - - uid: 371 + - uid: 375 components: - name: service type: MetaData - pos: -9.5,15.5 parent: 2 type: Transform - - uid: 372 + - uid: 376 components: - pos: -1.5,14.5 parent: 2 type: Transform - proto: AirlockGlass entities: - - uid: 373 + - uid: 377 components: - name: lawyer office type: MetaData @@ -13385,59 +13424,59 @@ entities: pos: 35.5,-3.5 parent: 2 type: Transform - - uid: 374 + - uid: 378 components: - rot: 3.141592653589793 rad pos: -20.5,66.5 parent: 2 type: Transform - - uid: 375 + - uid: 379 components: - pos: 31.5,7.5 parent: 2 type: Transform - - uid: 376 + - uid: 380 components: - rot: 3.141592653589793 rad pos: 15.5,-38.5 parent: 2 type: Transform - - uid: 377 + - uid: 381 components: - pos: 19.5,-5.5 parent: 2 type: Transform - - uid: 378 + - uid: 382 components: - name: bar type: MetaData - pos: 10.5,4.5 parent: 2 type: Transform - - uid: 379 + - uid: 383 components: - rot: 1.5707963267948966 rad pos: 26.5,-15.5 parent: 2 type: Transform - - uid: 380 + - uid: 384 components: - rot: 1.5707963267948966 rad pos: 34.5,-19.5 parent: 2 type: Transform - - uid: 381 + - uid: 385 components: - rot: 3.141592653589793 rad pos: -0.5,-27.5 parent: 2 type: Transform - - uid: 382 + - uid: 386 components: - pos: -16.5,-42.5 parent: 2 type: Transform - - uid: 383 + - uid: 387 components: - name: youtool type: MetaData @@ -13445,118 +13484,118 @@ entities: pos: -21.5,-21.5 parent: 2 type: Transform - - uid: 384 + - uid: 388 components: - pos: 26.5,15.5 parent: 2 type: Transform - - uid: 385 + - uid: 389 components: - pos: 24.5,15.5 parent: 2 type: Transform - - uid: 386 + - uid: 390 components: - pos: -1.5,7.5 parent: 2 type: Transform - - uid: 387 + - uid: 391 components: - pos: 31.5,8.5 parent: 2 type: Transform - - uid: 388 + - uid: 392 components: - rot: -1.5707963267948966 rad pos: -3.5,-39.5 parent: 2 type: Transform - - uid: 389 + - uid: 393 components: - rot: -1.5707963267948966 rad pos: 24.5,-44.5 parent: 2 type: Transform - - uid: 390 + - uid: 394 components: - rot: -1.5707963267948966 rad pos: -5.5,-39.5 parent: 2 type: Transform - - uid: 391 + - uid: 395 components: - pos: 25.5,15.5 parent: 2 type: Transform - - uid: 392 + - uid: 396 components: - rot: -1.5707963267948966 rad pos: 15.5,7.5 parent: 2 type: Transform - - uid: 393 + - uid: 397 components: - rot: -1.5707963267948966 rad pos: 15.5,6.5 parent: 2 type: Transform - - uid: 394 + - uid: 398 components: - pos: 35.5,1.5 parent: 2 type: Transform - - uid: 395 + - uid: 399 components: - rot: 1.5707963267948966 rad pos: 16.5,-19.5 parent: 2 type: Transform - - uid: 396 + - uid: 400 components: - rot: 1.5707963267948966 rad pos: 15.5,-19.5 parent: 2 type: Transform - - uid: 397 + - uid: 401 components: - rot: 1.5707963267948966 rad pos: 14.5,-19.5 parent: 2 type: Transform - - uid: 398 + - uid: 402 components: - rot: 3.141592653589793 rad pos: 10.5,-27.5 parent: 2 type: Transform - - uid: 399 + - uid: 403 components: - rot: 3.141592653589793 rad pos: 10.5,-26.5 parent: 2 type: Transform - - uid: 400 + - uid: 404 components: - pos: 0.5,-50.5 parent: 2 type: Transform - - uid: 401 + - uid: 405 components: - pos: -0.5,-50.5 parent: 2 type: Transform - - uid: 402 + - uid: 406 components: - pos: 31.5,1.5 parent: 2 type: Transform - - uid: 403 + - uid: 407 components: - rot: 3.141592653589793 rad pos: 31.5,-6.5 parent: 2 type: Transform - - uid: 404 + - uid: 408 components: - name: lawyer office type: MetaData @@ -13564,244 +13603,244 @@ entities: pos: 38.5,-0.5 parent: 2 type: Transform - - uid: 405 + - uid: 409 components: - pos: -1.5,-50.5 parent: 2 type: Transform - - uid: 406 + - uid: 410 components: - rot: 3.141592653589793 rad pos: 10.5,-2.5 parent: 2 type: Transform - - uid: 407 + - uid: 411 components: - name: bar type: MetaData - pos: 11.5,4.5 parent: 2 type: Transform - - uid: 408 + - uid: 412 components: - rot: 1.5707963267948966 rad pos: 25.5,-15.5 parent: 2 type: Transform - - uid: 409 + - uid: 413 components: - pos: -16.5,-43.5 parent: 2 type: Transform - - uid: 410 + - uid: 414 components: - pos: -16.5,-41.5 parent: 2 type: Transform - - uid: 411 + - uid: 415 components: - rot: 3.141592653589793 rad pos: 10.5,-25.5 parent: 2 type: Transform - - uid: 412 + - uid: 416 components: - rot: 3.141592653589793 rad pos: -0.5,-25.5 parent: 2 type: Transform - - uid: 413 + - uid: 417 components: - rot: 1.5707963267948966 rad pos: 19.5,6.5 parent: 2 type: Transform - - uid: 414 + - uid: 418 components: - pos: 19.5,-4.5 parent: 2 type: Transform - - uid: 415 + - uid: 419 components: - pos: 19.5,-6.5 parent: 2 type: Transform - - uid: 416 + - uid: 420 components: - rot: -1.5707963267948966 rad pos: -4.5,-39.5 parent: 2 type: Transform - - uid: 417 + - uid: 421 components: - rot: 3.141592653589793 rad pos: 31.5,-4.5 parent: 2 type: Transform - - uid: 418 + - uid: 422 components: - rot: 1.5707963267948966 rad pos: 36.5,-19.5 parent: 2 type: Transform - - uid: 419 + - uid: 423 components: - pos: -20.5,-24.5 parent: 2 type: Transform - - uid: 420 + - uid: 424 components: - pos: 35.5,0.5 parent: 2 type: Transform - - uid: 421 + - uid: 425 components: - rot: 3.141592653589793 rad pos: 31.5,-5.5 parent: 2 type: Transform - - uid: 422 + - uid: 426 components: - pos: -3.5,-22.5 parent: 2 type: Transform - - uid: 423 + - uid: 427 components: - pos: -19.5,-24.5 parent: 2 type: Transform - - uid: 424 + - uid: 428 components: - rot: 1.5707963267948966 rad pos: 35.5,-19.5 parent: 2 type: Transform - - uid: 425 + - uid: 429 components: - pos: -5.5,-22.5 parent: 2 type: Transform - - uid: 426 + - uid: 430 components: - rot: 3.141592653589793 rad pos: 14.5,-38.5 parent: 2 type: Transform - - uid: 427 + - uid: 431 components: - rot: 1.5707963267948966 rad pos: 24.5,-15.5 parent: 2 type: Transform - - uid: 428 + - uid: 432 components: - rot: 3.141592653589793 rad pos: 11.5,-2.5 parent: 2 type: Transform - - uid: 429 + - uid: 433 components: - pos: 35.5,2.5 parent: 2 type: Transform - - uid: 430 + - uid: 434 components: - rot: -1.5707963267948966 rad pos: 25.5,-44.5 parent: 2 type: Transform - - uid: 431 + - uid: 435 components: - rot: -1.5707963267948966 rad pos: 26.5,-44.5 parent: 2 type: Transform - - uid: 432 + - uid: 436 components: - pos: 31.5,6.5 parent: 2 type: Transform - - uid: 433 + - uid: 437 components: - rot: 3.141592653589793 rad pos: 16.5,-38.5 parent: 2 type: Transform - - uid: 434 + - uid: 438 components: - pos: 1.5,53.5 parent: 2 type: Transform - - uid: 435 + - uid: 439 components: - pos: 0.5,53.5 parent: 2 type: Transform - - uid: 436 + - uid: 440 components: - pos: -0.5,53.5 parent: 2 type: Transform - - uid: 437 + - uid: 441 components: - pos: 40.5,-41.5 parent: 2 type: Transform - - uid: 438 + - uid: 442 components: - pos: 40.5,-42.5 parent: 2 type: Transform - - uid: 439 + - uid: 443 components: - pos: 40.5,-43.5 parent: 2 type: Transform - - uid: 440 + - uid: 444 components: - pos: 7.5,-43.5 parent: 2 type: Transform - - uid: 441 + - uid: 445 components: - pos: -4.5,-22.5 parent: 2 type: Transform - - uid: 442 + - uid: 446 components: - pos: 7.5,-42.5 parent: 2 type: Transform - - uid: 443 + - uid: 447 components: - pos: 7.5,-41.5 parent: 2 type: Transform - - uid: 444 + - uid: 448 components: - pos: -0.5,-26.5 parent: 2 type: Transform - - uid: 445 + - uid: 449 components: - name: Psychologist office type: MetaData - pos: -8.5,-40.5 parent: 2 type: Transform - - uid: 446 + - uid: 450 components: - rot: -1.5707963267948966 rad pos: -13.5,45.5 parent: 2 type: Transform - - uid: 447 + - uid: 451 components: - rot: -1.5707963267948966 rad pos: -13.5,46.5 parent: 2 type: Transform - - uid: 448 + - uid: 452 components: - name: visitor meeting type: MetaData @@ -13809,78 +13848,78 @@ entities: pos: 37.5,20.5 parent: 2 type: Transform - - uid: 449 + - uid: 453 components: - name: open library type: MetaData - pos: 43.5,19.5 parent: 2 type: Transform - - uid: 450 + - uid: 454 components: - name: open library type: MetaData - pos: 43.5,20.5 parent: 2 type: Transform - - uid: 451 + - uid: 455 components: - rot: 3.141592653589793 rad pos: 36.5,-38.5 parent: 2 type: Transform - - uid: 452 + - uid: 456 components: - rot: 3.141592653589793 rad pos: 35.5,-38.5 parent: 2 type: Transform - - uid: 453 + - uid: 457 components: - rot: 3.141592653589793 rad pos: 34.5,-38.5 parent: 2 type: Transform - - uid: 454 + - uid: 458 components: - rot: 3.141592653589793 rad pos: -14.5,66.5 parent: 2 type: Transform - - uid: 455 + - uid: 459 components: - rot: 3.141592653589793 rad pos: 51.5,-3.5 parent: 2 type: Transform - - uid: 456 + - uid: 460 components: - rot: 3.141592653589793 rad pos: 52.5,-3.5 parent: 2 type: Transform - - uid: 457 + - uid: 461 components: - rot: 3.141592653589793 rad pos: 53.5,-3.5 parent: 2 type: Transform - - uid: 458 + - uid: 462 components: - pos: -13.5,-27.5 parent: 2 type: Transform - - uid: 459 + - uid: 463 components: - pos: -13.5,-26.5 parent: 2 type: Transform - - uid: 460 + - uid: 464 components: - pos: -13.5,-25.5 parent: 2 type: Transform - - uid: 461 + - uid: 465 components: - name: courtroom type: MetaData @@ -13888,67 +13927,67 @@ entities: pos: 31.5,-57.5 parent: 2 type: Transform - - uid: 462 + - uid: 466 components: - pos: 30.5,-76.5 parent: 2 type: Transform - - uid: 463 + - uid: 467 components: - pos: 31.5,-76.5 parent: 2 type: Transform - - uid: 464 + - uid: 468 components: - pos: 29.5,-76.5 parent: 2 type: Transform - - uid: 465 + - uid: 469 components: - rot: 1.5707963267948966 rad pos: 32.5,-72.5 parent: 2 type: Transform - - uid: 466 + - uid: 470 components: - rot: 1.5707963267948966 rad pos: 46.5,-71.5 parent: 2 type: Transform - - uid: 467 + - uid: 471 components: - pos: 40.5,-69.5 parent: 2 type: Transform - - uid: 468 + - uid: 472 components: - pos: 39.5,-69.5 parent: 2 type: Transform - - uid: 469 + - uid: 473 components: - pos: 38.5,-69.5 parent: 2 type: Transform - - uid: 470 + - uid: 474 components: - rot: 3.141592653589793 rad pos: 35.5,-58.5 parent: 2 type: Transform - - uid: 471 + - uid: 475 components: - rot: 3.141592653589793 rad pos: 35.5,-59.5 parent: 2 type: Transform - - uid: 472 + - uid: 476 components: - rot: 3.141592653589793 rad pos: 35.5,-60.5 parent: 2 type: Transform - - uid: 473 + - uid: 477 components: - name: youtool type: MetaData @@ -13956,457 +13995,457 @@ entities: pos: 39.5,-57.5 parent: 2 type: Transform - - uid: 474 + - uid: 478 components: - pos: -7.5,-50.5 parent: 2 type: Transform - - uid: 475 + - uid: 479 components: - pos: -8.5,-50.5 parent: 2 type: Transform - - uid: 476 + - uid: 480 components: - pos: -9.5,-50.5 parent: 2 type: Transform - - uid: 477 + - uid: 481 components: - pos: -19.5,14.5 parent: 2 type: Transform - - uid: 478 + - uid: 482 components: - pos: -18.5,14.5 parent: 2 type: Transform - - uid: 479 + - uid: 483 components: - pos: -20.5,14.5 parent: 2 type: Transform - - uid: 480 + - uid: 484 components: - pos: -19.5,-39.5 parent: 2 type: Transform - - uid: 481 + - uid: 485 components: - pos: -20.5,-39.5 parent: 2 type: Transform - - uid: 482 + - uid: 486 components: - pos: -18.5,-39.5 parent: 2 type: Transform - - uid: 483 + - uid: 487 components: - pos: -18.5,-24.5 parent: 2 type: Transform - - uid: 484 + - uid: 488 components: - rot: -1.5707963267948966 rad pos: -18.5,-7.5 parent: 2 type: Transform - - uid: 485 + - uid: 489 components: - rot: -1.5707963267948966 rad pos: -19.5,-7.5 parent: 2 type: Transform - - uid: 486 + - uid: 490 components: - rot: -1.5707963267948966 rad pos: -20.5,-7.5 parent: 2 type: Transform - - uid: 487 + - uid: 491 components: - pos: -21.5,-12.5 parent: 2 type: Transform - - uid: 488 + - uid: 492 components: - pos: -21.5,-11.5 parent: 2 type: Transform - - uid: 489 + - uid: 493 components: - pos: -21.5,20.5 parent: 2 type: Transform - - uid: 490 + - uid: 494 components: - rot: -1.5707963267948966 rad pos: -17.5,29.5 parent: 2 type: Transform - - uid: 491 + - uid: 495 components: - rot: -1.5707963267948966 rad pos: -17.5,30.5 parent: 2 type: Transform - - uid: 492 + - uid: 496 components: - pos: -30.5,7.5 parent: 2 type: Transform - - uid: 493 + - uid: 497 components: - pos: -44.5,-0.5 parent: 2 type: Transform - - uid: 494 + - uid: 498 components: - pos: -4.5,-2.5 parent: 2 type: Transform - - uid: 495 + - uid: 499 components: - pos: -3.5,-2.5 parent: 2 type: Transform - - uid: 496 + - uid: 500 components: - pos: -44.5,1.5 parent: 2 type: Transform - - uid: 497 + - uid: 501 components: - pos: -44.5,0.5 parent: 2 type: Transform - - uid: 498 + - uid: 502 components: - pos: -38.5,2.5 parent: 2 type: Transform - - uid: 499 + - uid: 503 components: - pos: -37.5,2.5 parent: 2 type: Transform - - uid: 500 + - uid: 504 components: - pos: -27.5,1.5 parent: 2 type: Transform - - uid: 501 + - uid: 505 components: - pos: -27.5,0.5 parent: 2 type: Transform - - uid: 502 + - uid: 506 components: - pos: -27.5,-0.5 parent: 2 type: Transform - - uid: 503 + - uid: 507 components: - pos: -5.5,-2.5 parent: 2 type: Transform - - uid: 504 + - uid: 508 components: - pos: -21.5,21.5 parent: 2 type: Transform - - uid: 505 + - uid: 509 components: - pos: -46.5,2.5 parent: 2 type: Transform - - uid: 506 + - uid: 510 components: - pos: -47.5,2.5 parent: 2 type: Transform - - uid: 507 + - uid: 511 components: - pos: -45.5,2.5 parent: 2 type: Transform - - uid: 508 + - uid: 512 components: - rot: 3.141592653589793 rad pos: -45.5,9.5 parent: 2 type: Transform - - uid: 509 + - uid: 513 components: - rot: 3.141592653589793 rad pos: -46.5,9.5 parent: 2 type: Transform - - uid: 510 + - uid: 514 components: - rot: 1.5707963267948966 rad pos: 19.5,7.5 parent: 2 type: Transform - - uid: 511 + - uid: 515 components: - rot: -1.5707963267948966 rad pos: -17.5,48.5 parent: 2 type: Transform - - uid: 512 + - uid: 516 components: - rot: -1.5707963267948966 rad pos: -13.5,44.5 parent: 2 type: Transform - - uid: 513 + - uid: 517 components: - rot: -1.5707963267948966 rad pos: -18.5,48.5 parent: 2 type: Transform - - uid: 514 + - uid: 518 components: - rot: -1.5707963267948966 rad pos: -16.5,48.5 parent: 2 type: Transform - - uid: 515 + - uid: 519 components: - rot: 3.141592653589793 rad pos: -11.5,52.5 parent: 2 type: Transform - - uid: 516 + - uid: 520 components: - rot: 3.141592653589793 rad pos: -6.5,57.5 parent: 2 type: Transform - - uid: 517 + - uid: 521 components: - pos: -11.5,59.5 parent: 2 type: Transform - - uid: 518 + - uid: 522 components: - pos: -11.5,58.5 parent: 2 type: Transform - - uid: 519 + - uid: 523 components: - pos: -15.5,51.5 parent: 2 type: Transform - - uid: 520 + - uid: 524 components: - pos: -15.5,50.5 parent: 2 type: Transform - - uid: 521 + - uid: 525 components: - rot: 3.141592653589793 rad pos: -4.5,47.5 parent: 2 type: Transform - - uid: 522 + - uid: 526 components: - pos: 4.5,-28.5 parent: 2 type: Transform - - uid: 523 + - uid: 527 components: - pos: 47.5,-76.5 parent: 2 type: Transform - - uid: 524 + - uid: 528 components: - rot: 3.141592653589793 rad pos: 23.5,-83.5 parent: 2 type: Transform - - uid: 525 + - uid: 529 components: - rot: 3.141592653589793 rad pos: 20.5,-83.5 parent: 2 type: Transform - - uid: 526 + - uid: 530 components: - rot: 1.5707963267948966 rad pos: 46.5,-72.5 parent: 2 type: Transform - - uid: 527 + - uid: 531 components: - rot: 1.5707963267948966 rad pos: 32.5,-73.5 parent: 2 type: Transform - - uid: 528 + - uid: 532 components: - pos: 49.5,-76.5 parent: 2 type: Transform - - uid: 529 + - uid: 533 components: - rot: 1.5707963267948966 rad pos: 32.5,-71.5 parent: 2 type: Transform - - uid: 530 + - uid: 534 components: - rot: 1.5707963267948966 rad pos: 46.5,-73.5 parent: 2 type: Transform - - uid: 531 + - uid: 535 components: - pos: 48.5,-76.5 parent: 2 type: Transform - - uid: 532 + - uid: 536 components: - rot: 1.5707963267948966 rad pos: -75.5,-54.5 parent: 2 type: Transform - - uid: 533 + - uid: 537 components: - rot: 1.5707963267948966 rad pos: -75.5,-53.5 parent: 2 type: Transform - - uid: 534 + - uid: 538 components: - rot: 1.5707963267948966 rad pos: -67.5,-53.5 parent: 2 type: Transform - - uid: 535 + - uid: 539 components: - rot: -1.5707963267948966 rad pos: -67.5,-54.5 parent: 2 type: Transform - - uid: 536 + - uid: 540 components: - rot: 1.5707963267948966 rad pos: 7.5,-11.5 parent: 2 type: Transform - - uid: 537 + - uid: 541 components: - pos: 47.5,-43.5 parent: 2 type: Transform - - uid: 538 + - uid: 542 components: - pos: 47.5,-41.5 parent: 2 type: Transform - - uid: 539 + - uid: 543 components: - pos: 47.5,-42.5 parent: 2 type: Transform - proto: AirlockGlassShuttle entities: - - uid: 540 + - uid: 544 components: - rot: -1.5707963267948966 rad pos: -59.5,-71.5 parent: 2 type: Transform - - uid: 541 + - uid: 545 components: - rot: -1.5707963267948966 rad pos: -59.5,-73.5 parent: 2 type: Transform - - uid: 542 + - uid: 546 components: - rot: -1.5707963267948966 rad pos: -59.5,-81.5 parent: 2 type: Transform - - uid: 543 + - uid: 547 components: - rot: -1.5707963267948966 rad pos: -59.5,-79.5 parent: 2 type: Transform - - uid: 544 + - uid: 548 components: - rot: 1.5707963267948966 rad pos: 79.5,-37.5 parent: 2 type: Transform - - uid: 545 + - uid: 549 components: - rot: 1.5707963267948966 rad pos: 79.5,-34.5 parent: 2 type: Transform - - uid: 546 + - uid: 550 components: - rot: 1.5707963267948966 rad pos: 79.5,-36.5 parent: 2 type: Transform - - uid: 547 + - uid: 551 components: - rot: 1.5707963267948966 rad pos: 79.5,-33.5 parent: 2 type: Transform - - uid: 548 + - uid: 552 components: - rot: 1.5707963267948966 rad pos: 52.5,-82.5 parent: 2 type: Transform - - uid: 549 + - uid: 553 components: - rot: 1.5707963267948966 rad pos: 52.5,-89.5 parent: 2 type: Transform - - uid: 550 + - uid: 554 components: - rot: 3.141592653589793 rad pos: -73.5,-50.5 parent: 2 type: Transform - - uid: 551 + - uid: 555 components: - rot: 3.141592653589793 rad pos: -71.5,-50.5 parent: 2 type: Transform - - uid: 552 + - uid: 556 components: - pos: -73.5,-57.5 parent: 2 type: Transform - - uid: 553 + - uid: 557 components: - pos: -71.5,-57.5 parent: 2 type: Transform - proto: AirlockHeadOfPersonnelLocked entities: - - uid: 554 + - uid: 558 components: - pos: 0.5,-5.5 parent: 2 type: Transform - links: - - 23703 + - 23917 type: DeviceLinkSink - - uid: 555 + - uid: 559 components: - name: hop office type: MetaData @@ -14414,16 +14453,16 @@ entities: parent: 2 type: Transform - links: - - 23703 + - 23917 type: DeviceLinkSink - - uid: 556 + - uid: 560 components: - pos: -2.5,-5.5 parent: 2 type: Transform - proto: AirlockHeadOfSecurityGlassLocked entities: - - uid: 557 + - uid: 561 components: - name: hos office type: MetaData @@ -14431,7 +14470,7 @@ entities: pos: 6.5,18.5 parent: 2 type: Transform - - uid: 558 + - uid: 562 components: - rot: 1.5707963267948966 rad pos: 31.5,-46.5 @@ -14439,7 +14478,7 @@ entities: type: Transform - proto: AirlockHeadOfSecurityLocked entities: - - uid: 559 + - uid: 563 components: - name: hos office type: MetaData @@ -14448,48 +14487,48 @@ entities: type: Transform - proto: AirlockHydroponicsLocked entities: - - uid: 560 + - uid: 564 components: - pos: -3.5,9.5 parent: 2 type: Transform - - uid: 561 + - uid: 565 components: - name: hydrophonics type: MetaData - pos: -10.5,4.5 parent: 2 type: Transform - - uid: 562 + - uid: 566 components: - pos: -3.5,13.5 parent: 2 type: Transform - - uid: 563 + - uid: 567 components: - pos: -6.5,13.5 parent: 2 type: Transform - proto: AirlockJanitorLocked entities: - - uid: 564 + - uid: 568 components: - pos: -11.5,-16.5 parent: 2 type: Transform - - uid: 565 + - uid: 569 components: - pos: -11.5,-20.5 parent: 2 type: Transform - - uid: 566 + - uid: 570 components: - name: janitorial closet type: MetaData - pos: -11.5,-24.5 parent: 2 type: Transform - - uid: 567 + - uid: 571 components: - rot: -1.5707963267948966 rad pos: -7.5,-11.5 @@ -14497,7 +14536,7 @@ entities: type: Transform - proto: AirlockKitchenLocked entities: - - uid: 568 + - uid: 572 components: - name: kitchen type: MetaData @@ -14507,7 +14546,7 @@ entities: type: Transform - proto: AirlockMaint entities: - - uid: 569 + - uid: 573 components: - name: waste disposal type: MetaData @@ -14515,23 +14554,23 @@ entities: pos: 14.5,-51.5 parent: 2 type: Transform - - uid: 570 + - uid: 574 components: - rot: 3.141592653589793 rad pos: 23.5,-53.5 parent: 2 type: Transform - - uid: 571 + - uid: 575 components: - pos: -6.5,-29.5 parent: 2 type: Transform - - uid: 572 + - uid: 576 components: - pos: -17.5,-29.5 parent: 2 type: Transform - - uid: 573 + - uid: 577 components: - name: waste disposal type: MetaData @@ -14539,7 +14578,7 @@ entities: pos: 18.5,-51.5 parent: 2 type: Transform - - uid: 574 + - uid: 578 components: - rot: 1.5707963267948966 rad pos: 15.5,-44.5 @@ -14547,7 +14586,7 @@ entities: type: Transform - proto: AirlockMaintAtmoLocked entities: - - uid: 575 + - uid: 579 components: - name: atmospherics type: MetaData @@ -14555,14 +14594,14 @@ entities: pos: -24.5,-30.5 parent: 2 type: Transform - - uid: 576 + - uid: 580 components: - name: atmos type: MetaData - pos: -30.5,-40.5 parent: 2 type: Transform - - uid: 577 + - uid: 581 components: - name: atmos type: MetaData @@ -14570,7 +14609,7 @@ entities: pos: -32.5,-50.5 parent: 2 type: Transform - - uid: 578 + - uid: 582 components: - name: atmospherics type: MetaData @@ -14579,7 +14618,7 @@ entities: type: Transform - proto: AirlockMaintCaptainLocked entities: - - uid: 579 + - uid: 583 components: - name: captains quarters type: MetaData @@ -14588,7 +14627,7 @@ entities: type: Transform - proto: AirlockMaintChemLocked entities: - - uid: 580 + - uid: 584 components: - rot: -1.5707963267948966 rad pos: 8.5,-49.5 @@ -14596,37 +14635,37 @@ entities: type: Transform - proto: AirlockMaintCommandLocked entities: - - uid: 581 + - uid: 585 components: - rot: 1.5707963267948966 rad pos: 33.5,-32.5 parent: 2 type: Transform - - uid: 582 + - uid: 586 components: - rot: 1.5707963267948966 rad pos: 17.5,-32.5 parent: 2 type: Transform - - uid: 583 + - uid: 587 components: - pos: 18.5,-30.5 parent: 2 type: Transform - - uid: 584 + - uid: 588 components: - rot: 1.5707963267948966 rad pos: 63.5,0.5 parent: 2 type: Transform - - uid: 585 + - uid: 589 components: - name: bridge type: MetaData - pos: 26.5,-26.5 parent: 2 type: Transform - - uid: 586 + - uid: 590 components: - name: conference room type: MetaData @@ -14636,216 +14675,216 @@ entities: type: Transform - proto: AirlockMaintDetectiveLocked entities: - - uid: 587 + - uid: 591 components: - pos: 20.5,-9.5 parent: 2 type: Transform - proto: AirlockMaintEngiLocked entities: - - uid: 588 + - uid: 592 components: - name: engineering type: MetaData - pos: -41.5,-4.5 parent: 2 type: Transform - - uid: 589 + - uid: 593 components: - pos: -51.5,-26.5 parent: 2 type: Transform - proto: AirlockMaintGlass entities: - - uid: 590 + - uid: 594 components: - rot: 3.141592653589793 rad pos: -8.5,25.5 parent: 2 type: Transform - - uid: 591 + - uid: 595 components: - pos: 47.5,-33.5 parent: 2 type: Transform - - uid: 592 + - uid: 596 components: - pos: -41.5,-86.5 parent: 2 type: Transform - - uid: 593 + - uid: 597 components: - pos: -42.5,-86.5 parent: 2 type: Transform - - uid: 594 + - uid: 598 components: - pos: -7.5,21.5 parent: 2 type: Transform - - uid: 595 + - uid: 599 components: - pos: -8.5,30.5 parent: 2 type: Transform - - uid: 596 + - uid: 600 components: - rot: -1.5707963267948966 rad pos: -42.5,-28.5 parent: 2 type: Transform - - uid: 597 + - uid: 601 components: - rot: 3.141592653589793 rad pos: -10.5,25.5 parent: 2 type: Transform - - uid: 598 + - uid: 602 components: - pos: 57.5,-27.5 parent: 2 type: Transform - - uid: 599 + - uid: 603 components: - pos: -11.5,18.5 parent: 2 type: Transform - - uid: 600 + - uid: 604 components: - pos: -16.5,16.5 parent: 2 type: Transform - - uid: 601 + - uid: 605 components: - pos: 52.5,-32.5 parent: 2 type: Transform - - uid: 602 + - uid: 606 components: - pos: 54.5,40.5 parent: 2 type: Transform - - uid: 603 + - uid: 607 components: - pos: 54.5,54.5 parent: 2 type: Transform - - uid: 604 + - uid: 608 components: - pos: 52.5,41.5 parent: 2 type: Transform - - uid: 605 + - uid: 609 components: - rot: 1.5707963267948966 rad pos: 52.5,34.5 parent: 2 type: Transform - - uid: 606 + - uid: 610 components: - pos: 44.5,45.5 parent: 2 type: Transform - - uid: 607 + - uid: 611 components: - pos: 31.5,45.5 parent: 2 type: Transform - - uid: 608 + - uid: 612 components: - pos: -26.5,35.5 parent: 2 type: Transform - - uid: 609 + - uid: 613 components: - pos: -26.5,33.5 parent: 2 type: Transform - - uid: 610 + - uid: 614 components: - rot: 3.141592653589793 rad pos: -11.5,21.5 parent: 2 type: Transform - - uid: 611 + - uid: 615 components: - rot: -1.5707963267948966 rad pos: -8.5,-76.5 parent: 2 type: Transform - - uid: 612 + - uid: 616 components: - pos: -13.5,-97.5 parent: 2 type: Transform - - uid: 613 + - uid: 617 components: - pos: -31.5,-97.5 parent: 2 type: Transform - - uid: 614 + - uid: 618 components: - rot: 1.5707963267948966 rad pos: -42.5,-93.5 parent: 2 type: Transform - - uid: 615 + - uid: 619 components: - pos: 65.5,-65.5 parent: 2 type: Transform - - uid: 616 + - uid: 620 components: - pos: 57.5,-65.5 parent: 2 type: Transform - - uid: 617 + - uid: 621 components: - pos: 54.5,-33.5 parent: 2 type: Transform - proto: AirlockMaintGlassLocked entities: - - uid: 618 + - uid: 622 components: - pos: 56.5,35.5 parent: 2 type: Transform - - uid: 619 + - uid: 623 components: - pos: 51.5,31.5 parent: 2 type: Transform - - uid: 620 + - uid: 624 components: - pos: -17.5,64.5 parent: 2 type: Transform - - uid: 621 + - uid: 625 components: - pos: -17.5,59.5 parent: 2 type: Transform - - uid: 622 + - uid: 626 components: - name: forgotten dock type: MetaData - pos: -48.5,-76.5 parent: 2 type: Transform - - uid: 623 + - uid: 627 components: - pos: 57.5,30.5 parent: 2 type: Transform - - uid: 624 + - uid: 628 components: - pos: 16.5,35.5 parent: 2 type: Transform - proto: AirlockMaintHOPLocked entities: - - uid: 625 + - uid: 629 components: - name: hop office type: MetaData @@ -14854,65 +14893,65 @@ entities: parent: 2 type: Transform - links: - - 23703 + - 23917 type: DeviceLinkSink - proto: AirlockMaintJanitorLocked entities: - - uid: 627 + - uid: 630 components: - pos: -14.5,-14.5 parent: 2 type: Transform - proto: AirlockMaintLocked entities: - - uid: 628 + - uid: 631 components: - rot: 3.141592653589793 rad pos: -55.5,-29.5 parent: 2 type: Transform - - uid: 629 + - uid: 632 components: - pos: 18.5,-7.5 parent: 2 type: Transform - - uid: 630 + - uid: 633 components: - pos: 14.5,-2.5 parent: 2 type: Transform - - uid: 631 + - uid: 634 components: - pos: 9.5,-40.5 parent: 2 type: Transform - - uid: 632 + - uid: 635 components: - pos: -8.5,-70.5 parent: 2 type: Transform - - uid: 633 + - uid: 636 components: - rot: 3.141592653589793 rad pos: 27.5,-8.5 parent: 2 type: Transform - - uid: 634 + - uid: 637 components: - pos: 35.5,-15.5 parent: 2 type: Transform - - uid: 635 + - uid: 638 components: - pos: -13.5,-7.5 parent: 2 type: Transform - - uid: 636 + - uid: 639 components: - pos: 36.5,-44.5 parent: 2 type: Transform - - uid: 637 + - uid: 640 components: - name: medbay type: MetaData @@ -14920,186 +14959,186 @@ entities: pos: 7.5,-53.5 parent: 2 type: Transform - - uid: 638 + - uid: 641 components: - pos: 15.5,-15.5 parent: 2 type: Transform - - uid: 639 + - uid: 642 components: - pos: 13.5,-29.5 parent: 2 type: Transform - - uid: 640 + - uid: 643 components: - rot: -1.5707963267948966 rad pos: 37.5,-33.5 parent: 2 type: Transform - - uid: 641 + - uid: 644 components: - rot: 1.5707963267948966 rad pos: -2.5,-9.5 parent: 2 type: Transform - - uid: 642 + - uid: 645 components: - pos: -6.5,-9.5 parent: 2 type: Transform - - uid: 643 + - uid: 646 components: - rot: -1.5707963267948966 rad pos: 55.5,-0.5 parent: 2 type: Transform - - uid: 644 + - uid: 647 components: - name: evac type: MetaData - pos: 48.5,-8.5 parent: 2 type: Transform - - uid: 645 + - uid: 648 components: - pos: 57.5,-4.5 parent: 2 type: Transform - - uid: 646 + - uid: 649 components: - pos: 64.5,2.5 parent: 2 type: Transform - - uid: 647 + - uid: 650 components: - pos: -17.5,-14.5 parent: 2 type: Transform - - uid: 648 + - uid: 651 components: - name: evac type: MetaData - pos: 62.5,-14.5 parent: 2 type: Transform - - uid: 649 + - uid: 652 components: - rot: 1.5707963267948966 rad pos: 50.5,-13.5 parent: 2 type: Transform - - uid: 650 + - uid: 653 components: - pos: -17.5,52.5 parent: 2 type: Transform - - uid: 651 + - uid: 654 components: - pos: -20.5,55.5 parent: 2 type: Transform - - uid: 652 + - uid: 655 components: - name: courtroom type: MetaData - pos: 35.5,-54.5 parent: 2 type: Transform - - uid: 653 + - uid: 656 components: - pos: -21.5,-26.5 parent: 2 type: Transform - - uid: 654 + - uid: 657 components: - pos: -21.5,-42.5 parent: 2 type: Transform - - uid: 655 + - uid: 658 components: - pos: 36.5,-57.5 parent: 2 type: Transform - - uid: 656 + - uid: 659 components: - pos: 9.5,-70.5 parent: 2 type: Transform - - uid: 657 + - uid: 660 components: - rot: -1.5707963267948966 rad pos: 41.5,-64.5 parent: 2 type: Transform - - uid: 658 + - uid: 661 components: - pos: 21.5,-73.5 parent: 2 type: Transform - - uid: 659 + - uid: 662 components: - name: engineering type: MetaData - pos: -30.5,-26.5 parent: 2 type: Transform - - uid: 660 + - uid: 663 components: - name: engineering type: MetaData - pos: -33.5,-26.5 parent: 2 type: Transform - - uid: 661 + - uid: 664 components: - rot: 3.141592653589793 rad pos: -31.5,-45.5 parent: 2 type: Transform - - uid: 662 + - uid: 665 components: - rot: 1.5707963267948966 rad pos: -51.5,-63.5 parent: 2 type: Transform - - uid: 663 + - uid: 666 components: - pos: -16.5,-52.5 parent: 2 type: Transform - - uid: 664 + - uid: 667 components: - rot: -1.5707963267948966 rad pos: -17.5,19.5 parent: 2 type: Transform - - uid: 665 + - uid: 668 components: - pos: -24.5,26.5 parent: 2 type: Transform - - uid: 666 + - uid: 669 components: - pos: -4.5,32.5 parent: 2 type: Transform - - uid: 667 + - uid: 670 components: - pos: 1.5,32.5 parent: 2 type: Transform - - uid: 668 + - uid: 671 components: - rot: -1.5707963267948966 rad pos: -37.5,-1.5 parent: 2 type: Transform - - uid: 669 + - uid: 672 components: - pos: -48.5,0.5 parent: 2 type: Transform - - uid: 670 + - uid: 673 components: - name: singularity catwalk type: MetaData @@ -15107,80 +15146,80 @@ entities: pos: -53.5,-2.5 parent: 2 type: Transform - - uid: 671 + - uid: 674 components: - rot: 1.5707963267948966 rad pos: -21.5,27.5 parent: 2 type: Transform - - uid: 672 + - uid: 675 components: - pos: 11.5,32.5 parent: 2 type: Transform - - uid: 673 + - uid: 676 components: - pos: -23.5,56.5 parent: 2 type: Transform - - uid: 674 + - uid: 677 components: - pos: 4.5,32.5 parent: 2 type: Transform - - uid: 675 + - uid: 678 components: - pos: -22.5,34.5 parent: 2 type: Transform - links: - - 23901 + - 24126 type: DeviceLinkSink - - uid: 676 + - uid: 679 components: - rot: 1.5707963267948966 rad pos: -41.5,-93.5 parent: 2 type: Transform - - uid: 677 + - uid: 680 components: - rot: 1.5707963267948966 rad pos: -56.5,-57.5 parent: 2 type: Transform - - uid: 678 + - uid: 681 components: - pos: 6.5,-35.5 parent: 2 type: Transform - - uid: 679 + - uid: 682 components: - pos: 61.5,-26.5 parent: 2 type: Transform - - uid: 680 + - uid: 683 components: - pos: 10.5,-83.5 parent: 2 type: Transform - - uid: 681 + - uid: 684 components: - rot: 3.141592653589793 rad pos: -55.5,-34.5 parent: 2 type: Transform - - uid: 682 + - uid: 685 components: - rot: 1.5707963267948966 rad pos: -17.5,11.5 parent: 2 type: Transform - - uid: 683 + - uid: 686 components: - pos: -2.5,-17.5 parent: 2 type: Transform - - uid: 684 + - uid: 687 components: - name: library type: MetaData @@ -15188,14 +15227,21 @@ entities: pos: 4.5,-12.5 parent: 2 type: Transform - - uid: 685 + - uid: 688 components: - pos: -56.5,-40.5 parent: 2 type: Transform + - uid: 689 + components: + - name: science + type: MetaData + - pos: 50.5,-36.5 + parent: 2 + type: Transform - proto: AirlockMaintMedLocked entities: - - uid: 686 + - uid: 690 components: - name: surgery type: MetaData @@ -15203,7 +15249,7 @@ entities: pos: -1.5,-68.5 parent: 2 type: Transform - - uid: 687 + - uid: 691 components: - name: storeroom type: MetaData @@ -15211,20 +15257,20 @@ entities: pos: -8.5,-67.5 parent: 2 type: Transform - - uid: 688 + - uid: 692 components: - name: medbay type: MetaData - pos: 6.5,-62.5 parent: 2 type: Transform - - uid: 689 + - uid: 693 components: - rot: 3.141592653589793 rad pos: -16.5,-72.5 parent: 2 type: Transform - - uid: 690 + - uid: 694 components: - name: virology type: MetaData @@ -15232,7 +15278,7 @@ entities: pos: -32.5,-71.5 parent: 2 type: Transform - - uid: 691 + - uid: 695 components: - name: cryogenics type: MetaData @@ -15240,14 +15286,14 @@ entities: pos: -27.5,-58.5 parent: 2 type: Transform - - uid: 692 + - uid: 696 components: - pos: -11.5,-31.5 parent: 2 type: Transform - proto: AirlockMaintRnDLocked entities: - - uid: 693 + - uid: 697 components: - name: robotics type: MetaData @@ -15255,29 +15301,21 @@ entities: pos: 75.5,-50.5 parent: 2 type: Transform - - uid: 694 + - uid: 698 components: - name: r&d type: MetaData - pos: 45.5,-34.5 parent: 2 type: Transform - - uid: 695 + - uid: 699 components: - name: toxins type: MetaData - pos: 44.5,-56.5 parent: 2 type: Transform - - uid: 696 - components: - - name: science - type: MetaData - - rot: -1.5707963267948966 rad - pos: 50.5,-36.5 - parent: 2 - type: Transform - - uid: 697 + - uid: 700 components: - name: science type: MetaData @@ -15286,7 +15324,7 @@ entities: type: Transform - proto: AirlockMaintSalvageLocked entities: - - uid: 698 + - uid: 701 components: - name: salvage type: MetaData @@ -15294,7 +15332,7 @@ entities: pos: -37.5,34.5 parent: 2 type: Transform - - uid: 699 + - uid: 702 components: - rot: -1.5707963267948966 rad pos: -44.5,39.5 @@ -15302,43 +15340,43 @@ entities: type: Transform - proto: AirlockMaintSecLocked entities: - - uid: 700 + - uid: 703 components: - pos: 31.5,21.5 parent: 2 type: Transform - - uid: 701 + - uid: 704 components: - pos: -15.5,-19.5 parent: 2 type: Transform - - uid: 702 + - uid: 705 components: - name: interrogation room type: MetaData - pos: 14.5,24.5 parent: 2 type: Transform - - uid: 703 + - uid: 706 components: - rot: 1.5707963267948966 rad pos: 21.5,-48.5 parent: 2 type: Transform - - uid: 704 + - uid: 707 components: - rot: -1.5707963267948966 rad pos: -13.5,26.5 parent: 2 type: Transform - - uid: 705 + - uid: 708 components: - pos: -1.5,22.5 parent: 2 type: Transform - proto: AirlockMaintTheatreLocked entities: - - uid: 706 + - uid: 709 components: - name: theatre type: MetaData @@ -15347,14 +15385,14 @@ entities: type: Transform - proto: AirlockMedicalGlass entities: - - uid: 707 + - uid: 710 components: - pos: 43.5,6.5 parent: 2 type: Transform - proto: AirlockMedicalGlassLocked entities: - - uid: 708 + - uid: 711 components: - name: cloning type: MetaData @@ -15362,43 +15400,43 @@ entities: pos: -5.5,-62.5 parent: 2 type: Transform - - uid: 709 + - uid: 712 components: - pos: -15.5,-55.5 parent: 2 type: Transform - - uid: 710 + - uid: 713 components: - rot: 3.141592653589793 rad pos: -8.5,-58.5 parent: 2 type: Transform - - uid: 711 + - uid: 714 components: - name: cryogenics type: MetaData - pos: -21.5,-60.5 parent: 2 type: Transform - - uid: 712 + - uid: 715 components: - rot: 3.141592653589793 rad pos: -2.5,-58.5 parent: 2 type: Transform - - uid: 713 + - uid: 716 components: - name: medical storage type: MetaData - pos: 7.5,-60.5 parent: 2 type: Transform - - uid: 714 + - uid: 717 components: - pos: 45.5,3.5 parent: 2 type: Transform - - uid: 715 + - uid: 718 components: - name: cloning type: MetaData @@ -15406,7 +15444,7 @@ entities: pos: -6.5,-62.5 parent: 2 type: Transform - - uid: 716 + - uid: 719 components: - name: surgery type: MetaData @@ -15414,40 +15452,40 @@ entities: pos: -2.5,-62.5 parent: 2 type: Transform - - uid: 717 + - uid: 720 components: - pos: -14.5,-58.5 parent: 2 type: Transform - - uid: 718 + - uid: 721 components: - pos: -14.5,-55.5 parent: 2 type: Transform - - uid: 719 + - uid: 722 components: - rot: 3.141592653589793 rad pos: -11.5,-58.5 parent: 2 type: Transform - - uid: 720 + - uid: 723 components: - rot: 3.141592653589793 rad pos: -5.5,-58.5 parent: 2 type: Transform - - uid: 721 + - uid: 724 components: - rot: 3.141592653589793 rad pos: 0.5,-58.5 parent: 2 type: Transform - - uid: 722 + - uid: 725 components: - pos: -15.5,-58.5 parent: 2 type: Transform - - uid: 723 + - uid: 726 components: - name: surgery type: MetaData @@ -15455,7 +15493,7 @@ entities: pos: -3.5,-62.5 parent: 2 type: Transform - - uid: 724 + - uid: 727 components: - name: changing room type: MetaData @@ -15464,29 +15502,29 @@ entities: type: Transform - proto: AirlockMedicalLocked entities: - - uid: 725 + - uid: 728 components: - pos: -4.5,-51.5 parent: 2 type: Transform - - uid: 726 + - uid: 729 components: - name: morgue type: MetaData - pos: -13.5,-62.5 parent: 2 type: Transform - - uid: 727 + - uid: 730 components: - pos: -13.5,-38.5 parent: 2 type: Transform - - uid: 728 + - uid: 731 components: - pos: -11.5,-34.5 parent: 2 type: Transform - - uid: 729 + - uid: 732 components: - name: changing room type: MetaData @@ -15495,7 +15533,7 @@ entities: type: Transform - proto: AirlockQuartermasterGlassLocked entities: - - uid: 730 + - uid: 733 components: - name: quartermasters office type: MetaData @@ -15504,7 +15542,7 @@ entities: type: Transform - proto: AirlockQuartermasterLocked entities: - - uid: 731 + - uid: 734 components: - name: quartermasters office type: MetaData @@ -15513,48 +15551,52 @@ entities: type: Transform - proto: AirlockResearchDirectorGlassLocked entities: - - uid: 732 + - uid: 735 components: + - name: server room + type: MetaData - pos: 58.5,-48.5 parent: 2 type: Transform - proto: AirlockResearchDirectorLocked entities: - - uid: 733 + - uid: 736 components: + - name: research director's office + type: MetaData - pos: 62.5,-50.5 parent: 2 type: Transform - proto: AirlockSalvageGlassLocked entities: - - uid: 734 + - uid: 737 components: - name: salvage magnet type: MetaData - pos: -46.5,27.5 parent: 2 type: Transform - - uid: 735 + - uid: 738 components: - name: salvage magnet type: MetaData - pos: -45.5,27.5 parent: 2 type: Transform - - uid: 736 + - uid: 739 components: - name: salvage type: MetaData - pos: -39.5,29.5 parent: 2 type: Transform - - uid: 737 + - uid: 740 components: - rot: -1.5707963267948966 rad pos: -46.5,37.5 parent: 2 type: Transform - - uid: 738 + - uid: 741 components: - rot: -1.5707963267948966 rad pos: -45.5,37.5 @@ -15562,7 +15604,7 @@ entities: type: Transform - proto: AirlockScienceGlassLocked entities: - - uid: 739 + - uid: 742 components: - name: anomaly lab type: MetaData @@ -15570,59 +15612,59 @@ entities: pos: 61.5,-41.5 parent: 2 type: Transform - - uid: 740 + - uid: 743 components: - pos: 54.5,-44.5 parent: 2 type: Transform - - uid: 741 + - uid: 744 components: - pos: 54.5,-45.5 parent: 2 type: Transform - - uid: 742 + - uid: 745 components: - pos: 57.5,-43.5 parent: 2 type: Transform - - uid: 743 + - uid: 746 components: - rot: -1.5707963267948966 rad pos: 54.5,-41.5 parent: 2 type: Transform - - uid: 744 + - uid: 747 components: - pos: 58.5,-45.5 parent: 2 type: Transform - - uid: 745 + - uid: 748 components: - pos: 58.5,-44.5 parent: 2 type: Transform - - uid: 746 + - uid: 749 components: - name: toxins type: MetaData - pos: 49.5,-48.5 parent: 2 type: Transform - - uid: 747 + - uid: 750 components: - name: science canteen type: MetaData - pos: 47.5,-45.5 parent: 2 type: Transform - - uid: 748 + - uid: 751 components: - name: toxins type: MetaData - pos: 50.5,-48.5 parent: 2 type: Transform - - uid: 749 + - uid: 752 components: - name: science canteen type: MetaData @@ -15630,14 +15672,14 @@ entities: pos: 47.5,-46.5 parent: 2 type: Transform - - uid: 750 + - uid: 753 components: - name: anomaly lab type: MetaData - pos: 62.5,-41.5 parent: 2 type: Transform - - uid: 751 + - uid: 754 components: - name: r&d type: MetaData @@ -15645,137 +15687,145 @@ entities: pos: 47.5,-37.5 parent: 2 type: Transform - - uid: 752 + - uid: 755 components: - pos: 69.5,-33.5 parent: 2 type: Transform - - uid: 753 + - uid: 756 components: - pos: 69.5,-34.5 parent: 2 type: Transform - - uid: 754 + - uid: 757 components: - rot: -1.5707963267948966 rad pos: 74.5,-42.5 parent: 2 type: Transform - - uid: 755 + - uid: 758 components: - rot: -1.5707963267948966 rad pos: 75.5,-42.5 parent: 2 type: Transform - - uid: 756 + - uid: 759 components: - rot: -1.5707963267948966 rad pos: 74.5,-39.5 parent: 2 type: Transform - - uid: 757 + - uid: 760 components: - rot: -1.5707963267948966 rad pos: 75.5,-39.5 parent: 2 type: Transform - - uid: 758 + - uid: 761 components: - rot: 1.5707963267948966 rad pos: 69.5,-37.5 parent: 2 type: Transform - - uid: 759 + - uid: 762 components: - rot: 3.141592653589793 rad pos: 72.5,-30.5 parent: 2 type: Transform - - uid: 760 + - uid: 763 components: - pos: 68.5,-32.5 parent: 2 type: Transform - proto: AirlockScienceLocked entities: - - uid: 761 + - uid: 764 components: - name: r&d type: MetaData - pos: 45.5,-40.5 parent: 2 type: Transform - - uid: 762 + - uid: 765 components: - name: robotics type: MetaData - pos: 66.5,-48.5 parent: 2 type: Transform - - uid: 763 + - uid: 766 components: + - name: anomaly lab + type: MetaData - pos: 62.5,-37.5 parent: 2 type: Transform - - uid: 764 + - uid: 767 components: - pos: 51.5,-59.5 parent: 2 type: Transform - - uid: 765 + - uid: 768 components: + - name: anomaly lab + type: MetaData - pos: 66.5,-33.5 parent: 2 type: Transform - - uid: 766 + - uid: 769 components: + - name: anomaly lab + type: MetaData - pos: 66.5,-34.5 parent: 2 type: Transform - - uid: 767 + - uid: 770 components: + - name: anomaly lab + type: MetaData - rot: 1.5707963267948966 rad pos: 61.5,-37.5 parent: 2 type: Transform - proto: AirlockSecurityGlassLocked entities: - - uid: 768 + - uid: 771 components: - pos: 43.5,15.5 parent: 2 type: Transform - - uid: 769 + - uid: 772 components: - pos: 43.5,14.5 parent: 2 type: Transform - - uid: 770 + - uid: 773 components: - rot: 3.141592653589793 rad pos: 9.5,16.5 parent: 2 type: Transform - - uid: 771 + - uid: 774 components: - name: prison substation type: MetaData - pos: 61.5,4.5 parent: 2 type: Transform - - uid: 772 + - uid: 775 components: - rot: 1.5707963267948966 rad pos: 28.5,-46.5 parent: 2 type: Transform - - uid: 773 + - uid: 776 components: - rot: 1.5707963267948966 rad pos: 33.5,-46.5 parent: 2 type: Transform - - uid: 774 + - uid: 777 components: - rot: 3.141592653589793 rad pos: 9.5,17.5 @@ -15783,7 +15833,7 @@ entities: type: Transform - proto: AirlockSecurityLocked entities: - - uid: 775 + - uid: 778 components: - name: sec dorm type: MetaData @@ -15791,18 +15841,18 @@ entities: pos: 3.5,17.5 parent: 2 type: Transform - - uid: 776 + - uid: 779 components: - rot: 1.5707963267948966 rad pos: 19.5,-44.5 parent: 2 type: Transform - - uid: 777 + - uid: 780 components: - pos: -17.5,-20.5 parent: 2 type: Transform - - uid: 778 + - uid: 781 components: - name: sec dorm type: MetaData @@ -15810,7 +15860,7 @@ entities: pos: 3.5,16.5 parent: 2 type: Transform - - uid: 779 + - uid: 782 components: - name: courtroom type: MetaData @@ -15818,13 +15868,13 @@ entities: pos: 31.5,-44.5 parent: 2 type: Transform - - uid: 780 + - uid: 783 components: - rot: 3.141592653589793 rad pos: -19.5,-44.5 parent: 2 type: Transform - - uid: 781 + - uid: 784 components: - rot: -1.5707963267948966 rad pos: -15.5,28.5 @@ -15832,14 +15882,14 @@ entities: type: Transform - proto: AirlockServiceLocked entities: - - uid: 782 + - uid: 785 components: - name: reporters office type: MetaData - pos: -24.5,9.5 parent: 2 type: Transform - - uid: 783 + - uid: 786 components: - name: donk cafe type: MetaData @@ -15847,54 +15897,50 @@ entities: pos: -13.5,41.5 parent: 2 type: Transform - - uid: 784 + - uid: 787 components: - name: changs type: MetaData - pos: -23.5,41.5 parent: 2 type: Transform - - uid: 785 + - uid: 788 components: - name: changs type: MetaData - pos: -19.5,45.5 parent: 2 type: Transform - - uid: 786 + - uid: 789 components: - pos: -23.5,47.5 parent: 2 type: Transform -- proto: AirlockSyndicateLocked +- proto: AirlockSyndicateGlass entities: - - uid: 787 - components: - - pos: -54.5,-84.5 - parent: 2 - type: Transform - - uid: 788 + - uid: 790 components: - - pos: -54.5,-90.5 + - rot: 1.5707963267948966 rad + pos: -53.5,-87.5 parent: 2 type: Transform - proto: AirlockTheatreLocked entities: - - uid: 789 + - uid: 791 components: - name: theatre type: MetaData - pos: -1.5,-24.5 parent: 2 type: Transform - - uid: 790 + - uid: 792 components: - name: recording studio type: MetaData - pos: -9.5,-2.5 parent: 2 type: Transform - - uid: 791 + - uid: 793 components: - name: recording studio type: MetaData @@ -15902,7 +15948,7 @@ entities: pos: -7.5,-7.5 parent: 2 type: Transform - - uid: 792 + - uid: 794 components: - name: mime room type: MetaData @@ -15910,9 +15956,9 @@ entities: parent: 2 type: Transform - links: - - 23902 + - 24127 type: DeviceLinkSink - - uid: 793 + - uid: 795 components: - name: clown room type: MetaData @@ -15920,11 +15966,11 @@ entities: parent: 2 type: Transform - links: - - 23899 + - 24124 type: DeviceLinkSink - proto: AirlockVirologyGlass entities: - - uid: 794 + - uid: 796 components: - name: virology testing type: MetaData @@ -15932,28 +15978,28 @@ entities: pos: -20.5,-83.5 parent: 2 type: Transform - - uid: 795 + - uid: 797 components: - pos: -17.5,-77.5 parent: 2 type: Transform - proto: AirlockVirologyGlassLocked entities: - - uid: 796 + - uid: 798 components: - name: zombie containment type: MetaData - pos: -20.5,-80.5 parent: 2 type: Transform - - uid: 797 + - uid: 799 components: - name: zombie containment type: MetaData - pos: -18.5,-74.5 parent: 2 type: Transform - - uid: 798 + - uid: 800 components: - name: virology testing type: MetaData @@ -15961,13 +16007,13 @@ entities: pos: -23.5,-81.5 parent: 2 type: Transform - - uid: 799 + - uid: 801 components: - rot: 3.141592653589793 rad pos: -29.5,-72.5 parent: 2 type: Transform - - uid: 800 + - uid: 802 components: - name: virology testing type: MetaData @@ -15975,19 +16021,19 @@ entities: pos: -22.5,-81.5 parent: 2 type: Transform - - uid: 801 + - uid: 803 components: - name: virology treatment type: MetaData - pos: -24.5,-74.5 parent: 2 type: Transform - - uid: 802 + - uid: 804 components: - pos: -19.5,-68.5 parent: 2 type: Transform - - uid: 803 + - uid: 805 components: - rot: 1.5707963267948966 rad pos: -26.5,-73.5 @@ -15995,19 +16041,19 @@ entities: type: Transform - proto: AirlockVirologyLocked entities: - - uid: 804 + - uid: 806 components: - name: morgue type: MetaData - pos: -14.5,-68.5 parent: 2 type: Transform - - uid: 805 + - uid: 807 components: - pos: -19.5,-65.5 parent: 2 type: Transform - - uid: 806 + - uid: 808 components: - name: virology type: MetaData @@ -16017,992 +16063,992 @@ entities: type: Transform - proto: AirSensor entities: - - uid: 807 + - uid: 809 components: - pos: -20.5,-64.5 parent: 2 type: Transform - - uid: 808 + - uid: 810 components: - pos: 22.5,-27.5 parent: 2 type: Transform - - uid: 809 + - uid: 811 components: - pos: 46.5,6.5 parent: 2 type: Transform - - uid: 810 + - uid: 812 components: - pos: -12.5,-49.5 parent: 2 type: Transform - - uid: 811 + - uid: 813 components: - pos: -5.5,-47.5 parent: 2 type: Transform - - uid: 812 + - uid: 814 components: - pos: 2.5,-42.5 parent: 2 type: Transform - - uid: 813 + - uid: 815 components: - pos: 0.5,11.5 parent: 2 type: Transform - - uid: 814 + - uid: 816 components: - pos: -3.5,-53.5 parent: 2 type: Transform - - uid: 815 + - uid: 817 components: - pos: 0.5,-60.5 parent: 2 type: Transform - - uid: 816 + - uid: 818 components: - pos: 25.5,-42.5 parent: 2 type: Transform - - uid: 817 + - uid: 819 components: - pos: -11.5,-57.5 parent: 2 type: Transform - - uid: 818 + - uid: 820 components: - pos: 28.5,-28.5 parent: 2 type: Transform - - uid: 819 + - uid: 821 components: - pos: 36.5,-27.5 parent: 2 type: Transform - - uid: 820 + - uid: 822 components: - pos: -20.5,-67.5 parent: 2 type: Transform - - uid: 821 + - uid: 823 components: - pos: -18.5,-71.5 parent: 2 type: Transform - - uid: 822 + - uid: 824 components: - pos: -25.5,-80.5 parent: 2 type: Transform - - uid: 823 + - uid: 825 components: - pos: -19.5,-79.5 parent: 2 type: Transform - - uid: 824 + - uid: 826 components: - pos: -20.5,-86.5 parent: 2 type: Transform - - uid: 825 + - uid: 827 components: - pos: -6.5,-64.5 parent: 2 type: Transform - - uid: 826 + - uid: 828 components: - pos: -3.5,-63.5 parent: 2 type: Transform - - uid: 827 + - uid: 829 components: - pos: 4.5,-65.5 parent: 2 type: Transform - - uid: 828 + - uid: 830 components: - pos: 8.5,-60.5 parent: 2 type: Transform - - uid: 829 + - uid: 831 components: - pos: 6.5,-49.5 parent: 2 type: Transform - - uid: 830 + - uid: 832 components: - pos: -10.5,-38.5 parent: 2 type: Transform - - uid: 831 + - uid: 833 components: - pos: -9.5,-33.5 parent: 2 type: Transform - - uid: 832 + - uid: 834 components: - pos: -9.5,-23.5 parent: 2 type: Transform - - uid: 833 + - uid: 835 components: - pos: 14.5,-27.5 parent: 2 type: Transform - - uid: 834 + - uid: 836 components: - pos: 6.5,-27.5 parent: 2 type: Transform - - uid: 835 + - uid: 837 components: - pos: -5.5,-28.5 parent: 2 type: Transform - - uid: 836 + - uid: 838 components: - pos: -3.5,-7.5 parent: 2 type: Transform - - uid: 837 + - uid: 839 components: - pos: -5.5,2.5 parent: 2 type: Transform - - uid: 838 + - uid: 840 components: - pos: 6.5,-0.5 parent: 2 type: Transform - - uid: 839 + - uid: 841 components: - pos: 11.5,11.5 parent: 2 type: Transform - - uid: 840 + - uid: 842 components: - pos: 4.5,13.5 parent: 2 type: Transform - - uid: 841 + - uid: 843 components: - pos: 6.5,7.5 parent: 2 type: Transform - - uid: 842 + - uid: 844 components: - pos: -2.5,10.5 parent: 2 type: Transform - - uid: 843 + - uid: 845 components: - pos: -10.5,6.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14646 + - 14698 type: DeviceNetwork - - uid: 844 + - uid: 846 components: - pos: 7.5,19.5 parent: 2 type: Transform - - uid: 845 + - uid: 847 components: - pos: 18.5,20.5 parent: 2 type: Transform - - uid: 846 + - uid: 848 components: - pos: 11.5,22.5 parent: 2 type: Transform - - uid: 847 + - uid: 849 components: - pos: 20.5,20.5 parent: 2 type: Transform - - uid: 848 + - uid: 850 components: - pos: 51.5,1.5 parent: 2 type: Transform - - uid: 849 + - uid: 851 components: - pos: 35.5,15.5 parent: 2 type: Transform - - uid: 850 + - uid: 852 components: - rot: -1.5707963267948966 rad pos: 62.5,-8.5 parent: 2 type: Transform - - uid: 851 + - uid: 853 components: - pos: 26.5,-59.5 parent: 2 type: Transform - - uid: 852 + - uid: 854 components: - rot: 1.5707963267948966 rad pos: 48.5,14.5 parent: 2 type: Transform - - uid: 853 + - uid: 855 components: - rot: 1.5707963267948966 rad pos: 39.5,-73.5 parent: 2 type: Transform - - uid: 854 + - uid: 856 components: - rot: 1.5707963267948966 rad pos: 39.5,-59.5 parent: 2 type: Transform - - uid: 855 + - uid: 857 components: - rot: 1.5707963267948966 rad pos: 49.5,-54.5 parent: 2 type: Transform - - uid: 856 + - uid: 858 components: - rot: 1.5707963267948966 rad pos: 50.5,-39.5 parent: 2 type: Transform - - uid: 857 + - uid: 859 components: - pos: -21.5,56.5 parent: 2 type: Transform - - uid: 858 + - uid: 860 components: - pos: -13.5,63.5 parent: 2 type: Transform - ShutdownSubscribers: - - 73 + - 74 type: DeviceNetwork - - uid: 859 + - uid: 861 components: - pos: -2.5,59.5 parent: 2 type: Transform - - uid: 860 + - uid: 862 components: - pos: -47.5,15.5 parent: 2 type: Transform - - uid: 861 + - uid: 863 components: - pos: -17.5,-4.5 parent: 2 type: Transform - - uid: 862 + - uid: 864 components: - pos: 23.5,-5.5 parent: 2 type: Transform - - uid: 863 + - uid: 865 components: - pos: 16.5,3.5 parent: 2 type: Transform - - uid: 864 + - uid: 866 components: - pos: 24.5,6.5 parent: 2 type: Transform - - uid: 865 + - uid: 867 components: - pos: 32.5,-0.5 parent: 2 type: Transform - - uid: 866 + - uid: 868 components: - pos: 25.5,17.5 parent: 2 type: Transform - - uid: 867 + - uid: 869 components: - pos: 17.5,17.5 parent: 2 type: Transform - - uid: 868 + - uid: 870 components: - rot: 3.141592653589793 rad pos: -24.5,-11.5 parent: 2 type: Transform - - uid: 869 + - uid: 871 components: - rot: 3.141592653589793 rad pos: -19.5,-17.5 parent: 2 type: Transform - - uid: 870 + - uid: 872 components: - pos: -32.5,-14.5 parent: 2 type: Transform - - uid: 871 + - uid: 873 components: - pos: 18.5,-53.5 parent: 2 type: Transform - - uid: 872 + - uid: 874 components: - rot: 1.5707963267948966 rad pos: -37.5,-42.5 parent: 2 type: Transform - - uid: 873 + - uid: 875 components: - rot: 3.141592653589793 rad pos: -36.5,-35.5 parent: 2 type: Transform - - uid: 874 + - uid: 876 components: - rot: 3.141592653589793 rad pos: -30.5,-35.5 parent: 2 type: Transform - - uid: 875 + - uid: 877 components: - rot: 3.141592653589793 rad pos: -24.5,-32.5 parent: 2 type: Transform - - uid: 876 + - uid: 878 components: - pos: -20.5,-28.5 parent: 2 type: Transform - - uid: 877 + - uid: 879 components: - pos: 21.5,-25.5 parent: 2 type: Transform - - uid: 878 + - uid: 880 components: - pos: 32.5,-17.5 parent: 2 type: Transform - - uid: 879 + - uid: 881 components: - pos: 21.5,-14.5 parent: 2 type: Transform - - uid: 880 + - uid: 882 components: - pos: 41.5,-24.5 parent: 2 type: Transform - - uid: 881 + - uid: 883 components: - pos: -36.5,0.5 parent: 2 type: Transform - - uid: 882 + - uid: 884 components: - pos: -45.5,7.5 parent: 2 type: Transform - - uid: 883 + - uid: 885 components: - pos: -48.5,11.5 parent: 2 type: Transform - - uid: 884 + - uid: 886 components: - pos: -43.5,24.5 parent: 2 type: Transform - - uid: 885 + - uid: 887 components: - pos: -43.5,30.5 parent: 2 type: Transform - - uid: 886 + - uid: 888 components: - pos: -31.5,23.5 parent: 2 type: Transform - - uid: 887 + - uid: 889 components: - pos: -24.5,20.5 parent: 2 type: Transform - - uid: 888 + - uid: 890 components: - pos: -19.5,21.5 parent: 2 type: Transform - - uid: 889 + - uid: 891 components: - rot: 1.5707963267948966 rad pos: -73.5,-25.5 parent: 2 type: Transform - - uid: 890 + - uid: 892 components: - rot: 1.5707963267948966 rad pos: -54.5,-24.5 parent: 2 type: Transform - - uid: 891 + - uid: 893 components: - rot: 1.5707963267948966 rad pos: -54.5,-10.5 parent: 2 type: Transform - - uid: 892 + - uid: 894 components: - rot: 1.5707963267948966 rad pos: -34.5,-6.5 parent: 2 type: Transform - - uid: 893 + - uid: 895 components: - pos: -32.5,-23.5 parent: 2 type: Transform - - uid: 894 + - uid: 896 components: - pos: 44.5,-37.5 parent: 2 type: Transform - - uid: 895 + - uid: 897 components: - pos: 42.5,-43.5 parent: 2 type: Transform - - uid: 896 + - uid: 898 components: - pos: 59.5,-47.5 parent: 2 type: Transform - - uid: 897 + - uid: 899 components: - pos: 63.5,-51.5 parent: 2 type: Transform - - uid: 898 + - uid: 900 components: - pos: 59.5,-35.5 parent: 2 type: Transform - - uid: 899 + - uid: 901 components: - pos: 70.5,-47.5 parent: 2 type: Transform - - uid: 900 + - uid: 902 components: - pos: -55.5,-75.5 parent: 2 type: Transform - - uid: 901 + - uid: 903 components: - pos: -38.5,-80.5 parent: 2 type: Transform - - uid: 902 + - uid: 904 components: - pos: -31.5,-71.5 parent: 2 type: Transform - - uid: 903 + - uid: 905 components: - pos: -23.5,-61.5 parent: 2 type: Transform - - uid: 904 + - uid: 906 components: - pos: 42.5,-42.5 parent: 2 type: Transform - - uid: 905 + - uid: 907 components: - pos: 30.5,-83.5 parent: 2 type: Transform - - uid: 906 + - uid: 908 components: - pos: -17.5,66.5 parent: 2 type: Transform - - uid: 907 + - uid: 909 components: - pos: 64.5,-2.5 parent: 2 type: Transform - - uid: 908 + - uid: 910 components: - rot: 1.5707963267948966 rad pos: -16.5,45.5 parent: 2 type: Transform - - uid: 909 + - uid: 911 components: - rot: 1.5707963267948966 rad pos: -3.5,45.5 parent: 2 type: Transform - - uid: 910 + - uid: 912 components: - rot: 1.5707963267948966 rad pos: 40.5,47.5 parent: 2 type: Transform - - uid: 911 + - uid: 913 components: - pos: -33.5,-96.5 parent: 2 type: Transform - - uid: 912 + - uid: 914 components: - pos: 48.5,-83.5 parent: 2 type: Transform - - uid: 913 + - uid: 915 components: - pos: 49.5,-72.5 parent: 2 type: Transform - - uid: 914 + - uid: 916 components: - rot: 3.141592653589793 rad pos: 72.5,-34.5 parent: 2 type: Transform - - uid: 915 + - uid: 917 components: - pos: 62.5,-36.5 parent: 2 type: Transform - - uid: 916 + - uid: 918 components: - rot: 3.141592653589793 rad pos: 4.5,-33.5 parent: 2 type: Transform - - uid: 917 + - uid: 919 components: - pos: -28.5,-13.5 parent: 2 type: Transform - - uid: 918 + - uid: 920 components: - rot: 1.5707963267948966 rad pos: -0.5,18.5 parent: 2 type: Transform - - uid: 919 + - uid: 921 components: - pos: -11.5,-19.5 parent: 2 type: Transform - - uid: 920 + - uid: 922 components: - pos: -9.5,-14.5 parent: 2 type: Transform - - uid: 921 + - uid: 923 components: - pos: -29.5,-74.5 parent: 2 type: Transform - - uid: 922 + - uid: 924 components: - pos: 25.5,-72.5 parent: 2 type: Transform - - uid: 923 + - uid: 925 components: - pos: 15.5,-86.5 parent: 2 type: Transform - - uid: 924 + - uid: 926 components: - pos: 27.5,2.5 parent: 2 type: Transform - - uid: 925 + - uid: 927 components: - rot: -1.5707963267948966 rad pos: -45.5,32.5 parent: 2 type: Transform - - uid: 926 + - uid: 928 components: - rot: -1.5707963267948966 rad pos: -46.5,42.5 parent: 2 type: Transform - - uid: 927 + - uid: 929 components: - pos: -5.5,15.5 parent: 2 type: Transform - ShutdownSubscribers: - - 94 - - 14645 + - 95 + - 14697 type: DeviceNetwork - - uid: 928 + - uid: 930 components: - rot: 3.141592653589793 rad pos: -71.5,-38.5 parent: 2 type: Transform - - uid: 929 + - uid: 931 components: - rot: 3.141592653589793 rad pos: -77.5,-41.5 parent: 2 type: Transform - ShutdownSubscribers: - - 96 + - 97 type: DeviceNetwork - - uid: 930 + - uid: 932 components: - rot: 1.5707963267948966 rad pos: -44.5,-34.5 parent: 2 type: Transform - ShutdownSubscribers: - - 97 + - 98 type: DeviceNetwork - - uid: 931 + - uid: 933 components: - pos: -1.5,-4.5 parent: 2 type: Transform - ShutdownSubscribers: - - 99 - - 14649 + - 100 + - 14701 type: DeviceNetwork - - uid: 932 + - uid: 934 components: - pos: 1.5,-7.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14648 - - 98 + - 14700 + - 99 type: DeviceNetwork - - uid: 933 + - uid: 935 components: - rot: -1.5707963267948966 rad pos: -1.5,-19.5 parent: 2 type: Transform - ShutdownSubscribers: - - 100 - - 14650 + - 101 + - 14702 type: DeviceNetwork - - uid: 934 + - uid: 936 components: - pos: 25.5,-37.5 parent: 2 type: Transform - ShutdownSubscribers: - - 78 - - 14651 + - 79 + - 14703 type: DeviceNetwork - proto: AltarConvertRed entities: - - uid: 935 + - uid: 937 components: - pos: -37.5,14.5 parent: 2 type: Transform - - uid: 936 + - uid: 938 components: - pos: -38.5,14.5 parent: 2 type: Transform - proto: AltarSpawner entities: - - uid: 937 + - uid: 939 components: - pos: 45.5,47.5 parent: 2 type: Transform - proto: AltarToolbox entities: - - uid: 938 + - uid: 940 components: - pos: 61.5,-69.5 parent: 2 type: Transform - proto: AmeController entities: - - uid: 939 + - uid: 941 components: - pos: -46.5,-16.5 parent: 2 type: Transform - proto: AmeJar entities: - - uid: 940 + - uid: 942 components: - pos: -49.455143,64.63223 parent: 2 type: Transform - - uid: 941 + - uid: 943 components: - pos: 20.471298,55.773235 parent: 2 type: Transform - proto: AmePart entities: - - uid: 942 + - uid: 944 components: - pos: 19.423536,55.353977 parent: 2 type: Transform - - uid: 943 + - uid: 945 components: - pos: 19.173536,54.619602 parent: 2 type: Transform - - uid: 944 + - uid: 946 components: - pos: 18.376661,54.494602 parent: 2 type: Transform - proto: AnomalyScanner entities: - - uid: 945 + - uid: 947 components: - pos: 63.468235,-36.25785 parent: 2 type: Transform - - uid: 946 + - uid: 948 components: - pos: 63.686985,-36.460976 parent: 2 type: Transform - proto: AnomalyVesselCircuitboard entities: - - uid: 947 + - uid: 949 components: - pos: 64.46823,-36.460976 parent: 2 type: Transform - proto: APCBasic entities: - - uid: 948 + - uid: 950 components: - rot: 1.5707963267948966 rad pos: 21.5,-39.5 parent: 2 type: Transform - - uid: 949 + - uid: 951 components: - pos: 21.5,15.5 parent: 2 type: Transform - - uid: 950 + - uid: 952 components: - rot: -1.5707963267948966 rad pos: 31.5,2.5 parent: 2 type: Transform - - uid: 951 + - uid: 953 components: - pos: -10.5,-20.5 parent: 2 type: Transform - - uid: 952 + - uid: 954 components: - rot: -1.5707963267948966 rad pos: 43.5,-26.5 parent: 2 type: Transform - - uid: 953 + - uid: 955 components: - rot: -1.5707963267948966 rad pos: -13.5,42.5 parent: 2 type: Transform - - uid: 954 + - uid: 956 components: - pos: 49.5,3.5 parent: 2 type: Transform - - uid: 955 + - uid: 957 components: - pos: 59.5,-4.5 parent: 2 type: Transform - - uid: 956 + - uid: 958 components: - pos: 48.5,-48.5 parent: 2 type: Transform - - uid: 957 + - uid: 959 components: - pos: -20.5,0.5 parent: 2 type: Transform - - uid: 958 + - uid: 960 components: - pos: 37.5,-57.5 parent: 2 type: Transform - - uid: 959 + - uid: 961 components: - pos: -56.5,-85.5 parent: 2 type: Transform - - uid: 960 + - uid: 962 components: - pos: -39.5,-69.5 parent: 2 type: Transform - - uid: 961 + - uid: 963 components: - pos: 52.5,38.5 parent: 2 type: Transform - - uid: 962 + - uid: 964 components: - pos: -8.5,60.5 parent: 2 type: Transform - - uid: 963 + - uid: 965 components: - pos: 55.5,-62.5 parent: 2 type: Transform - - uid: 964 + - uid: 966 components: - pos: 11.5,-18.5 parent: 2 type: Transform - - uid: 965 + - uid: 967 components: - rot: 3.141592653589793 rad pos: 37.5,13.5 parent: 2 type: Transform - - uid: 966 + - uid: 968 components: - pos: -74.5,-50.5 parent: 2 type: Transform - proto: APCHighCapacity entities: - - uid: 967 + - uid: 969 components: - pos: 0.5,35.5 parent: 2 type: Transform - - uid: 968 + - uid: 970 components: - pos: 24.5,24.5 parent: 2 type: Transform - - uid: 969 + - uid: 971 components: - pos: -21.5,-68.5 parent: 2 type: Transform - - uid: 970 + - uid: 972 components: - pos: 0.5,-40.5 parent: 2 type: Transform - - uid: 971 + - uid: 973 components: - pos: 19.5,-51.5 parent: 2 type: Transform - - uid: 972 + - uid: 974 components: - pos: -10.5,-58.5 parent: 2 type: Transform - - uid: 973 + - uid: 975 components: - pos: 8.5,-3.5 parent: 2 type: Transform - - uid: 974 + - uid: 976 components: - pos: 1.5,10.5 parent: 2 type: Transform - - uid: 975 + - uid: 977 components: - pos: 21.5,-9.5 parent: 2 type: Transform - - uid: 976 + - uid: 978 components: - pos: 58.5,11.5 parent: 2 type: Transform - - uid: 977 + - uid: 979 components: - pos: 55.5,-43.5 parent: 2 type: Transform - - uid: 978 + - uid: 980 components: - pos: -50.5,-15.5 parent: 2 type: Transform - - uid: 979 + - uid: 981 components: - pos: -35.5,-31.5 parent: 2 type: Transform - - uid: 980 + - uid: 982 components: - pos: -29.5,-64.5 parent: 2 type: Transform - - uid: 981 + - uid: 983 components: - pos: 29.5,-26.5 parent: 2 type: Transform - - uid: 982 + - uid: 984 components: - pos: -23.5,26.5 parent: 2 type: Transform - - uid: 983 + - uid: 985 components: - pos: -42.5,2.5 parent: 2 type: Transform - - uid: 984 + - uid: 986 components: - pos: -29.5,-8.5 parent: 2 type: Transform - - uid: 985 + - uid: 987 components: - pos: 71.5,-42.5 parent: 2 type: Transform - - uid: 986 + - uid: 988 components: - pos: -66.5,-35.5 parent: 2 type: Transform - - uid: 987 + - uid: 989 components: - rot: 1.5707963267948966 rad pos: 0.5,-6.5 @@ -17010,4615 +17056,4616 @@ entities: type: Transform - proto: APCSuperCapacity entities: - - uid: 988 + - uid: 990 components: - pos: -3.5,-68.5 parent: 2 type: Transform - - uid: 989 + - uid: 991 components: - pos: -2.5,-51.5 parent: 2 type: Transform - proto: AppraisalTool entities: - - uid: 990 + - uid: 992 components: - pos: -38.189224,18.730852 parent: 2 type: Transform - - uid: 991 + - uid: 993 components: - pos: -38.01735,18.465227 parent: 2 type: Transform - proto: AsteroidRock entities: - - uid: 992 + - uid: 994 components: - pos: 67.5,51.5 parent: 2 type: Transform - - uid: 993 + - uid: 995 components: - pos: 70.5,47.5 parent: 2 type: Transform - - uid: 994 + - uid: 996 components: - pos: 12.5,58.5 parent: 2 type: Transform - - uid: 995 + - uid: 997 components: - pos: 72.5,-73.5 parent: 2 type: Transform - - uid: 996 + - uid: 998 components: - pos: 73.5,-71.5 parent: 2 type: Transform - - uid: 997 + - uid: 999 components: - pos: 70.5,48.5 parent: 2 type: Transform - - uid: 998 + - uid: 1000 components: - pos: 9.5,58.5 parent: 2 type: Transform - - uid: 999 + - uid: 1001 components: - pos: 66.5,51.5 parent: 2 type: Transform - - uid: 1000 + - uid: 1002 components: - pos: 69.5,51.5 parent: 2 type: Transform - - uid: 1001 + - uid: 1003 components: - pos: 68.5,51.5 parent: 2 type: Transform - - uid: 1002 + - uid: 1004 components: - pos: 72.5,-72.5 parent: 2 type: Transform - - uid: 1003 + - uid: 1005 components: - pos: 75.5,-69.5 parent: 2 type: Transform - - uid: 1004 + - uid: 1006 components: - pos: 76.5,-70.5 parent: 2 type: Transform - - uid: 1005 + - uid: 1007 components: - pos: 77.5,-70.5 parent: 2 type: Transform - - uid: 1006 + - uid: 1008 components: - pos: 74.5,-70.5 parent: 2 type: Transform - - uid: 1007 + - uid: 1009 components: - pos: 14.5,52.5 parent: 2 type: Transform - - uid: 1008 + - uid: 1010 components: - pos: 11.5,58.5 parent: 2 type: Transform - - uid: 1009 + - uid: 1011 components: - pos: -55.5,70.5 parent: 2 type: Transform - - uid: 1010 + - uid: 1012 components: - pos: -41.5,65.5 parent: 2 type: Transform - - uid: 1011 + - uid: 1013 components: - pos: -36.5,68.5 parent: 2 type: Transform - - uid: 1012 + - uid: 1014 components: - pos: -39.5,69.5 parent: 2 type: Transform - - uid: 1013 + - uid: 1015 components: - pos: -54.5,71.5 parent: 2 type: Transform - - uid: 1014 + - uid: 1016 components: - pos: -46.5,59.5 parent: 2 type: Transform - - uid: 1015 + - uid: 1017 components: - pos: -49.5,67.5 parent: 2 type: Transform - - uid: 1016 + - uid: 1018 components: - pos: -46.5,66.5 parent: 2 type: Transform - - uid: 1017 + - uid: 1019 components: - pos: -48.5,61.5 parent: 2 type: Transform - - uid: 1018 + - uid: 1020 components: - pos: -58.5,65.5 parent: 2 type: Transform - - uid: 1019 + - uid: 1021 components: - pos: -49.5,66.5 parent: 2 type: Transform - - uid: 1020 + - uid: 1022 components: - pos: -47.5,66.5 parent: 2 type: Transform - - uid: 1021 + - uid: 1023 components: - pos: -48.5,55.5 parent: 2 type: Transform - - uid: 1022 + - uid: 1024 components: - pos: -58.5,64.5 parent: 2 type: Transform - - uid: 1023 + - uid: 1025 components: - pos: -48.5,67.5 parent: 2 type: Transform - - uid: 1024 + - uid: 1026 components: - pos: -48.5,66.5 parent: 2 type: Transform - - uid: 1025 + - uid: 1027 components: - pos: -51.5,56.5 parent: 2 type: Transform - - uid: 1026 + - uid: 1028 components: - pos: -58.5,66.5 parent: 2 type: Transform - - uid: 1027 + - uid: 1029 components: - pos: -58.5,67.5 parent: 2 type: Transform - - uid: 1028 + - uid: 1030 components: - pos: -56.5,70.5 parent: 2 type: Transform - - uid: 1029 + - uid: 1031 components: - pos: -43.5,60.5 parent: 2 type: Transform - - uid: 1030 + - uid: 1032 components: - pos: -43.5,57.5 parent: 2 type: Transform - - uid: 1031 + - uid: 1033 components: - pos: -43.5,58.5 parent: 2 type: Transform - - uid: 1032 + - uid: 1034 components: - pos: -46.5,63.5 parent: 2 type: Transform - - uid: 1033 + - uid: 1035 components: - pos: -47.5,64.5 parent: 2 type: Transform - - uid: 1034 + - uid: 1036 components: - pos: -45.5,64.5 parent: 2 type: Transform - - uid: 1035 + - uid: 1037 components: - pos: -41.5,67.5 parent: 2 type: Transform - - uid: 1036 + - uid: 1038 components: - pos: -43.5,55.5 parent: 2 type: Transform - - uid: 1037 + - uid: 1039 components: - pos: -43.5,54.5 parent: 2 type: Transform - - uid: 1038 + - uid: 1040 components: - pos: -41.5,55.5 parent: 2 type: Transform - - uid: 1039 + - uid: 1041 components: - pos: -42.5,66.5 parent: 2 type: Transform - - uid: 1040 + - uid: 1042 components: - pos: -47.5,63.5 parent: 2 type: Transform - - uid: 1041 + - uid: 1043 components: - pos: -43.5,67.5 parent: 2 type: Transform - - uid: 1042 + - uid: 1044 components: - pos: -43.5,65.5 parent: 2 type: Transform - - uid: 1043 + - uid: 1045 components: - pos: -51.5,65.5 parent: 2 type: Transform - - uid: 1044 + - uid: 1046 components: - pos: -42.5,55.5 parent: 2 type: Transform - - uid: 1045 + - uid: 1047 components: - pos: -42.5,65.5 parent: 2 type: Transform - - uid: 1046 + - uid: 1048 components: - pos: -45.5,63.5 parent: 2 type: Transform - - uid: 1047 + - uid: 1049 components: - pos: -39.5,65.5 parent: 2 type: Transform - - uid: 1048 + - uid: 1050 components: - pos: -43.5,66.5 parent: 2 type: Transform - - uid: 1049 + - uid: 1051 components: - pos: -40.5,54.5 parent: 2 type: Transform - - uid: 1050 + - uid: 1052 components: - pos: -53.5,65.5 parent: 2 type: Transform - - uid: 1051 + - uid: 1053 components: - pos: -37.5,66.5 parent: 2 type: Transform - - uid: 1052 + - uid: 1054 components: - pos: -37.5,65.5 parent: 2 type: Transform - - uid: 1053 + - uid: 1055 components: - pos: -38.5,65.5 parent: 2 type: Transform - - uid: 1054 + - uid: 1056 components: - pos: -39.5,55.5 parent: 2 type: Transform - - uid: 1055 + - uid: 1057 components: - pos: -40.5,55.5 parent: 2 type: Transform - - uid: 1056 + - uid: 1058 components: - pos: -44.5,63.5 parent: 2 type: Transform - - uid: 1057 + - uid: 1059 components: - pos: -37.5,67.5 parent: 2 type: Transform - - uid: 1058 + - uid: 1060 components: - pos: -36.5,65.5 parent: 2 type: Transform - - uid: 1059 + - uid: 1061 components: - pos: -44.5,65.5 parent: 2 type: Transform - - uid: 1060 + - uid: 1062 components: - pos: -54.5,66.5 parent: 2 type: Transform - - uid: 1061 + - uid: 1063 components: - pos: -55.5,69.5 parent: 2 type: Transform - - uid: 1062 + - uid: 1064 components: - pos: -55.5,71.5 parent: 2 type: Transform - - uid: 1063 + - uid: 1065 components: - pos: -54.5,65.5 parent: 2 type: Transform - - uid: 1064 + - uid: 1066 components: - pos: -43.5,61.5 parent: 2 type: Transform - - uid: 1065 + - uid: 1067 components: - pos: -37.5,68.5 parent: 2 type: Transform - - uid: 1066 + - uid: 1068 components: - pos: -41.5,69.5 parent: 2 type: Transform - - uid: 1067 + - uid: 1069 components: - pos: -44.5,58.5 parent: 2 type: Transform - - uid: 1068 + - uid: 1070 components: - pos: -54.5,69.5 parent: 2 type: Transform - - uid: 1069 + - uid: 1071 components: - pos: -45.5,59.5 parent: 2 type: Transform - - uid: 1070 + - uid: 1072 components: - pos: -45.5,61.5 parent: 2 type: Transform - - uid: 1071 + - uid: 1073 components: - pos: -37.5,69.5 parent: 2 type: Transform - - uid: 1072 + - uid: 1074 components: - pos: -40.5,69.5 parent: 2 type: Transform - - uid: 1073 + - uid: 1075 components: - pos: -42.5,60.5 parent: 2 type: Transform - - uid: 1074 + - uid: 1076 components: - pos: -42.5,59.5 parent: 2 type: Transform - - uid: 1075 + - uid: 1077 components: - pos: -50.5,66.5 parent: 2 type: Transform - - uid: 1076 + - uid: 1078 components: - pos: -50.5,69.5 parent: 2 type: Transform - - uid: 1077 + - uid: 1079 components: - pos: -50.5,65.5 parent: 2 type: Transform - - uid: 1078 + - uid: 1080 components: - pos: -48.5,65.5 parent: 2 type: Transform - - uid: 1079 + - uid: 1081 components: - pos: -50.5,68.5 parent: 2 type: Transform - - uid: 1080 + - uid: 1082 components: - pos: -48.5,64.5 parent: 2 type: Transform - - uid: 1081 + - uid: 1083 components: - pos: -50.5,67.5 parent: 2 type: Transform - - uid: 1082 + - uid: 1084 components: - pos: -40.5,65.5 parent: 2 type: Transform - - uid: 1083 + - uid: 1085 components: - pos: -41.5,66.5 parent: 2 type: Transform - - uid: 1084 + - uid: 1086 components: - pos: -40.5,66.5 parent: 2 type: Transform - - uid: 1085 + - uid: 1087 components: - pos: -39.5,66.5 parent: 2 type: Transform - - uid: 1086 + - uid: 1088 components: - pos: -40.5,67.5 parent: 2 type: Transform - - uid: 1087 + - uid: 1089 components: - pos: -39.5,67.5 parent: 2 type: Transform - - uid: 1088 + - uid: 1090 components: - pos: -38.5,66.5 parent: 2 type: Transform - - uid: 1089 + - uid: 1091 components: - pos: -38.5,67.5 parent: 2 type: Transform - - uid: 1090 + - uid: 1092 components: - pos: -45.5,67.5 parent: 2 type: Transform - - uid: 1091 + - uid: 1093 components: - pos: -44.5,66.5 parent: 2 type: Transform - - uid: 1092 + - uid: 1094 components: - pos: -40.5,68.5 parent: 2 type: Transform - - uid: 1093 + - uid: 1095 components: - pos: -44.5,67.5 parent: 2 type: Transform - - uid: 1094 + - uid: 1096 components: - pos: -39.5,68.5 parent: 2 type: Transform - - uid: 1095 + - uid: 1097 components: - pos: -41.5,70.5 parent: 2 type: Transform - - uid: 1096 + - uid: 1098 components: - pos: -36.5,66.5 parent: 2 type: Transform - - uid: 1097 + - uid: 1099 components: - pos: -36.5,67.5 parent: 2 type: Transform - - uid: 1098 + - uid: 1100 components: - pos: -35.5,65.5 parent: 2 type: Transform - - uid: 1099 + - uid: 1101 components: - pos: -38.5,69.5 parent: 2 type: Transform - - uid: 1100 + - uid: 1102 components: - pos: -45.5,66.5 parent: 2 type: Transform - - uid: 1101 + - uid: 1103 components: - pos: -45.5,65.5 parent: 2 type: Transform - - uid: 1102 + - uid: 1104 components: - pos: -38.5,68.5 parent: 2 type: Transform - - uid: 1103 + - uid: 1105 components: - pos: -40.5,70.5 parent: 2 type: Transform - - uid: 1104 + - uid: 1106 components: - pos: -41.5,68.5 parent: 2 type: Transform - - uid: 1105 + - uid: 1107 components: - pos: -46.5,67.5 parent: 2 type: Transform - - uid: 1106 + - uid: 1108 components: - pos: -44.5,69.5 parent: 2 type: Transform - - uid: 1107 + - uid: 1109 components: - pos: -43.5,70.5 parent: 2 type: Transform - - uid: 1108 + - uid: 1110 components: - pos: -46.5,58.5 parent: 2 type: Transform - - uid: 1109 + - uid: 1111 components: - pos: -44.5,70.5 parent: 2 type: Transform - - uid: 1110 + - uid: 1112 components: - pos: -44.5,68.5 parent: 2 type: Transform - - uid: 1111 + - uid: 1113 components: - pos: -45.5,69.5 parent: 2 type: Transform - - uid: 1112 + - uid: 1114 components: - pos: -47.5,54.5 parent: 2 type: Transform - - uid: 1113 + - uid: 1115 components: - pos: -45.5,68.5 parent: 2 type: Transform - - uid: 1114 + - uid: 1116 components: - pos: -57.5,64.5 parent: 2 type: Transform - - uid: 1115 + - uid: 1117 components: - pos: -57.5,65.5 parent: 2 type: Transform - - uid: 1116 + - uid: 1118 components: - pos: -57.5,66.5 parent: 2 type: Transform - - uid: 1117 + - uid: 1119 components: - pos: -52.5,66.5 parent: 2 type: Transform - - uid: 1118 + - uid: 1120 components: - pos: -38.5,64.5 parent: 2 type: Transform - - uid: 1119 + - uid: 1121 components: - pos: -42.5,68.5 parent: 2 type: Transform - - uid: 1120 + - uid: 1122 components: - pos: -39.5,64.5 parent: 2 type: Transform - - uid: 1121 + - uid: 1123 components: - pos: -43.5,59.5 parent: 2 type: Transform - - uid: 1122 + - uid: 1124 components: - pos: -51.5,68.5 parent: 2 type: Transform - - uid: 1123 + - uid: 1125 components: - pos: -43.5,68.5 parent: 2 type: Transform - - uid: 1124 + - uid: 1126 components: - pos: -42.5,70.5 parent: 2 type: Transform - - uid: 1125 + - uid: 1127 components: - pos: -43.5,69.5 parent: 2 type: Transform - - uid: 1126 + - uid: 1128 components: - pos: -43.5,56.5 parent: 2 type: Transform - - uid: 1127 + - uid: 1129 components: - pos: -35.5,67.5 parent: 2 type: Transform - - uid: 1128 + - uid: 1130 components: - pos: -47.5,59.5 parent: 2 type: Transform - - uid: 1129 + - uid: 1131 components: - pos: -42.5,69.5 parent: 2 type: Transform - - uid: 1130 + - uid: 1132 components: - pos: -46.5,61.5 parent: 2 type: Transform - - uid: 1131 + - uid: 1133 components: - pos: -45.5,62.5 parent: 2 type: Transform - - uid: 1132 + - uid: 1134 components: - pos: -47.5,62.5 parent: 2 type: Transform - - uid: 1133 + - uid: 1135 components: - pos: -48.5,63.5 parent: 2 type: Transform - - uid: 1134 + - uid: 1136 components: - pos: -44.5,62.5 parent: 2 type: Transform - - uid: 1135 + - uid: 1137 components: - pos: -48.5,59.5 parent: 2 type: Transform - - uid: 1136 + - uid: 1138 components: - pos: -48.5,58.5 parent: 2 type: Transform - - uid: 1137 + - uid: 1139 components: - pos: -48.5,57.5 parent: 2 type: Transform - - uid: 1138 + - uid: 1140 components: - pos: -41.5,63.5 parent: 2 type: Transform - - uid: 1139 + - uid: 1141 components: - pos: -41.5,62.5 parent: 2 type: Transform - - uid: 1140 + - uid: 1142 components: - pos: -41.5,64.5 parent: 2 type: Transform - - uid: 1141 + - uid: 1143 components: - pos: -42.5,64.5 parent: 2 type: Transform - - uid: 1142 + - uid: 1144 components: - pos: -51.5,69.5 parent: 2 type: Transform - - uid: 1143 + - uid: 1145 components: - pos: -37.5,64.5 parent: 2 type: Transform - - uid: 1144 + - uid: 1146 components: - pos: -47.5,55.5 parent: 2 type: Transform - - uid: 1145 + - uid: 1147 components: - pos: -39.5,62.5 parent: 2 type: Transform - - uid: 1146 + - uid: 1148 components: - pos: -39.5,63.5 parent: 2 type: Transform - - uid: 1147 + - uid: 1149 components: - pos: -40.5,62.5 parent: 2 type: Transform - - uid: 1148 + - uid: 1150 components: - pos: -43.5,63.5 parent: 2 type: Transform - - uid: 1149 + - uid: 1151 components: - pos: -51.5,67.5 parent: 2 type: Transform - - uid: 1150 + - uid: 1152 components: - pos: -47.5,56.5 parent: 2 type: Transform - - uid: 1151 + - uid: 1153 components: - pos: -40.5,64.5 parent: 2 type: Transform - - uid: 1152 + - uid: 1154 components: - pos: -43.5,64.5 parent: 2 type: Transform - - uid: 1153 + - uid: 1155 components: - pos: -42.5,63.5 parent: 2 type: Transform - - uid: 1154 + - uid: 1156 components: - pos: -35.5,66.5 parent: 2 type: Transform - - uid: 1155 + - uid: 1157 components: - pos: -52.5,67.5 parent: 2 type: Transform - - uid: 1156 + - uid: 1158 components: - pos: -52.5,68.5 parent: 2 type: Transform - - uid: 1157 + - uid: 1159 components: - pos: -53.5,67.5 parent: 2 type: Transform - - uid: 1158 + - uid: 1160 components: - pos: -52.5,69.5 parent: 2 type: Transform - - uid: 1159 + - uid: 1161 components: - pos: -47.5,60.5 parent: 2 type: Transform - - uid: 1160 + - uid: 1162 components: - pos: -44.5,60.5 parent: 2 type: Transform - - uid: 1161 + - uid: 1163 components: - pos: -43.5,62.5 parent: 2 type: Transform - - uid: 1162 + - uid: 1164 components: - pos: -44.5,59.5 parent: 2 type: Transform - - uid: 1163 + - uid: 1165 components: - pos: -54.5,60.5 parent: 2 type: Transform - - uid: 1164 + - uid: 1166 components: - pos: -57.5,63.5 parent: 2 type: Transform - - uid: 1165 + - uid: 1167 components: - pos: -45.5,58.5 parent: 2 type: Transform - - uid: 1166 + - uid: 1168 components: - pos: -49.5,62.5 parent: 2 type: Transform - - uid: 1167 + - uid: 1169 components: - pos: -40.5,56.5 parent: 2 type: Transform - - uid: 1168 + - uid: 1170 components: - pos: -37.5,57.5 parent: 2 type: Transform - - uid: 1169 + - uid: 1171 components: - pos: -48.5,56.5 parent: 2 type: Transform - - uid: 1170 + - uid: 1172 components: - pos: -46.5,56.5 parent: 2 type: Transform - - uid: 1171 + - uid: 1173 components: - pos: -54.5,67.5 parent: 2 type: Transform - - uid: 1172 + - uid: 1174 components: - pos: -54.5,68.5 parent: 2 type: Transform - - uid: 1173 + - uid: 1175 components: - pos: -42.5,67.5 parent: 2 type: Transform - - uid: 1174 + - uid: 1176 components: - pos: -49.5,59.5 parent: 2 type: Transform - - uid: 1175 + - uid: 1177 components: - pos: -51.5,57.5 parent: 2 type: Transform - - uid: 1176 + - uid: 1178 components: - pos: -51.5,64.5 parent: 2 type: Transform - - uid: 1177 + - uid: 1179 components: - pos: -44.5,57.5 parent: 2 type: Transform - - uid: 1178 + - uid: 1180 components: - pos: -55.5,68.5 parent: 2 type: Transform - - uid: 1179 + - uid: 1181 components: - pos: -54.5,70.5 parent: 2 type: Transform - - uid: 1180 + - uid: 1182 components: - pos: -51.5,70.5 parent: 2 type: Transform - - uid: 1181 + - uid: 1183 components: - pos: -50.5,60.5 parent: 2 type: Transform - - uid: 1182 + - uid: 1184 components: - pos: -50.5,61.5 parent: 2 type: Transform - - uid: 1183 + - uid: 1185 components: - pos: -53.5,59.5 parent: 2 type: Transform - - uid: 1184 + - uid: 1186 components: - pos: -44.5,56.5 parent: 2 type: Transform - - uid: 1185 + - uid: 1187 components: - pos: -55.5,67.5 parent: 2 type: Transform - - uid: 1186 + - uid: 1188 components: - pos: -48.5,54.5 parent: 2 type: Transform - - uid: 1187 + - uid: 1189 components: - pos: -48.5,62.5 parent: 2 type: Transform - - uid: 1188 + - uid: 1190 components: - pos: -52.5,71.5 parent: 2 type: Transform - - uid: 1189 + - uid: 1191 components: - pos: -50.5,59.5 parent: 2 type: Transform - - uid: 1190 + - uid: 1192 components: - pos: -52.5,58.5 parent: 2 type: Transform - - uid: 1191 + - uid: 1193 components: - pos: -53.5,58.5 parent: 2 type: Transform - - uid: 1192 + - uid: 1194 components: - pos: -45.5,54.5 parent: 2 type: Transform - - uid: 1193 + - uid: 1195 components: - pos: -55.5,66.5 parent: 2 type: Transform - - uid: 1194 + - uid: 1196 components: - pos: -49.5,56.5 parent: 2 type: Transform - - uid: 1195 + - uid: 1197 components: - pos: -47.5,61.5 parent: 2 type: Transform - - uid: 1196 + - uid: 1198 components: - pos: -49.5,68.5 parent: 2 type: Transform - - uid: 1197 + - uid: 1199 components: - pos: -57.5,69.5 parent: 2 type: Transform - - uid: 1198 + - uid: 1200 components: - pos: -52.5,59.5 parent: 2 type: Transform - - uid: 1199 + - uid: 1201 components: - pos: -54.5,59.5 parent: 2 type: Transform - - uid: 1200 + - uid: 1202 components: - pos: -44.5,55.5 parent: 2 type: Transform - - uid: 1201 + - uid: 1203 components: - pos: -55.5,65.5 parent: 2 type: Transform - - uid: 1202 + - uid: 1204 components: - pos: -50.5,55.5 parent: 2 type: Transform - - uid: 1203 + - uid: 1205 components: - pos: -50.5,56.5 parent: 2 type: Transform - - uid: 1204 + - uid: 1206 components: - pos: -49.5,69.5 parent: 2 type: Transform - - uid: 1205 + - uid: 1207 components: - pos: -56.5,63.5 parent: 2 type: Transform - - uid: 1206 + - uid: 1208 components: - pos: -52.5,60.5 parent: 2 type: Transform - - uid: 1207 + - uid: 1209 components: - pos: -45.5,56.5 parent: 2 type: Transform - - uid: 1208 + - uid: 1210 components: - pos: -45.5,55.5 parent: 2 type: Transform - - uid: 1209 + - uid: 1211 components: - pos: -54.5,58.5 parent: 2 type: Transform - - uid: 1210 + - uid: 1212 components: - pos: -49.5,54.5 parent: 2 type: Transform - - uid: 1211 + - uid: 1213 components: - pos: -51.5,55.5 parent: 2 type: Transform - - uid: 1212 + - uid: 1214 components: - pos: -49.5,70.5 parent: 2 type: Transform - - uid: 1213 + - uid: 1215 components: - pos: -53.5,60.5 parent: 2 type: Transform - - uid: 1214 + - uid: 1216 components: - pos: -52.5,61.5 parent: 2 type: Transform - - uid: 1215 + - uid: 1217 components: - pos: -45.5,57.5 parent: 2 type: Transform - - uid: 1216 + - uid: 1218 components: - pos: -44.5,54.5 parent: 2 type: Transform - - uid: 1217 + - uid: 1219 components: - pos: 10.5,41.5 parent: 2 type: Transform - - uid: 1218 + - uid: 1220 components: - pos: -49.5,55.5 parent: 2 type: Transform - - uid: 1219 + - uid: 1221 components: - pos: -52.5,56.5 parent: 2 type: Transform - - uid: 1220 + - uid: 1222 components: - pos: -52.5,55.5 parent: 2 type: Transform - - uid: 1221 + - uid: 1223 components: - pos: -50.5,63.5 parent: 2 type: Transform - - uid: 1222 + - uid: 1224 components: - pos: -51.5,60.5 parent: 2 type: Transform - - uid: 1223 + - uid: 1225 components: - pos: -51.5,61.5 parent: 2 type: Transform - - uid: 1224 + - uid: 1226 components: - pos: -46.5,54.5 parent: 2 type: Transform - - uid: 1225 + - uid: 1227 components: - pos: -38.5,58.5 parent: 2 type: Transform - - uid: 1226 + - uid: 1228 components: - pos: -46.5,55.5 parent: 2 type: Transform - - uid: 1227 + - uid: 1229 components: - pos: -52.5,57.5 parent: 2 type: Transform - - uid: 1228 + - uid: 1230 components: - pos: -53.5,57.5 parent: 2 type: Transform - - uid: 1229 + - uid: 1231 components: - pos: -51.5,63.5 parent: 2 type: Transform - - uid: 1230 + - uid: 1232 components: - pos: -51.5,62.5 parent: 2 type: Transform - - uid: 1231 + - uid: 1233 components: - pos: -51.5,59.5 parent: 2 type: Transform - - uid: 1232 + - uid: 1234 components: - pos: -51.5,58.5 parent: 2 type: Transform - - uid: 1233 + - uid: 1235 components: - pos: -37.5,59.5 parent: 2 type: Transform - - uid: 1234 + - uid: 1236 components: - pos: -37.5,58.5 parent: 2 type: Transform - - uid: 1235 + - uid: 1237 components: - pos: -38.5,59.5 parent: 2 type: Transform - - uid: 1236 + - uid: 1238 components: - pos: -37.5,61.5 parent: 2 type: Transform - - uid: 1237 + - uid: 1239 components: - pos: -49.5,63.5 parent: 2 type: Transform - - uid: 1238 + - uid: 1240 components: - pos: -39.5,56.5 parent: 2 type: Transform - - uid: 1239 + - uid: 1241 components: - pos: -39.5,57.5 parent: 2 type: Transform - - uid: 1240 + - uid: 1242 components: - pos: -38.5,60.5 parent: 2 type: Transform - - uid: 1241 + - uid: 1243 components: - pos: -37.5,60.5 parent: 2 type: Transform - - uid: 1242 + - uid: 1244 components: - pos: -36.5,59.5 parent: 2 type: Transform - - uid: 1243 + - uid: 1245 components: - pos: -50.5,58.5 parent: 2 type: Transform - - uid: 1244 + - uid: 1246 components: - pos: -50.5,57.5 parent: 2 type: Transform - - uid: 1245 + - uid: 1247 components: - pos: -40.5,58.5 parent: 2 type: Transform - - uid: 1246 + - uid: 1248 components: - pos: -55.5,63.5 parent: 2 type: Transform - - uid: 1247 + - uid: 1249 components: - pos: -57.5,68.5 parent: 2 type: Transform - - uid: 1248 + - uid: 1250 components: - pos: -57.5,67.5 parent: 2 type: Transform - - uid: 1249 + - uid: 1251 components: - pos: -51.5,66.5 parent: 2 type: Transform - - uid: 1250 + - uid: 1252 components: - pos: -53.5,66.5 parent: 2 type: Transform - - uid: 1251 + - uid: 1253 components: - pos: -39.5,58.5 parent: 2 type: Transform - - uid: 1252 + - uid: 1254 components: - pos: -55.5,64.5 parent: 2 type: Transform - - uid: 1253 + - uid: 1255 components: - pos: -54.5,64.5 parent: 2 type: Transform - - uid: 1254 + - uid: 1256 components: - pos: -42.5,56.5 parent: 2 type: Transform - - uid: 1255 + - uid: 1257 components: - pos: -52.5,64.5 parent: 2 type: Transform - - uid: 1256 + - uid: 1258 components: - pos: -53.5,64.5 parent: 2 type: Transform - - uid: 1257 + - uid: 1259 components: - pos: -49.5,60.5 parent: 2 type: Transform - - uid: 1258 + - uid: 1260 components: - pos: -35.5,61.5 parent: 2 type: Transform - - uid: 1259 + - uid: 1261 components: - pos: -36.5,61.5 parent: 2 type: Transform - - uid: 1260 + - uid: 1262 components: - pos: -47.5,57.5 parent: 2 type: Transform - - uid: 1261 + - uid: 1263 components: - pos: -35.5,64.5 parent: 2 type: Transform - - uid: 1262 + - uid: 1264 components: - pos: -38.5,61.5 parent: 2 type: Transform - - uid: 1263 + - uid: 1265 components: - pos: -38.5,62.5 parent: 2 type: Transform - - uid: 1264 + - uid: 1266 components: - pos: -36.5,64.5 parent: 2 type: Transform - - uid: 1265 + - uid: 1267 components: - pos: -56.5,68.5 parent: 2 type: Transform - - uid: 1266 + - uid: 1268 components: - pos: -56.5,67.5 parent: 2 type: Transform - - uid: 1267 + - uid: 1269 components: - pos: -56.5,71.5 parent: 2 type: Transform - - uid: 1268 + - uid: 1270 components: - pos: -56.5,69.5 parent: 2 type: Transform - - uid: 1269 + - uid: 1271 components: - pos: -36.5,60.5 parent: 2 type: Transform - - uid: 1270 + - uid: 1272 components: - pos: -46.5,57.5 parent: 2 type: Transform - - uid: 1271 + - uid: 1273 components: - pos: -58.5,68.5 parent: 2 type: Transform - - uid: 1272 + - uid: 1274 components: - pos: -58.5,69.5 parent: 2 type: Transform - - uid: 1273 + - uid: 1275 components: - pos: -56.5,66.5 parent: 2 type: Transform - - uid: 1274 + - uid: 1276 components: - pos: -56.5,64.5 parent: 2 type: Transform - - uid: 1275 + - uid: 1277 components: - pos: -38.5,63.5 parent: 2 type: Transform - - uid: 1276 + - uid: 1278 components: - pos: -56.5,65.5 parent: 2 type: Transform - - uid: 1277 + - uid: 1279 components: - pos: -44.5,64.5 parent: 2 type: Transform - - uid: 1278 + - uid: 1280 components: - pos: -53.5,68.5 parent: 2 type: Transform - - uid: 1279 + - uid: 1281 components: - pos: -52.5,70.5 parent: 2 type: Transform - - uid: 1280 + - uid: 1282 components: - pos: -53.5,69.5 parent: 2 type: Transform - - uid: 1281 + - uid: 1283 components: - pos: -49.5,58.5 parent: 2 type: Transform - - uid: 1282 + - uid: 1284 components: - pos: -49.5,61.5 parent: 2 type: Transform - - uid: 1283 + - uid: 1285 components: - pos: -49.5,57.5 parent: 2 type: Transform - - uid: 1284 + - uid: 1286 components: - pos: -41.5,58.5 parent: 2 type: Transform - - uid: 1285 + - uid: 1287 components: - pos: -41.5,56.5 parent: 2 type: Transform - - uid: 1286 + - uid: 1288 components: - pos: -42.5,58.5 parent: 2 type: Transform - - uid: 1287 + - uid: 1289 components: - pos: -42.5,57.5 parent: 2 type: Transform - - uid: 1288 + - uid: 1290 components: - pos: -37.5,56.5 parent: 2 type: Transform - - uid: 1289 + - uid: 1291 components: - pos: 13.5,44.5 parent: 2 type: Transform - - uid: 1290 + - uid: 1292 components: - pos: 61.5,53.5 parent: 2 type: Transform - - uid: 1291 + - uid: 1293 components: - pos: 60.5,54.5 parent: 2 type: Transform - - uid: 1292 + - uid: 1294 components: - pos: 70.5,46.5 parent: 2 type: Transform - - uid: 1293 + - uid: 1295 components: - pos: 61.5,55.5 parent: 2 type: Transform - - uid: 1294 + - uid: 1296 components: - pos: 69.5,44.5 parent: 2 type: Transform - - uid: 1295 + - uid: 1297 components: - pos: 70.5,50.5 parent: 2 type: Transform - - uid: 1296 + - uid: 1298 components: - pos: 70.5,49.5 parent: 2 type: Transform - - uid: 1297 + - uid: 1299 components: - pos: 70.5,51.5 parent: 2 type: Transform - - uid: 1298 + - uid: 1300 components: - pos: 69.5,50.5 parent: 2 type: Transform - - uid: 1299 + - uid: 1301 components: - pos: 69.5,47.5 parent: 2 type: Transform - - uid: 1300 + - uid: 1302 components: - pos: 69.5,46.5 parent: 2 type: Transform - - uid: 1301 + - uid: 1303 components: - pos: 69.5,45.5 parent: 2 type: Transform - - uid: 1302 + - uid: 1304 components: - pos: 69.5,48.5 parent: 2 type: Transform - - uid: 1303 + - uid: 1305 components: - pos: 69.5,49.5 parent: 2 type: Transform - - uid: 1304 + - uid: 1306 components: - pos: 7.5,57.5 parent: 2 type: Transform - - uid: 1305 + - uid: 1307 components: - pos: 64.5,53.5 parent: 2 type: Transform - - uid: 1306 + - uid: 1308 components: - pos: 64.5,52.5 parent: 2 type: Transform - - uid: 1307 + - uid: 1309 components: - pos: 64.5,53.5 parent: 2 type: Transform - - uid: 1308 + - uid: 1310 components: - pos: 64.5,51.5 parent: 2 type: Transform - - uid: 1309 + - uid: 1311 components: - pos: 67.5,53.5 parent: 2 type: Transform - - uid: 1310 + - uid: 1312 components: - pos: 65.5,52.5 parent: 2 type: Transform - - uid: 1311 + - uid: 1313 components: - pos: 65.5,53.5 parent: 2 type: Transform - - uid: 1312 + - uid: 1314 components: - pos: 65.5,54.5 parent: 2 type: Transform - - uid: 1313 + - uid: 1315 components: - pos: 62.5,55.5 parent: 2 type: Transform - - uid: 1314 + - uid: 1316 components: - pos: 64.5,55.5 parent: 2 type: Transform - - uid: 1315 + - uid: 1317 components: - pos: 64.5,54.5 parent: 2 type: Transform - - uid: 1316 + - uid: 1318 components: - pos: 68.5,52.5 parent: 2 type: Transform - - uid: 1317 + - uid: 1319 components: - pos: 65.5,52.5 parent: 2 type: Transform - - uid: 1318 + - uid: 1320 components: - pos: 66.5,54.5 parent: 2 type: Transform - - uid: 1319 + - uid: 1321 components: - pos: 66.5,53.5 parent: 2 type: Transform - - uid: 1320 + - uid: 1322 components: - pos: 67.5,52.5 parent: 2 type: Transform - - uid: 1321 + - uid: 1323 components: - pos: 65.5,55.5 parent: 2 type: Transform - - uid: 1322 + - uid: 1324 components: - pos: 62.5,52.5 parent: 2 type: Transform - - uid: 1323 + - uid: 1325 components: - pos: 63.5,55.5 parent: 2 type: Transform - - uid: 1324 + - uid: 1326 components: - pos: 10.5,58.5 parent: 2 type: Transform - - uid: 1325 + - uid: 1327 components: - pos: 4.5,42.5 parent: 2 type: Transform - - uid: 1326 + - uid: 1328 components: - pos: 9.5,50.5 parent: 2 type: Transform - - uid: 1327 + - uid: 1329 components: - pos: 3.5,42.5 parent: 2 type: Transform - - uid: 1328 + - uid: 1330 components: - pos: 3.5,52.5 parent: 2 type: Transform - - uid: 1329 + - uid: 1331 components: - pos: 63.5,54.5 parent: 2 type: Transform - - uid: 1330 + - uid: 1332 components: - pos: 62.5,54.5 parent: 2 type: Transform - - uid: 1331 + - uid: 1333 components: - pos: 11.5,57.5 parent: 2 type: Transform - - uid: 1332 + - uid: 1334 components: - pos: 12.5,56.5 parent: 2 type: Transform - - uid: 1333 + - uid: 1335 components: - pos: 12.5,57.5 parent: 2 type: Transform - - uid: 1334 + - uid: 1336 components: - pos: 3.5,43.5 parent: 2 type: Transform - - uid: 1335 + - uid: 1337 components: - pos: 5.5,42.5 parent: 2 type: Transform - - uid: 1336 + - uid: 1338 components: - pos: 9.5,57.5 parent: 2 type: Transform - - uid: 1337 + - uid: 1339 components: - pos: 10.5,57.5 parent: 2 type: Transform - - uid: 1338 + - uid: 1340 components: - pos: 10.5,56.5 parent: 2 type: Transform - - uid: 1339 + - uid: 1341 components: - pos: 9.5,56.5 parent: 2 type: Transform - - uid: 1340 + - uid: 1342 components: - pos: 8.5,56.5 parent: 2 type: Transform - - uid: 1341 + - uid: 1343 components: - pos: 7.5,56.5 parent: 2 type: Transform - - uid: 1342 + - uid: 1344 components: - pos: 3.5,53.5 parent: 2 type: Transform - - uid: 1343 + - uid: 1345 components: - pos: 61.5,54.5 parent: 2 type: Transform - - uid: 1344 + - uid: 1346 components: - pos: 3.5,45.5 parent: 2 type: Transform - - uid: 1345 + - uid: 1347 components: - pos: 3.5,46.5 parent: 2 type: Transform - - uid: 1346 + - uid: 1348 components: - pos: 60.5,53.5 parent: 2 type: Transform - - uid: 1347 + - uid: 1349 components: - pos: 61.5,52.5 parent: 2 type: Transform - - uid: 1348 + - uid: 1350 components: - pos: 60.5,50.5 parent: 2 type: Transform - - uid: 1349 + - uid: 1351 components: - pos: 60.5,51.5 parent: 2 type: Transform - - uid: 1350 + - uid: 1352 components: - pos: 5.5,44.5 parent: 2 type: Transform - - uid: 1351 + - uid: 1353 components: - pos: 4.5,45.5 parent: 2 type: Transform - - uid: 1352 + - uid: 1354 components: - pos: 5.5,43.5 parent: 2 type: Transform - - uid: 1353 + - uid: 1355 components: - pos: 3.5,44.5 parent: 2 type: Transform - - uid: 1354 + - uid: 1356 components: - pos: 60.5,52.5 parent: 2 type: Transform - - uid: 1355 + - uid: 1357 components: - pos: 61.5,50.5 parent: 2 type: Transform - - uid: 1356 + - uid: 1358 components: - pos: 61.5,51.5 parent: 2 type: Transform - - uid: 1357 + - uid: 1359 components: - pos: 60.5,49.5 parent: 2 type: Transform - - uid: 1358 + - uid: 1360 components: - pos: 6.5,43.5 parent: 2 type: Transform - - uid: 1359 + - uid: 1361 components: - pos: 4.5,43.5 parent: 2 type: Transform - - uid: 1360 + - uid: 1362 components: - pos: 4.5,43.5 parent: 2 type: Transform - - uid: 1361 + - uid: 1363 components: - pos: 4.5,44.5 parent: 2 type: Transform - - uid: 1362 + - uid: 1364 components: - pos: 63.5,53.5 parent: 2 type: Transform - - uid: 1363 + - uid: 1365 components: - pos: 63.5,52.5 parent: 2 type: Transform - - uid: 1364 + - uid: 1366 components: - pos: 76.5,-60.5 parent: 2 type: Transform - - uid: 1365 + - uid: 1367 components: - pos: 77.5,-60.5 parent: 2 type: Transform - - uid: 1366 + - uid: 1368 components: - pos: 77.5,-61.5 parent: 2 type: Transform - - uid: 1367 + - uid: 1369 components: - pos: 77.5,-62.5 parent: 2 type: Transform - - uid: 1368 + - uid: 1370 components: - pos: 80.5,-66.5 parent: 2 type: Transform - - uid: 1369 + - uid: 1371 components: - pos: 77.5,-59.5 parent: 2 type: Transform - - uid: 1370 + - uid: 1372 components: - pos: 72.5,-65.5 parent: 2 type: Transform - - uid: 1371 + - uid: 1373 components: - pos: 75.5,-61.5 parent: 2 type: Transform - - uid: 1372 + - uid: 1374 components: - pos: 78.5,-53.5 parent: 2 type: Transform - - uid: 1373 + - uid: 1375 components: - pos: 78.5,-54.5 parent: 2 type: Transform - - uid: 1374 + - uid: 1376 components: - pos: 78.5,-54.5 parent: 2 type: Transform - - uid: 1375 + - uid: 1377 components: - pos: 76.5,-58.5 parent: 2 type: Transform - - uid: 1376 + - uid: 1378 components: - pos: 75.5,-59.5 parent: 2 type: Transform - - uid: 1377 + - uid: 1379 components: - pos: 78.5,-52.5 parent: 2 type: Transform - - uid: 1378 + - uid: 1380 components: - pos: 78.5,-51.5 parent: 2 type: Transform - - uid: 1379 + - uid: 1381 components: - pos: 70.5,45.5 parent: 2 type: Transform - - uid: 1380 + - uid: 1382 components: - pos: 78.5,-50.5 parent: 2 type: Transform - - uid: 1381 + - uid: 1383 components: - pos: 4.5,-90.5 parent: 2 type: Transform - - uid: 1382 + - uid: 1384 components: - pos: 3.5,-90.5 parent: 2 type: Transform - - uid: 1383 + - uid: 1385 components: - pos: 69.5,-70.5 parent: 2 type: Transform - - uid: 1384 + - uid: 1386 components: - pos: 4.5,-91.5 parent: 2 type: Transform - - uid: 1385 + - uid: 1387 components: - pos: 6.5,-90.5 parent: 2 type: Transform - - uid: 1386 + - uid: 1388 components: - pos: 7.5,-90.5 parent: 2 type: Transform - - uid: 1387 + - uid: 1389 components: - pos: 18.5,45.5 parent: 2 type: Transform - - uid: 1388 + - uid: 1390 components: - pos: 11.5,-91.5 parent: 2 type: Transform - - uid: 1389 + - uid: 1391 components: - pos: 7.5,-91.5 parent: 2 type: Transform - - uid: 1390 + - uid: 1392 components: - pos: 10.5,-90.5 parent: 2 type: Transform - - uid: 1391 + - uid: 1393 components: - pos: 17.5,48.5 parent: 2 type: Transform - - uid: 1392 + - uid: 1394 components: - pos: 80.5,-65.5 parent: 2 type: Transform - - uid: 1393 + - uid: 1395 components: - pos: 78.5,-61.5 parent: 2 type: Transform - - uid: 1394 + - uid: 1396 components: - pos: 78.5,-69.5 parent: 2 type: Transform - - uid: 1395 + - uid: 1397 components: - pos: 79.5,-68.5 parent: 2 type: Transform - - uid: 1396 + - uid: 1398 components: - pos: 73.5,-62.5 parent: 2 type: Transform - - uid: 1397 + - uid: 1399 components: - pos: 73.5,-61.5 parent: 2 type: Transform - - uid: 1398 + - uid: 1400 components: - pos: 74.5,-59.5 parent: 2 type: Transform - - uid: 1399 + - uid: 1401 components: - pos: 74.5,-60.5 parent: 2 type: Transform - - uid: 1400 + - uid: 1402 components: - pos: 78.5,-53.5 parent: 2 type: Transform - - uid: 1401 + - uid: 1403 components: - pos: 78.5,-52.5 parent: 2 type: Transform - - uid: 1402 - components: - - pos: 78.5,-49.5 - parent: 2 - type: Transform - - uid: 1403 + - uid: 1404 components: - pos: 70.5,44.5 parent: 2 type: Transform - - uid: 1404 + - uid: 1405 components: - pos: 68.5,45.5 parent: 2 type: Transform - - uid: 1405 + - uid: 1406 components: - pos: 67.5,45.5 parent: 2 type: Transform - - uid: 1406 + - uid: 1407 components: - pos: 68.5,44.5 parent: 2 type: Transform - - uid: 1407 + - uid: 1408 components: - pos: 67.5,44.5 parent: 2 type: Transform - - uid: 1408 + - uid: 1409 components: - pos: 71.5,-73.5 parent: 2 type: Transform - - uid: 1409 + - uid: 1410 components: - pos: 70.5,-73.5 parent: 2 type: Transform - - uid: 1410 + - uid: 1411 components: - pos: 73.5,-72.5 parent: 2 type: Transform - - uid: 1411 + - uid: 1412 components: - pos: 71.5,-72.5 parent: 2 type: Transform - - uid: 1412 + - uid: 1413 components: - pos: 74.5,-72.5 parent: 2 type: Transform - - uid: 1413 + - uid: 1414 components: - pos: 74.5,-71.5 parent: 2 type: Transform - - uid: 1414 + - uid: 1415 components: - pos: 77.5,-69.5 parent: 2 type: Transform - - uid: 1415 + - uid: 1416 components: - pos: 18.5,46.5 parent: 2 type: Transform - - uid: 1416 + - uid: 1417 components: - pos: 19.5,44.5 parent: 2 type: Transform - - uid: 1417 + - uid: 1418 components: - pos: 18.5,44.5 parent: 2 type: Transform - - uid: 1418 + - uid: 1419 components: - pos: 18.5,43.5 parent: 2 type: Transform - - uid: 1419 + - uid: 1420 components: - pos: 16.5,46.5 parent: 2 type: Transform - - uid: 1420 + - uid: 1421 components: - pos: 15.5,48.5 parent: 2 type: Transform - - uid: 1421 + - uid: 1422 components: - pos: 16.5,47.5 parent: 2 type: Transform - - uid: 1422 + - uid: 1423 components: - pos: 16.5,49.5 parent: 2 type: Transform - - uid: 1423 + - uid: 1424 components: - pos: 16.5,48.5 parent: 2 type: Transform - - uid: 1424 + - uid: 1425 components: - pos: 17.5,43.5 parent: 2 type: Transform - - uid: 1425 + - uid: 1426 components: - pos: 65.5,47.5 parent: 2 type: Transform - - uid: 1426 + - uid: 1427 components: - pos: 65.5,44.5 parent: 2 type: Transform - - uid: 1427 + - uid: 1428 components: - pos: 65.5,43.5 parent: 2 type: Transform - - uid: 1428 + - uid: 1429 components: - pos: 67.5,42.5 parent: 2 type: Transform - - uid: 1429 + - uid: 1430 components: - pos: 66.5,42.5 parent: 2 type: Transform - - uid: 1430 + - uid: 1431 components: - pos: 65.5,42.5 parent: 2 type: Transform - - uid: 1431 + - uid: 1432 components: - pos: 64.5,42.5 parent: 2 type: Transform - - uid: 1432 + - uid: 1433 components: - pos: 63.5,42.5 parent: 2 type: Transform - - uid: 1433 + - uid: 1434 components: - pos: 62.5,43.5 parent: 2 type: Transform - - uid: 1434 + - uid: 1435 components: - pos: 61.5,43.5 parent: 2 type: Transform - - uid: 1435 + - uid: 1436 components: - pos: 62.5,44.5 parent: 2 type: Transform - - uid: 1436 + - uid: 1437 components: - pos: 65.5,51.5 parent: 2 type: Transform - - uid: 1437 + - uid: 1438 components: - pos: 65.5,50.5 parent: 2 type: Transform - - uid: 1438 + - uid: 1439 components: - pos: 9.5,41.5 parent: 2 type: Transform - - uid: 1439 + - uid: 1440 components: - pos: 14.5,45.5 parent: 2 type: Transform - - uid: 1440 + - uid: 1441 components: - pos: 77.5,-68.5 parent: 2 type: Transform - - uid: 1441 + - uid: 1442 components: - pos: 15.5,49.5 parent: 2 type: Transform - - uid: 1442 + - uid: 1443 components: - pos: 16.5,50.5 parent: 2 type: Transform - - uid: 1443 + - uid: 1444 components: - pos: 76.5,-71.5 parent: 2 type: Transform - - uid: 1444 + - uid: 1445 components: - pos: 76.5,-69.5 parent: 2 type: Transform - - uid: 1445 + - uid: 1446 components: - pos: 16.5,51.5 parent: 2 type: Transform - - uid: 1446 + - uid: 1447 components: - pos: 75.5,-71.5 parent: 2 type: Transform - - uid: 1447 + - uid: 1448 components: - pos: 81.5,-58.5 parent: 2 type: Transform - - uid: 1448 + - uid: 1449 components: - pos: 81.5,-62.5 parent: 2 type: Transform - - uid: 1449 + - uid: 1450 components: - pos: 75.5,-72.5 parent: 2 type: Transform - - uid: 1450 + - uid: 1451 components: - pos: 80.5,-63.5 parent: 2 type: Transform - - uid: 1451 + - uid: 1452 components: - pos: 81.5,-63.5 parent: 2 type: Transform - - uid: 1452 + - uid: 1453 components: - pos: 81.5,-61.5 parent: 2 type: Transform - - uid: 1453 + - uid: 1454 components: - pos: 81.5,-60.5 parent: 2 type: Transform - - uid: 1454 + - uid: 1455 components: - pos: 81.5,-57.5 parent: 2 type: Transform - - uid: 1455 + - uid: 1456 components: - pos: 77.5,-56.5 parent: 2 type: Transform - - uid: 1456 + - uid: 1457 components: - pos: 77.5,-57.5 parent: 2 type: Transform - - uid: 1457 + - uid: 1458 components: - pos: 77.5,-55.5 parent: 2 type: Transform - - uid: 1458 + - uid: 1459 components: - pos: 77.5,-54.5 parent: 2 type: Transform - - uid: 1459 + - uid: 1460 components: - pos: 77.5,-52.5 parent: 2 type: Transform - - uid: 1460 + - uid: 1461 components: - pos: 81.5,-59.5 parent: 2 type: Transform - - uid: 1461 + - uid: 1462 components: - pos: 80.5,-51.5 parent: 2 type: Transform - - uid: 1462 + - uid: 1463 components: - pos: 66.5,-69.5 parent: 2 type: Transform - - uid: 1463 + - uid: 1464 components: - pos: 70.5,-70.5 parent: 2 type: Transform - - uid: 1464 + - uid: 1465 components: - pos: 67.5,-71.5 parent: 2 type: Transform - - uid: 1465 + - uid: 1466 components: - pos: 66.5,-70.5 parent: 2 type: Transform - - uid: 1466 + - uid: 1467 components: - pos: 66.5,-68.5 parent: 2 type: Transform - - uid: 1467 + - uid: 1468 components: - pos: 66.5,-71.5 parent: 2 type: Transform - - uid: 1468 + - uid: 1469 components: - pos: 65.5,-69.5 parent: 2 type: Transform - - uid: 1469 + - uid: 1470 components: - pos: 77.5,-65.5 parent: 2 type: Transform - - uid: 1470 + - uid: 1471 components: - pos: 76.5,-65.5 parent: 2 type: Transform - - uid: 1471 + - uid: 1472 components: - pos: 78.5,-67.5 parent: 2 type: Transform - - uid: 1472 + - uid: 1473 components: - pos: 78.5,-66.5 parent: 2 type: Transform - - uid: 1473 + - uid: 1474 components: - pos: 79.5,-67.5 parent: 2 type: Transform - - uid: 1474 + - uid: 1475 components: - pos: 75.5,-68.5 parent: 2 type: Transform - - uid: 1475 + - uid: 1476 components: - pos: 75.5,-65.5 parent: 2 type: Transform - - uid: 1476 + - uid: 1477 components: - pos: 66.5,-72.5 parent: 2 type: Transform - - uid: 1477 + - uid: 1478 components: - pos: 64.5,47.5 parent: 2 type: Transform - - uid: 1478 + - uid: 1479 components: - pos: 64.5,46.5 parent: 2 type: Transform - - uid: 1479 + - uid: 1480 components: - pos: 65.5,46.5 parent: 2 type: Transform - - uid: 1480 + - uid: 1481 components: - pos: 66.5,52.5 parent: 2 type: Transform - - uid: 1481 + - uid: 1482 components: - pos: 4.5,54.5 parent: 2 type: Transform - - uid: 1482 + - uid: 1483 components: - pos: 15.5,51.5 parent: 2 type: Transform - - uid: 1483 + - uid: 1484 components: - pos: 78.5,-68.5 parent: 2 type: Transform - - uid: 1484 + - uid: 1485 components: - pos: 12.5,50.5 parent: 2 type: Transform - - uid: 1485 + - uid: 1486 components: - pos: 79.5,-65.5 parent: 2 type: Transform - - uid: 1486 + - uid: 1487 components: - pos: 76.5,-68.5 parent: 2 type: Transform - - uid: 1487 + - uid: 1488 components: - pos: 15.5,52.5 parent: 2 type: Transform - - uid: 1488 + - uid: 1489 components: - pos: 17.5,44.5 parent: 2 type: Transform - - uid: 1489 + - uid: 1490 components: - pos: 6.5,-91.5 parent: 2 type: Transform - - uid: 1490 + - uid: 1491 components: - pos: 5.5,-91.5 parent: 2 type: Transform - - uid: 1491 + - uid: 1492 components: - pos: 75.5,-70.5 parent: 2 type: Transform - - uid: 1492 + - uid: 1493 components: - pos: 3.5,-91.5 parent: 2 type: Transform - - uid: 1493 + - uid: 1494 components: - pos: 17.5,45.5 parent: 2 type: Transform - - uid: 1494 + - uid: 1495 components: - pos: 79.5,-65.5 parent: 2 type: Transform - - uid: 1495 + - uid: 1496 components: - pos: 65.5,48.5 parent: 2 type: Transform - - uid: 1496 + - uid: 1497 components: - pos: 66.5,43.5 parent: 2 type: Transform - - uid: 1497 + - uid: 1498 components: - pos: 67.5,43.5 parent: 2 type: Transform - - uid: 1498 + - uid: 1499 components: - pos: 65.5,47.5 parent: 2 type: Transform - - uid: 1499 + - uid: 1500 components: - pos: 68.5,43.5 parent: 2 type: Transform - - uid: 1500 + - uid: 1501 components: - pos: 14.5,44.5 parent: 2 type: Transform - - uid: 1501 + - uid: 1502 components: - pos: 11.5,-90.5 parent: 2 type: Transform - - uid: 1502 + - uid: 1503 components: - pos: 9.5,-91.5 parent: 2 type: Transform - - uid: 1503 + - uid: 1504 components: - pos: 8.5,-91.5 parent: 2 type: Transform - - uid: 1504 + - uid: 1505 components: - pos: 9.5,-90.5 parent: 2 type: Transform - - uid: 1505 + - uid: 1506 components: - pos: 17.5,47.5 parent: 2 type: Transform - - uid: 1506 + - uid: 1507 components: - pos: 8.5,-90.5 parent: 2 type: Transform - - uid: 1507 + - uid: 1508 components: - pos: 17.5,46.5 parent: 2 type: Transform - - uid: 1508 + - uid: 1509 components: - pos: 77.5,-51.5 parent: 2 type: Transform - - uid: 1509 + - uid: 1510 components: - pos: 77.5,-53.5 parent: 2 type: Transform - - uid: 1510 + - uid: 1511 components: - pos: 80.5,-57.5 parent: 2 type: Transform - - uid: 1511 + - uid: 1512 components: - pos: 80.5,-58.5 parent: 2 type: Transform - - uid: 1512 + - uid: 1513 components: - pos: 80.5,-55.5 parent: 2 type: Transform - - uid: 1513 + - uid: 1514 components: - pos: 80.5,-56.5 parent: 2 type: Transform - - uid: 1514 + - uid: 1515 components: - pos: 81.5,-56.5 parent: 2 type: Transform - - uid: 1515 + - uid: 1516 components: - pos: 80.5,-54.5 parent: 2 type: Transform - - uid: 1516 + - uid: 1517 components: - pos: 80.5,-53.5 parent: 2 type: Transform - - uid: 1517 + - uid: 1518 components: - pos: 80.5,-52.5 parent: 2 type: Transform - - uid: 1518 + - uid: 1519 components: - pos: 81.5,-55.5 parent: 2 type: Transform - - uid: 1519 + - uid: 1520 components: - pos: 80.5,-64.5 parent: 2 type: Transform - - uid: 1520 + - uid: 1521 components: - pos: 79.5,-66.5 parent: 2 type: Transform - - uid: 1521 + - uid: 1522 components: - pos: 76.5,-64.5 parent: 2 type: Transform - - uid: 1522 + - uid: 1523 components: - pos: 80.5,-67.5 parent: 2 type: Transform - - uid: 1523 + - uid: 1524 components: - pos: 72.5,-66.5 parent: 2 type: Transform - - uid: 1524 + - uid: 1525 components: - pos: 70.5,-68.5 parent: 2 type: Transform - - uid: 1525 + - uid: 1526 components: - pos: 70.5,-69.5 parent: 2 type: Transform - - uid: 1526 + - uid: 1527 components: - pos: 71.5,-68.5 parent: 2 type: Transform - - uid: 1527 + - uid: 1528 components: - pos: 71.5,-68.5 parent: 2 type: Transform - - uid: 1528 + - uid: 1529 components: - pos: 76.5,-66.5 parent: 2 type: Transform - - uid: 1529 + - uid: 1530 components: - pos: 76.5,-67.5 parent: 2 type: Transform - - uid: 1530 + - uid: 1531 components: - pos: 65.5,-71.5 parent: 2 type: Transform - - uid: 1531 + - uid: 1532 components: - pos: 75.5,-64.5 parent: 2 type: Transform - - uid: 1532 + - uid: 1533 components: - pos: 65.5,-70.5 parent: 2 type: Transform - - uid: 1533 + - uid: 1534 components: - pos: 64.5,-70.5 parent: 2 type: Transform - - uid: 1534 + - uid: 1535 components: - pos: 24.5,51.5 parent: 2 type: Transform - - uid: 1535 + - uid: 1536 components: - pos: 17.5,42.5 parent: 2 type: Transform - - uid: 1536 + - uid: 1537 components: - pos: 15.5,42.5 parent: 2 type: Transform - - uid: 1537 + - uid: 1538 components: - pos: 14.5,42.5 parent: 2 type: Transform - - uid: 1538 + - uid: 1539 components: - pos: 11.5,41.5 parent: 2 type: Transform - - uid: 1539 + - uid: 1540 components: - pos: 12.5,42.5 parent: 2 type: Transform - - uid: 1540 + - uid: 1541 components: - pos: 11.5,42.5 parent: 2 type: Transform - - uid: 1541 + - uid: 1542 components: - pos: 11.5,43.5 parent: 2 type: Transform - - uid: 1542 + - uid: 1543 components: - pos: 6.5,52.5 parent: 2 type: Transform - - uid: 1543 + - uid: 1544 components: - pos: 8.5,51.5 parent: 2 type: Transform - - uid: 1544 + - uid: 1545 components: - pos: 5.5,55.5 parent: 2 type: Transform - - uid: 1545 + - uid: 1546 components: - pos: 6.5,55.5 parent: 2 type: Transform - - uid: 1546 + - uid: 1547 components: - pos: 6.5,56.5 parent: 2 type: Transform - - uid: 1547 + - uid: 1548 components: - pos: 5.5,56.5 parent: 2 type: Transform - - uid: 1548 + - uid: 1549 components: - pos: 4.5,55.5 parent: 2 type: Transform - - uid: 1549 + - uid: 1550 components: - pos: 21.5,57.5 parent: 2 type: Transform - - uid: 1550 + - uid: 1551 components: - pos: 20.5,57.5 parent: 2 type: Transform - - uid: 1551 + - uid: 1552 components: - pos: 21.5,56.5 parent: 2 type: Transform - - uid: 1552 + - uid: 1553 components: - pos: 18.5,56.5 parent: 2 type: Transform - - uid: 1553 + - uid: 1554 components: - pos: 17.5,55.5 parent: 2 type: Transform - - uid: 1554 + - uid: 1555 components: - pos: 19.5,56.5 parent: 2 type: Transform - - uid: 1555 + - uid: 1556 components: - pos: 19.5,57.5 parent: 2 type: Transform - - uid: 1556 + - uid: 1557 components: - pos: 18.5,53.5 parent: 2 type: Transform - - uid: 1557 + - uid: 1558 components: - pos: 19.5,53.5 parent: 2 type: Transform - - uid: 1558 + - uid: 1559 components: - pos: 18.5,52.5 parent: 2 type: Transform - - uid: 1559 + - uid: 1560 components: - pos: 16.5,52.5 parent: 2 type: Transform - - uid: 1560 + - uid: 1561 components: - pos: 17.5,52.5 parent: 2 type: Transform - - uid: 1561 + - uid: 1562 components: - pos: 19.5,52.5 parent: 2 type: Transform - - uid: 1562 + - uid: 1563 components: - pos: 22.5,54.5 parent: 2 type: Transform - - uid: 1563 + - uid: 1564 components: - pos: 21.5,55.5 parent: 2 type: Transform - - uid: 1564 + - uid: 1565 components: - pos: 22.5,53.5 parent: 2 type: Transform - - uid: 1565 + - uid: 1566 components: - pos: 17.5,51.5 parent: 2 type: Transform - - uid: 1566 + - uid: 1567 components: - pos: 21.5,54.5 parent: 2 type: Transform - - uid: 1567 + - uid: 1568 components: - pos: 16.5,53.5 parent: 2 type: Transform - - uid: 1568 + - uid: 1569 components: - pos: 16.5,54.5 parent: 2 type: Transform - - uid: 1569 + - uid: 1570 components: - pos: 17.5,53.5 parent: 2 type: Transform - - uid: 1570 + - uid: 1571 components: - pos: 5.5,54.5 parent: 2 type: Transform - - uid: 1571 + - uid: 1572 components: - pos: 5.5,53.5 parent: 2 type: Transform - - uid: 1572 + - uid: 1573 components: - pos: 13.5,57.5 parent: 2 type: Transform - - uid: 1573 + - uid: 1574 components: - pos: 18.5,57.5 parent: 2 type: Transform - - uid: 1574 + - uid: 1575 components: - pos: 13.5,51.5 parent: 2 type: Transform - - uid: 1575 + - uid: 1576 components: - pos: 10.5,51.5 parent: 2 type: Transform - - uid: 1576 + - uid: 1577 components: - pos: 8.5,52.5 parent: 2 type: Transform - - uid: 1577 + - uid: 1578 components: - pos: 9.5,51.5 parent: 2 type: Transform - - uid: 1578 + - uid: 1579 components: - pos: 13.5,52.5 parent: 2 type: Transform - - uid: 1579 + - uid: 1580 components: - pos: 14.5,53.5 parent: 2 type: Transform - - uid: 1580 + - uid: 1581 components: - pos: 13.5,56.5 parent: 2 type: Transform - - uid: 1581 + - uid: 1582 components: - pos: 14.5,55.5 parent: 2 type: Transform - - uid: 1582 + - uid: 1583 components: - pos: 13.5,55.5 parent: 2 type: Transform - - uid: 1583 + - uid: 1584 components: - pos: 15.5,54.5 parent: 2 type: Transform - - uid: 1584 + - uid: 1585 components: - pos: 15.5,53.5 parent: 2 type: Transform - - uid: 1585 + - uid: 1586 components: - pos: 7.5,52.5 parent: 2 type: Transform - - uid: 1586 + - uid: 1587 components: - pos: 15.5,58.5 parent: 2 type: Transform - - uid: 1587 + - uid: 1588 components: - pos: 14.5,58.5 parent: 2 type: Transform - - uid: 1588 + - uid: 1589 components: - pos: 13.5,58.5 parent: 2 type: Transform - - uid: 1589 + - uid: 1590 components: - pos: 12.5,51.5 parent: 2 type: Transform - - uid: 1590 + - uid: 1591 components: - pos: 17.5,58.5 parent: 2 type: Transform - - uid: 1591 + - uid: 1592 components: - pos: 22.5,56.5 parent: 2 type: Transform - - uid: 1592 + - uid: 1593 components: - pos: 22.5,57.5 parent: 2 type: Transform - - uid: 1593 + - uid: 1594 components: - pos: 11.5,51.5 parent: 2 type: Transform - - uid: 1594 + - uid: 1595 components: - pos: 17.5,50.5 parent: 2 type: Transform - - uid: 1595 + - uid: 1596 components: - pos: 18.5,48.5 parent: 2 type: Transform - - uid: 1596 + - uid: 1597 components: - pos: 21.5,51.5 parent: 2 type: Transform - - uid: 1597 + - uid: 1598 components: - pos: 17.5,49.5 parent: 2 type: Transform - - uid: 1598 + - uid: 1599 components: - pos: 21.5,49.5 parent: 2 type: Transform - - uid: 1599 + - uid: 1600 components: - pos: 18.5,51.5 parent: 2 type: Transform - - uid: 1600 + - uid: 1601 components: - pos: 19.5,48.5 parent: 2 type: Transform - - uid: 1601 + - uid: 1602 components: - pos: 20.5,51.5 parent: 2 type: Transform - - uid: 1602 + - uid: 1603 components: - pos: 21.5,52.5 parent: 2 type: Transform - - uid: 1603 + - uid: 1604 components: - pos: 20.5,52.5 parent: 2 type: Transform - - uid: 1604 + - uid: 1605 components: - pos: 20.5,54.5 parent: 2 type: Transform - - uid: 1605 + - uid: 1606 components: - pos: 23.5,54.5 parent: 2 type: Transform - - uid: 1606 + - uid: 1607 components: - pos: 20.5,53.5 parent: 2 type: Transform - - uid: 1607 + - uid: 1608 components: - pos: 23.5,52.5 parent: 2 type: Transform - - uid: 1608 + - uid: 1609 components: - pos: 18.5,42.5 parent: 2 type: Transform - - uid: 1609 + - uid: 1610 components: - pos: 20.5,48.5 parent: 2 type: Transform - - uid: 1610 + - uid: 1611 components: - pos: 21.5,47.5 parent: 2 type: Transform - - uid: 1611 + - uid: 1612 components: - pos: 20.5,44.5 parent: 2 type: Transform - - uid: 1612 + - uid: 1613 components: - pos: 19.5,42.5 parent: 2 type: Transform - - uid: 1613 + - uid: 1614 components: - pos: 21.5,48.5 parent: 2 type: Transform - - uid: 1614 + - uid: 1615 components: - pos: 20.5,43.5 parent: 2 type: Transform - - uid: 1615 + - uid: 1616 components: - pos: 19.5,43.5 parent: 2 type: Transform - - uid: 1616 + - uid: 1617 components: - pos: 22.5,49.5 parent: 2 type: Transform - - uid: 1617 + - uid: 1618 components: - pos: 23.5,50.5 parent: 2 type: Transform - - uid: 1618 + - uid: 1619 components: - pos: 22.5,50.5 parent: 2 type: Transform - - uid: 1619 + - uid: 1620 components: - pos: 24.5,52.5 parent: 2 type: Transform - - uid: 1620 + - uid: 1621 components: - pos: 23.5,51.5 parent: 2 type: Transform - - uid: 1621 + - uid: 1622 components: - pos: 24.5,53.5 parent: 2 type: Transform - - uid: 1622 + - uid: 1623 components: - pos: 24.5,56.5 parent: 2 type: Transform - - uid: 1623 + - uid: 1624 components: - pos: 25.5,54.5 parent: 2 type: Transform - - uid: 1624 + - uid: 1625 components: - pos: 25.5,55.5 parent: 2 type: Transform - - uid: 1625 + - uid: 1626 components: - pos: 25.5,53.5 parent: 2 type: Transform - - uid: 1626 + - uid: 1627 components: - pos: 24.5,57.5 parent: 2 type: Transform - - uid: 1627 + - uid: 1628 components: - pos: 23.5,57.5 parent: 2 type: Transform - - uid: 1628 + - uid: 1629 components: - pos: 21.5,58.5 parent: 2 type: Transform - - uid: 1629 + - uid: 1630 components: - pos: 19.5,58.5 parent: 2 type: Transform - - uid: 1630 + - uid: 1631 components: - pos: 20.5,58.5 parent: 2 type: Transform - - uid: 1631 + - uid: 1632 components: - pos: 18.5,58.5 parent: 2 type: Transform - - uid: 1632 + - uid: 1633 components: - pos: 17.5,59.5 parent: 2 type: Transform - - uid: 1633 + - uid: 1634 components: - pos: 18.5,59.5 parent: 2 type: Transform - - uid: 1634 + - uid: 1635 components: - pos: 20.5,50.5 parent: 2 type: Transform - - uid: 1635 + - uid: 1636 components: - pos: 19.5,51.5 parent: 2 type: Transform - - uid: 1636 + - uid: 1637 components: - pos: 21.5,50.5 parent: 2 type: Transform - - uid: 1637 + - uid: 1638 components: - pos: 14.5,59.5 parent: 2 type: Transform - - uid: 1638 + - uid: 1639 components: - pos: 16.5,59.5 parent: 2 type: Transform - - uid: 1639 + - uid: 1640 components: - pos: 22.5,58.5 parent: 2 type: Transform - - uid: 1640 + - uid: 1641 components: - pos: 23.5,55.5 parent: 2 type: Transform - - uid: 1641 + - uid: 1642 components: - pos: 24.5,55.5 parent: 2 type: Transform - - uid: 1642 + - uid: 1643 components: - pos: 23.5,56.5 parent: 2 type: Transform - - uid: 1643 + - uid: 1644 components: - pos: 24.5,55.5 parent: 2 type: Transform - - uid: 1644 + - uid: 1645 components: - pos: 13.5,59.5 parent: 2 type: Transform - - uid: 1645 + - uid: 1646 components: - pos: 15.5,59.5 parent: 2 type: Transform - - uid: 1646 + - uid: 1647 components: - pos: 23.5,53.5 parent: 2 type: Transform - - uid: 1647 + - uid: 1648 components: - pos: 24.5,54.5 parent: 2 type: Transform - - uid: 1648 + - uid: 1649 components: - pos: 23.5,53.5 parent: 2 type: Transform - - uid: 1649 + - uid: 1650 components: - pos: 22.5,52.5 parent: 2 type: Transform - - uid: 1650 + - uid: 1651 components: - pos: 3.5,54.5 parent: 2 type: Transform - - uid: 1651 + - uid: 1652 components: - pos: 3.5,55.5 parent: 2 type: Transform - - uid: 1652 + - uid: 1653 components: - pos: 22.5,48.5 parent: 2 type: Transform - - uid: 1653 + - uid: 1654 components: - pos: 75.5,-60.5 parent: 2 type: Transform - - uid: 1654 + - uid: 1655 components: - pos: 76.5,-59.5 parent: 2 type: Transform - - uid: 1655 + - uid: 1656 components: - pos: 4.5,53.5 parent: 2 type: Transform - - uid: 1656 + - uid: 1657 components: - pos: 10.5,42.5 parent: 2 type: Transform - - uid: 1657 + - uid: 1658 components: - pos: 7.5,42.5 parent: 2 type: Transform - - uid: 1658 + - uid: 1659 components: - pos: 10.5,43.5 parent: 2 type: Transform - - uid: 1659 + - uid: 1660 components: - pos: 7.5,43.5 parent: 2 type: Transform - - uid: 1660 + - uid: 1661 components: - pos: 6.5,42.5 parent: 2 type: Transform - - uid: 1661 + - uid: 1662 components: - pos: 8.5,44.5 parent: 2 type: Transform - - uid: 1662 + - uid: 1663 components: - pos: 13.5,43.5 parent: 2 type: Transform - - uid: 1663 + - uid: 1664 components: - pos: 9.5,44.5 parent: 2 type: Transform - - uid: 1664 + - uid: 1665 components: - pos: 12.5,43.5 parent: 2 type: Transform - - uid: 1665 + - uid: 1666 components: - pos: 13.5,42.5 parent: 2 type: Transform - - uid: 1666 + - uid: 1667 components: - pos: 65.5,45.5 parent: 2 type: Transform - - uid: 1667 + - uid: 1668 components: - pos: 11.5,44.5 parent: 2 type: Transform - - uid: 1668 + - uid: 1669 components: - pos: 10.5,45.5 parent: 2 type: Transform - - uid: 1669 + - uid: 1670 components: - pos: 11.5,45.5 parent: 2 type: Transform - - uid: 1670 + - uid: 1671 components: - pos: 10.5,44.5 parent: 2 type: Transform - - uid: 1671 + - uid: 1672 components: - pos: 12.5,44.5 parent: 2 type: Transform - - uid: 1672 + - uid: 1673 components: - pos: 67.5,-73.5 parent: 2 type: Transform - - uid: 1673 + - uid: 1674 components: - pos: -38.5,55.5 parent: 2 type: Transform - - uid: 1674 + - uid: 1675 components: - pos: -47.5,58.5 parent: 2 type: Transform - - uid: 1675 + - uid: 1676 components: - pos: 5.5,52.5 parent: 2 type: Transform - - uid: 1676 + - uid: 1677 components: - pos: -47.5,70.5 parent: 2 type: Transform - - uid: 1677 + - uid: 1678 components: - pos: -44.5,73.5 parent: 2 type: Transform - - uid: 1678 + - uid: 1679 components: - pos: -45.5,73.5 parent: 2 type: Transform - - uid: 1679 + - uid: 1680 components: - pos: -46.5,73.5 parent: 2 type: Transform - - uid: 1680 + - uid: 1681 components: - pos: -47.5,73.5 parent: 2 type: Transform - - uid: 1681 + - uid: 1682 components: - pos: -48.5,73.5 parent: 2 type: Transform - - uid: 1682 + - uid: 1683 components: - pos: -49.5,73.5 parent: 2 type: Transform - - uid: 1683 + - uid: 1684 components: - pos: -50.5,73.5 parent: 2 type: Transform - - uid: 1684 + - uid: 1685 components: - pos: -49.5,74.5 parent: 2 type: Transform - - uid: 1685 + - uid: 1686 components: - pos: -48.5,74.5 parent: 2 type: Transform - - uid: 1686 + - uid: 1687 components: - pos: -47.5,74.5 parent: 2 type: Transform - - uid: 1687 + - uid: 1688 components: - pos: -46.5,74.5 parent: 2 type: Transform - - uid: 1688 + - uid: 1689 components: - pos: -45.5,74.5 parent: 2 type: Transform - - uid: 1689 + - uid: 1690 components: - pos: -49.5,71.5 parent: 2 type: Transform - - uid: 1690 + - uid: 1691 components: - pos: -45.5,71.5 parent: 2 type: Transform - - uid: 1691 + - uid: 1692 components: - pos: -45.5,70.5 parent: 2 type: Transform - - uid: 1692 + - uid: 1693 components: - pos: -44.5,71.5 parent: 2 type: Transform - - uid: 1693 + - uid: 1694 components: - pos: -56.5,62.5 parent: 2 type: Transform - - uid: 1694 + - uid: 1695 components: - pos: -56.5,61.5 parent: 2 type: Transform - - uid: 1695 + - uid: 1696 components: - pos: -54.5,61.5 parent: 2 type: Transform - proto: AtmosDeviceFanTiny entities: - - uid: 1696 + - uid: 1697 components: - pos: 45.5,-89.5 parent: 2 type: Transform - - uid: 1697 + - uid: 1698 components: - pos: 33.5,-82.5 parent: 2 type: Transform - - uid: 1698 + - uid: 1699 components: - pos: 33.5,-89.5 parent: 2 type: Transform - - uid: 1699 + - uid: 1700 components: - pos: 0.5,10.5 parent: 2 type: Transform - - uid: 1700 + - uid: 1701 components: - pos: 79.5,-36.5 parent: 2 type: Transform - - uid: 1701 + - uid: 1702 components: - pos: 69.5,-3.5 parent: 2 type: Transform - - uid: 1702 + - uid: 1703 components: - rot: 3.141592653589793 rad pos: 48.5,-95.5 parent: 2 type: Transform - - uid: 1703 + - uid: 1704 components: - rot: -1.5707963267948966 rad pos: -53.5,20.5 parent: 2 type: Transform - - uid: 1704 + - uid: 1705 components: - rot: -1.5707963267948966 rad pos: -53.5,22.5 parent: 2 type: Transform - - uid: 1705 + - uid: 1706 components: - pos: -52.5,30.5 parent: 2 type: Transform - - uid: 1706 + - uid: 1707 components: - pos: -52.5,34.5 parent: 2 type: Transform - - uid: 1707 + - uid: 1708 components: - pos: 79.5,-37.5 parent: 2 type: Transform - - uid: 1708 + - uid: 1709 components: - pos: 79.5,-34.5 parent: 2 type: Transform - - uid: 1709 + - uid: 1710 components: - pos: 79.5,-33.5 parent: 2 type: Transform - - uid: 1710 + - uid: 1711 components: - pos: 69.5,-5.5 parent: 2 type: Transform - - uid: 1711 + - uid: 1712 components: - pos: 69.5,-11.5 parent: 2 type: Transform - - uid: 1712 + - uid: 1713 components: - pos: 69.5,-13.5 parent: 2 type: Transform - - uid: 1713 + - uid: 1714 components: - pos: -1.5,14.5 parent: 2 type: Transform - - uid: 1714 + - uid: 1715 components: - rot: 3.141592653589793 rad pos: 30.5,-95.5 parent: 2 type: Transform - - uid: 1715 + - uid: 1716 components: - pos: -17.5,70.5 parent: 2 type: Transform - - uid: 1716 + - uid: 1717 components: - pos: -12.5,75.5 parent: 2 type: Transform - - uid: 1717 + - uid: 1718 components: - pos: -13.5,75.5 parent: 2 type: Transform - - uid: 1718 + - uid: 1719 components: - pos: -21.5,75.5 parent: 2 type: Transform - - uid: 1719 + - uid: 1720 components: - pos: -22.5,75.5 parent: 2 type: Transform - - uid: 1720 + - uid: 1721 components: - pos: -52.5,33.5 parent: 2 type: Transform - - uid: 1721 + - uid: 1722 components: - pos: -52.5,31.5 parent: 2 type: Transform - - uid: 1722 + - uid: 1723 components: - pos: 45.5,-82.5 parent: 2 type: Transform - - uid: 1723 + - uid: 1724 components: - pos: 52.5,-82.5 parent: 2 type: Transform - - uid: 1724 + - uid: 1725 components: - pos: 52.5,-89.5 parent: 2 type: Transform - - uid: 1725 + - uid: 1726 components: - rot: -1.5707963267948966 rad pos: 67.5,-15.5 parent: 2 type: Transform + - uid: 1727 + components: + - rot: 3.141592653589793 rad + pos: 39.5,59.5 + parent: 2 + type: Transform - proto: AtmosFixBlockerMarker entities: - - uid: 1726 + - uid: 1728 components: - pos: 51.5,-60.5 parent: 2 type: Transform - - uid: 1727 + - uid: 1729 components: - pos: 50.5,-60.5 parent: 2 type: Transform - - uid: 1728 + - uid: 1730 components: - pos: 49.5,-60.5 parent: 2 type: Transform - - uid: 1729 + - uid: 1731 components: - pos: 48.5,-60.5 parent: 2 type: Transform - - uid: 1730 + - uid: 1732 components: - pos: 48.5,-61.5 parent: 2 type: Transform - - uid: 1731 + - uid: 1733 components: - pos: 49.5,-61.5 parent: 2 type: Transform - - uid: 1732 + - uid: 1734 components: - pos: 50.5,-61.5 parent: 2 type: Transform - - uid: 1733 + - uid: 1735 components: - pos: 51.5,-61.5 parent: 2 type: Transform - - uid: 1734 + - uid: 1736 components: - pos: -44.5,-34.5 parent: 2 type: Transform - - uid: 1735 + - uid: 1737 components: - pos: -44.5,-35.5 parent: 2 type: Transform - - uid: 1736 + - uid: 1738 components: - pos: -43.5,-34.5 parent: 2 type: Transform - - uid: 1737 + - uid: 1739 components: - pos: -43.5,-35.5 parent: 2 type: Transform - - uid: 1738 + - uid: 1740 components: - pos: -42.5,-34.5 parent: 2 type: Transform - - uid: 1739 + - uid: 1741 components: - pos: -42.5,-35.5 parent: 2 type: Transform - - uid: 1740 + - uid: 1742 components: - pos: -42.5,-36.5 parent: 2 type: Transform - - uid: 1741 + - uid: 1743 components: - pos: -48.5,-50.5 parent: 2 type: Transform - - uid: 1742 + - uid: 1744 components: - pos: -49.5,-50.5 parent: 2 type: Transform - - uid: 1743 + - uid: 1745 components: - pos: -50.5,-50.5 parent: 2 type: Transform - - uid: 1744 + - uid: 1746 components: - pos: -48.5,-48.5 parent: 2 type: Transform - - uid: 1745 + - uid: 1747 components: - pos: -49.5,-48.5 parent: 2 type: Transform - - uid: 1746 + - uid: 1748 components: - pos: -50.5,-48.5 parent: 2 type: Transform - - uid: 1747 + - uid: 1749 components: - pos: -48.5,-44.5 parent: 2 type: Transform - - uid: 1748 + - uid: 1750 components: - pos: -49.5,-44.5 parent: 2 type: Transform - - uid: 1749 + - uid: 1751 components: - pos: -50.5,-44.5 parent: 2 type: Transform - - uid: 1750 + - uid: 1752 components: - pos: -48.5,-42.5 parent: 2 type: Transform - - uid: 1751 + - uid: 1753 components: - pos: -49.5,-42.5 parent: 2 type: Transform - - uid: 1752 + - uid: 1754 components: - pos: -50.5,-42.5 parent: 2 type: Transform - - uid: 1753 + - uid: 1755 components: - pos: -43.5,-36.5 parent: 2 type: Transform - - uid: 1754 + - uid: 1756 components: - pos: -44.5,-36.5 parent: 2 type: Transform - - uid: 1755 + - uid: 1757 components: - pos: -77.5,-40.5 parent: 2 type: Transform - - uid: 1756 + - uid: 1758 components: - pos: -76.5,-40.5 parent: 2 type: Transform - - uid: 1757 + - uid: 1759 components: - pos: -75.5,-40.5 parent: 2 type: Transform - - uid: 1758 + - uid: 1760 components: - pos: -75.5,-41.5 parent: 2 type: Transform - - uid: 1759 + - uid: 1761 components: - pos: -76.5,-41.5 parent: 2 type: Transform - - uid: 1760 + - uid: 1762 components: - pos: -77.5,-41.5 parent: 2 type: Transform - - uid: 1761 + - uid: 1763 components: - pos: -77.5,-42.5 parent: 2 type: Transform - - uid: 1762 + - uid: 1764 components: - pos: -76.5,-42.5 parent: 2 type: Transform - - uid: 1763 + - uid: 1765 components: - pos: -75.5,-42.5 parent: 2 type: Transform - proto: AtmosFixFreezerMarker entities: - - uid: 1764 + - uid: 1766 components: - pos: 0.5,13.5 parent: 2 type: Transform - - uid: 1765 + - uid: 1767 components: - pos: 1.5,13.5 parent: 2 type: Transform - - uid: 1766 + - uid: 1768 components: - pos: 1.5,14.5 parent: 2 type: Transform - - uid: 1767 + - uid: 1769 components: - pos: 2.5,13.5 parent: 2 type: Transform - - uid: 1768 + - uid: 1770 components: - pos: 0.5,14.5 parent: 2 type: Transform - - uid: 1769 + - uid: 1771 components: - pos: -0.5,14.5 parent: 2 type: Transform - - uid: 1770 + - uid: 1772 components: - pos: 2.5,14.5 parent: 2 type: Transform - - uid: 1771 + - uid: 1773 components: - pos: -0.5,12.5 parent: 2 type: Transform - - uid: 1772 + - uid: 1774 components: - pos: -0.5,11.5 parent: 2 type: Transform - - uid: 1773 + - uid: 1775 components: - pos: 0.5,12.5 parent: 2 type: Transform - - uid: 1774 + - uid: 1776 components: - pos: 0.5,11.5 parent: 2 type: Transform - - uid: 1775 + - uid: 1777 components: - pos: 1.5,12.5 parent: 2 type: Transform - - uid: 1776 + - uid: 1778 components: - pos: 1.5,11.5 parent: 2 type: Transform - - uid: 1777 + - uid: 1779 components: - pos: 2.5,12.5 parent: 2 type: Transform - - uid: 1778 + - uid: 1780 components: - pos: 2.5,11.5 parent: 2 type: Transform - - uid: 1779 + - uid: 1781 components: - pos: -0.5,13.5 parent: 2 type: Transform - - uid: 1780 + - uid: 1782 components: - pos: -5.5,73.5 parent: 2 type: Transform - - uid: 1781 + - uid: 1783 components: - pos: -5.5,72.5 parent: 2 type: Transform - - uid: 1782 + - uid: 1784 components: - pos: -5.5,71.5 parent: 2 type: Transform - - uid: 1783 + - uid: 1785 components: - pos: -5.5,70.5 parent: 2 type: Transform - - uid: 1784 + - uid: 1786 components: - pos: -5.5,69.5 parent: 2 type: Transform - - uid: 1785 + - uid: 1787 components: - pos: -5.5,68.5 parent: 2 type: Transform - - uid: 1786 + - uid: 1788 components: - pos: -5.5,67.5 parent: 2 type: Transform - - uid: 1787 + - uid: 1789 components: - pos: -5.5,66.5 parent: 2 type: Transform - - uid: 1788 + - uid: 1790 components: - pos: -4.5,73.5 parent: 2 type: Transform - - uid: 1789 + - uid: 1791 components: - pos: -4.5,72.5 parent: 2 type: Transform - - uid: 1790 + - uid: 1792 components: - pos: -4.5,71.5 parent: 2 type: Transform - - uid: 1791 + - uid: 1793 components: - pos: -4.5,70.5 parent: 2 type: Transform - - uid: 1792 + - uid: 1794 components: - pos: -4.5,69.5 parent: 2 type: Transform - - uid: 1793 + - uid: 1795 components: - pos: -4.5,68.5 parent: 2 type: Transform - - uid: 1794 + - uid: 1796 components: - pos: -4.5,67.5 parent: 2 type: Transform - - uid: 1795 + - uid: 1797 components: - pos: -4.5,66.5 parent: 2 type: Transform - - uid: 1796 + - uid: 1798 components: - pos: -3.5,73.5 parent: 2 type: Transform - - uid: 1797 + - uid: 1799 components: - pos: -3.5,72.5 parent: 2 type: Transform - - uid: 1798 + - uid: 1800 components: - pos: -3.5,71.5 parent: 2 type: Transform - - uid: 1799 + - uid: 1801 components: - pos: -3.5,70.5 parent: 2 type: Transform - - uid: 1800 + - uid: 1802 components: - pos: -3.5,69.5 parent: 2 type: Transform - - uid: 1801 + - uid: 1803 components: - pos: -3.5,68.5 parent: 2 type: Transform - - uid: 1802 + - uid: 1804 components: - pos: -3.5,67.5 parent: 2 type: Transform - - uid: 1803 + - uid: 1805 components: - pos: -3.5,66.5 parent: 2 type: Transform - - uid: 1804 + - uid: 1806 components: - pos: -2.5,73.5 parent: 2 type: Transform - - uid: 1805 + - uid: 1807 components: - pos: -2.5,72.5 parent: 2 type: Transform - - uid: 1806 + - uid: 1808 components: - pos: -2.5,71.5 parent: 2 type: Transform - - uid: 1807 + - uid: 1809 components: - pos: -2.5,70.5 parent: 2 type: Transform - - uid: 1808 + - uid: 1810 components: - pos: -2.5,69.5 parent: 2 type: Transform - - uid: 1809 + - uid: 1811 components: - pos: -2.5,68.5 parent: 2 type: Transform - - uid: 1810 + - uid: 1812 components: - pos: -2.5,67.5 parent: 2 type: Transform - - uid: 1811 + - uid: 1813 components: - pos: -2.5,66.5 parent: 2 type: Transform - - uid: 1812 + - uid: 1814 components: - pos: -6.5,72.5 parent: 2 type: Transform - - uid: 1813 + - uid: 1815 components: - pos: -6.5,71.5 parent: 2 type: Transform - - uid: 1814 + - uid: 1816 components: - pos: -6.5,70.5 parent: 2 type: Transform - - uid: 1815 + - uid: 1817 components: - pos: -6.5,69.5 parent: 2 type: Transform - - uid: 1816 + - uid: 1818 components: - pos: -6.5,68.5 parent: 2 type: Transform - - uid: 1817 + - uid: 1819 components: - pos: -6.5,67.5 parent: 2 type: Transform - - uid: 1818 + - uid: 1820 components: - pos: -6.5,66.5 parent: 2 type: Transform - - uid: 1819 + - uid: 1821 components: - pos: -7.5,71.5 parent: 2 type: Transform - - uid: 1820 + - uid: 1822 components: - pos: -7.5,70.5 parent: 2 type: Transform - - uid: 1821 + - uid: 1823 components: - pos: -7.5,69.5 parent: 2 type: Transform - - uid: 1822 + - uid: 1824 components: - pos: -7.5,68.5 parent: 2 type: Transform - - uid: 1823 + - uid: 1825 components: - pos: -7.5,67.5 parent: 2 type: Transform - - uid: 1824 + - uid: 1826 components: - pos: -1.5,72.5 parent: 2 type: Transform - - uid: 1825 + - uid: 1827 components: - pos: -1.5,71.5 parent: 2 type: Transform - - uid: 1826 + - uid: 1828 components: - pos: -0.5,72.5 parent: 2 type: Transform - - uid: 1827 + - uid: 1829 components: - pos: -0.5,71.5 parent: 2 type: Transform - - uid: 1828 + - uid: 1830 components: - pos: 0.5,72.5 parent: 2 type: Transform - - uid: 1829 + - uid: 1831 components: - pos: 0.5,71.5 parent: 2 type: Transform - - uid: 1830 + - uid: 1832 components: - pos: 1.5,72.5 parent: 2 type: Transform - - uid: 1831 + - uid: 1833 components: - pos: 1.5,71.5 parent: 2 type: Transform - - uid: 1832 + - uid: 1834 components: - pos: 2.5,72.5 parent: 2 type: Transform - - uid: 1833 + - uid: 1835 components: - pos: 2.5,71.5 parent: 2 type: Transform - - uid: 1834 + - uid: 1836 components: - pos: 3.5,72.5 parent: 2 type: Transform - - uid: 1835 + - uid: 1837 components: - pos: 3.5,71.5 parent: 2 type: Transform - - uid: 1836 + - uid: 1838 components: - pos: -0.5,73.5 parent: 2 type: Transform - - uid: 1837 + - uid: 1839 components: - pos: 0.5,73.5 parent: 2 type: Transform - - uid: 1838 + - uid: 1840 components: - pos: 1.5,73.5 parent: 2 type: Transform - - uid: 1839 + - uid: 1841 components: - pos: 2.5,73.5 parent: 2 type: Transform - - uid: 1840 + - uid: 1842 components: - pos: 4.5,71.5 parent: 2 type: Transform - - uid: 1841 + - uid: 1843 components: - pos: 4.5,70.5 parent: 2 type: Transform - - uid: 1842 + - uid: 1844 components: - pos: 4.5,69.5 parent: 2 type: Transform - - uid: 1843 + - uid: 1845 components: - pos: 4.5,68.5 parent: 2 type: Transform - - uid: 1844 + - uid: 1846 components: - pos: 4.5,67.5 parent: 2 type: Transform - - uid: 1845 + - uid: 1847 components: - pos: 2.5,70.5 parent: 2 type: Transform - - uid: 1846 + - uid: 1848 components: - pos: 2.5,69.5 parent: 2 type: Transform - - uid: 1847 + - uid: 1849 components: - pos: 2.5,68.5 parent: 2 type: Transform - - uid: 1848 + - uid: 1850 components: - pos: 2.5,67.5 parent: 2 type: Transform - - uid: 1849 + - uid: 1851 components: - pos: 2.5,66.5 parent: 2 type: Transform - - uid: 1850 + - uid: 1852 components: - pos: 3.5,70.5 parent: 2 type: Transform - - uid: 1851 + - uid: 1853 components: - pos: 3.5,69.5 parent: 2 type: Transform - - uid: 1852 + - uid: 1854 components: - pos: 3.5,68.5 parent: 2 type: Transform - - uid: 1853 + - uid: 1855 components: - pos: 3.5,67.5 parent: 2 type: Transform - - uid: 1854 + - uid: 1856 components: - pos: 3.5,66.5 parent: 2 type: Transform - - uid: 1855 + - uid: 1857 components: - pos: 0.5,70.5 parent: 2 type: Transform - - uid: 1856 + - uid: 1858 components: - pos: 0.5,69.5 parent: 2 type: Transform - - uid: 1857 + - uid: 1859 components: - pos: 0.5,68.5 parent: 2 type: Transform - - uid: 1858 + - uid: 1860 components: - pos: 0.5,67.5 parent: 2 type: Transform - - uid: 1859 + - uid: 1861 components: - pos: 0.5,66.5 parent: 2 type: Transform - - uid: 1860 + - uid: 1862 components: - pos: 0.5,65.5 parent: 2 type: Transform - - uid: 1861 + - uid: 1863 components: - pos: 1.5,70.5 parent: 2 type: Transform - - uid: 1862 + - uid: 1864 components: - pos: 1.5,69.5 parent: 2 type: Transform - - uid: 1863 + - uid: 1865 components: - pos: 1.5,68.5 parent: 2 type: Transform - - uid: 1864 + - uid: 1866 components: - pos: 1.5,67.5 parent: 2 type: Transform - - uid: 1865 + - uid: 1867 components: - pos: 1.5,66.5 parent: 2 type: Transform - - uid: 1866 + - uid: 1868 components: - pos: 1.5,65.5 parent: 2 type: Transform - - uid: 1867 + - uid: 1869 components: - pos: -1.5,70.5 parent: 2 type: Transform - - uid: 1868 + - uid: 1870 components: - pos: -1.5,69.5 parent: 2 type: Transform - - uid: 1869 + - uid: 1871 components: - pos: -1.5,68.5 parent: 2 type: Transform - - uid: 1870 + - uid: 1872 components: - pos: -1.5,67.5 parent: 2 type: Transform - - uid: 1871 + - uid: 1873 components: - pos: -1.5,66.5 parent: 2 type: Transform - - uid: 1872 + - uid: 1874 components: - pos: -1.5,65.5 parent: 2 type: Transform - - uid: 1873 + - uid: 1875 components: - pos: -0.5,70.5 parent: 2 type: Transform - - uid: 1874 + - uid: 1876 components: - pos: -0.5,69.5 parent: 2 type: Transform - - uid: 1875 + - uid: 1877 components: - pos: -0.5,68.5 parent: 2 type: Transform - - uid: 1876 + - uid: 1878 components: - pos: -0.5,67.5 parent: 2 type: Transform - - uid: 1877 + - uid: 1879 components: - pos: -0.5,66.5 parent: 2 type: Transform - - uid: 1878 + - uid: 1880 components: - pos: -0.5,65.5 parent: 2 type: Transform - - uid: 1879 + - uid: 1881 components: - pos: -2.5,65.5 parent: 2 type: Transform - - uid: 1880 + - uid: 1882 components: - pos: -3.5,65.5 parent: 2 type: Transform - - uid: 1881 + - uid: 1883 components: - pos: -4.5,65.5 parent: 2 type: Transform - - uid: 1882 + - uid: 1884 components: - pos: 53.5,-47.5 parent: 2 type: Transform - - uid: 1883 + - uid: 1885 components: - pos: 53.5,-48.5 parent: 2 type: Transform - - uid: 1884 + - uid: 1886 components: - pos: 54.5,-47.5 parent: 2 type: Transform - - uid: 1885 + - uid: 1887 components: - pos: 54.5,-48.5 parent: 2 type: Transform - - uid: 1886 + - uid: 1888 components: - pos: 55.5,-47.5 parent: 2 type: Transform - - uid: 1887 + - uid: 1889 components: - pos: 55.5,-48.5 parent: 2 type: Transform - - uid: 1888 + - uid: 1890 components: - pos: 56.5,-47.5 parent: 2 type: Transform - - uid: 1889 + - uid: 1891 components: - pos: 56.5,-48.5 parent: 2 type: Transform - - uid: 1890 + - uid: 1892 components: - pos: 57.5,-47.5 parent: 2 type: Transform - - uid: 1891 + - uid: 1893 components: - pos: 57.5,-48.5 parent: 2 type: Transform - - uid: 1892 + - uid: 1894 components: - pos: 54.5,-49.5 parent: 2 type: Transform - - uid: 1893 + - uid: 1895 components: - pos: 55.5,-49.5 parent: 2 type: Transform - - uid: 1894 + - uid: 1896 components: - pos: 56.5,-49.5 parent: 2 type: Transform - - uid: 1895 + - uid: 1897 components: - pos: 57.5,-49.5 parent: 2 type: Transform - proto: AtmosFixNitrogenMarker entities: - - uid: 1896 + - uid: 1898 components: - pos: -48.5,-54.5 parent: 2 type: Transform - - uid: 1897 + - uid: 1899 components: - pos: -49.5,-54.5 parent: 2 type: Transform - - uid: 1898 + - uid: 1900 components: - pos: -50.5,-54.5 parent: 2 type: Transform - proto: AtmosFixOxygenMarker entities: - - uid: 1899 + - uid: 1901 components: - pos: -48.5,-52.5 parent: 2 type: Transform - - uid: 1900 + - uid: 1902 components: - pos: -49.5,-52.5 parent: 2 type: Transform - - uid: 1901 + - uid: 1903 components: - pos: -50.5,-52.5 parent: 2 type: Transform - proto: AtmosFixPlasmaMarker entities: - - uid: 1902 + - uid: 1904 components: - pos: -48.5,-46.5 parent: 2 type: Transform - - uid: 1903 + - uid: 1905 components: - pos: -49.5,-46.5 parent: 2 type: Transform - - uid: 1904 + - uid: 1906 components: - pos: -50.5,-46.5 parent: 2 type: Transform - proto: Autolathe entities: - - uid: 1905 + - uid: 1907 components: - pos: 40.5,-35.5 parent: 2 @@ -21630,263 +21677,263 @@ entities: - Glass - Cloth type: MaterialStorage - - uid: 1906 + - uid: 1908 components: - pos: -34.5,19.5 parent: 2 type: Transform - - uid: 1907 + - uid: 1909 components: - pos: -37.5,-9.5 parent: 2 type: Transform - proto: AutolatheMachineCircuitboard entities: - - uid: 1908 + - uid: 1910 components: - pos: -37.452168,-18.414932 parent: 2 type: Transform - proto: BananaPhoneInstrument entities: - - uid: 1909 + - uid: 1911 components: - pos: -19.559175,37.640453 parent: 2 type: Transform - proto: BananaSeeds entities: - - uid: 1910 + - uid: 1912 components: - pos: 2.4199185,-21.169794 parent: 2 type: Transform - proto: BananiumOre1 entities: - - uid: 1911 + - uid: 1913 components: - pos: -44.56904,61.76841 parent: 2 type: Transform - - uid: 1912 + - uid: 1914 components: - pos: -45.38154,60.565285 parent: 2 type: Transform - - uid: 1913 + - uid: 1915 components: - pos: -44.647163,61.39341 parent: 2 type: Transform - proto: BannerCargo entities: - - uid: 1914 + - uid: 1916 components: - pos: -25.5,24.5 parent: 2 type: Transform - - uid: 1915 + - uid: 1917 components: - pos: -25.5,17.5 parent: 2 type: Transform - proto: BannerEngineering entities: - - uid: 1916 + - uid: 1918 components: - pos: -25.5,-8.5 parent: 2 type: Transform - - uid: 1917 + - uid: 1919 components: - pos: -23.5,-17.5 parent: 2 type: Transform - proto: BannerMedical entities: - - uid: 1918 + - uid: 1920 components: - pos: 1.5,-43.5 parent: 2 type: Transform - - uid: 1919 + - uid: 1921 components: - pos: -10.5,-43.5 parent: 2 type: Transform - proto: BannerNanotrasen entities: - - uid: 1920 + - uid: 1922 components: - pos: 28.5,-16.5 parent: 2 type: Transform - - uid: 1921 + - uid: 1923 components: - pos: 22.5,-16.5 parent: 2 type: Transform - proto: BannerRevolution entities: - - uid: 1922 + - uid: 1924 components: - pos: 0.5,-73.5 parent: 2 type: Transform - - uid: 1923 + - uid: 1925 components: - pos: -47.5,-72.5 parent: 2 type: Transform - - uid: 1924 + - uid: 1926 components: - pos: -36.5,-72.5 parent: 2 type: Transform - - uid: 1925 + - uid: 1927 components: - pos: -46.5,-84.5 parent: 2 type: Transform - - uid: 1926 + - uid: 1928 components: - pos: -37.5,-84.5 parent: 2 type: Transform - - uid: 1927 + - uid: 1929 components: - - pos: 55.5,58.5 + - pos: 62.5,-69.5 parent: 2 type: Transform - - uid: 1928 + - uid: 1930 components: - - pos: 53.5,58.5 + - pos: 60.5,-69.5 parent: 2 type: Transform - - uid: 1929 + - uid: 1931 components: - - pos: 62.5,-69.5 + - pos: 55.5,57.5 parent: 2 type: Transform - - uid: 1930 + - uid: 1932 components: - - pos: 60.5,-69.5 + - pos: 53.5,57.5 parent: 2 type: Transform - proto: BannerScience entities: - - uid: 1931 + - uid: 1933 components: - pos: 48.5,-40.5 parent: 2 type: Transform - - uid: 1932 + - uid: 1934 components: - pos: 48.5,-44.5 parent: 2 type: Transform - - uid: 1933 + - uid: 1935 components: - pos: 59.5,-49.5 parent: 2 type: Transform - - uid: 1934 + - uid: 1936 components: - pos: 65.5,-49.5 parent: 2 type: Transform - proto: BannerSecurity entities: - - uid: 1935 + - uid: 1937 components: - pos: 21.5,18.5 parent: 2 type: Transform - - uid: 1936 + - uid: 1938 components: - pos: 27.5,8.5 parent: 2 type: Transform - - uid: 1937 + - uid: 1939 components: - pos: 23.5,8.5 parent: 2 type: Transform - proto: Barricade entities: - - uid: 1938 + - uid: 1940 components: - rot: -1.5707963267948966 rad pos: -26.5,-64.5 parent: 2 type: Transform - - uid: 1939 + - uid: 1941 components: - pos: -3.5,-75.5 parent: 2 type: Transform - - uid: 1940 + - uid: 1942 components: - pos: 42.5,-9.5 parent: 2 type: Transform - - uid: 1941 + - uid: 1943 components: - pos: 44.5,-9.5 parent: 2 type: Transform - - uid: 1942 + - uid: 1944 components: - pos: 48.5,-12.5 parent: 2 type: Transform - - uid: 1943 + - uid: 1945 components: - rot: 3.141592653589793 rad pos: -35.5,-23.5 parent: 2 type: Transform - - uid: 1944 + - uid: 1946 components: - rot: 1.5707963267948966 rad pos: -48.5,-66.5 parent: 2 type: Transform - - uid: 1945 + - uid: 1947 components: - rot: 1.5707963267948966 rad pos: -44.5,-66.5 parent: 2 type: Transform - - uid: 1946 + - uid: 1948 components: - rot: 1.5707963267948966 rad pos: -45.5,-67.5 parent: 2 type: Transform - - uid: 1947 + - uid: 1949 components: - rot: 3.141592653589793 rad pos: 20.5,-49.5 parent: 2 type: Transform - - uid: 1948 + - uid: 1950 components: - rot: 3.141592653589793 rad pos: 67.5,-61.5 parent: 2 type: Transform - - uid: 1949 + - uid: 1951 components: - pos: 67.5,-63.5 parent: 2 type: Transform - - uid: 1950 + - uid: 1952 components: - pos: -39.5,-21.5 parent: 2 type: Transform - - uid: 1951 + - uid: 1953 components: - rot: -1.5707963267948966 rad pos: 54.5,53.5 @@ -21894,28 +21941,28 @@ entities: type: Transform - proto: BarricadeBlock entities: - - uid: 1952 + - uid: 1954 components: - pos: -39.5,-95.5 parent: 2 type: Transform - - uid: 1953 + - uid: 1955 components: - pos: -42.5,-86.5 parent: 2 type: Transform - - uid: 1954 + - uid: 1956 components: - pos: -42.5,-28.5 parent: 2 type: Transform - - uid: 1955 + - uid: 1957 components: - rot: -1.5707963267948966 rad pos: 56.5,35.5 parent: 2 type: Transform - - uid: 1956 + - uid: 1958 components: - rot: -1.5707963267948966 rad pos: 54.5,54.5 @@ -21923,31 +21970,31 @@ entities: type: Transform - proto: BarricadeDirectional entities: - - uid: 1957 + - uid: 1959 components: - rot: 3.141592653589793 rad pos: -17.5,-96.5 parent: 2 type: Transform - - uid: 1958 + - uid: 1960 components: - rot: -1.5707963267948966 rad pos: -47.5,-77.5 parent: 2 type: Transform - - uid: 1959 + - uid: 1961 components: - rot: -1.5707963267948966 rad pos: -47.5,-78.5 parent: 2 type: Transform - - uid: 1960 + - uid: 1962 components: - rot: 1.5707963267948966 rad pos: -49.5,-68.5 parent: 2 type: Transform - - uid: 1961 + - uid: 1963 components: - rot: -1.5707963267948966 rad pos: -50.5,-65.5 @@ -21955,7 +22002,7 @@ entities: type: Transform - proto: BarSign entities: - - uid: 1962 + - uid: 1964 components: - desc: Recently relicensed after a long closure. name: The Emergency Rum Party @@ -21965,7 +22012,7 @@ entities: type: Transform - current: EmergencyRumParty type: BarSign - - uid: 1963 + - uid: 1965 components: - desc: A very controversial bar known for its wide variety of constantly-changing drinks. name: The Coderbus @@ -21975,229 +22022,229 @@ entities: type: Transform - current: TheCoderbus type: BarSign - - uid: 1964 + - uid: 1966 components: - pos: 33.5,48.5 parent: 2 type: Transform - proto: Basketball entities: - - uid: 1965 + - uid: 1967 components: - pos: 59.373314,-2.3464775 parent: 2 type: Transform - - uid: 1966 + - uid: 1968 components: - pos: -49.590145,-63.44321 parent: 2 type: Transform - proto: Beaker entities: - - uid: 1967 + - uid: 1969 components: - pos: -25.200409,-78.7421 parent: 2 type: Transform - - uid: 1968 + - uid: 1970 components: - pos: 54.768433,18.769468 parent: 2 type: Transform - - uid: 1969 + - uid: 1971 components: - pos: 54.659058,18.535093 parent: 2 type: Transform - - uid: 1970 + - uid: 1972 components: - pos: 51.539406,-40.488155 parent: 2 type: Transform - proto: Bed entities: - - uid: 1971 + - uid: 1973 components: - pos: 36.5,7.5 parent: 2 type: Transform - - uid: 1972 + - uid: 1974 components: - pos: 36.5,4.5 parent: 2 type: Transform - - uid: 1973 + - uid: 1975 components: - pos: 8.5,22.5 parent: 2 type: Transform - - uid: 1974 + - uid: 1976 components: - pos: 29.5,10.5 parent: 2 type: Transform - - uid: 1975 + - uid: 1977 components: - pos: 32.5,10.5 parent: 2 type: Transform - - uid: 1976 + - uid: 1978 components: - pos: 35.5,10.5 parent: 2 type: Transform - - uid: 1977 + - uid: 1979 components: - pos: -26.5,43.5 parent: 2 type: Transform - - uid: 1978 + - uid: 1980 components: - pos: -7.5,-4.5 parent: 2 type: Transform - - uid: 1979 + - uid: 1981 components: - pos: -15.5,-39.5 parent: 2 type: Transform - - uid: 1980 + - uid: 1982 components: - pos: 55.5,24.5 parent: 2 type: Transform - - uid: 1981 + - uid: 1983 components: - pos: 52.5,24.5 parent: 2 type: Transform - - uid: 1982 + - uid: 1984 components: - pos: 49.5,24.5 parent: 2 type: Transform - - uid: 1983 + - uid: 1985 components: - pos: 46.5,24.5 parent: 2 type: Transform - - uid: 1984 + - uid: 1986 components: - pos: 58.5,24.5 parent: 2 type: Transform - - uid: 1985 + - uid: 1987 components: - pos: 62.5,19.5 parent: 2 type: Transform - - uid: 1986 + - uid: 1988 components: - pos: 62.5,16.5 parent: 2 type: Transform - - uid: 1987 + - uid: 1989 components: - pos: 62.5,-55.5 parent: 2 type: Transform - - uid: 1988 - components: - - pos: -56.5,-86.5 - parent: 2 - type: Transform - - uid: 1989 + - uid: 1990 components: - pos: -30.5,31.5 parent: 2 type: Transform - - uid: 1990 + - uid: 1991 components: - pos: 32.5,-29.5 parent: 2 type: Transform - - uid: 1991 + - uid: 1992 components: - pos: -29.5,14.5 parent: 2 type: Transform - - uid: 1992 + - uid: 1993 components: - pos: -42.5,9.5 parent: 2 type: Transform - - uid: 1993 + - uid: 1994 components: - pos: -51.5,6.5 parent: 2 type: Transform - - uid: 1994 + - uid: 1995 components: - pos: -52.5,15.5 parent: 2 type: Transform - - uid: 1995 + - uid: 1996 components: - pos: -23.5,31.5 parent: 2 type: Transform - - uid: 1996 + - uid: 1997 components: - pos: -19.5,33.5 parent: 2 type: Transform - - uid: 1997 + - uid: 1998 components: - pos: -10.5,31.5 parent: 2 type: Transform - - uid: 1998 + - uid: 1999 components: - pos: -19.5,38.5 parent: 2 type: Transform - - uid: 1999 + - uid: 2000 components: - pos: 48.5,-11.5 parent: 2 type: Transform - - uid: 2000 + - uid: 2001 components: - pos: -34.5,-20.5 parent: 2 type: Transform - - uid: 2001 + - uid: 2002 components: - pos: -0.5,-6.5 parent: 2 type: Transform - - uid: 2002 + - uid: 2003 components: - pos: -1.5,-19.5 parent: 2 type: Transform - - uid: 2003 + - uid: 2004 components: - pos: -1.5,-20.5 parent: 2 type: Transform + - uid: 2005 + components: + - pos: -52.5,-88.5 + parent: 2 + type: Transform - proto: BedsheetBlack entities: - - uid: 2004 + - uid: 2006 components: - pos: -42.5,9.5 parent: 2 type: Transform - proto: BedsheetCaptain entities: - - uid: 2005 + - uid: 2007 components: - pos: 32.5,-29.5 parent: 2 type: Transform - proto: BedsheetCE entities: - - uid: 2006 + - uid: 2008 components: - rot: -1.5707963267948966 rad pos: -34.5,-20.5 @@ -22205,13 +22252,13 @@ entities: type: Transform - proto: BedsheetClown entities: - - uid: 2007 + - uid: 2009 components: - rot: 3.141592653589793 rad pos: -19.5,38.5 parent: 2 type: Transform - - uid: 2008 + - uid: 2010 components: - rot: -1.5707963267948966 rad pos: -1.5,-20.5 @@ -22219,60 +22266,60 @@ entities: type: Transform - proto: BedsheetCult entities: - - uid: 2009 + - uid: 2011 components: - pos: -29.5,14.5 parent: 2 type: Transform - proto: BedsheetGreen entities: - - uid: 2010 + - uid: 2012 components: - pos: -51.5,6.5 parent: 2 type: Transform - proto: BedsheetGrey entities: - - uid: 2011 + - uid: 2013 components: - pos: 29.5,10.5 parent: 2 type: Transform - - uid: 2012 + - uid: 2014 components: - pos: 32.5,10.5 parent: 2 type: Transform - - uid: 2013 + - uid: 2015 components: - pos: 35.5,10.5 parent: 2 type: Transform - - uid: 2014 + - uid: 2016 components: - pos: 36.5,7.5 parent: 2 type: Transform - - uid: 2015 + - uid: 2017 components: - pos: 36.5,4.5 parent: 2 type: Transform - - uid: 2016 + - uid: 2018 components: - pos: -52.5,15.5 parent: 2 type: Transform - proto: BedsheetHOP entities: - - uid: 2017 + - uid: 2019 components: - pos: -0.5,-6.5 parent: 2 type: Transform - proto: BedsheetHOS entities: - - uid: 2018 + - uid: 2020 components: - rot: -1.5707963267948966 rad pos: 8.5,22.5 @@ -22280,72 +22327,72 @@ entities: type: Transform - proto: BedsheetIan entities: - - uid: 2019 + - uid: 2021 components: - pos: 48.5,-11.5 parent: 2 type: Transform - proto: BedsheetMedical entities: - - uid: 2020 + - uid: 2022 components: - pos: -21.5,-54.5 parent: 2 type: Transform - - uid: 2021 + - uid: 2023 components: - rot: -1.5707963267948966 rad pos: -12.5,-57.5 parent: 2 type: Transform - - uid: 2022 + - uid: 2024 components: - rot: -1.5707963267948966 rad pos: -9.5,-57.5 parent: 2 type: Transform - - uid: 2023 + - uid: 2025 components: - rot: -1.5707963267948966 rad pos: -6.5,-57.5 parent: 2 type: Transform - - uid: 2024 + - uid: 2026 components: - rot: -1.5707963267948966 rad pos: -3.5,-57.5 parent: 2 type: Transform - - uid: 2025 + - uid: 2027 components: - rot: -1.5707963267948966 rad pos: -0.5,-57.5 parent: 2 type: Transform - - uid: 2026 + - uid: 2028 components: - rot: 3.141592653589793 rad pos: 6.5,-56.5 parent: 2 type: Transform - - uid: 2027 + - uid: 2029 components: - pos: 44.5,4.5 parent: 2 type: Transform - - uid: 2028 + - uid: 2030 components: - pos: 44.5,5.5 parent: 2 type: Transform - proto: BedsheetMime entities: - - uid: 2029 + - uid: 2031 components: - pos: -26.5,43.5 parent: 2 type: Transform - - uid: 2030 + - uid: 2032 components: - rot: -1.5707963267948966 rad pos: -1.5,-19.5 @@ -22353,44 +22400,44 @@ entities: type: Transform - proto: BedsheetOrange entities: - - uid: 2031 + - uid: 2033 components: - pos: 58.5,24.5 parent: 2 type: Transform - - uid: 2032 + - uid: 2034 components: - pos: 55.5,24.5 parent: 2 type: Transform - - uid: 2033 + - uid: 2035 components: - pos: 52.5,24.5 parent: 2 type: Transform - - uid: 2034 + - uid: 2036 components: - pos: 49.5,24.5 parent: 2 type: Transform - - uid: 2035 + - uid: 2037 components: - pos: 46.5,24.5 parent: 2 type: Transform - - uid: 2036 + - uid: 2038 components: - pos: 62.5,19.5 parent: 2 type: Transform - - uid: 2037 + - uid: 2039 components: - pos: 62.5,16.5 parent: 2 type: Transform - proto: BedsheetQM entities: - - uid: 2038 + - uid: 2040 components: - rot: 3.141592653589793 rad pos: -30.5,31.5 @@ -22398,1013 +22445,1014 @@ entities: type: Transform - proto: BedsheetRD entities: - - uid: 2039 + - uid: 2041 components: - pos: 62.5,-55.5 parent: 2 type: Transform - proto: BedsheetSpawner entities: - - uid: 2040 + - uid: 2042 components: - pos: -10.5,31.5 parent: 2 type: Transform - - uid: 2041 + - uid: 2043 components: - pos: -19.5,33.5 parent: 2 type: Transform - proto: BedsheetSyndie entities: - - uid: 2042 + - uid: 2044 components: - - pos: -56.5,-86.5 + - rot: 3.141592653589793 rad + pos: -52.5,-88.5 parent: 2 type: Transform - proto: BedsheetUSA entities: - - uid: 2043 + - uid: 2045 components: - pos: -23.5,31.5 parent: 2 type: Transform - proto: Bible entities: - - uid: 2044 + - uid: 2046 components: - pos: -30.453314,15.631503 parent: 2 type: Transform - proto: BigBox entities: - - uid: 2045 + - uid: 2047 components: - pos: 58.475555,34.501217 parent: 2 type: Transform - proto: BikeHorn entities: - - uid: 2046 + - uid: 2048 components: - pos: -22.127623,37.564125 parent: 2 type: Transform - proto: BikeHornInstrument entities: - - uid: 2047 + - uid: 2049 components: - pos: 2.4660668,-20.657997 parent: 2 type: Transform - proto: BiomassReclaimer entities: - - uid: 2048 + - uid: 2050 components: - pos: -5.5,-66.5 parent: 2 type: Transform - proto: BiomassReclaimerMachineCircuitboard entities: - - uid: 2049 + - uid: 2051 components: - pos: -11.687319,37.80377 parent: 2 type: Transform - proto: BlastDoor entities: - - uid: 2050 + - uid: 2052 components: - pos: -78.5,-41.5 parent: 2 type: Transform - links: - - 23960 + - 24185 type: DeviceLinkSink - - uid: 2051 + - uid: 2053 components: - pos: -78.5,-40.5 parent: 2 type: Transform - links: - - 23960 + - 24185 type: DeviceLinkSink - - uid: 2052 + - uid: 2054 components: - pos: -78.5,-42.5 parent: 2 type: Transform - links: - - 23960 + - 24185 type: DeviceLinkSink - - uid: 2053 + - uid: 2055 components: - pos: -74.5,-46.5 parent: 2 type: Transform - links: - - 23959 + - 24184 type: DeviceLinkSink - - uid: 2054 + - uid: 2056 components: - pos: -74.5,-44.5 parent: 2 type: Transform - links: - - 23959 + - 24184 type: DeviceLinkSink - - uid: 2055 + - uid: 2057 components: - pos: -74.5,-45.5 parent: 2 type: Transform - links: - - 23959 + - 24184 type: DeviceLinkSink - proto: BlastDoorBridge entities: - - uid: 2056 + - uid: 2058 components: - pos: 10.5,47.5 parent: 2 type: Transform - links: - - 23940 + - 24165 type: DeviceLinkSink - - uid: 2057 + - uid: 2059 components: - pos: 10.5,49.5 parent: 2 type: Transform - links: - - 23940 + - 24165 type: DeviceLinkSink - - uid: 2058 + - uid: 2060 components: - pos: 10.5,48.5 parent: 2 type: Transform - links: - - 23940 + - 24165 type: DeviceLinkSink - proto: BlastDoorExterior1 entities: - - uid: 2059 + - uid: 2061 components: - pos: 18.5,-56.5 parent: 2 type: Transform - links: - - 23916 + - 24141 type: DeviceLinkSink - - uid: 2060 + - uid: 2062 components: - pos: 47.5,-51.5 parent: 2 type: Transform - links: - - 23912 + - 24137 type: DeviceLinkSink - - uid: 2061 + - uid: 2063 components: - pos: 47.5,-52.5 parent: 2 type: Transform - links: - - 23912 + - 24137 type: DeviceLinkSink - - uid: 2062 + - uid: 2064 components: - pos: 47.5,-53.5 parent: 2 type: Transform - links: - - 23912 + - 24137 type: DeviceLinkSink - - uid: 2063 + - uid: 2065 components: - pos: 47.5,-54.5 parent: 2 type: Transform - links: - - 23912 + - 24137 type: DeviceLinkSink - - uid: 2064 + - uid: 2066 components: - pos: 52.5,-58.5 parent: 2 type: Transform - links: - - 23913 + - 24138 type: DeviceLinkSink - - uid: 2065 + - uid: 2067 components: - pos: 50.5,-62.5 parent: 2 type: Transform - links: - - 23946 + - 24171 type: DeviceLinkSink - - uid: 2066 + - uid: 2068 components: - rot: 1.5707963267948966 rad pos: 55.5,-56.5 parent: 2 type: Transform - links: - - 23915 + - 24140 type: DeviceLinkSink - - uid: 2067 + - uid: 2069 components: - rot: 1.5707963267948966 rad pos: 54.5,-56.5 parent: 2 type: Transform - links: - - 23915 + - 24140 type: DeviceLinkSink - - uid: 2068 + - uid: 2070 components: - pos: -45.5,-34.5 parent: 2 type: Transform - links: - - 23961 + - 24186 type: DeviceLinkSink - - uid: 2069 + - uid: 2071 components: - rot: -1.5707963267948966 rad pos: -40.5,-40.5 parent: 2 type: Transform - links: - - 23919 + - 24144 type: DeviceLinkSink - - uid: 2070 + - uid: 2072 components: - rot: -1.5707963267948966 rad pos: -39.5,-40.5 parent: 2 type: Transform - links: - - 23919 + - 24144 type: DeviceLinkSink - - uid: 2071 + - uid: 2073 components: - rot: -1.5707963267948966 rad pos: -38.5,-40.5 parent: 2 type: Transform - links: - - 23919 + - 24144 type: DeviceLinkSink - - uid: 2072 + - uid: 2074 components: - rot: -1.5707963267948966 rad pos: -37.5,-40.5 parent: 2 type: Transform - links: - - 23919 + - 24144 type: DeviceLinkSink - - uid: 2073 + - uid: 2075 components: - pos: -49.5,19.5 parent: 2 type: Transform - links: - - 23921 + - 24146 type: DeviceLinkSink - - uid: 2074 + - uid: 2076 components: - pos: -49.5,23.5 parent: 2 type: Transform - links: - - 23921 + - 24146 type: DeviceLinkSink - - uid: 2075 + - uid: 2077 components: - pos: 51.5,44.5 parent: 2 type: Transform - links: - - 23929 - - 23931 - - 23936 + - 24154 + - 24156 + - 24161 type: DeviceLinkSink - - uid: 2076 + - uid: 2078 components: - pos: 54.5,45.5 parent: 2 type: Transform - links: - - 23927 - - 23929 + - 24152 + - 24154 type: DeviceLinkSink - - uid: 2077 + - uid: 2079 components: - pos: -52.5,34.5 parent: 2 type: Transform - links: - - 23951 + - 24176 type: DeviceLinkSink - - uid: 2078 + - uid: 2080 components: - pos: -52.5,30.5 parent: 2 type: Transform - links: - - 23914 + - 24139 type: DeviceLinkSink - - uid: 2079 + - uid: 2081 components: - pos: -53.5,23.5 parent: 2 type: Transform - links: - - 23920 + - 24145 type: DeviceLinkSink - - uid: 2080 + - uid: 2082 components: - pos: -53.5,19.5 parent: 2 type: Transform - links: - - 23920 + - 24145 type: DeviceLinkSink - - uid: 2081 + - uid: 2083 components: - pos: 53.5,46.5 parent: 2 type: Transform - links: - - 23923 - - 23932 - - 23939 + - 24148 + - 24157 + - 24164 type: DeviceLinkSink - - uid: 2082 + - uid: 2084 components: - pos: 55.5,46.5 parent: 2 type: Transform - links: - - 23927 - - 23930 + - 24152 + - 24155 type: DeviceLinkSink - - uid: 2083 + - uid: 2085 components: - pos: 50.5,47.5 parent: 2 type: Transform - links: - - 23925 + - 24150 type: DeviceLinkSink - - uid: 2084 + - uid: 2086 components: - pos: 57.5,44.5 parent: 2 type: Transform - links: - - 23931 + - 24156 type: DeviceLinkSink - - uid: 2085 + - uid: 2087 components: - pos: 56.5,47.5 parent: 2 type: Transform - links: - - 23922 + - 24147 type: DeviceLinkSink - - uid: 2086 + - uid: 2088 components: - pos: 51.5,48.5 parent: 2 type: Transform - - uid: 2087 + - uid: 2089 components: - pos: 53.5,48.5 parent: 2 type: Transform - links: - - 23922 - - 23937 - - 23939 + - 24147 + - 24162 + - 24164 type: DeviceLinkSink - - uid: 2088 + - uid: 2090 components: - pos: 55.5,48.5 parent: 2 type: Transform - links: - - 23937 + - 24162 type: DeviceLinkSink - - uid: 2089 + - uid: 2091 components: - pos: 58.5,47.5 parent: 2 type: Transform - links: - - 23923 + - 24148 type: DeviceLinkSink - - uid: 2090 + - uid: 2092 components: - pos: 52.5,45.5 parent: 2 type: Transform - links: - - 23926 - - 23935 + - 24151 + - 24160 type: DeviceLinkSink - - uid: 2091 + - uid: 2093 components: - pos: 53.5,44.5 parent: 2 type: Transform - links: - - 23933 - - 23939 + - 24158 + - 24164 type: DeviceLinkSink - - uid: 2092 + - uid: 2094 components: - pos: 55.5,44.5 parent: 2 type: Transform - links: - - 23933 - - 23936 + - 24158 + - 24161 type: DeviceLinkSink - - uid: 2093 + - uid: 2095 components: - pos: 58.5,45.5 parent: 2 type: Transform - links: - - 23934 + - 24159 type: DeviceLinkSink - - uid: 2094 + - uid: 2096 components: - pos: 57.5,46.5 parent: 2 type: Transform - links: - - 23926 - - 23928 - - 23937 + - 24151 + - 24153 + - 24162 type: DeviceLinkSink - - uid: 2095 + - uid: 2097 components: - pos: 57.5,48.5 parent: 2 type: Transform - - uid: 2096 + - uid: 2098 components: - pos: 54.5,47.5 parent: 2 type: Transform - links: - - 23930 + - 24155 type: DeviceLinkSink - - uid: 2097 + - uid: 2099 components: - pos: 52.5,47.5 parent: 2 type: Transform - links: - - 23932 + - 24157 type: DeviceLinkSink - - uid: 2098 + - uid: 2100 components: - pos: 51.5,46.5 parent: 2 type: Transform - links: - - 23936 - - 23937 + - 24161 + - 24162 type: DeviceLinkSink - - uid: 2099 + - uid: 2101 components: - pos: 56.5,45.5 parent: 2 type: Transform - links: - - 23928 - - 23934 + - 24153 + - 24159 type: DeviceLinkSink - - uid: 2100 + - uid: 2102 components: - pos: 50.5,45.5 parent: 2 type: Transform - links: - - 23925 - - 23935 + - 24150 + - 24160 type: DeviceLinkSink - - uid: 2101 + - uid: 2103 components: - pos: -18.5,-96.5 parent: 2 type: Transform - links: - - 23942 + - 24167 type: DeviceLinkSink - - uid: 2102 + - uid: 2104 components: - pos: -18.5,-98.5 parent: 2 type: Transform - links: - - 23942 + - 24167 type: DeviceLinkSink - - uid: 2103 + - uid: 2105 components: - pos: -26.5,-96.5 parent: 2 type: Transform - links: - - 23943 + - 24168 type: DeviceLinkSink - - uid: 2104 + - uid: 2106 components: - pos: -26.5,-98.5 parent: 2 type: Transform - links: - - 23943 + - 24168 type: DeviceLinkSink - - uid: 2105 + - uid: 2107 components: - pos: 67.5,-39.5 parent: 2 type: Transform - links: - - 23911 + - 24136 type: DeviceLinkSink - - uid: 2106 + - uid: 2108 components: - rot: 3.141592653589793 rad pos: 72.5,-27.5 parent: 2 type: Transform - links: - - 23947 + - 24172 type: DeviceLinkSink - - uid: 2107 + - uid: 2109 components: - pos: -45.5,-35.5 parent: 2 type: Transform - links: - - 23961 + - 24186 type: DeviceLinkSink - proto: BlastDoorExterior1Open entities: - - uid: 2108 + - uid: 2110 components: - rot: -1.5707963267948966 rad pos: 24.5,46.5 parent: 2 type: Transform - links: - - 23941 + - 24166 type: DeviceLinkSink - - uid: 2109 + - uid: 2111 components: - rot: -1.5707963267948966 rad pos: 23.5,46.5 parent: 2 type: Transform - links: - - 23941 + - 24166 type: DeviceLinkSink - - uid: 2110 + - uid: 2112 components: - rot: -1.5707963267948966 rad pos: 25.5,46.5 parent: 2 type: Transform - links: - - 23941 + - 24166 type: DeviceLinkSink - - uid: 2111 + - uid: 2113 components: - rot: -1.5707963267948966 rad pos: 26.5,44.5 parent: 2 type: Transform - links: - - 23941 + - 24166 type: DeviceLinkSink - - uid: 2112 + - uid: 2114 components: - rot: -1.5707963267948966 rad pos: 24.5,44.5 parent: 2 type: Transform - links: - - 23941 + - 24166 type: DeviceLinkSink - - uid: 2113 + - uid: 2115 components: - rot: -1.5707963267948966 rad pos: 23.5,44.5 parent: 2 type: Transform - links: - - 23941 + - 24166 type: DeviceLinkSink - - uid: 2114 + - uid: 2116 components: - rot: -1.5707963267948966 rad pos: 25.5,44.5 parent: 2 type: Transform - links: - - 23941 + - 24166 type: DeviceLinkSink - - uid: 2115 + - uid: 2117 components: - rot: -1.5707963267948966 rad pos: 26.5,46.5 parent: 2 type: Transform - links: - - 23941 + - 24166 type: DeviceLinkSink - - uid: 2116 + - uid: 2118 components: - rot: -1.5707963267948966 rad pos: 22.5,44.5 parent: 2 type: Transform - links: - - 23941 + - 24166 type: DeviceLinkSink - - uid: 2117 + - uid: 2119 components: - rot: -1.5707963267948966 rad pos: 22.5,46.5 parent: 2 type: Transform - links: - - 23941 + - 24166 type: DeviceLinkSink - - uid: 2118 + - uid: 2120 components: - pos: -8.5,-91.5 parent: 2 type: Transform - links: - - 23944 - - 23945 + - 24169 + - 24170 type: DeviceLinkSink - - uid: 2119 + - uid: 2121 components: - pos: -8.5,-92.5 parent: 2 type: Transform - links: - - 23944 - - 23945 + - 24169 + - 24170 type: DeviceLinkSink - - uid: 2120 + - uid: 2122 components: - pos: -8.5,-93.5 parent: 2 type: Transform - links: - - 23944 - - 23945 + - 24169 + - 24170 type: DeviceLinkSink - - uid: 2121 + - uid: 2123 components: - pos: -6.5,-91.5 parent: 2 type: Transform - links: - - 23944 - - 23945 + - 24169 + - 24170 type: DeviceLinkSink - - uid: 2122 + - uid: 2124 components: - pos: -6.5,-90.5 parent: 2 type: Transform - links: - - 23944 - - 23945 + - 24169 + - 24170 type: DeviceLinkSink - - uid: 2123 + - uid: 2125 components: - pos: -6.5,-92.5 parent: 2 type: Transform - links: - - 23944 - - 23945 + - 24169 + - 24170 type: DeviceLinkSink - - uid: 2124 + - uid: 2126 components: - pos: -6.5,-93.5 parent: 2 type: Transform - links: - - 23944 - - 23945 + - 24169 + - 24170 type: DeviceLinkSink - - uid: 2125 + - uid: 2127 components: - pos: -8.5,-90.5 parent: 2 type: Transform - links: - - 23944 - - 23945 + - 24169 + - 24170 type: DeviceLinkSink - proto: BlastDoorExterior2 entities: - - uid: 2126 + - uid: 2128 components: - pos: -11.5,-11.5 parent: 2 type: Transform - links: - - 23908 + - 24133 type: DeviceLinkSink - proto: BlastDoorOpen entities: - - uid: 2127 + - uid: 2129 components: - pos: -56.5,-11.5 parent: 2 type: Transform - links: - - 23918 + - 24143 type: DeviceLinkSink - - uid: 2128 + - uid: 2130 components: - pos: -56.5,-12.5 parent: 2 type: Transform - links: - - 23918 + - 24143 type: DeviceLinkSink - - uid: 2129 + - uid: 2131 components: - pos: -56.5,-13.5 parent: 2 type: Transform - links: - - 23918 + - 24143 type: DeviceLinkSink - - uid: 2130 + - uid: 2132 components: - pos: -56.5,-14.5 parent: 2 type: Transform - links: - - 23918 + - 24143 type: DeviceLinkSink - - uid: 2131 + - uid: 2133 components: - pos: -56.5,-15.5 parent: 2 type: Transform - links: - - 23918 + - 24143 type: DeviceLinkSink - - uid: 2132 + - uid: 2134 components: - rot: -1.5707963267948966 rad pos: -64.5,-22.5 parent: 2 type: Transform - links: - - 23917 + - 24142 type: DeviceLinkSink - - uid: 2133 + - uid: 2135 components: - rot: -1.5707963267948966 rad pos: -65.5,-22.5 parent: 2 type: Transform - links: - - 23917 + - 24142 type: DeviceLinkSink - - uid: 2134 + - uid: 2136 components: - rot: -1.5707963267948966 rad pos: -66.5,-22.5 parent: 2 type: Transform - links: - - 23917 + - 24142 type: DeviceLinkSink - - uid: 2135 + - uid: 2137 components: - rot: -1.5707963267948966 rad pos: -67.5,-22.5 parent: 2 type: Transform - links: - - 23917 + - 24142 type: DeviceLinkSink - - uid: 2136 + - uid: 2138 components: - rot: -1.5707963267948966 rad pos: -68.5,-22.5 parent: 2 type: Transform - links: - - 23917 + - 24142 type: DeviceLinkSink - proto: BlockGameArcadeComputerCircuitboard entities: - - uid: 2137 + - uid: 2139 components: - pos: -25.444056,-24.257809 parent: 2 type: Transform - proto: BookAtmosAirAlarms entities: - - uid: 2138 + - uid: 2140 components: - pos: -24.358501,-36.435444 parent: 2 type: Transform - proto: BookAtmosDistro entities: - - uid: 2139 + - uid: 2141 components: - pos: -24.608501,-36.51357 parent: 2 type: Transform - proto: BookAtmosVentsMore entities: - - uid: 2140 + - uid: 2142 components: - pos: -25.155376,-36.48232 parent: 2 type: Transform - proto: BookAtmosWaste entities: - - uid: 2141 + - uid: 2143 components: - pos: -25.389751,-36.57607 parent: 2 type: Transform - proto: BookChefGaming entities: - - uid: 2142 + - uid: 2144 components: - pos: -8.120271,14.578207 parent: 2 type: Transform - proto: BookDetective entities: - - uid: 2143 + - uid: 2145 components: - pos: 8.262031,-12.4473095 parent: 2 type: Transform - - uid: 2144 + - uid: 2146 components: - pos: 40.304634,21.43983 parent: 2 type: Transform - proto: BookEscalation entities: - - uid: 2145 + - uid: 2147 components: - pos: 9.419705,-6.507422 parent: 2 type: Transform - proto: BookEscalationSecurity entities: - - uid: 2146 + - uid: 2148 components: - pos: 15.607252,21.663286 parent: 2 type: Transform - proto: BookFishing entities: - - uid: 2147 + - uid: 2149 components: - pos: 40.53901,21.517956 parent: 2 type: Transform - proto: BookGnominomicon entities: - - uid: 2148 + - uid: 2150 components: - pos: 8.605781,-12.4316845 parent: 2 type: Transform - proto: BookRandom entities: - - uid: 2149 + - uid: 2151 components: - pos: 40.523384,18.611706 parent: 2 type: Transform - - uid: 2150 + - uid: 2152 components: - pos: 38.492134,18.674206 parent: 2 type: Transform - - uid: 2151 + - uid: 2153 components: - pos: 38.429634,21.580456 parent: 2 type: Transform - - uid: 2152 + - uid: 2154 components: - pos: -33.495968,-67.45002 parent: 2 type: Transform - proto: Bookshelf entities: - - uid: 2153 + - uid: 2155 components: - pos: 6.5,-9.5 parent: 2 type: Transform - proto: BookshelfFilled entities: - - uid: 2154 + - uid: 2156 components: - pos: 6.5,-10.5 parent: 2 type: Transform - - uid: 2155 + - uid: 2157 components: - pos: 41.5,21.5 parent: 2 type: Transform - - uid: 2156 + - uid: 2158 components: - pos: 39.5,21.5 parent: 2 type: Transform - - uid: 2157 + - uid: 2159 components: - pos: 41.5,18.5 parent: 2 type: Transform - - uid: 2158 + - uid: 2160 components: - pos: 39.5,18.5 parent: 2 type: Transform - - uid: 2159 + - uid: 2161 components: - pos: 12.5,-10.5 parent: 2 type: Transform - - uid: 2160 + - uid: 2162 components: - pos: 8.5,-10.5 parent: 2 type: Transform - - uid: 2161 + - uid: 2163 components: - pos: 11.5,-12.5 parent: 2 type: Transform - - uid: 2162 + - uid: 2164 components: - pos: 12.5,-12.5 parent: 2 type: Transform - - uid: 2163 + - uid: 2165 components: - pos: 13.5,-12.5 parent: 2 type: Transform - - uid: 2164 + - uid: 2166 components: - pos: 7.5,-4.5 parent: 2 type: Transform - - uid: 2165 + - uid: 2167 components: - pos: 7.5,-6.5 parent: 2 type: Transform - - uid: 2166 + - uid: 2168 components: - pos: 11.5,-10.5 parent: 2 type: Transform - - uid: 2167 + - uid: 2169 components: - pos: 13.5,-10.5 parent: 2 type: Transform - proto: BookWatched entities: - - uid: 2168 + - uid: 2170 components: - rot: 1.5707963267948966 rad pos: 3.4497375,-9.559602 @@ -23412,113 +23460,118 @@ entities: type: Transform - proto: BoozeDispenser entities: - - uid: 2169 + - uid: 2171 components: - rot: -1.5707963267948966 rad pos: 18.5,12.5 parent: 2 type: Transform - - uid: 2170 + - uid: 2172 components: - pos: -43.5,-74.5 parent: 2 type: Transform - - uid: 2171 + - uid: 2173 components: - pos: 38.5,51.5 parent: 2 type: Transform - - uid: 2172 + - uid: 2174 components: - rot: -1.5707963267948966 rad pos: 29.5,-35.5 parent: 2 type: Transform + - uid: 2175 + components: + - pos: 39.5,63.5 + parent: 2 + type: Transform - proto: BorgCharger entities: - - uid: 2173 + - uid: 2176 components: - pos: 16.5,-3.5 parent: 2 type: Transform - - uid: 2174 + - uid: 2177 components: - pos: -22.5,-6.5 parent: 2 type: Transform - - uid: 2175 + - uid: 2178 components: - pos: 2.5,59.5 parent: 2 type: Transform - - uid: 2176 + - uid: 2179 components: - pos: 49.5,-9.5 parent: 2 type: Transform - - uid: 2177 + - uid: 2180 components: - pos: 70.5,-43.5 parent: 2 type: Transform - proto: BoxBeaker entities: - - uid: 2178 + - uid: 2181 components: - pos: 7.6496778,-46.860195 parent: 2 type: Transform - - uid: 2179 + - uid: 2182 components: - pos: -26.122566,-84.458 parent: 2 type: Transform - - uid: 2180 + - uid: 2183 components: - pos: 42.431667,-35.402893 parent: 2 type: Transform - - uid: 2181 + - uid: 2184 components: - pos: 8.7782135,-62.351368 parent: 2 type: Transform - proto: BoxBeanbag entities: - - uid: 2182 + - uid: 2185 components: - pos: 22.537981,13.588842 parent: 2 type: Transform - proto: BoxBodyBag entities: - - uid: 2183 + - uid: 2186 components: - pos: -11.506837,-67.45136 parent: 2 type: Transform - proto: BoxCardboard entities: - - uid: 2184 + - uid: 2187 components: - pos: 57.684505,34.726276 parent: 2 type: Transform - - uid: 2185 + - uid: 2188 components: - pos: 57.26263,34.39815 parent: 2 type: Transform - proto: BoxFlashbang entities: - - uid: 2186 + - uid: 2189 components: - pos: 24.642923,23.542374 parent: 2 type: Transform - proto: BoxFolderBase entities: - - uid: 2187 + - uid: 2190 components: - rot: 1.5707963267948966 rad pos: 37.60159,-5.001878 @@ -23526,7 +23579,7 @@ entities: type: Transform - proto: BoxFolderBlack entities: - - uid: 2188 + - uid: 2191 components: - rot: 1.5707963267948966 rad pos: 37.617214,-4.673753 @@ -23534,20 +23587,20 @@ entities: type: Transform - proto: BoxFolderBlue entities: - - uid: 2189 + - uid: 2192 components: - pos: 38.992214,-2.4237523 parent: 2 type: Transform - proto: BoxFolderGrey entities: - - uid: 2190 + - uid: 2193 components: - rot: 1.5707963267948966 rad pos: 51.514782,-42.450638 parent: 2 type: Transform - - uid: 2191 + - uid: 2194 components: - rot: 3.141592653589793 rad pos: -23.516235,11.607702 @@ -23555,98 +23608,98 @@ entities: type: Transform - proto: BoxFolderRed entities: - - uid: 2192 + - uid: 2195 components: - pos: 20.994316,-12.4294405 parent: 2 type: Transform - - uid: 2193 + - uid: 2196 components: - pos: 39.22659,-2.4550023 parent: 2 type: Transform - proto: BoxFolderWhite entities: - - uid: 2194 + - uid: 2197 components: - rot: -1.5707963267948966 rad pos: -22.629791,-70.464714 parent: 2 type: Transform - - uid: 2195 + - uid: 2198 components: - pos: -5.7449856,-48.471176 parent: 2 type: Transform - - uid: 2196 + - uid: 2199 components: - pos: -5.5262356,-48.408676 parent: 2 type: Transform - proto: BoxFolderYellow entities: - - uid: 2197 + - uid: 2200 components: - rot: 1.5707963267948966 rad pos: 37.554714,-4.439378 parent: 2 type: Transform - - uid: 2198 + - uid: 2201 components: - rot: 1.5707963267948966 rad pos: 51.655407,-42.653763 parent: 2 type: Transform - - uid: 2199 + - uid: 2202 components: - rot: 3.141592653589793 rad pos: -23.71936,11.498327 parent: 2 type: Transform - - uid: 2200 + - uid: 2203 components: - pos: 55.534363,-40.44579 parent: 2 type: Transform - proto: BoxForensicPad entities: - - uid: 2201 + - uid: 2204 components: - pos: 22.673187,-14.497248 parent: 2 type: Transform - proto: BoxHandcuff entities: - - uid: 2202 + - uid: 2205 components: - pos: 2.4978194,19.97727 parent: 2 type: Transform - - uid: 2203 + - uid: 2206 components: - pos: 24.439798,23.714249 parent: 2 type: Transform - proto: BoxHug entities: - - uid: 2204 + - uid: 2207 components: - pos: 21.518953,53.54002 parent: 2 type: Transform - - uid: 2205 + - uid: 2208 components: - pos: 2.5439682,-20.063549 parent: 2 type: Transform - proto: BoxingBell entities: - - uid: 2206 + - uid: 2209 components: - pos: 28.5,5.5 parent: 2 type: Transform - - uid: 2207 + - uid: 2210 components: - rot: 1.5707963267948966 rad pos: -46.5,-85.5 @@ -23654,223 +23707,223 @@ entities: type: Transform - proto: BoxLatexGloves entities: - - uid: 2208 + - uid: 2211 components: - pos: 8.430597,-62.372696 parent: 2 type: Transform - - uid: 2209 + - uid: 2212 components: - pos: -22.700918,-76.44757 parent: 2 type: Transform - - uid: 2210 + - uid: 2213 components: - pos: 69.515594,-49.409985 parent: 2 type: Transform - - uid: 2211 + - uid: 2214 components: - pos: -0.28067696,-61.388348 parent: 2 type: Transform - proto: BoxLightbulb entities: - - uid: 2212 + - uid: 2215 components: - pos: -39.570137,-77.31351 parent: 2 type: Transform - proto: BoxLightMixed entities: - - uid: 2213 + - uid: 2216 components: - pos: 39.546867,49.67635 parent: 2 type: Transform - - uid: 2214 + - uid: 2217 components: - pos: -23.56665,-100.24527 parent: 2 type: Transform - proto: BoxLighttube entities: - - uid: 2215 + - uid: 2218 components: - pos: -40.05791,25.682219 parent: 2 type: Transform - proto: BoxMousetrap entities: - - uid: 2216 + - uid: 2219 components: - pos: -7.3951936,-15.377466 parent: 2 type: Transform - - uid: 2217 + - uid: 2220 components: - pos: 2.3209906,11.720218 parent: 2 type: Transform - proto: BoxMouthSwab entities: - - uid: 2218 + - uid: 2221 components: - pos: 10.414972,-62.341446 parent: 2 type: Transform - - uid: 2219 + - uid: 2222 components: - pos: -22.524687,-71.12971 parent: 2 type: Transform - - uid: 2220 + - uid: 2223 components: - pos: -22.357168,-76.22882 parent: 2 type: Transform - proto: BoxPDA entities: - - uid: 2221 + - uid: 2224 components: - pos: 4.5991206,-7.254335 parent: 2 type: Transform - proto: BoxPillCanister entities: - - uid: 2222 + - uid: 2225 components: - pos: -25.106941,-84.458755 parent: 2 type: Transform - - uid: 2223 + - uid: 2226 components: - pos: -8.487805,-33.36571 parent: 2 type: Transform - - uid: 2224 + - uid: 2227 components: - pos: 7.6496778,-47.40707 parent: 2 type: Transform - - uid: 2225 + - uid: 2228 components: - pos: 10.629656,-62.107815 parent: 2 type: Transform - proto: BoxShotgunSlug entities: - - uid: 2226 + - uid: 2229 components: - pos: 27.073633,32.655933 parent: 2 type: Transform - - uid: 2227 + - uid: 2230 components: - pos: 27.052765,32.658382 parent: 2 type: Transform - proto: BoxSterileMask entities: - - uid: 2228 + - uid: 2231 components: - pos: -0.45298922,-61.30278 parent: 2 type: Transform - - uid: 2229 + - uid: 2232 components: - pos: -22.622793,-78.244446 parent: 2 type: Transform - - uid: 2230 + - uid: 2233 components: - pos: -20.619028,-78.321075 parent: 2 type: Transform - proto: BoxSyringe entities: - - uid: 2231 + - uid: 2234 components: - pos: 7.3840528,-47.15707 parent: 2 type: Transform - - uid: 2232 + - uid: 2235 components: - pos: 8.848293,-62.473377 parent: 2 type: Transform - - uid: 2233 + - uid: 2236 components: - pos: -22.337778,-78.539825 parent: 2 type: Transform - - uid: 2234 + - uid: 2237 components: - pos: -20.634653,-77.352325 parent: 2 type: Transform - - uid: 2235 + - uid: 2238 components: - pos: -26.571459,-84.31156 parent: 2 type: Transform - - uid: 2236 + - uid: 2239 components: - pos: -8.384587,-32.982723 parent: 2 type: Transform - proto: BoxZiptie entities: - - uid: 2237 + - uid: 2240 components: - pos: 15.609102,22.64932 parent: 2 type: Transform - proto: BrbSign entities: - - uid: 2238 + - uid: 2241 components: - pos: -28.403494,21.398111 parent: 2 type: Transform - - uid: 2239 + - uid: 2242 components: - pos: 4.567957,-7.561912 parent: 2 type: Transform - proto: BriefcaseBrown entities: - - uid: 2240 + - uid: 2243 components: - pos: 62.36704,-10.4423 parent: 2 type: Transform - - uid: 2241 + - uid: 2244 components: - rot: 1.5707963267948966 rad pos: -22.463455,11.6035385 parent: 2 type: Transform - - uid: 2242 + - uid: 2245 components: - pos: -43.482876,-88.91509 parent: 2 type: Transform - proto: BriefcaseBrownFilled entities: - - uid: 2243 + - uid: 2246 components: - pos: 43.51077,-2.4121785 parent: 2 type: Transform - - uid: 2244 + - uid: 2247 components: - pos: 32.38076,-48.30607 parent: 2 type: Transform - proto: BrigTimer entities: - - uid: 2245 + - uid: 2248 components: - name: cell 3 brig timer type: MetaData @@ -23879,12 +23932,12 @@ entities: parent: 2 type: Transform - linkedPorts: - 30831: + 31035: - Start: Close - Timer: AutoClose - Timer: Open type: DeviceLinkSource - - uid: 2246 + - uid: 2249 components: - name: cell 1 brig timer type: MetaData @@ -23893,12 +23946,12 @@ entities: parent: 2 type: Transform - linkedPorts: - 30823: + 31027: - Start: Close - Timer: AutoClose - Timer: Open type: DeviceLinkSource - - uid: 2247 + - uid: 2250 components: - name: cell 2 brig timer type: MetaData @@ -23907,12 +23960,12 @@ entities: parent: 2 type: Transform - linkedPorts: - 30828: + 31032: - Start: Close - Timer: AutoClose - Timer: Open type: DeviceLinkSource - - uid: 2248 + - uid: 2251 components: - name: cell 4 brig timer type: MetaData @@ -23921,12 +23974,12 @@ entities: parent: 2 type: Transform - linkedPorts: - 30824: + 31028: - Start: Close - Timer: AutoClose - Timer: Open type: DeviceLinkSource - - uid: 2249 + - uid: 2252 components: - name: cell 5 brig timer type: MetaData @@ -23935,21 +23988,21 @@ entities: parent: 2 type: Transform - linkedPorts: - 30829: + 31033: - Start: Close - Timer: AutoClose - Timer: Open type: DeviceLinkSource - proto: BrigTimerElectronics entities: - - uid: 2250 + - uid: 2253 components: - pos: -8.633084,38.341637 parent: 2 type: Transform - proto: BrokenBottle entities: - - uid: 2251 + - uid: 2254 components: - rot: -1.5707963267948966 rad pos: -6.571364,-73.41078 @@ -23957,57 +24010,57 @@ entities: type: Transform - proto: Brutepack entities: - - uid: 2252 + - uid: 2255 components: - pos: -9.633343,-56.47309 parent: 2 type: Transform - - uid: 2253 + - uid: 2256 components: - pos: -10.641302,-3.848185 parent: 2 type: Transform - - uid: 2254 + - uid: 2257 components: - pos: -10.266302,-3.785685 parent: 2 type: Transform - - uid: 2255 + - uid: 2258 components: - pos: -0.6646667,-56.50434 parent: 2 type: Transform - - uid: 2256 + - uid: 2259 components: - pos: -3.5865417,-56.488716 parent: 2 type: Transform - - uid: 2257 + - uid: 2260 components: - pos: -6.5713716,-56.519966 parent: 2 type: Transform - - uid: 2258 + - uid: 2261 components: - pos: -12.617692,-56.44184 parent: 2 type: Transform - - uid: 2259 + - uid: 2262 components: - pos: 30.05692,4.5786 parent: 2 type: Transform - - uid: 2260 + - uid: 2263 components: - pos: -6.3699856,-49.096176 parent: 2 type: Transform - - uid: 2261 + - uid: 2264 components: - pos: -6.6512356,-49.408676 parent: 2 type: Transform - - uid: 2262 + - uid: 2265 components: - rot: -1.5707963267948966 rad pos: 47.410034,4.616682 @@ -24015,60 +24068,60 @@ entities: type: Transform - proto: Bucket entities: - - uid: 2263 + - uid: 2266 components: - pos: -7.4822392,14.606249 parent: 2 type: Transform - - uid: 2264 + - uid: 2267 components: - pos: 2.6959906,11.392093 parent: 2 type: Transform - - uid: 2265 + - uid: 2268 components: - pos: 55.336075,17.733736 parent: 2 type: Transform - - uid: 2266 + - uid: 2269 components: - pos: -29.554869,3.5549593 parent: 2 type: Transform - - uid: 2267 + - uid: 2270 components: - pos: 13.468333,-66.41357 parent: 2 type: Transform - - uid: 2268 + - uid: 2271 components: - pos: 55.53834,27.595942 parent: 2 type: Transform - - uid: 2269 + - uid: 2272 components: - pos: -4.262462,56.45376 parent: 2 type: Transform - - uid: 2270 + - uid: 2273 components: - pos: -4.167221,5.7952065 parent: 2 type: Transform - - uid: 2271 + - uid: 2274 components: - pos: -4.417221,5.4827065 parent: 2 type: Transform - proto: BulletFoam entities: - - uid: 2272 + - uid: 2275 components: - rot: -1.5707963267948966 rad pos: -11.707516,41.19452 parent: 2 type: Transform - - uid: 2273 + - uid: 2276 components: - rot: 3.141592653589793 rad pos: -11.879391,41.47577 @@ -24076,21661 +24129,21646 @@ entities: type: Transform - proto: BungoSeeds entities: - - uid: 2274 + - uid: 2277 components: - pos: -50.533592,-27.38226 parent: 2 type: Transform - proto: CableApcExtension entities: - - uid: 2275 + - uid: 2278 components: - pos: 4.5,-11.5 parent: 2 type: Transform - - uid: 2276 + - uid: 2279 components: - pos: 21.5,-39.5 parent: 2 type: Transform - - uid: 2277 + - uid: 2280 components: - pos: 4.5,-6.5 parent: 2 type: Transform - - uid: 2278 + - uid: 2281 components: - pos: -16.5,11.5 parent: 2 type: Transform - - uid: 2279 + - uid: 2282 components: - pos: -66.5,-35.5 parent: 2 type: Transform - - uid: 2280 + - uid: 2283 components: - pos: -65.5,-38.5 parent: 2 type: Transform - - uid: 2281 + - uid: 2284 components: - pos: -7.5,8.5 parent: 2 type: Transform - - uid: 2282 + - uid: 2285 components: - pos: -12.5,-33.5 parent: 2 type: Transform - - uid: 2283 + - uid: 2286 components: - pos: 18.5,-52.5 parent: 2 type: Transform - - uid: 2284 + - uid: 2287 components: - pos: -5.5,1.5 parent: 2 type: Transform - - uid: 2285 + - uid: 2288 components: - pos: -7.5,-26.5 parent: 2 type: Transform - - uid: 2286 + - uid: 2289 components: - pos: 33.5,-17.5 parent: 2 type: Transform - - uid: 2287 + - uid: 2290 components: - pos: 15.5,-32.5 parent: 2 type: Transform - - uid: 2288 + - uid: 2291 components: - pos: -10.5,-26.5 parent: 2 type: Transform - - uid: 2289 + - uid: 2292 components: - pos: 14.5,-51.5 parent: 2 type: Transform - - uid: 2290 + - uid: 2293 components: - pos: 27.5,-60.5 parent: 2 type: Transform - - uid: 2291 + - uid: 2294 components: - pos: 7.5,-8.5 parent: 2 type: Transform - - uid: 2292 + - uid: 2295 components: - pos: 7.5,-8.5 parent: 2 type: Transform - - uid: 2293 + - uid: 2296 components: - pos: 15.5,-18.5 parent: 2 type: Transform - - uid: 2294 + - uid: 2297 components: - pos: -47.5,38.5 parent: 2 type: Transform - - uid: 2295 + - uid: 2298 components: - pos: 0.5,-41.5 parent: 2 type: Transform - - uid: 2296 + - uid: 2299 components: - pos: -1.5,-41.5 parent: 2 type: Transform - - uid: 2297 + - uid: 2300 components: - pos: 15.5,-10.5 parent: 2 type: Transform - - uid: 2298 + - uid: 2301 components: - pos: 22.5,2.5 parent: 2 type: Transform - - uid: 2299 + - uid: 2302 components: - pos: -4.5,-41.5 parent: 2 type: Transform - - uid: 2300 + - uid: 2303 components: - pos: 32.5,-11.5 parent: 2 type: Transform - - uid: 2301 + - uid: 2304 components: - pos: -6.5,-75.5 parent: 2 type: Transform - - uid: 2302 + - uid: 2305 components: - pos: 32.5,-13.5 parent: 2 type: Transform - - uid: 2303 + - uid: 2306 components: - pos: 15.5,-47.5 parent: 2 type: Transform - - uid: 2304 + - uid: 2307 components: - pos: 6.5,-65.5 parent: 2 type: Transform - - uid: 2305 + - uid: 2308 components: - pos: -4.5,-37.5 parent: 2 type: Transform - - uid: 2306 + - uid: 2309 components: - pos: 8.5,-17.5 parent: 2 type: Transform - - uid: 2307 + - uid: 2310 components: - pos: -12.5,-45.5 parent: 2 type: Transform - - uid: 2308 + - uid: 2311 components: - pos: 14.5,-50.5 parent: 2 type: Transform - - uid: 2309 + - uid: 2312 components: - pos: 15.5,-52.5 parent: 2 type: Transform - - uid: 2310 + - uid: 2313 components: - pos: 27.5,-47.5 parent: 2 type: Transform - - uid: 2311 + - uid: 2314 components: - pos: 31.5,-16.5 parent: 2 type: Transform - - uid: 2312 + - uid: 2315 components: - pos: 16.5,-45.5 parent: 2 type: Transform - - uid: 2313 + - uid: 2316 components: - pos: 20.5,-52.5 parent: 2 type: Transform - - uid: 2314 + - uid: 2317 components: - pos: 21.5,-17.5 parent: 2 type: Transform - - uid: 2315 + - uid: 2318 components: - pos: 15.5,-17.5 parent: 2 type: Transform - - uid: 2316 + - uid: 2319 components: - pos: 16.5,-17.5 parent: 2 type: Transform - - uid: 2317 + - uid: 2320 components: - pos: -8.5,3.5 parent: 2 type: Transform - - uid: 2318 + - uid: 2321 components: - pos: -5.5,4.5 parent: 2 type: Transform - - uid: 2319 + - uid: 2322 components: - pos: 30.5,-62.5 parent: 2 type: Transform - - uid: 2320 + - uid: 2323 components: - pos: 15.5,-33.5 parent: 2 type: Transform - - uid: 2321 + - uid: 2324 components: - pos: 18.5,-17.5 parent: 2 type: Transform - - uid: 2322 + - uid: 2325 components: - pos: 20.5,-53.5 parent: 2 type: Transform - - uid: 2323 + - uid: 2326 components: - pos: 6.5,-71.5 parent: 2 type: Transform - - uid: 2324 + - uid: 2327 components: - pos: 19.5,-52.5 parent: 2 type: Transform - - uid: 2325 + - uid: 2328 components: - pos: 21.5,-8.5 parent: 2 type: Transform - - uid: 2326 + - uid: 2329 components: - pos: 25.5,-57.5 parent: 2 type: Transform - - uid: 2327 + - uid: 2330 components: - pos: 15.5,-34.5 parent: 2 type: Transform - - uid: 2328 + - uid: 2331 components: - pos: -0.5,-54.5 parent: 2 type: Transform - - uid: 2329 + - uid: 2332 components: - pos: 0.5,10.5 parent: 2 type: Transform - - uid: 2330 + - uid: 2333 components: - pos: 5.5,14.5 parent: 2 type: Transform - - uid: 2331 + - uid: 2334 components: - pos: -1.5,14.5 parent: 2 type: Transform - - uid: 2332 + - uid: 2335 components: - pos: 24.5,2.5 parent: 2 type: Transform - - uid: 2333 + - uid: 2336 components: - pos: 32.5,0.5 parent: 2 type: Transform - - uid: 2334 + - uid: 2337 components: - pos: 33.5,2.5 parent: 2 type: Transform - - uid: 2335 + - uid: 2338 components: - pos: 5.5,-10.5 parent: 2 type: Transform - - uid: 2336 + - uid: 2339 components: - pos: 0.5,-10.5 parent: 2 type: Transform - - uid: 2337 + - uid: 2340 components: - pos: 10.5,-6.5 parent: 2 type: Transform - - uid: 2338 + - uid: 2341 components: - pos: -3.5,11.5 parent: 2 type: Transform - - uid: 2339 + - uid: 2342 components: - pos: -4.5,6.5 parent: 2 type: Transform - - uid: 2340 + - uid: 2343 components: - pos: -8.5,9.5 parent: 2 type: Transform - - uid: 2341 + - uid: 2344 components: - pos: -4.5,-47.5 parent: 2 type: Transform - - uid: 2342 + - uid: 2345 components: - pos: 1.5,-48.5 parent: 2 type: Transform - - uid: 2343 + - uid: 2346 components: - pos: -1.5,-48.5 parent: 2 type: Transform - - uid: 2344 + - uid: 2347 components: - pos: -1.5,-50.5 parent: 2 type: Transform - - uid: 2345 + - uid: 2348 components: - pos: 4.5,-54.5 parent: 2 type: Transform - - uid: 2346 + - uid: 2349 components: - pos: 0.5,-54.5 parent: 2 type: Transform - - uid: 2347 + - uid: 2350 components: - pos: -15.5,-61.5 parent: 2 type: Transform - - uid: 2348 + - uid: 2351 components: - pos: -6.5,-62.5 parent: 2 type: Transform - - uid: 2349 + - uid: 2352 components: - pos: -8.5,6.5 parent: 2 type: Transform - - uid: 2350 + - uid: 2353 components: - pos: -0.5,14.5 parent: 2 type: Transform - - uid: 2351 + - uid: 2354 components: - pos: -5.5,-42.5 parent: 2 type: Transform - - uid: 2352 + - uid: 2355 components: - pos: 36.5,18.5 parent: 2 type: Transform - - uid: 2353 + - uid: 2356 components: - pos: 29.5,32.5 parent: 2 type: Transform - - uid: 2354 + - uid: 2357 components: - pos: 62.5,-6.5 parent: 2 type: Transform - - uid: 2355 + - uid: 2358 components: - pos: -1.5,-51.5 parent: 2 type: Transform - - uid: 2356 + - uid: 2359 components: - pos: 6.5,-48.5 parent: 2 type: Transform - - uid: 2357 + - uid: 2360 components: - pos: -1.5,-45.5 parent: 2 type: Transform - - uid: 2358 + - uid: 2361 components: - pos: -3.5,-52.5 parent: 2 type: Transform - - uid: 2359 + - uid: 2362 components: - pos: -4.5,-54.5 parent: 2 type: Transform - - uid: 2360 + - uid: 2363 components: - pos: -7.5,-54.5 parent: 2 type: Transform - - uid: 2361 + - uid: 2364 components: - pos: -9.5,-54.5 parent: 2 type: Transform - - uid: 2362 + - uid: 2365 components: - pos: 1.5,-54.5 parent: 2 type: Transform - - uid: 2363 + - uid: 2366 components: - pos: 2.5,-60.5 parent: 2 type: Transform - - uid: 2364 + - uid: 2367 components: - pos: -13.5,-62.5 parent: 2 type: Transform - - uid: 2365 + - uid: 2368 components: - pos: -14.5,-66.5 parent: 2 type: Transform - - uid: 2366 + - uid: 2369 components: - pos: -15.5,-65.5 parent: 2 type: Transform - - uid: 2367 + - uid: 2370 components: - pos: -15.5,-54.5 parent: 2 type: Transform - - uid: 2368 + - uid: 2371 components: - pos: 2.5,-70.5 parent: 2 type: Transform - - uid: 2369 + - uid: 2372 components: - pos: 16.5,-29.5 parent: 2 type: Transform - - uid: 2370 + - uid: 2373 components: - pos: 1.5,-10.5 parent: 2 type: Transform - - uid: 2371 + - uid: 2374 components: - pos: 4.5,-10.5 parent: 2 type: Transform - - uid: 2372 + - uid: 2375 components: - pos: 11.5,-17.5 parent: 2 type: Transform - - uid: 2373 + - uid: 2376 components: - pos: 2.5,-26.5 parent: 2 type: Transform - - uid: 2374 + - uid: 2377 components: - pos: -10.5,-21.5 parent: 2 type: Transform - - uid: 2375 + - uid: 2378 components: - pos: -8.5,-45.5 parent: 2 type: Transform - - uid: 2376 + - uid: 2379 components: - pos: 3.5,-62.5 parent: 2 type: Transform - - uid: 2377 + - uid: 2380 components: - pos: -5.5,-60.5 parent: 2 type: Transform - - uid: 2378 + - uid: 2381 components: - pos: -1.5,-46.5 parent: 2 type: Transform - - uid: 2379 + - uid: 2382 components: - pos: -2.5,-45.5 parent: 2 type: Transform - - uid: 2380 + - uid: 2383 components: - pos: 12.5,2.5 parent: 2 type: Transform - - uid: 2381 + - uid: 2384 components: - pos: 8.5,2.5 parent: 2 type: Transform - - uid: 2382 + - uid: 2385 components: - pos: 4.5,0.5 parent: 2 type: Transform - - uid: 2383 + - uid: 2386 components: - pos: -12.5,-22.5 parent: 2 type: Transform - - uid: 2384 + - uid: 2387 components: - pos: -13.5,-22.5 parent: 2 type: Transform - - uid: 2385 + - uid: 2388 components: - pos: 30.5,-32.5 parent: 2 type: Transform - - uid: 2386 + - uid: 2389 components: - pos: 22.5,-29.5 parent: 2 type: Transform - - uid: 2387 + - uid: 2390 components: - pos: 20.5,-23.5 parent: 2 type: Transform - - uid: 2388 + - uid: 2391 components: - pos: 29.5,-28.5 parent: 2 type: Transform - - uid: 2389 + - uid: 2392 components: - pos: 25.5,-23.5 parent: 2 type: Transform - - uid: 2390 + - uid: 2393 components: - pos: 9.5,-6.5 parent: 2 type: Transform - - uid: 2391 + - uid: 2394 components: - pos: 8.5,-6.5 parent: 2 type: Transform - - uid: 2392 + - uid: 2395 components: - pos: 8.5,-6.5 parent: 2 type: Transform - - uid: 2393 + - uid: 2396 components: - pos: 8.5,-6.5 parent: 2 type: Transform - - uid: 2394 + - uid: 2397 components: - pos: 7.5,-8.5 parent: 2 type: Transform - - uid: 2395 + - uid: 2398 components: - pos: 7.5,-7.5 parent: 2 type: Transform - - uid: 2396 + - uid: 2399 components: - pos: 4.5,-41.5 parent: 2 type: Transform - - uid: 2397 + - uid: 2400 components: - pos: -6.5,-74.5 parent: 2 type: Transform - - uid: 2398 + - uid: 2401 components: - pos: -8.5,-75.5 parent: 2 type: Transform - - uid: 2399 + - uid: 2402 components: - pos: -10.5,-75.5 parent: 2 type: Transform - - uid: 2400 + - uid: 2403 components: - pos: 10.5,-50.5 parent: 2 type: Transform - - uid: 2401 + - uid: 2404 components: - pos: 20.5,-46.5 parent: 2 type: Transform - - uid: 2402 + - uid: 2405 components: - pos: 18.5,-48.5 parent: 2 type: Transform - - uid: 2403 + - uid: 2406 components: - pos: 21.5,-46.5 parent: 2 type: Transform - - uid: 2404 + - uid: 2407 components: - pos: 21.5,-50.5 parent: 2 type: Transform - - uid: 2405 + - uid: 2408 components: - pos: 21.5,-53.5 parent: 2 type: Transform - - uid: 2406 + - uid: 2409 components: - pos: 23.5,-53.5 parent: 2 type: Transform - - uid: 2407 + - uid: 2410 components: - pos: 25.5,-52.5 parent: 2 type: Transform - - uid: 2408 + - uid: 2411 components: - pos: -4.5,-16.5 parent: 2 type: Transform - - uid: 2409 + - uid: 2412 components: - pos: 6.5,8.5 parent: 2 type: Transform - - uid: 2410 + - uid: 2413 components: - pos: 46.5,-22.5 parent: 2 type: Transform - - uid: 2411 + - uid: 2414 components: - pos: 0.5,14.5 parent: 2 type: Transform - - uid: 2412 + - uid: 2415 components: - pos: 9.5,-26.5 parent: 2 type: Transform - - uid: 2413 + - uid: 2416 components: - pos: 18.5,-29.5 parent: 2 type: Transform - - uid: 2414 + - uid: 2417 components: - pos: -8.5,-6.5 parent: 2 type: Transform - - uid: 2415 + - uid: 2418 components: - pos: -4.5,14.5 parent: 2 type: Transform - - uid: 2416 + - uid: 2419 components: - pos: -5.5,14.5 parent: 2 type: Transform - - uid: 2417 + - uid: 2420 components: - pos: 3.5,-46.5 parent: 2 type: Transform - - uid: 2418 + - uid: 2421 components: - pos: 26.5,2.5 parent: 2 type: Transform - - uid: 2419 + - uid: 2422 components: - pos: -33.5,-70.5 parent: 2 type: Transform - - uid: 2420 + - uid: 2423 components: - pos: -34.5,-70.5 parent: 2 type: Transform - - uid: 2421 + - uid: 2424 components: - pos: -12.5,-26.5 parent: 2 type: Transform - - uid: 2422 + - uid: 2425 components: - pos: 31.5,-32.5 parent: 2 type: Transform - - uid: 2423 + - uid: 2426 components: - pos: 24.5,4.5 parent: 2 type: Transform - - uid: 2424 + - uid: 2427 components: - pos: -3.5,-74.5 parent: 2 type: Transform - - uid: 2425 + - uid: 2428 components: - pos: 8.5,-42.5 parent: 2 type: Transform - - uid: 2426 + - uid: 2429 components: - pos: 8.5,-65.5 parent: 2 type: Transform - - uid: 2427 + - uid: 2430 components: - pos: -8.5,-66.5 parent: 2 type: Transform - - uid: 2428 + - uid: 2431 components: - pos: 26.5,-1.5 parent: 2 type: Transform - - uid: 2429 + - uid: 2432 components: - pos: -9.5,-4.5 parent: 2 type: Transform - - uid: 2430 + - uid: 2433 components: - pos: -7.5,-71.5 parent: 2 type: Transform - - uid: 2431 + - uid: 2434 components: - pos: -12.5,-75.5 parent: 2 type: Transform - - uid: 2432 + - uid: 2435 components: - pos: -8.5,-71.5 parent: 2 type: Transform - - uid: 2433 + - uid: 2436 components: - pos: -8.5,4.5 parent: 2 type: Transform - - uid: 2434 + - uid: 2437 components: - pos: -14.5,-61.5 parent: 2 type: Transform - - uid: 2435 + - uid: 2438 components: - pos: -14.5,-55.5 parent: 2 type: Transform - - uid: 2436 + - uid: 2439 components: - pos: 12.5,-17.5 parent: 2 type: Transform - - uid: 2437 + - uid: 2440 components: - pos: 24.5,-1.5 parent: 2 type: Transform - - uid: 2438 + - uid: 2441 components: - pos: 46.5,-27.5 parent: 2 type: Transform - - uid: 2439 + - uid: 2442 components: - pos: 50.5,8.5 parent: 2 type: Transform - - uid: 2440 + - uid: 2443 components: - pos: 50.5,7.5 parent: 2 type: Transform - - uid: 2441 + - uid: 2444 components: - pos: -16.5,-16.5 parent: 2 type: Transform - - uid: 2442 + - uid: 2445 components: - pos: -4.5,-40.5 parent: 2 type: Transform - - uid: 2443 + - uid: 2446 components: - pos: 30.5,-72.5 parent: 2 type: Transform - - uid: 2444 + - uid: 2447 components: - pos: -9.5,-61.5 parent: 2 type: Transform - - uid: 2445 + - uid: 2448 components: - pos: -13.5,-64.5 parent: 2 type: Transform - - uid: 2446 + - uid: 2449 components: - pos: -16.5,-54.5 parent: 2 type: Transform - - uid: 2447 + - uid: 2450 components: - pos: -17.5,-54.5 parent: 2 type: Transform - - uid: 2448 + - uid: 2451 components: - pos: -17.5,-55.5 parent: 2 type: Transform - - uid: 2449 + - uid: 2452 components: - pos: -18.5,-55.5 parent: 2 type: Transform - - uid: 2450 + - uid: 2453 components: - pos: -6.5,-64.5 parent: 2 type: Transform - - uid: 2451 + - uid: 2454 components: - pos: -6.5,-65.5 parent: 2 type: Transform - - uid: 2452 + - uid: 2455 components: - pos: -1.5,-54.5 parent: 2 type: Transform - - uid: 2453 + - uid: 2456 components: - pos: -4.5,-48.5 parent: 2 type: Transform - - uid: 2454 + - uid: 2457 components: - pos: 25.5,-14.5 parent: 2 type: Transform - - uid: 2455 + - uid: 2458 components: - pos: 25.5,-7.5 parent: 2 type: Transform - - uid: 2456 + - uid: 2459 components: - pos: 24.5,-6.5 parent: 2 type: Transform - - uid: 2457 + - uid: 2460 components: - pos: 18.5,-12.5 parent: 2 type: Transform - - uid: 2458 + - uid: 2461 components: - pos: 35.5,-40.5 parent: 2 type: Transform - - uid: 2459 + - uid: 2462 components: - pos: 17.5,-53.5 parent: 2 type: Transform - - uid: 2460 + - uid: 2463 components: - pos: 9.5,-17.5 parent: 2 type: Transform - - uid: 2461 + - uid: 2464 components: - pos: 15.5,-28.5 parent: 2 type: Transform - - uid: 2462 + - uid: 2465 components: - pos: 14.5,-28.5 parent: 2 type: Transform - - uid: 2463 + - uid: 2466 components: - pos: 14.5,-27.5 parent: 2 type: Transform - - uid: 2464 + - uid: 2467 components: - pos: 13.5,-26.5 parent: 2 type: Transform - - uid: 2465 + - uid: 2468 components: - pos: -5.5,-73.5 parent: 2 type: Transform - - uid: 2466 + - uid: 2469 components: - pos: 8.5,-26.5 parent: 2 type: Transform - - uid: 2467 + - uid: 2470 components: - pos: -2.5,-74.5 parent: 2 type: Transform - - uid: 2468 + - uid: 2471 components: - pos: 11.5,-26.5 parent: 2 type: Transform - - uid: 2469 + - uid: 2472 components: - pos: 3.5,-26.5 parent: 2 type: Transform - - uid: 2470 + - uid: 2473 components: - pos: -7.5,1.5 parent: 2 type: Transform - - uid: 2471 + - uid: 2474 components: - pos: -8.5,1.5 parent: 2 type: Transform - - uid: 2472 + - uid: 2475 components: - pos: -1.5,-75.5 parent: 2 type: Transform - - uid: 2473 + - uid: 2476 components: - pos: -3.5,8.5 parent: 2 type: Transform - - uid: 2474 + - uid: 2477 components: - pos: -3.5,10.5 parent: 2 type: Transform - - uid: 2475 + - uid: 2478 components: - pos: 28.5,2.5 parent: 2 type: Transform - - uid: 2476 + - uid: 2479 components: - pos: 32.5,1.5 parent: 2 type: Transform - - uid: 2477 + - uid: 2480 components: - pos: 32.5,2.5 parent: 2 type: Transform - - uid: 2478 + - uid: 2481 components: - pos: 1.5,-9.5 parent: 2 type: Transform - - uid: 2479 + - uid: 2482 components: - pos: 2.5,8.5 parent: 2 type: Transform - - uid: 2480 + - uid: 2483 components: - pos: 61.5,-11.5 parent: 2 type: Transform - - uid: 2481 + - uid: 2484 components: - pos: 21.5,-10.5 parent: 2 type: Transform - - uid: 2482 + - uid: 2485 components: - pos: 20.5,-13.5 parent: 2 type: Transform - - uid: 2483 + - uid: 2486 components: - pos: -0.5,0.5 parent: 2 type: Transform - - uid: 2484 + - uid: 2487 components: - pos: 20.5,-5.5 parent: 2 type: Transform - - uid: 2485 + - uid: 2488 components: - pos: 22.5,-6.5 parent: 2 type: Transform - - uid: 2486 + - uid: 2489 components: - pos: 23.5,-6.5 parent: 2 type: Transform - - uid: 2487 + - uid: 2490 components: - pos: 25.5,-6.5 parent: 2 type: Transform - - uid: 2488 + - uid: 2491 components: - pos: 25.5,-13.5 parent: 2 type: Transform - - uid: 2489 + - uid: 2492 components: - pos: 25.5,-12.5 parent: 2 type: Transform - - uid: 2490 + - uid: 2493 components: - pos: 25.5,-8.5 parent: 2 type: Transform - - uid: 2491 + - uid: 2494 components: - pos: 24.5,-11.5 parent: 2 type: Transform - - uid: 2492 + - uid: 2495 components: - pos: 5.5,-60.5 parent: 2 type: Transform - - uid: 2493 + - uid: 2496 components: - pos: 5.5,-54.5 parent: 2 type: Transform - - uid: 2494 + - uid: 2497 components: - pos: 2.5,-54.5 parent: 2 type: Transform - - uid: 2495 + - uid: 2498 components: - pos: -14.5,-60.5 parent: 2 type: Transform - - uid: 2496 + - uid: 2499 components: - pos: -8.5,-65.5 parent: 2 type: Transform - - uid: 2497 + - uid: 2500 components: - pos: -7.5,-65.5 parent: 2 type: Transform - - uid: 2498 + - uid: 2501 components: - pos: -6.5,-60.5 parent: 2 type: Transform - - uid: 2499 + - uid: 2502 components: - pos: -3.5,-60.5 parent: 2 type: Transform - - uid: 2500 + - uid: 2503 components: - pos: -2.5,-60.5 parent: 2 type: Transform - - uid: 2501 + - uid: 2504 components: - pos: -0.5,-60.5 parent: 2 type: Transform - - uid: 2502 + - uid: 2505 components: - pos: 3.5,-63.5 parent: 2 type: Transform - - uid: 2503 + - uid: 2506 components: - pos: 3.5,-61.5 parent: 2 type: Transform - - uid: 2504 + - uid: 2507 components: - pos: 10.5,-17.5 parent: 2 type: Transform - - uid: 2505 + - uid: 2508 components: - pos: 10.5,-14.5 parent: 2 type: Transform - - uid: 2506 + - uid: 2509 components: - pos: 11.5,-14.5 parent: 2 type: Transform - - uid: 2507 + - uid: 2510 components: - pos: 13.5,-14.5 parent: 2 type: Transform - - uid: 2508 + - uid: 2511 components: - pos: 14.5,-14.5 parent: 2 type: Transform - - uid: 2509 + - uid: 2512 components: - pos: 15.5,-14.5 parent: 2 type: Transform - - uid: 2510 + - uid: 2513 components: - pos: 15.5,-13.5 parent: 2 type: Transform - - uid: 2511 + - uid: 2514 components: - pos: 15.5,-11.5 parent: 2 type: Transform - - uid: 2512 + - uid: 2515 components: - pos: 14.5,-2.5 parent: 2 type: Transform - - uid: 2513 + - uid: 2516 components: - pos: -19.5,-56.5 parent: 2 type: Transform - - uid: 2514 + - uid: 2517 components: - pos: -19.5,-55.5 parent: 2 type: Transform - - uid: 2515 + - uid: 2518 components: - pos: 14.5,-3.5 parent: 2 type: Transform - - uid: 2516 + - uid: 2519 components: - pos: 14.5,-6.5 parent: 2 type: Transform - - uid: 2517 + - uid: 2520 components: - pos: 20.5,-45.5 parent: 2 type: Transform - - uid: 2518 + - uid: 2521 components: - pos: -41.5,25.5 parent: 2 type: Transform - - uid: 2519 + - uid: 2522 components: - pos: 32.5,-8.5 parent: 2 type: Transform - - uid: 2520 + - uid: 2523 components: - pos: 14.5,-5.5 parent: 2 type: Transform - - uid: 2521 + - uid: 2524 components: - pos: 12.5,-14.5 parent: 2 type: Transform - - uid: 2522 + - uid: 2525 components: - pos: -3.5,-69.5 parent: 2 type: Transform - - uid: 2523 + - uid: 2526 components: - pos: -4.5,-69.5 parent: 2 type: Transform - - uid: 2524 + - uid: 2527 components: - pos: -5.5,-70.5 parent: 2 type: Transform - - uid: 2525 + - uid: 2528 components: - pos: -1.5,-77.5 parent: 2 type: Transform - - uid: 2526 + - uid: 2529 components: - pos: -0.5,-69.5 parent: 2 type: Transform - - uid: 2527 + - uid: 2530 components: - pos: 10.5,2.5 parent: 2 type: Transform - - uid: 2528 + - uid: 2531 components: - pos: -5.5,-47.5 parent: 2 type: Transform - - uid: 2529 + - uid: 2532 components: - pos: -14.5,-54.5 parent: 2 type: Transform - - uid: 2530 + - uid: 2533 components: - pos: -13.5,-59.5 parent: 2 type: Transform - - uid: 2531 + - uid: 2534 components: - pos: -10.5,-61.5 parent: 2 type: Transform - - uid: 2532 + - uid: 2535 components: - pos: -4.5,-11.5 parent: 2 type: Transform - - uid: 2533 + - uid: 2536 components: - pos: 62.5,-9.5 parent: 2 type: Transform - - uid: 2534 + - uid: 2537 components: - pos: 62.5,-7.5 parent: 2 type: Transform - - uid: 2535 + - uid: 2538 components: - pos: 8.5,-8.5 parent: 2 type: Transform - - uid: 2536 + - uid: 2539 components: - pos: 8.5,-10.5 parent: 2 type: Transform - - uid: 2537 + - uid: 2540 components: - pos: 24.5,1.5 parent: 2 type: Transform - - uid: 2538 + - uid: 2541 components: - pos: 1.5,9.5 parent: 2 type: Transform - - uid: 2539 + - uid: 2542 components: - pos: 2.5,-71.5 parent: 2 type: Transform - - uid: 2540 + - uid: 2543 components: - pos: 22.5,-32.5 parent: 2 type: Transform - - uid: 2541 + - uid: 2544 components: - pos: -15.5,-21.5 parent: 2 type: Transform - - uid: 2542 + - uid: 2545 components: - pos: -2.5,-69.5 parent: 2 type: Transform - - uid: 2543 + - uid: 2546 components: - pos: -9.5,10.5 parent: 2 type: Transform - - uid: 2544 + - uid: 2547 components: - pos: 18.5,-13.5 parent: 2 type: Transform - - uid: 2545 + - uid: 2548 components: - pos: 21.5,-11.5 parent: 2 type: Transform - - uid: 2546 + - uid: 2549 components: - pos: -4.5,-28.5 parent: 2 type: Transform - - uid: 2547 + - uid: 2550 components: - pos: 27.5,2.5 parent: 2 type: Transform - - uid: 2548 + - uid: 2551 components: - pos: 6.5,15.5 parent: 2 type: Transform - - uid: 2549 + - uid: 2552 components: - pos: 5.5,15.5 parent: 2 type: Transform - - uid: 2550 + - uid: 2553 components: - pos: 0.5,12.5 parent: 2 type: Transform - - uid: 2551 + - uid: 2554 components: - pos: 5.5,12.5 parent: 2 type: Transform - - uid: 2552 + - uid: 2555 components: - pos: 5.5,13.5 parent: 2 type: Transform - - uid: 2553 + - uid: 2556 components: - pos: 21.5,-1.5 parent: 2 type: Transform - - uid: 2554 + - uid: 2557 components: - pos: 32.5,18.5 parent: 2 type: Transform - - uid: 2555 + - uid: 2558 components: - pos: 1.5,0.5 parent: 2 type: Transform - - uid: 2556 + - uid: 2559 components: - pos: 13.5,2.5 parent: 2 type: Transform - - uid: 2557 + - uid: 2560 components: - pos: 13.5,0.5 parent: 2 type: Transform - - uid: 2558 + - uid: 2561 components: - pos: 12.5,-0.5 parent: 2 type: Transform - - uid: 2559 + - uid: 2562 components: - pos: -13.5,-54.5 parent: 2 type: Transform - - uid: 2560 + - uid: 2563 components: - pos: -14.5,-59.5 parent: 2 type: Transform - - uid: 2561 + - uid: 2564 components: - pos: -2.5,-54.5 parent: 2 type: Transform - - uid: 2562 + - uid: 2565 components: - pos: 27.5,1.5 parent: 2 type: Transform - - uid: 2563 + - uid: 2566 components: - pos: -2.5,-41.5 parent: 2 type: Transform - - uid: 2564 + - uid: 2567 components: - pos: -3.5,-0.5 parent: 2 type: Transform - - uid: 2565 + - uid: 2568 components: - pos: 29.5,-47.5 parent: 2 type: Transform - - uid: 2566 + - uid: 2569 components: - pos: 15.5,-40.5 parent: 2 type: Transform - - uid: 2567 + - uid: 2570 components: - pos: 11.5,-42.5 parent: 2 type: Transform - - uid: 2568 + - uid: 2571 components: - pos: 9.5,-41.5 parent: 2 type: Transform - - uid: 2569 + - uid: 2572 components: - pos: 13.5,-42.5 parent: 2 type: Transform - - uid: 2570 + - uid: 2573 components: - pos: 17.5,-54.5 parent: 2 type: Transform - - uid: 2571 + - uid: 2574 components: - pos: 34.5,-41.5 parent: 2 type: Transform - - uid: 2572 + - uid: 2575 components: - pos: 36.5,-40.5 parent: 2 type: Transform - - uid: 2573 + - uid: 2576 components: - pos: 34.5,-40.5 parent: 2 type: Transform - - uid: 2574 + - uid: 2577 components: - pos: 12.5,-6.5 parent: 2 type: Transform - - uid: 2575 + - uid: 2578 components: - pos: 11.5,-6.5 parent: 2 type: Transform - - uid: 2576 + - uid: 2579 components: - pos: 4.5,5.5 parent: 2 type: Transform - - uid: 2577 + - uid: 2580 components: - pos: 7.5,-17.5 parent: 2 type: Transform - - uid: 2578 + - uid: 2581 components: - pos: 1.5,7.5 parent: 2 type: Transform - - uid: 2579 + - uid: 2582 components: - pos: 1.5,8.5 parent: 2 type: Transform - - uid: 2580 + - uid: 2583 components: - pos: 3.5,8.5 parent: 2 type: Transform - - uid: 2581 + - uid: 2584 components: - pos: -3.5,7.5 parent: 2 type: Transform - - uid: 2582 + - uid: 2585 components: - pos: -1.5,7.5 parent: 2 type: Transform - - uid: 2583 + - uid: 2586 components: - pos: -2.5,7.5 parent: 2 type: Transform - - uid: 2584 + - uid: 2587 components: - pos: -0.5,6.5 parent: 2 type: Transform - - uid: 2585 + - uid: 2588 components: - pos: -0.5,7.5 parent: 2 type: Transform - - uid: 2586 + - uid: 2589 components: - pos: 0.5,6.5 parent: 2 type: Transform - - uid: 2587 + - uid: 2590 components: - pos: 0.5,11.5 parent: 2 type: Transform - - uid: 2588 + - uid: 2591 components: - pos: 0.5,13.5 parent: 2 type: Transform - - uid: 2589 + - uid: 2592 components: - pos: 0.5,9.5 parent: 2 type: Transform - - uid: 2590 + - uid: 2593 components: - pos: -8.5,7.5 parent: 2 type: Transform - - uid: 2591 + - uid: 2594 components: - pos: -7.5,7.5 parent: 2 type: Transform - - uid: 2592 + - uid: 2595 components: - pos: -6.5,7.5 parent: 2 type: Transform - - uid: 2593 + - uid: 2596 components: - pos: -5.5,7.5 parent: 2 type: Transform - - uid: 2594 + - uid: 2597 components: - pos: 10.5,-11.5 parent: 2 type: Transform - - uid: 2595 + - uid: 2598 components: - pos: 7.5,-6.5 parent: 2 type: Transform - - uid: 2596 + - uid: 2599 components: - pos: 8.5,-6.5 parent: 2 type: Transform - - uid: 2597 + - uid: 2600 components: - pos: 4.5,-13.5 parent: 2 type: Transform - - uid: 2598 + - uid: 2601 components: - pos: 10.5,-10.5 parent: 2 type: Transform - - uid: 2599 + - uid: 2602 components: - pos: 42.5,-26.5 parent: 2 type: Transform - - uid: 2600 + - uid: 2603 components: - pos: -8.5,-50.5 parent: 2 type: Transform - - uid: 2601 + - uid: 2604 components: - pos: 5.5,8.5 parent: 2 type: Transform - - uid: 2602 + - uid: 2605 components: - pos: -8.5,-51.5 parent: 2 type: Transform - - uid: 2603 + - uid: 2606 components: - pos: -8.5,-52.5 parent: 2 type: Transform - - uid: 2604 + - uid: 2607 components: - pos: -7.5,-52.5 parent: 2 type: Transform - - uid: 2605 + - uid: 2608 components: - pos: -7.5,-53.5 parent: 2 type: Transform - - uid: 2606 + - uid: 2609 components: - pos: 6.5,7.5 parent: 2 type: Transform - - uid: 2607 + - uid: 2610 components: - pos: 31.5,-14.5 parent: 2 type: Transform - - uid: 2608 + - uid: 2611 components: - pos: 32.5,-9.5 parent: 2 type: Transform - - uid: 2609 + - uid: 2612 components: - pos: -4.5,-20.5 parent: 2 type: Transform - - uid: 2610 + - uid: 2613 components: - pos: 5.5,11.5 parent: 2 type: Transform - - uid: 2611 + - uid: 2614 components: - pos: 5.5,7.5 parent: 2 type: Transform - - uid: 2612 + - uid: 2615 components: - pos: 32.5,-41.5 parent: 2 type: Transform - - uid: 2613 + - uid: 2616 components: - pos: 33.5,-40.5 parent: 2 type: Transform - - uid: 2614 + - uid: 2617 components: - pos: 34.5,-42.5 parent: 2 type: Transform - - uid: 2615 + - uid: 2618 components: - pos: 23.5,-42.5 parent: 2 type: Transform - - uid: 2616 + - uid: 2619 components: - pos: 21.5,-42.5 parent: 2 type: Transform - - uid: 2617 + - uid: 2620 components: - pos: 8.5,-9.5 parent: 2 type: Transform - - uid: 2618 + - uid: 2621 components: - pos: -20.5,-87.5 parent: 2 type: Transform - - uid: 2619 + - uid: 2622 components: - pos: 23.5,-1.5 parent: 2 type: Transform - - uid: 2620 + - uid: 2623 components: - pos: -2.5,14.5 parent: 2 type: Transform - - uid: 2621 + - uid: 2624 components: - pos: -3.5,14.5 parent: 2 type: Transform - - uid: 2622 + - uid: 2625 components: - pos: 32.5,17.5 parent: 2 type: Transform - - uid: 2623 + - uid: 2626 components: - pos: 27.5,0.5 parent: 2 type: Transform - - uid: 2624 + - uid: 2627 components: - pos: 26.5,-32.5 parent: 2 type: Transform - - uid: 2625 + - uid: 2628 components: - pos: 25.5,-42.5 parent: 2 type: Transform - - uid: 2626 + - uid: 2629 components: - pos: 27.5,-42.5 parent: 2 type: Transform - - uid: 2627 + - uid: 2630 components: - pos: 35.5,-38.5 parent: 2 type: Transform - - uid: 2628 + - uid: 2631 components: - pos: 35.5,-39.5 parent: 2 type: Transform - - uid: 2629 + - uid: 2632 components: - pos: 23.5,-32.5 parent: 2 type: Transform - - uid: 2630 + - uid: 2633 components: - pos: 20.5,-32.5 parent: 2 type: Transform - - uid: 2631 + - uid: 2634 components: - pos: -7.5,-7.5 parent: 2 type: Transform - - uid: 2632 + - uid: 2635 components: - pos: 16.5,-32.5 parent: 2 type: Transform - - uid: 2633 + - uid: 2636 components: - pos: 1.5,10.5 parent: 2 type: Transform - - uid: 2634 + - uid: 2637 components: - pos: -15.5,25.5 parent: 2 type: Transform - - uid: 2635 + - uid: 2638 components: - pos: 7.5,-49.5 parent: 2 type: Transform - - uid: 2636 + - uid: 2639 components: - pos: 55.5,-32.5 parent: 2 type: Transform - - uid: 2637 + - uid: 2640 components: - pos: 32.5,-4.5 parent: 2 type: Transform - - uid: 2638 + - uid: 2641 components: - pos: 26.5,-25.5 parent: 2 type: Transform - - uid: 2639 + - uid: 2642 components: - pos: 25.5,-25.5 parent: 2 type: Transform - - uid: 2640 + - uid: 2643 components: - pos: 24.5,-22.5 parent: 2 type: Transform - - uid: 2641 + - uid: 2644 components: - pos: 23.5,-22.5 parent: 2 type: Transform - - uid: 2642 + - uid: 2645 components: - pos: 21.5,-24.5 parent: 2 type: Transform - - uid: 2643 + - uid: 2646 components: - pos: 21.5,-23.5 parent: 2 type: Transform - - uid: 2644 + - uid: 2647 components: - pos: 21.5,-22.5 parent: 2 type: Transform - - uid: 2645 + - uid: 2648 components: - pos: 26.5,-23.5 parent: 2 type: Transform - - uid: 2646 + - uid: 2649 components: - pos: 27.5,-23.5 parent: 2 type: Transform - - uid: 2647 + - uid: 2650 components: - pos: 28.5,-29.5 parent: 2 type: Transform - - uid: 2648 + - uid: 2651 components: - pos: 27.5,-29.5 parent: 2 type: Transform - - uid: 2649 + - uid: 2652 components: - pos: 27.5,-30.5 parent: 2 type: Transform - - uid: 2650 + - uid: 2653 components: - pos: 27.5,-33.5 parent: 2 type: Transform - - uid: 2651 + - uid: 2654 components: - pos: 26.5,-30.5 parent: 2 type: Transform - - uid: 2652 + - uid: 2655 components: - pos: 25.5,-30.5 parent: 2 type: Transform - - uid: 2653 + - uid: 2656 components: - pos: 24.5,-30.5 parent: 2 type: Transform - - uid: 2654 + - uid: 2657 components: - pos: 23.5,-30.5 parent: 2 type: Transform - - uid: 2655 + - uid: 2658 components: - pos: 22.5,-30.5 parent: 2 type: Transform - - uid: 2656 + - uid: 2659 components: - pos: 22.5,-28.5 parent: 2 type: Transform - - uid: 2657 + - uid: 2660 components: - pos: 6.5,-3.5 parent: 2 type: Transform - - uid: 2658 + - uid: 2661 components: - pos: 5.5,-3.5 parent: 2 type: Transform - - uid: 2659 + - uid: 2662 components: - pos: 8.5,-4.5 parent: 2 type: Transform - - uid: 2660 + - uid: 2663 components: - pos: 12.5,-5.5 parent: 2 type: Transform - - uid: 2661 + - uid: 2664 components: - pos: 12.5,-9.5 parent: 2 type: Transform - - uid: 2662 + - uid: 2665 components: - pos: -10.5,-22.5 parent: 2 type: Transform - - uid: 2663 + - uid: 2666 components: - pos: -15.5,-22.5 parent: 2 type: Transform - - uid: 2664 + - uid: 2667 components: - pos: -24.5,-16.5 parent: 2 type: Transform - - uid: 2665 + - uid: 2668 components: - pos: -24.5,-15.5 parent: 2 type: Transform - - uid: 2666 + - uid: 2669 components: - pos: 23.5,-11.5 parent: 2 type: Transform - - uid: 2667 + - uid: 2670 components: - pos: 25.5,-11.5 parent: 2 type: Transform - - uid: 2668 + - uid: 2671 components: - pos: 25.5,-10.5 parent: 2 type: Transform - - uid: 2669 + - uid: 2672 components: - pos: 25.5,-9.5 parent: 2 type: Transform - - uid: 2670 + - uid: 2673 components: - pos: 21.5,-6.5 parent: 2 type: Transform - - uid: 2671 + - uid: 2674 components: - pos: 20.5,-6.5 parent: 2 type: Transform - - uid: 2672 + - uid: 2675 components: - pos: 26.5,-6.5 parent: 2 type: Transform - - uid: 2673 + - uid: 2676 components: - pos: 27.5,-6.5 parent: 2 type: Transform - - uid: 2674 + - uid: 2677 components: - pos: 28.5,-6.5 parent: 2 type: Transform - - uid: 2675 + - uid: 2678 components: - pos: 29.5,-6.5 parent: 2 type: Transform - - uid: 2676 + - uid: 2679 components: - pos: 30.5,-6.5 parent: 2 type: Transform - - uid: 2677 + - uid: 2680 components: - pos: 30.5,-5.5 parent: 2 type: Transform - - uid: 2678 + - uid: 2681 components: - pos: 29.5,-32.5 parent: 2 type: Transform - - uid: 2679 + - uid: 2682 components: - pos: 8.5,-3.5 parent: 2 type: Transform - - uid: 2680 + - uid: 2683 components: - pos: 8.5,-2.5 parent: 2 type: Transform - - uid: 2681 + - uid: 2684 components: - pos: 8.5,-1.5 parent: 2 type: Transform - - uid: 2682 + - uid: 2685 components: - pos: 7.5,-1.5 parent: 2 type: Transform - - uid: 2683 + - uid: 2686 components: - pos: 6.5,-1.5 parent: 2 type: Transform - - uid: 2684 + - uid: 2687 components: - pos: 5.5,-1.5 parent: 2 type: Transform - - uid: 2685 + - uid: 2688 components: - pos: 4.5,-1.5 parent: 2 type: Transform - - uid: 2686 + - uid: 2689 components: - pos: 4.5,-0.5 parent: 2 type: Transform - - uid: 2687 + - uid: 2690 components: - pos: 2.5,0.5 parent: 2 type: Transform - - uid: 2688 + - uid: 2691 components: - pos: 0.5,0.5 parent: 2 type: Transform - - uid: 2689 + - uid: 2692 components: - pos: -0.5,1.5 parent: 2 type: Transform - - uid: 2690 + - uid: 2693 components: - pos: -0.5,2.5 parent: 2 type: Transform - - uid: 2691 + - uid: 2694 components: - pos: 0.5,2.5 parent: 2 type: Transform - - uid: 2692 + - uid: 2695 components: - pos: 1.5,2.5 parent: 2 type: Transform - - uid: 2693 + - uid: 2696 components: - pos: 3.5,2.5 parent: 2 type: Transform - - uid: 2694 + - uid: 2697 components: - pos: 4.5,2.5 parent: 2 type: Transform - - uid: 2695 + - uid: 2698 components: - pos: 5.5,2.5 parent: 2 type: Transform - - uid: 2696 + - uid: 2699 components: - pos: 6.5,2.5 parent: 2 type: Transform - - uid: 2697 + - uid: 2700 components: - pos: 7.5,2.5 parent: 2 type: Transform - - uid: 2698 + - uid: 2701 components: - pos: 11.5,-0.5 parent: 2 type: Transform - - uid: 2699 + - uid: 2702 components: - pos: -2.5,-51.5 parent: 2 type: Transform - - uid: 2700 + - uid: 2703 components: - pos: -1.5,-49.5 parent: 2 type: Transform - - uid: 2701 + - uid: 2704 components: - pos: -0.5,-48.5 parent: 2 type: Transform - - uid: 2702 + - uid: 2705 components: - pos: 2.5,-48.5 parent: 2 type: Transform - - uid: 2703 + - uid: 2706 components: - pos: 4.5,-48.5 parent: 2 type: Transform - - uid: 2704 + - uid: 2707 components: - pos: -1.5,-47.5 parent: 2 type: Transform - - uid: 2705 + - uid: 2708 components: - pos: -6.5,-47.5 parent: 2 type: Transform - - uid: 2706 + - uid: 2709 components: - pos: -3.5,-54.5 parent: 2 type: Transform - - uid: 2707 + - uid: 2710 components: - pos: -5.5,-54.5 parent: 2 type: Transform - - uid: 2708 + - uid: 2711 components: - pos: -6.5,-54.5 parent: 2 type: Transform - - uid: 2709 + - uid: 2712 components: - pos: -8.5,-54.5 parent: 2 type: Transform - - uid: 2710 + - uid: 2713 components: - pos: -10.5,-54.5 parent: 2 type: Transform - - uid: 2711 + - uid: 2714 components: - pos: -11.5,-54.5 parent: 2 type: Transform - - uid: 2712 + - uid: 2715 components: - pos: 3.5,-54.5 parent: 2 type: Transform - - uid: 2713 + - uid: 2716 components: - pos: 5.5,-55.5 parent: 2 type: Transform - - uid: 2714 + - uid: 2717 components: - pos: 5.5,-57.5 parent: 2 type: Transform - - uid: 2715 + - uid: 2718 components: - pos: 5.5,-58.5 parent: 2 type: Transform - - uid: 2716 + - uid: 2719 components: - pos: 5.5,-59.5 parent: 2 type: Transform - - uid: 2717 + - uid: 2720 components: - pos: 6.5,-60.5 parent: 2 type: Transform - - uid: 2718 + - uid: 2721 components: - pos: 7.5,-60.5 parent: 2 type: Transform - - uid: 2719 + - uid: 2722 components: - pos: 4.5,-60.5 parent: 2 type: Transform - - uid: 2720 + - uid: 2723 components: - pos: 1.5,-60.5 parent: 2 type: Transform - - uid: 2721 + - uid: 2724 components: - pos: 0.5,-60.5 parent: 2 type: Transform - - uid: 2722 + - uid: 2725 components: - pos: -1.5,-61.5 parent: 2 type: Transform - - uid: 2723 + - uid: 2726 components: - pos: -1.5,-62.5 parent: 2 type: Transform - - uid: 2724 + - uid: 2727 components: - pos: -1.5,-64.5 parent: 2 type: Transform - - uid: 2725 + - uid: 2728 components: - pos: -7.5,-61.5 parent: 2 type: Transform - - uid: 2726 + - uid: 2729 components: - pos: -6.5,-61.5 parent: 2 type: Transform - - uid: 2727 + - uid: 2730 components: - pos: -11.5,-75.5 parent: 2 type: Transform - - uid: 2728 + - uid: 2731 components: - pos: -11.5,-61.5 parent: 2 type: Transform - - uid: 2729 + - uid: 2732 components: - pos: -12.5,-61.5 parent: 2 type: Transform - - uid: 2730 + - uid: 2733 components: - pos: -13.5,-61.5 parent: 2 type: Transform - - uid: 2731 + - uid: 2734 components: - pos: -13.5,-63.5 parent: 2 type: Transform - - uid: 2732 + - uid: 2735 components: - pos: -13.5,-65.5 parent: 2 type: Transform - - uid: 2733 + - uid: 2736 components: - pos: -13.5,-66.5 parent: 2 type: Transform - - uid: 2734 + - uid: 2737 components: - pos: -15.5,-64.5 parent: 2 type: Transform - - uid: 2735 + - uid: 2738 components: - pos: -21.5,-68.5 parent: 2 type: Transform - - uid: 2736 + - uid: 2739 components: - pos: -21.5,-69.5 parent: 2 type: Transform - - uid: 2737 + - uid: 2740 components: - pos: -21.5,-70.5 parent: 2 type: Transform - - uid: 2738 + - uid: 2741 components: - pos: -20.5,-70.5 parent: 2 type: Transform - - uid: 2739 + - uid: 2742 components: - pos: -19.5,-70.5 parent: 2 type: Transform - - uid: 2740 + - uid: 2743 components: - pos: -19.5,-69.5 parent: 2 type: Transform - - uid: 2741 + - uid: 2744 components: - pos: -19.5,-68.5 parent: 2 type: Transform - - uid: 2742 + - uid: 2745 components: - pos: -19.5,-72.5 parent: 2 type: Transform - - uid: 2743 + - uid: 2746 components: - pos: -19.5,-73.5 parent: 2 type: Transform - - uid: 2744 + - uid: 2747 components: - pos: -18.5,-74.5 parent: 2 type: Transform - - uid: 2745 + - uid: 2748 components: - pos: -18.5,-76.5 parent: 2 type: Transform - - uid: 2746 + - uid: 2749 components: - pos: -18.5,-77.5 parent: 2 type: Transform - - uid: 2747 + - uid: 2750 components: - pos: -17.5,-77.5 parent: 2 type: Transform - - uid: 2748 + - uid: 2751 components: - pos: -19.5,-77.5 parent: 2 type: Transform - - uid: 2749 + - uid: 2752 components: - pos: -20.5,-85.5 parent: 2 type: Transform - - uid: 2750 + - uid: 2753 components: - pos: -25.5,-87.5 parent: 2 type: Transform - - uid: 2751 + - uid: 2754 components: - pos: -25.5,-88.5 parent: 2 type: Transform - - uid: 2752 + - uid: 2755 components: - pos: 22.5,-1.5 parent: 2 type: Transform - - uid: 2753 + - uid: 2756 components: - pos: 8.5,-6.5 parent: 2 type: Transform - - uid: 2754 + - uid: 2757 components: - pos: -7.5,-75.5 parent: 2 type: Transform - - uid: 2755 + - uid: 2758 components: - pos: 17.5,-32.5 parent: 2 type: Transform - - uid: 2756 + - uid: 2759 components: - pos: -8.5,8.5 parent: 2 type: Transform - - uid: 2757 + - uid: 2760 components: - pos: -8.5,10.5 parent: 2 type: Transform - - uid: 2758 + - uid: 2761 components: - pos: -8.5,5.5 parent: 2 type: Transform - - uid: 2759 + - uid: 2762 components: - pos: -3.5,9.5 parent: 2 type: Transform - - uid: 2760 + - uid: 2763 components: - pos: 5.5,9.5 parent: 2 type: Transform - - uid: 2761 + - uid: 2764 components: - pos: 9.5,-10.5 parent: 2 type: Transform - - uid: 2762 + - uid: 2765 components: - pos: 32.5,16.5 parent: 2 type: Transform - - uid: 2763 + - uid: 2766 components: - pos: 0.5,8.5 parent: 2 type: Transform - - uid: 2764 + - uid: 2767 components: - pos: 0.5,-26.5 parent: 2 type: Transform - - uid: 2765 + - uid: 2768 components: - pos: -0.5,-26.5 parent: 2 type: Transform - - uid: 2766 + - uid: 2769 components: - pos: -8.5,2.5 parent: 2 type: Transform - - uid: 2767 + - uid: 2770 components: - pos: 1.5,-26.5 parent: 2 type: Transform - - uid: 2768 + - uid: 2771 components: - pos: 6.5,-26.5 parent: 2 type: Transform - - uid: 2769 + - uid: 2772 components: - pos: 7.5,-26.5 parent: 2 type: Transform - - uid: 2770 + - uid: 2773 components: - pos: 12.5,-26.5 parent: 2 type: Transform - - uid: 2771 + - uid: 2774 components: - pos: 14.5,-26.5 parent: 2 type: Transform - - uid: 2772 + - uid: 2775 components: - pos: 17.5,-48.5 parent: 2 type: Transform - - uid: 2773 + - uid: 2776 components: - pos: 27.5,4.5 parent: 2 type: Transform - - uid: 2774 + - uid: 2777 components: - pos: 27.5,-0.5 parent: 2 type: Transform - - uid: 2775 + - uid: 2778 components: - pos: 25.5,4.5 parent: 2 type: Transform - - uid: 2776 + - uid: 2779 components: - pos: 21.5,2.5 parent: 2 type: Transform - - uid: 2777 + - uid: 2780 components: - pos: 23.5,2.5 parent: 2 type: Transform - - uid: 2778 + - uid: 2781 components: - pos: 26.5,4.5 parent: 2 type: Transform - - uid: 2779 + - uid: 2782 components: - pos: -4.5,-13.5 parent: 2 type: Transform - - uid: 2780 + - uid: 2783 components: - pos: -20.5,-86.5 parent: 2 type: Transform - - uid: 2781 + - uid: 2784 components: - pos: 20.5,-42.5 parent: 2 type: Transform - - uid: 2782 + - uid: 2785 components: - pos: -18.5,-60.5 parent: 2 type: Transform - - uid: 2783 + - uid: 2786 components: - pos: 8.5,-56.5 parent: 2 type: Transform - - uid: 2784 + - uid: 2787 components: - pos: -4.5,-60.5 parent: 2 type: Transform - - uid: 2785 + - uid: 2788 components: - pos: -1.5,-65.5 parent: 2 type: Transform - - uid: 2786 + - uid: 2789 components: - pos: -1.5,-60.5 parent: 2 type: Transform - - uid: 2787 + - uid: 2790 components: - pos: 3.5,-60.5 parent: 2 type: Transform - - uid: 2788 + - uid: 2791 components: - pos: -3.5,-51.5 parent: 2 type: Transform - - uid: 2789 + - uid: 2792 components: - pos: 3.5,-48.5 parent: 2 type: Transform - - uid: 2790 + - uid: 2793 components: - pos: 5.5,-48.5 parent: 2 type: Transform - - uid: 2791 + - uid: 2794 components: - pos: 6.5,-47.5 parent: 2 type: Transform - - uid: 2792 + - uid: 2795 components: - pos: -4.5,-50.5 parent: 2 type: Transform - - uid: 2793 + - uid: 2796 components: - pos: -4.5,-49.5 parent: 2 type: Transform - - uid: 2794 + - uid: 2797 components: - pos: -6.5,-45.5 parent: 2 type: Transform - - uid: 2795 + - uid: 2798 components: - pos: 22.5,-24.5 parent: 2 type: Transform - - uid: 2796 + - uid: 2799 components: - pos: -6.5,-71.5 parent: 2 type: Transform - - uid: 2797 + - uid: 2800 components: - pos: -9.5,-71.5 parent: 2 type: Transform - - uid: 2798 + - uid: 2801 components: - pos: 10.5,-51.5 parent: 2 type: Transform - - uid: 2799 + - uid: 2802 components: - pos: 16.5,-52.5 parent: 2 type: Transform - - uid: 2800 + - uid: 2803 components: - pos: 14.5,-52.5 parent: 2 type: Transform - - uid: 2801 + - uid: 2804 components: - pos: 25.5,-50.5 parent: 2 type: Transform - - uid: 2802 + - uid: 2805 components: - pos: 25.5,-54.5 parent: 2 type: Transform - - uid: 2803 + - uid: 2806 components: - pos: 25.5,-55.5 parent: 2 type: Transform - - uid: 2804 + - uid: 2807 components: - pos: 25.5,-56.5 parent: 2 type: Transform - - uid: 2805 + - uid: 2808 components: - pos: -4.5,-14.5 parent: 2 type: Transform - - uid: 2806 + - uid: 2809 components: - pos: -4.5,-18.5 parent: 2 type: Transform - - uid: 2807 + - uid: 2810 components: - pos: 59.5,-4.5 parent: 2 type: Transform - - uid: 2808 + - uid: 2811 components: - pos: 46.5,-25.5 parent: 2 type: Transform - - uid: 2809 + - uid: 2812 components: - pos: 46.5,-24.5 parent: 2 type: Transform - - uid: 2810 + - uid: 2813 components: - pos: 46.5,-29.5 parent: 2 type: Transform - - uid: 2811 + - uid: 2814 components: - pos: 46.5,-28.5 parent: 2 type: Transform - - uid: 2812 + - uid: 2815 components: - pos: 45.5,-27.5 parent: 2 type: Transform - - uid: 2813 + - uid: 2816 components: - pos: 43.5,-27.5 parent: 2 type: Transform - - uid: 2814 + - uid: 2817 components: - pos: 44.5,-27.5 parent: 2 type: Transform - - uid: 2815 + - uid: 2818 components: - pos: 43.5,-26.5 parent: 2 type: Transform - - uid: 2816 + - uid: 2819 components: - pos: 5.5,10.5 parent: 2 type: Transform - - uid: 2817 + - uid: 2820 components: - pos: 5.5,8.5 parent: 2 type: Transform - - uid: 2818 + - uid: 2821 components: - pos: 10.5,-26.5 parent: 2 type: Transform - - uid: 2819 + - uid: 2822 components: - pos: -18.5,-52.5 parent: 2 type: Transform - - uid: 2820 + - uid: 2823 components: - pos: -4.5,-21.5 parent: 2 type: Transform - - uid: 2821 + - uid: 2824 components: - pos: 17.5,-29.5 parent: 2 type: Transform - - uid: 2822 + - uid: 2825 components: - pos: 24.5,-0.5 parent: 2 type: Transform - - uid: 2823 + - uid: 2826 components: - pos: -6.5,14.5 parent: 2 type: Transform - - uid: 2824 + - uid: 2827 components: - pos: -6.5,13.5 parent: 2 type: Transform - - uid: 2825 + - uid: 2828 components: - pos: 24.5,-32.5 parent: 2 type: Transform - - uid: 2826 + - uid: 2829 components: - pos: 27.5,-25.5 parent: 2 type: Transform - - uid: 2827 + - uid: 2830 components: - pos: 25.5,-22.5 parent: 2 type: Transform - - uid: 2828 + - uid: 2831 components: - pos: 28.5,-23.5 parent: 2 type: Transform - - uid: 2829 + - uid: 2832 components: - pos: 29.5,-23.5 parent: 2 type: Transform - - uid: 2830 + - uid: 2833 components: - pos: 30.5,-23.5 parent: 2 type: Transform - - uid: 2831 + - uid: 2834 components: - pos: 28.5,-28.5 parent: 2 type: Transform - - uid: 2832 + - uid: 2835 components: - pos: 7.5,-3.5 parent: 2 type: Transform - - uid: 2833 + - uid: 2836 components: - pos: 25.5,-32.5 parent: 2 type: Transform - - uid: 2834 + - uid: 2837 components: - pos: -16.5,-22.5 parent: 2 type: Transform - - uid: 2835 + - uid: 2838 components: - pos: -13.5,-53.5 parent: 2 type: Transform - - uid: 2836 + - uid: 2839 components: - pos: 24.5,3.5 parent: 2 type: Transform - - uid: 2837 + - uid: 2840 components: - pos: 7.5,-65.5 parent: 2 type: Transform - - uid: 2838 + - uid: 2841 components: - pos: -13.5,-73.5 parent: 2 type: Transform - - uid: 2839 + - uid: 2842 components: - pos: -7.5,-6.5 parent: 2 type: Transform - - uid: 2840 + - uid: 2843 components: - pos: -29.5,1.5 parent: 2 type: Transform - - uid: 2841 + - uid: 2844 components: - pos: 18.5,-40.5 parent: 2 type: Transform - - uid: 2842 + - uid: 2845 components: - pos: -39.5,-68.5 parent: 2 type: Transform - - uid: 2843 + - uid: 2846 components: - pos: -36.5,-70.5 parent: 2 type: Transform - - uid: 2844 + - uid: 2847 components: - pos: 41.5,-26.5 parent: 2 type: Transform - - uid: 2845 + - uid: 2848 components: - pos: -35.5,-70.5 parent: 2 type: Transform - - uid: 2846 + - uid: 2849 components: - pos: -37.5,-69.5 parent: 2 type: Transform - - uid: 2847 + - uid: 2850 components: - pos: -9.5,-22.5 parent: 2 type: Transform - - uid: 2848 + - uid: 2851 components: - pos: 12.5,-8.5 parent: 2 type: Transform - - uid: 2849 + - uid: 2852 components: - pos: 8.5,-5.5 parent: 2 type: Transform - - uid: 2850 + - uid: 2853 components: - pos: -8.5,-22.5 parent: 2 type: Transform - - uid: 2851 + - uid: 2854 components: - pos: -11.5,-22.5 parent: 2 type: Transform - - uid: 2852 + - uid: 2855 components: - pos: -15.5,-66.5 parent: 2 type: Transform - - uid: 2853 + - uid: 2856 components: - pos: -4.5,-12.5 parent: 2 type: Transform - - uid: 2854 + - uid: 2857 components: - pos: 2.5,-69.5 parent: 2 type: Transform - - uid: 2855 + - uid: 2858 components: - pos: 22.5,-32.5 parent: 2 type: Transform - - uid: 2856 + - uid: 2859 components: - pos: -47.5,37.5 parent: 2 type: Transform - - uid: 2857 + - uid: 2860 components: - pos: -10.5,-19.5 parent: 2 type: Transform - - uid: 2858 + - uid: 2861 components: - pos: 29.5,-42.5 parent: 2 type: Transform - - uid: 2859 + - uid: 2862 components: - pos: 67.5,-13.5 parent: 2 type: Transform - - uid: 2860 + - uid: 2863 components: - pos: 25.5,-46.5 parent: 2 type: Transform - - uid: 2861 + - uid: 2864 components: - pos: -5.5,-72.5 parent: 2 type: Transform - - uid: 2862 + - uid: 2865 components: - pos: -7.5,10.5 parent: 2 type: Transform - - uid: 2863 + - uid: 2866 components: - pos: 15.5,-42.5 parent: 2 type: Transform - - uid: 2864 + - uid: 2867 components: - pos: 2.5,-68.5 parent: 2 type: Transform - - uid: 2865 + - uid: 2868 components: - pos: 7.5,-70.5 parent: 2 type: Transform - - uid: 2866 + - uid: 2869 components: - pos: -2.5,-26.5 parent: 2 type: Transform - - uid: 2867 + - uid: 2870 components: - pos: 12.5,-7.5 parent: 2 type: Transform - - uid: 2868 + - uid: 2871 components: - pos: 15.5,-39.5 parent: 2 type: Transform - - uid: 2869 + - uid: 2872 components: - pos: 29.5,-60.5 parent: 2 type: Transform - - uid: 2870 + - uid: 2873 components: - pos: 30.5,-13.5 parent: 2 type: Transform - - uid: 2871 + - uid: 2874 components: - pos: 3.5,-67.5 parent: 2 type: Transform - - uid: 2872 + - uid: 2875 components: - pos: 15.5,-45.5 parent: 2 type: Transform - - uid: 2873 + - uid: 2876 components: - pos: 17.5,-45.5 parent: 2 type: Transform - - uid: 2874 + - uid: 2877 components: - pos: -3.5,-26.5 parent: 2 type: Transform - - uid: 2875 + - uid: 2878 components: - pos: 1.5,-71.5 parent: 2 type: Transform - - uid: 2876 + - uid: 2879 components: - pos: -8.5,-26.5 parent: 2 type: Transform - - uid: 2877 + - uid: 2880 components: - pos: -4.5,1.5 parent: 2 type: Transform - - uid: 2878 + - uid: 2881 components: - pos: 8.5,-70.5 parent: 2 type: Transform - - uid: 2879 + - uid: 2882 components: - pos: 30.5,-61.5 parent: 2 type: Transform - - uid: 2880 + - uid: 2883 components: - pos: -16.5,-21.5 parent: 2 type: Transform - - uid: 2881 + - uid: 2884 components: - pos: -4.5,-24.5 parent: 2 type: Transform - - uid: 2882 + - uid: 2885 components: - pos: -4.5,-23.5 parent: 2 type: Transform - - uid: 2883 + - uid: 2886 components: - pos: -4.5,-30.5 parent: 2 type: Transform - - uid: 2884 + - uid: 2887 components: - pos: -4.5,-29.5 parent: 2 type: Transform - - uid: 2885 + - uid: 2888 components: - pos: -4.5,-31.5 parent: 2 type: Transform - - uid: 2886 + - uid: 2889 components: - pos: -9.5,-26.5 parent: 2 type: Transform - - uid: 2887 + - uid: 2890 components: - pos: -11.5,-26.5 parent: 2 type: Transform - - uid: 2888 + - uid: 2891 components: - pos: -15.5,-20.5 parent: 2 type: Transform - - uid: 2889 + - uid: 2892 components: - pos: -15.5,-19.5 parent: 2 type: Transform - - uid: 2890 + - uid: 2893 components: - pos: -15.5,-16.5 parent: 2 type: Transform - - uid: 2891 + - uid: 2894 components: - pos: 46.5,-23.5 parent: 2 type: Transform - - uid: 2892 + - uid: 2895 components: - pos: 1.5,-69.5 parent: 2 type: Transform - - uid: 2893 + - uid: 2896 components: - pos: 30.5,-60.5 parent: 2 type: Transform - - uid: 2894 + - uid: 2897 components: - pos: 9.5,-65.5 parent: 2 type: Transform - - uid: 2895 + - uid: 2898 components: - pos: 38.5,-25.5 parent: 2 type: Transform - - uid: 2896 + - uid: 2899 components: - pos: 41.5,-25.5 parent: 2 type: Transform - - uid: 2897 + - uid: 2900 components: - pos: 14.5,-49.5 parent: 2 type: Transform - - uid: 2898 + - uid: 2901 components: - pos: 24.5,-53.5 parent: 2 type: Transform - - uid: 2899 + - uid: 2902 components: - pos: 25.5,-51.5 parent: 2 type: Transform - - uid: 2900 + - uid: 2903 components: - pos: -3.5,2.5 parent: 2 type: Transform - - uid: 2901 + - uid: 2904 components: - pos: -9.5,-75.5 parent: 2 type: Transform - - uid: 2902 + - uid: 2905 components: - pos: 25.5,-1.5 parent: 2 type: Transform - - uid: 2903 + - uid: 2906 components: - pos: 2.5,-67.5 parent: 2 type: Transform - - uid: 2904 + - uid: 2907 components: - pos: -5.5,-26.5 parent: 2 type: Transform - - uid: 2905 + - uid: 2908 components: - pos: 25.5,-58.5 parent: 2 type: Transform - - uid: 2906 + - uid: 2909 components: - pos: 25.5,-59.5 parent: 2 type: Transform - - uid: 2907 + - uid: 2910 components: - pos: 26.5,-60.5 parent: 2 type: Transform - - uid: 2908 + - uid: 2911 components: - pos: 28.5,-42.5 parent: 2 type: Transform - - uid: 2909 + - uid: 2912 components: - pos: 8.5,-69.5 parent: 2 type: Transform - - uid: 2910 + - uid: 2913 components: - pos: 19.5,-47.5 parent: 2 type: Transform - - uid: 2911 + - uid: 2914 components: - pos: 25.5,2.5 parent: 2 type: Transform - - uid: 2912 + - uid: 2915 components: - pos: -1.5,-74.5 parent: 2 type: Transform - - uid: 2913 + - uid: 2916 components: - pos: 30.5,1.5 parent: 2 type: Transform - - uid: 2914 + - uid: 2917 components: - pos: -1.5,-76.5 parent: 2 type: Transform - - uid: 2915 + - uid: 2918 components: - pos: -5.5,-74.5 parent: 2 type: Transform - - uid: 2916 + - uid: 2919 components: - pos: -5.5,-71.5 parent: 2 type: Transform - - uid: 2917 + - uid: 2920 components: - pos: 31.5,2.5 parent: 2 type: Transform - - uid: 2918 + - uid: 2921 components: - pos: 19.5,-42.5 parent: 2 type: Transform - - uid: 2919 + - uid: 2922 components: - pos: 44.5,7.5 parent: 2 type: Transform - - uid: 2920 + - uid: 2923 components: - pos: 4.5,-71.5 parent: 2 type: Transform - - uid: 2921 + - uid: 2924 components: - pos: -17.5,-52.5 parent: 2 type: Transform - - uid: 2922 + - uid: 2925 components: - pos: 10.5,-42.5 parent: 2 type: Transform - - uid: 2923 + - uid: 2926 components: - pos: -14.5,-47.5 parent: 2 type: Transform - - uid: 2924 + - uid: 2927 components: - pos: -12.5,-49.5 parent: 2 type: Transform - - uid: 2925 + - uid: 2928 components: - pos: -13.5,-49.5 parent: 2 type: Transform - - uid: 2926 + - uid: 2929 components: - pos: -13.5,-48.5 parent: 2 type: Transform - - uid: 2927 + - uid: 2930 components: - pos: -13.5,-47.5 parent: 2 type: Transform - - uid: 2928 + - uid: 2931 components: - pos: -12.5,-47.5 parent: 2 type: Transform - - uid: 2929 + - uid: 2932 components: - pos: -10.5,-18.5 parent: 2 type: Transform - - uid: 2930 + - uid: 2933 components: - pos: 21.5,-9.5 parent: 2 type: Transform - - uid: 2931 + - uid: 2934 components: - pos: 20.5,-11.5 parent: 2 type: Transform - - uid: 2932 + - uid: 2935 components: - pos: 20.5,-12.5 parent: 2 type: Transform - - uid: 2933 + - uid: 2936 components: - pos: 22.5,-41.5 parent: 2 type: Transform - - uid: 2934 + - uid: 2937 components: - pos: 19.5,-13.5 parent: 2 type: Transform - - uid: 2935 + - uid: 2938 components: - pos: 22.5,-11.5 parent: 2 type: Transform - - uid: 2936 + - uid: 2939 components: - pos: 62.5,-8.5 parent: 2 type: Transform - - uid: 2937 + - uid: 2940 components: - pos: -3.5,-53.5 parent: 2 type: Transform - - uid: 2938 + - uid: 2941 components: - pos: -14.5,-58.5 parent: 2 type: Transform - - uid: 2939 + - uid: 2942 components: - pos: 8.5,-60.5 parent: 2 type: Transform - - uid: 2940 + - uid: 2943 components: - pos: -8.5,-61.5 parent: 2 type: Transform - - uid: 2941 + - uid: 2944 components: - pos: -20.5,-88.5 parent: 2 type: Transform - - uid: 2942 + - uid: 2945 components: - pos: 28.5,-60.5 parent: 2 type: Transform - - uid: 2943 + - uid: 2946 components: - pos: -8.5,-24.5 parent: 2 type: Transform - - uid: 2944 + - uid: 2947 components: - pos: -4.5,-25.5 parent: 2 type: Transform - - uid: 2945 + - uid: 2948 components: - pos: 8.5,-54.5 parent: 2 type: Transform - - uid: 2946 + - uid: 2949 components: - pos: 8.5,-55.5 parent: 2 type: Transform - - uid: 2947 + - uid: 2950 components: - pos: -17.5,-61.5 parent: 2 type: Transform - - uid: 2948 + - uid: 2951 components: - pos: -18.5,-61.5 parent: 2 type: Transform - - uid: 2949 + - uid: 2952 components: - pos: 20.5,0.5 parent: 2 type: Transform - - uid: 2950 + - uid: 2953 components: - pos: -12.5,-74.5 parent: 2 type: Transform - - uid: 2951 + - uid: 2954 components: - pos: 40.5,-25.5 parent: 2 type: Transform - - uid: 2952 + - uid: 2955 components: - pos: 31.5,-62.5 parent: 2 type: Transform - - uid: 2953 + - uid: 2956 components: - pos: 22.5,-53.5 parent: 2 type: Transform - - uid: 2954 + - uid: 2957 components: - pos: 25.5,-47.5 parent: 2 type: Transform - - uid: 2955 + - uid: 2958 components: - pos: 5.5,-70.5 parent: 2 type: Transform - - uid: 2956 + - uid: 2959 components: - pos: 4.5,8.5 parent: 2 type: Transform - - uid: 2957 + - uid: 2960 components: - pos: -31.5,30.5 parent: 2 type: Transform - - uid: 2958 + - uid: 2961 components: - pos: 15.5,-41.5 parent: 2 type: Transform - - uid: 2959 + - uid: 2962 components: - pos: 20.5,1.5 parent: 2 type: Transform - - uid: 2960 + - uid: 2963 components: - pos: -8.5,-23.5 parent: 2 type: Transform - - uid: 2961 + - uid: 2964 components: - pos: 25.5,-60.5 parent: 2 type: Transform - - uid: 2962 + - uid: 2965 components: - pos: -1.5,-69.5 parent: 2 type: Transform - - uid: 2963 + - uid: 2966 components: - pos: 18.5,-32.5 parent: 2 type: Transform - - uid: 2964 + - uid: 2967 components: - pos: -1.5,-26.5 parent: 2 type: Transform - - uid: 2965 + - uid: 2968 components: - pos: -41.5,28.5 parent: 2 type: Transform - - uid: 2966 + - uid: 2969 components: - pos: -37.5,-68.5 parent: 2 type: Transform - - uid: 2967 + - uid: 2970 components: - pos: 1.5,6.5 parent: 2 type: Transform - - uid: 2968 + - uid: 2971 components: - pos: 0.5,-71.5 parent: 2 type: Transform - - uid: 2969 + - uid: 2972 components: - pos: -10.5,-20.5 parent: 2 type: Transform - - uid: 2970 + - uid: 2973 components: - pos: 4.5,-46.5 parent: 2 type: Transform - - uid: 2971 + - uid: 2974 components: - pos: -8.5,-46.5 parent: 2 type: Transform - - uid: 2972 + - uid: 2975 components: - pos: 17.5,-55.5 parent: 2 type: Transform - - uid: 2973 + - uid: 2976 components: - pos: 18.5,-55.5 parent: 2 type: Transform - - uid: 2974 + - uid: 2977 components: - pos: -6.5,-26.5 parent: 2 type: Transform - - uid: 2975 + - uid: 2978 components: - pos: 24.5,-42.5 parent: 2 type: Transform - - uid: 2976 + - uid: 2979 components: - pos: 14.5,-42.5 parent: 2 type: Transform - - uid: 2977 + - uid: 2980 components: - pos: 17.5,-47.5 parent: 2 type: Transform - - uid: 2978 + - uid: 2981 components: - pos: 17.5,-52.5 parent: 2 type: Transform - - uid: 2979 + - uid: 2982 components: - pos: 15.5,-48.5 parent: 2 type: Transform - - uid: 2980 + - uid: 2983 components: - pos: 4.5,-70.5 parent: 2 type: Transform - - uid: 2981 + - uid: 2984 components: - pos: 28.5,-47.5 parent: 2 type: Transform - - uid: 2982 + - uid: 2985 components: - pos: 25.5,-49.5 parent: 2 type: Transform - - uid: 2983 + - uid: 2986 components: - pos: -1.5,-71.5 parent: 2 type: Transform - - uid: 2984 + - uid: 2987 components: - pos: -6.5,1.5 parent: 2 type: Transform - - uid: 2985 + - uid: 2988 components: - pos: 15.5,-49.5 parent: 2 type: Transform - - uid: 2986 + - uid: 2989 components: - pos: -2.5,11.5 parent: 2 type: Transform - - uid: 2987 + - uid: 2990 components: - pos: 4.5,6.5 parent: 2 type: Transform - - uid: 2988 + - uid: 2991 components: - pos: 46.5,-26.5 parent: 2 type: Transform - - uid: 2989 + - uid: 2992 components: - pos: 15.5,-35.5 parent: 2 type: Transform - - uid: 2990 + - uid: 2993 components: - pos: 15.5,-36.5 parent: 2 type: Transform - - uid: 2991 + - uid: 2994 components: - pos: 20.5,-14.5 parent: 2 type: Transform - - uid: 2992 + - uid: 2995 components: - pos: 20.5,-15.5 parent: 2 type: Transform - - uid: 2993 + - uid: 2996 components: - pos: 20.5,-16.5 parent: 2 type: Transform - - uid: 2994 + - uid: 2997 components: - pos: 20.5,-17.5 parent: 2 type: Transform - - uid: 2995 + - uid: 2998 components: - pos: 19.5,-17.5 parent: 2 type: Transform - - uid: 2996 + - uid: 2999 components: - pos: 17.5,-17.5 parent: 2 type: Transform - - uid: 2997 + - uid: 3000 components: - pos: 23.5,-17.5 parent: 2 type: Transform - - uid: 2998 + - uid: 3001 components: - pos: 25.5,-18.5 parent: 2 type: Transform - - uid: 2999 + - uid: 3002 components: - pos: 27.5,-17.5 parent: 2 type: Transform - - uid: 3000 + - uid: 3003 components: - pos: 27.5,-18.5 parent: 2 type: Transform - - uid: 3001 + - uid: 3004 components: - pos: 23.5,-18.5 parent: 2 type: Transform - - uid: 3002 + - uid: 3005 components: - pos: 28.5,-17.5 parent: 2 type: Transform - - uid: 3003 + - uid: 3006 components: - pos: 29.5,-17.5 parent: 2 type: Transform - - uid: 3004 + - uid: 3007 components: - pos: 30.5,-17.5 parent: 2 type: Transform - - uid: 3005 + - uid: 3008 components: - pos: 30.5,-16.5 parent: 2 type: Transform - - uid: 3006 + - uid: 3009 components: - pos: 32.5,-16.5 parent: 2 type: Transform - - uid: 3007 + - uid: 3010 components: - pos: 32.5,-15.5 parent: 2 type: Transform - - uid: 3008 + - uid: 3011 components: - pos: 32.5,-14.5 parent: 2 type: Transform - - uid: 3009 + - uid: 3012 components: - pos: 32.5,-12.5 parent: 2 type: Transform - - uid: 3010 + - uid: 3013 components: - pos: 32.5,-17.5 parent: 2 type: Transform - - uid: 3011 + - uid: 3014 components: - pos: 34.5,-18.5 parent: 2 type: Transform - - uid: 3012 + - uid: 3015 components: - pos: 20.5,-8.5 parent: 2 type: Transform - - uid: 3013 + - uid: 3016 components: - pos: 19.5,-8.5 parent: 2 type: Transform - - uid: 3014 + - uid: 3017 components: - pos: 17.5,-8.5 parent: 2 type: Transform - - uid: 3015 + - uid: 3018 components: - pos: 15.5,-8.5 parent: 2 type: Transform - - uid: 3016 + - uid: 3019 components: - pos: 14.5,-7.5 parent: 2 type: Transform - - uid: 3017 + - uid: 3020 components: - pos: 9.5,-14.5 parent: 2 type: Transform - - uid: 3018 + - uid: 3021 components: - pos: 26.5,-14.5 parent: 2 type: Transform - - uid: 3019 + - uid: 3022 components: - pos: 29.5,-8.5 parent: 2 type: Transform - - uid: 3020 + - uid: 3023 components: - pos: 27.5,-14.5 parent: 2 type: Transform - - uid: 3021 + - uid: 3024 components: - pos: 30.5,-8.5 parent: 2 type: Transform - - uid: 3022 + - uid: 3025 components: - pos: 31.5,-8.5 parent: 2 type: Transform - - uid: 3023 + - uid: 3026 components: - pos: -4.5,-15.5 parent: 2 type: Transform - - uid: 3024 + - uid: 3027 components: - pos: -15.5,-17.5 parent: 2 type: Transform - - uid: 3025 + - uid: 3028 components: - pos: -12.5,-73.5 parent: 2 type: Transform - - uid: 3026 + - uid: 3029 components: - pos: -4.5,-19.5 parent: 2 type: Transform - - uid: 3027 + - uid: 3030 components: - pos: -1.5,-63.5 parent: 2 type: Transform - - uid: 3028 + - uid: 3031 components: - pos: -7.5,-47.5 parent: 2 type: Transform - - uid: 3029 + - uid: 3032 components: - pos: 25.5,-24.5 parent: 2 type: Transform - - uid: 3030 + - uid: 3033 components: - pos: 23.5,-23.5 parent: 2 type: Transform - - uid: 3031 + - uid: 3034 components: - pos: 20.5,-22.5 parent: 2 type: Transform - - uid: 3032 + - uid: 3035 components: - pos: 30.5,-24.5 parent: 2 type: Transform - - uid: 3033 + - uid: 3036 components: - pos: -8.5,-47.5 parent: 2 type: Transform - - uid: 3034 + - uid: 3037 components: - pos: 27.5,-31.5 parent: 2 type: Transform - - uid: 3035 + - uid: 3038 components: - pos: 22.5,-33.5 parent: 2 type: Transform - - uid: 3036 + - uid: 3039 components: - pos: 22.5,-31.5 parent: 2 type: Transform - - uid: 3037 + - uid: 3040 components: - pos: -7.5,-45.5 parent: 2 type: Transform - - uid: 3038 + - uid: 3041 components: - pos: -5.5,-45.5 parent: 2 type: Transform - - uid: 3039 + - uid: 3042 components: - pos: -4.5,-45.5 parent: 2 type: Transform - - uid: 3040 + - uid: 3043 components: - pos: -3.5,-45.5 parent: 2 type: Transform - - uid: 3041 + - uid: 3044 components: - pos: 5.5,-46.5 parent: 2 type: Transform - - uid: 3042 + - uid: 3045 components: - pos: 6.5,-46.5 parent: 2 type: Transform - - uid: 3043 + - uid: 3046 components: - pos: -12.5,-54.5 parent: 2 type: Transform - - uid: 3044 + - uid: 3047 components: - pos: 19.5,-50.5 parent: 2 type: Transform - - uid: 3045 + - uid: 3048 components: - pos: -2.5,-42.5 parent: 2 type: Transform - - uid: 3046 + - uid: 3049 components: - pos: -4.5,-42.5 parent: 2 type: Transform - - uid: 3047 + - uid: 3050 components: - pos: -6.5,-42.5 parent: 2 type: Transform - - uid: 3048 + - uid: 3051 components: - pos: -7.5,-42.5 parent: 2 type: Transform - - uid: 3049 + - uid: 3052 components: - pos: -8.5,-42.5 parent: 2 type: Transform - - uid: 3050 + - uid: 3053 components: - pos: -9.5,-42.5 parent: 2 type: Transform - - uid: 3051 + - uid: 3054 components: - pos: -10.5,-42.5 parent: 2 type: Transform - - uid: 3052 + - uid: 3055 components: - pos: -11.5,-42.5 parent: 2 type: Transform - - uid: 3053 + - uid: 3056 components: - pos: -12.5,-42.5 parent: 2 type: Transform - - uid: 3054 + - uid: 3057 components: - pos: 1.5,-41.5 parent: 2 type: Transform - - uid: 3055 + - uid: 3058 components: - pos: 2.5,-41.5 parent: 2 type: Transform - - uid: 3056 + - uid: 3059 components: - pos: 3.5,-41.5 parent: 2 type: Transform - - uid: 3057 + - uid: 3060 components: - pos: 5.5,-41.5 parent: 2 type: Transform - - uid: 3058 + - uid: 3061 components: - pos: 5.5,-42.5 parent: 2 type: Transform - - uid: 3059 + - uid: 3062 components: - pos: -4.5,-38.5 parent: 2 type: Transform - - uid: 3060 + - uid: 3063 components: - pos: -4.5,-36.5 parent: 2 type: Transform - - uid: 3061 + - uid: 3064 components: - pos: -4.5,-35.5 parent: 2 type: Transform - - uid: 3062 + - uid: 3065 components: - pos: -4.5,-34.5 parent: 2 type: Transform - - uid: 3063 + - uid: 3066 components: - pos: -12.5,-43.5 parent: 2 type: Transform - - uid: 3064 + - uid: 3067 components: - pos: -12.5,-44.5 parent: 2 type: Transform - - uid: 3065 + - uid: 3068 components: - pos: -12.5,-46.5 parent: 2 type: Transform - - uid: 3066 + - uid: 3069 components: - pos: -5.5,-69.5 parent: 2 type: Transform - - uid: 3067 + - uid: 3070 components: - pos: 26.5,-42.5 parent: 2 type: Transform - - uid: 3068 + - uid: 3071 components: - pos: 30.5,2.5 parent: 2 type: Transform - - uid: 3069 + - uid: 3072 components: - pos: 18.5,-41.5 parent: 2 type: Transform - - uid: 3070 + - uid: 3073 components: - pos: 8.5,-68.5 parent: 2 type: Transform - - uid: 3071 + - uid: 3074 components: - pos: 26.5,-47.5 parent: 2 type: Transform - - uid: 3072 + - uid: 3075 components: - pos: -4.5,-27.5 parent: 2 type: Transform - - uid: 3073 + - uid: 3076 components: - pos: 29.5,2.5 parent: 2 type: Transform - - uid: 3074 + - uid: 3077 components: - pos: 25.5,-48.5 parent: 2 type: Transform - - uid: 3075 + - uid: 3078 components: - pos: -4.5,7.5 parent: 2 type: Transform - - uid: 3076 + - uid: 3079 components: - pos: 28.5,-32.5 parent: 2 type: Transform - - uid: 3077 + - uid: 3080 components: - pos: 30.5,-30.5 parent: 2 type: Transform - - uid: 3078 + - uid: 3081 components: - pos: 30.5,-29.5 parent: 2 type: Transform - - uid: 3079 + - uid: 3082 components: - pos: 30.5,-28.5 parent: 2 type: Transform - - uid: 3080 + - uid: 3083 components: - pos: 62.5,-10.5 parent: 2 type: Transform - - uid: 3081 + - uid: 3084 components: - pos: 9.5,2.5 parent: 2 type: Transform - - uid: 3082 + - uid: 3085 components: - pos: 2.5,2.5 parent: 2 type: Transform - - uid: 3083 + - uid: 3086 components: - pos: 27.5,-32.5 parent: 2 type: Transform - - uid: 3084 + - uid: 3087 components: - pos: 62.5,-12.5 parent: 2 type: Transform - - uid: 3085 + - uid: 3088 components: - pos: -4.5,-22.5 parent: 2 type: Transform - - uid: 3086 + - uid: 3089 components: - pos: -4.5,-3.5 parent: 2 type: Transform - - uid: 3087 + - uid: 3090 components: - pos: -4.5,-2.5 parent: 2 type: Transform - - uid: 3088 + - uid: 3091 components: - pos: -4.5,-0.5 parent: 2 type: Transform - - uid: 3089 + - uid: 3092 components: - pos: -4.5,-1.5 parent: 2 type: Transform - - uid: 3090 + - uid: 3093 components: - pos: -8.5,-0.5 parent: 2 type: Transform - - uid: 3091 + - uid: 3094 components: - pos: -8.5,0.5 parent: 2 type: Transform - - uid: 3092 + - uid: 3095 components: - pos: -3.5,-42.5 parent: 2 type: Transform - - uid: 3093 + - uid: 3096 components: - pos: -0.5,-41.5 parent: 2 type: Transform - - uid: 3094 + - uid: 3097 components: - pos: -4.5,-32.5 parent: 2 type: Transform - - uid: 3095 + - uid: 3098 components: - pos: -6.5,-63.5 parent: 2 type: Transform - - uid: 3096 + - uid: 3099 components: - pos: 22.5,-42.5 parent: 2 type: Transform - - uid: 3097 + - uid: 3100 components: - pos: -1.5,-78.5 parent: 2 type: Transform - - uid: 3098 + - uid: 3101 components: - pos: -4.5,-74.5 parent: 2 type: Transform - - uid: 3099 + - uid: 3102 components: - pos: 13.5,1.5 parent: 2 type: Transform - - uid: 3100 + - uid: 3103 components: - pos: 3.5,0.5 parent: 2 type: Transform - - uid: 3101 + - uid: 3104 components: - pos: 11.5,2.5 parent: 2 type: Transform - - uid: 3102 + - uid: 3105 components: - pos: 5.5,6.5 parent: 2 type: Transform - - uid: 3103 + - uid: 3106 components: - pos: 20.5,-0.5 parent: 2 type: Transform - - uid: 3104 + - uid: 3107 components: - pos: 35.5,-37.5 parent: 2 type: Transform - - uid: 3105 + - uid: 3108 components: - pos: 9.5,-42.5 parent: 2 type: Transform - - uid: 3106 + - uid: 3109 components: - pos: 37.5,13.5 parent: 2 type: Transform - - uid: 3107 + - uid: 3110 components: - pos: -33.5,-55.5 parent: 2 type: Transform - - uid: 3108 + - uid: 3111 components: - pos: -38.5,-68.5 parent: 2 type: Transform - - uid: 3109 + - uid: 3112 components: - pos: -8.5,-5.5 parent: 2 type: Transform - - uid: 3110 + - uid: 3113 components: - pos: -9.5,-5.5 parent: 2 type: Transform - - uid: 3111 + - uid: 3114 components: - pos: -9.5,-3.5 parent: 2 type: Transform - - uid: 3112 + - uid: 3115 components: - pos: -4.5,-39.5 parent: 2 type: Transform - - uid: 3113 + - uid: 3116 components: - pos: 0.5,-40.5 parent: 2 type: Transform - - uid: 3114 + - uid: 3117 components: - pos: 21.5,-32.5 parent: 2 type: Transform - - uid: 3115 + - uid: 3118 components: - pos: 0.5,-69.5 parent: 2 type: Transform - - uid: 3116 + - uid: 3119 components: - pos: -19.5,-65.5 parent: 2 type: Transform - - uid: 3117 + - uid: 3120 components: - pos: -19.5,-67.5 parent: 2 type: Transform - - uid: 3118 + - uid: 3121 components: - pos: -19.5,-71.5 parent: 2 type: Transform - - uid: 3119 + - uid: 3122 components: - pos: -18.5,-73.5 parent: 2 type: Transform - - uid: 3120 + - uid: 3123 components: - pos: -18.5,-75.5 parent: 2 type: Transform - - uid: 3121 + - uid: 3124 components: - pos: -16.5,-77.5 parent: 2 type: Transform - - uid: 3122 + - uid: 3125 components: - pos: -24.5,-14.5 parent: 2 type: Transform - - uid: 3123 + - uid: 3126 components: - pos: 23.5,-24.5 parent: 2 type: Transform - - uid: 3124 + - uid: 3127 components: - pos: 45.5,-24.5 parent: 2 type: Transform - - uid: 3125 + - uid: 3128 components: - pos: -47.5,36.5 parent: 2 type: Transform - - uid: 3126 + - uid: 3129 components: - pos: 12.5,-15.5 parent: 2 type: Transform - - uid: 3127 + - uid: 3130 components: - pos: -14.5,-57.5 parent: 2 type: Transform - - uid: 3128 + - uid: 3131 components: - pos: 0.5,-48.5 parent: 2 type: Transform - - uid: 3129 + - uid: 3132 components: - pos: 13.5,-0.5 parent: 2 type: Transform - - uid: 3130 + - uid: 3133 components: - pos: 20.5,2.5 parent: 2 type: Transform - - uid: 3131 + - uid: 3134 components: - pos: 20.5,-1.5 parent: 2 type: Transform - - uid: 3132 + - uid: 3135 components: - pos: 17.5,-13.5 parent: 2 type: Transform - - uid: 3133 + - uid: 3136 components: - pos: 62.5,-11.5 parent: 2 type: Transform - - uid: 3134 + - uid: 3137 components: - pos: -8.5,-25.5 parent: 2 type: Transform - - uid: 3135 + - uid: 3138 components: - pos: -36.5,-69.5 parent: 2 type: Transform - - uid: 3136 + - uid: 3139 components: - pos: 19.5,-32.5 parent: 2 type: Transform - - uid: 3137 + - uid: 3140 components: - pos: 1.5,11.5 parent: 2 type: Transform - - uid: 3138 + - uid: 3141 components: - pos: 22.5,-17.5 parent: 2 type: Transform - - uid: 3139 + - uid: 3142 components: - pos: 24.5,-17.5 parent: 2 type: Transform - - uid: 3140 + - uid: 3143 components: - pos: 25.5,-17.5 parent: 2 type: Transform - - uid: 3141 + - uid: 3144 components: - pos: 26.5,-17.5 parent: 2 type: Transform - - uid: 3142 + - uid: 3145 components: - pos: 17.5,-40.5 parent: 2 type: Transform - - uid: 3143 + - uid: 3146 components: - pos: -4.5,-17.5 parent: 2 type: Transform - - uid: 3144 + - uid: 3147 components: - pos: 20.5,-47.5 parent: 2 type: Transform - - uid: 3145 + - uid: 3148 components: - pos: -3.5,-68.5 parent: 2 type: Transform - - uid: 3146 + - uid: 3149 components: - pos: 6.5,-66.5 parent: 2 type: Transform - - uid: 3147 + - uid: 3150 components: - pos: 6.5,-67.5 parent: 2 type: Transform - - uid: 3148 + - uid: 3151 components: - pos: 5.5,-67.5 parent: 2 type: Transform - - uid: 3149 + - uid: 3152 components: - pos: 4.5,-67.5 parent: 2 type: Transform - - uid: 3150 + - uid: 3153 components: - pos: 6.5,-72.5 parent: 2 type: Transform - - uid: 3151 + - uid: 3154 components: - pos: 3.5,-71.5 parent: 2 type: Transform - - uid: 3152 + - uid: 3155 components: - pos: 6.5,-70.5 parent: 2 type: Transform - - uid: 3153 + - uid: 3156 components: - pos: -0.5,-71.5 parent: 2 type: Transform - - uid: 3154 + - uid: 3157 components: - pos: -3.5,0.5 parent: 2 type: Transform - - uid: 3155 + - uid: 3158 components: - pos: -3.5,1.5 parent: 2 type: Transform - - uid: 3156 + - uid: 3159 components: - pos: 15.5,-46.5 parent: 2 type: Transform - - uid: 3157 + - uid: 3160 components: - pos: 17.5,-46.5 parent: 2 type: Transform - - uid: 3158 + - uid: 3161 components: - pos: 19.5,-48.5 parent: 2 type: Transform - - uid: 3159 + - uid: 3162 components: - pos: 25.5,-53.5 parent: 2 type: Transform - - uid: 3160 + - uid: 3163 components: - pos: 18.5,-42.5 parent: 2 type: Transform - - uid: 3161 + - uid: 3164 components: - pos: 16.5,-40.5 parent: 2 type: Transform - - uid: 3162 + - uid: 3165 components: - pos: -4.5,-26.5 parent: 2 type: Transform - - uid: 3163 + - uid: 3166 components: - pos: 33.5,-32.5 parent: 2 type: Transform - - uid: 3164 + - uid: 3167 components: - pos: 34.5,-32.5 parent: 2 type: Transform - - uid: 3165 + - uid: 3168 components: - pos: 15.5,-31.5 parent: 2 type: Transform - - uid: 3166 + - uid: 3169 components: - pos: 15.5,-30.5 parent: 2 type: Transform - - uid: 3167 + - uid: 3170 components: - pos: 15.5,-29.5 parent: 2 type: Transform - - uid: 3168 + - uid: 3171 components: - pos: 15.5,-21.5 parent: 2 type: Transform - - uid: 3169 + - uid: 3172 components: - pos: 15.5,-22.5 parent: 2 type: Transform - - uid: 3170 + - uid: 3173 components: - pos: 15.5,-23.5 parent: 2 type: Transform - - uid: 3171 + - uid: 3174 components: - pos: 15.5,-24.5 parent: 2 type: Transform - - uid: 3172 + - uid: 3175 components: - pos: 15.5,-25.5 parent: 2 type: Transform - - uid: 3173 + - uid: 3176 components: - pos: 15.5,-26.5 parent: 2 type: Transform - - uid: 3174 + - uid: 3177 components: - pos: 34.5,-17.5 parent: 2 type: Transform - - uid: 3175 + - uid: 3178 components: - pos: 35.5,-18.5 parent: 2 type: Transform - - uid: 3176 + - uid: 3179 components: - pos: 18.5,-8.5 parent: 2 type: Transform - - uid: 3177 + - uid: 3180 components: - pos: 16.5,-8.5 parent: 2 type: Transform - - uid: 3178 + - uid: 3181 components: - pos: 14.5,-8.5 parent: 2 type: Transform - - uid: 3179 + - uid: 3182 components: - pos: 14.5,-4.5 parent: 2 type: Transform - - uid: 3180 + - uid: 3183 components: - pos: 14.5,-1.5 parent: 2 type: Transform - - uid: 3181 + - uid: 3184 components: - pos: 15.5,-9.5 parent: 2 type: Transform - - uid: 3182 + - uid: 3185 components: - pos: 15.5,-12.5 parent: 2 type: Transform - - uid: 3183 + - uid: 3186 components: - pos: 39.5,-25.5 parent: 2 type: Transform - - uid: 3184 + - uid: 3187 components: - pos: 39.5,-26.5 parent: 2 type: Transform - - uid: 3185 + - uid: 3188 components: - pos: -25.5,-86.5 parent: 2 type: Transform - - uid: 3186 + - uid: 3189 components: - pos: -25.5,-85.5 parent: 2 type: Transform - - uid: 3187 + - uid: 3190 components: - pos: 5.5,-53.5 parent: 2 type: Transform - - uid: 3188 + - uid: 3191 components: - pos: 6.5,-53.5 parent: 2 type: Transform - - uid: 3189 + - uid: 3192 components: - pos: 7.5,-53.5 parent: 2 type: Transform - - uid: 3190 + - uid: 3193 components: - pos: 8.5,-53.5 parent: 2 type: Transform - - uid: 3191 + - uid: 3194 components: - pos: 8.5,-52.5 parent: 2 type: Transform - - uid: 3192 + - uid: 3195 components: - pos: 9.5,-52.5 parent: 2 type: Transform - - uid: 3193 + - uid: 3196 components: - pos: 10.5,-52.5 parent: 2 type: Transform - - uid: 3194 + - uid: 3197 components: - pos: 10.5,-49.5 parent: 2 type: Transform - - uid: 3195 + - uid: 3198 components: - pos: 15.5,-43.5 parent: 2 type: Transform - - uid: 3196 + - uid: 3199 components: - pos: -16.5,-61.5 parent: 2 type: Transform - - uid: 3197 + - uid: 3200 components: - pos: -19.5,-64.5 parent: 2 type: Transform - - uid: 3198 + - uid: 3201 components: - pos: -19.5,-66.5 parent: 2 type: Transform - - uid: 3199 + - uid: 3202 components: - pos: -14.5,-67.5 parent: 2 type: Transform - - uid: 3200 + - uid: 3203 components: - pos: -28.5,-79.5 parent: 2 type: Transform - - uid: 3201 + - uid: 3204 components: - pos: -28.5,-78.5 parent: 2 type: Transform - - uid: 3202 + - uid: 3205 components: - pos: -27.5,-78.5 parent: 2 type: Transform - - uid: 3203 + - uid: 3206 components: - pos: -26.5,-78.5 parent: 2 type: Transform - - uid: 3204 + - uid: 3207 components: - pos: -26.5,-77.5 parent: 2 type: Transform - - uid: 3205 + - uid: 3208 components: - pos: -25.5,-77.5 parent: 2 type: Transform - - uid: 3206 + - uid: 3209 components: - pos: -22.5,-86.5 parent: 2 type: Transform - - uid: 3207 + - uid: 3210 components: - pos: -20.5,-85.5 parent: 2 type: Transform - - uid: 3208 + - uid: 3211 components: - pos: -21.5,-85.5 parent: 2 type: Transform - - uid: 3209 + - uid: 3212 components: - pos: -24.5,-85.5 parent: 2 type: Transform - - uid: 3210 + - uid: 3213 components: - pos: -23.5,-85.5 parent: 2 type: Transform - - uid: 3211 + - uid: 3214 components: - pos: -22.5,-85.5 parent: 2 type: Transform - - uid: 3212 + - uid: 3215 components: - pos: -22.5,-84.5 parent: 2 type: Transform - - uid: 3213 + - uid: 3216 components: - pos: -22.5,-81.5 parent: 2 type: Transform - - uid: 3214 + - uid: 3217 components: - pos: -22.5,-83.5 parent: 2 type: Transform - - uid: 3215 + - uid: 3218 components: - pos: -22.5,-82.5 parent: 2 type: Transform - - uid: 3216 + - uid: 3219 components: - pos: -22.5,-80.5 parent: 2 type: Transform - - uid: 3217 + - uid: 3220 components: - pos: -23.5,-80.5 parent: 2 type: Transform - - uid: 3218 + - uid: 3221 components: - pos: -23.5,-79.5 parent: 2 type: Transform - - uid: 3219 + - uid: 3222 components: - pos: -23.5,-78.5 parent: 2 type: Transform - - uid: 3220 + - uid: 3223 components: - pos: -23.5,-77.5 parent: 2 type: Transform - - uid: 3221 + - uid: 3224 components: - pos: -24.5,-77.5 parent: 2 type: Transform - - uid: 3222 + - uid: 3225 components: - pos: -24.5,-76.5 parent: 2 type: Transform - - uid: 3223 + - uid: 3226 components: - pos: -24.5,-75.5 parent: 2 type: Transform - - uid: 3224 + - uid: 3227 components: - pos: -24.5,-74.5 parent: 2 type: Transform - - uid: 3225 + - uid: 3228 components: - pos: -24.5,-73.5 parent: 2 type: Transform - - uid: 3226 + - uid: 3229 components: - pos: -24.5,-72.5 parent: 2 type: Transform - - uid: 3227 + - uid: 3230 components: - pos: -23.5,-72.5 parent: 2 type: Transform - - uid: 3228 + - uid: 3231 components: - pos: -22.5,-72.5 parent: 2 type: Transform - - uid: 3229 + - uid: 3232 components: - pos: -21.5,-72.5 parent: 2 type: Transform - - uid: 3230 + - uid: 3233 components: - pos: -21.5,-71.5 parent: 2 type: Transform - - uid: 3231 + - uid: 3234 components: - pos: -20.5,-79.5 parent: 2 type: Transform - - uid: 3232 + - uid: 3235 components: - pos: -19.5,-79.5 parent: 2 type: Transform - - uid: 3233 + - uid: 3236 components: - pos: -19.5,-78.5 parent: 2 type: Transform - - uid: 3234 + - uid: 3237 components: - pos: 33.5,3.5 parent: 2 type: Transform - - uid: 3235 + - uid: 3238 components: - pos: 33.5,4.5 parent: 2 type: Transform - - uid: 3236 + - uid: 3239 components: - pos: 33.5,7.5 parent: 2 type: Transform - - uid: 3237 + - uid: 3240 components: - pos: 33.5,6.5 parent: 2 type: Transform - - uid: 3238 + - uid: 3241 components: - pos: 33.5,5.5 parent: 2 type: Transform - - uid: 3239 + - uid: 3242 components: - pos: 26.5,7.5 parent: 2 type: Transform - - uid: 3240 + - uid: 3243 components: - pos: 33.5,0.5 parent: 2 type: Transform - - uid: 3241 + - uid: 3244 components: - pos: 33.5,-0.5 parent: 2 type: Transform - - uid: 3242 + - uid: 3245 components: - pos: 33.5,-1.5 parent: 2 type: Transform - - uid: 3243 + - uid: 3246 components: - pos: 33.5,-2.5 parent: 2 type: Transform - - uid: 3244 + - uid: 3247 components: - pos: 33.5,-3.5 parent: 2 type: Transform - - uid: 3245 + - uid: 3248 components: - pos: 33.5,-4.5 parent: 2 type: Transform - - uid: 3246 + - uid: 3249 components: - pos: 33.5,-5.5 parent: 2 type: Transform - - uid: 3247 + - uid: 3250 components: - pos: 27.5,7.5 parent: 2 type: Transform - - uid: 3248 + - uid: 3251 components: - pos: 28.5,7.5 parent: 2 type: Transform - - uid: 3249 + - uid: 3252 components: - pos: 29.5,7.5 parent: 2 type: Transform - - uid: 3250 + - uid: 3253 components: - pos: 30.5,7.5 parent: 2 type: Transform - - uid: 3251 + - uid: 3254 components: - pos: 31.5,7.5 parent: 2 type: Transform - - uid: 3252 + - uid: 3255 components: - pos: 32.5,7.5 parent: 2 type: Transform - - uid: 3253 + - uid: 3256 components: - pos: 26.5,8.5 parent: 2 type: Transform - - uid: 3254 + - uid: 3257 components: - pos: 26.5,9.5 parent: 2 type: Transform - - uid: 3255 + - uid: 3258 components: - pos: 26.5,10.5 parent: 2 type: Transform - - uid: 3256 + - uid: 3259 components: - pos: 26.5,11.5 parent: 2 type: Transform - - uid: 3257 + - uid: 3260 components: - pos: 26.5,12.5 parent: 2 type: Transform - - uid: 3258 + - uid: 3261 components: - pos: 26.5,13.5 parent: 2 type: Transform - - uid: 3259 + - uid: 3262 components: - pos: 25.5,7.5 parent: 2 type: Transform - - uid: 3260 + - uid: 3263 components: - pos: 24.5,7.5 parent: 2 type: Transform - - uid: 3261 + - uid: 3264 components: - pos: 23.5,7.5 parent: 2 type: Transform - - uid: 3262 + - uid: 3265 components: - pos: 22.5,7.5 parent: 2 type: Transform - - uid: 3263 + - uid: 3266 components: - pos: 21.5,7.5 parent: 2 type: Transform - - uid: 3264 + - uid: 3267 components: - pos: 34.5,0.5 parent: 2 type: Transform - - uid: 3265 + - uid: 3268 components: - pos: 37.5,-25.5 parent: 2 type: Transform - - uid: 3266 + - uid: 3269 components: - pos: 36.5,-25.5 parent: 2 type: Transform - - uid: 3267 + - uid: 3270 components: - pos: 36.5,-24.5 parent: 2 type: Transform - - uid: 3268 + - uid: 3271 components: - pos: 36.5,-23.5 parent: 2 type: Transform - - uid: 3269 + - uid: 3272 components: - pos: 36.5,-22.5 parent: 2 type: Transform - - uid: 3270 + - uid: 3273 components: - pos: 35.5,-22.5 parent: 2 type: Transform - - uid: 3271 + - uid: 3274 components: - pos: 35.5,-21.5 parent: 2 type: Transform - - uid: 3272 + - uid: 3275 components: - pos: 35.5,-25.5 parent: 2 type: Transform - - uid: 3273 + - uid: 3276 components: - pos: 34.5,-25.5 parent: 2 type: Transform - - uid: 3274 + - uid: 3277 components: - pos: 35.5,-26.5 parent: 2 type: Transform - - uid: 3275 + - uid: 3278 components: - pos: 35.5,-27.5 parent: 2 type: Transform - - uid: 3276 + - uid: 3279 components: - pos: 35.5,-28.5 parent: 2 type: Transform - - uid: 3277 + - uid: 3280 components: - pos: 35.5,-29.5 parent: 2 type: Transform - - uid: 3278 + - uid: 3281 components: - pos: 35.5,-30.5 parent: 2 type: Transform - - uid: 3279 + - uid: 3282 components: - pos: 35.5,-31.5 parent: 2 type: Transform - - uid: 3280 + - uid: 3283 components: - pos: 35.5,-32.5 parent: 2 type: Transform - - uid: 3281 + - uid: 3284 components: - pos: 35.5,-33.5 parent: 2 type: Transform - - uid: 3282 + - uid: 3285 components: - pos: 35.5,-34.5 parent: 2 type: Transform - - uid: 3283 + - uid: 3286 components: - pos: 35.5,-35.5 parent: 2 type: Transform - - uid: 3284 + - uid: 3287 components: - pos: 35.5,-36.5 parent: 2 type: Transform - - uid: 3285 + - uid: 3288 components: - pos: 36.5,-30.5 parent: 2 type: Transform - - uid: 3286 + - uid: 3289 components: - pos: 37.5,-30.5 parent: 2 type: Transform - - uid: 3287 + - uid: 3290 components: - pos: 38.5,-30.5 parent: 2 type: Transform - - uid: 3288 + - uid: 3291 components: - pos: 39.5,-30.5 parent: 2 type: Transform - - uid: 3289 + - uid: 3292 components: - pos: 31.5,-4.5 parent: 2 type: Transform - - uid: 3290 + - uid: 3293 components: - pos: -4.5,-10.5 parent: 2 type: Transform - - uid: 3291 + - uid: 3294 components: - pos: -4.5,-9.5 parent: 2 type: Transform - - uid: 3292 + - uid: 3295 components: - pos: -4.5,-8.5 parent: 2 type: Transform - - uid: 3293 + - uid: 3296 components: - pos: -4.5,-7.5 parent: 2 type: Transform - - uid: 3294 + - uid: 3297 components: - pos: -4.5,-6.5 parent: 2 type: Transform - - uid: 3295 + - uid: 3298 components: - pos: -4.5,-5.5 parent: 2 type: Transform - - uid: 3296 + - uid: 3299 components: - pos: 63.5,-5.5 parent: 2 type: Transform - - uid: 3297 + - uid: 3300 components: - pos: 62.5,-5.5 parent: 2 type: Transform - - uid: 3298 + - uid: 3301 components: - pos: 21.5,15.5 parent: 2 type: Transform - - uid: 3299 + - uid: 3302 components: - pos: 21.5,14.5 parent: 2 type: Transform - - uid: 3300 + - uid: 3303 components: - pos: 21.5,13.5 parent: 2 type: Transform - - uid: 3301 + - uid: 3304 components: - pos: 21.5,12.5 parent: 2 type: Transform - - uid: 3302 + - uid: 3305 components: - pos: 21.5,11.5 parent: 2 type: Transform - - uid: 3303 + - uid: 3306 components: - pos: 21.5,10.5 parent: 2 type: Transform - - uid: 3304 + - uid: 3307 components: - pos: 20.5,14.5 parent: 2 type: Transform - - uid: 3305 + - uid: 3308 components: - pos: 19.5,14.5 parent: 2 type: Transform - - uid: 3306 + - uid: 3309 components: - pos: 18.5,14.5 parent: 2 type: Transform - - uid: 3307 + - uid: 3310 components: - pos: 17.5,14.5 parent: 2 type: Transform - - uid: 3308 + - uid: 3311 components: - pos: 17.5,13.5 parent: 2 type: Transform - - uid: 3309 + - uid: 3312 components: - pos: 17.5,12.5 parent: 2 type: Transform - - uid: 3310 + - uid: 3313 components: - pos: 17.5,11.5 parent: 2 type: Transform - - uid: 3311 + - uid: 3314 components: - pos: 16.5,11.5 parent: 2 type: Transform - - uid: 3312 + - uid: 3315 components: - pos: 15.5,11.5 parent: 2 type: Transform - - uid: 3313 + - uid: 3316 components: - pos: 14.5,11.5 parent: 2 type: Transform - - uid: 3314 + - uid: 3317 components: - pos: 13.5,11.5 parent: 2 type: Transform - - uid: 3315 + - uid: 3318 components: - pos: 13.5,12.5 parent: 2 type: Transform - - uid: 3316 + - uid: 3319 components: - pos: 13.5,13.5 parent: 2 type: Transform - - uid: 3317 + - uid: 3320 components: - pos: 12.5,13.5 parent: 2 type: Transform - - uid: 3318 + - uid: 3321 components: - pos: 11.5,13.5 parent: 2 type: Transform - - uid: 3319 + - uid: 3322 components: - pos: 11.5,12.5 parent: 2 type: Transform - - uid: 3320 + - uid: 3323 components: - pos: 11.5,11.5 parent: 2 type: Transform - - uid: 3321 + - uid: 3324 components: - pos: 11.5,10.5 parent: 2 type: Transform - - uid: 3322 + - uid: 3325 components: - pos: 11.5,9.5 parent: 2 type: Transform - - uid: 3323 + - uid: 3326 components: - pos: 11.5,8.5 parent: 2 type: Transform - - uid: 3324 + - uid: 3327 components: - pos: 11.5,7.5 parent: 2 type: Transform - - uid: 3325 + - uid: 3328 components: - pos: 11.5,6.5 parent: 2 type: Transform - - uid: 3326 + - uid: 3329 components: - pos: 12.5,8.5 parent: 2 type: Transform - - uid: 3327 + - uid: 3330 components: - pos: 13.5,8.5 parent: 2 type: Transform - - uid: 3328 + - uid: 3331 components: - pos: 13.5,7.5 parent: 2 type: Transform - - uid: 3329 + - uid: 3332 components: - pos: 14.5,7.5 parent: 2 type: Transform - - uid: 3330 + - uid: 3333 components: - pos: 15.5,7.5 parent: 2 type: Transform - - uid: 3331 + - uid: 3334 components: - pos: 16.5,7.5 parent: 2 type: Transform - - uid: 3332 + - uid: 3335 components: - pos: 17.5,7.5 parent: 2 type: Transform - - uid: 3333 + - uid: 3336 components: - pos: 17.5,6.5 parent: 2 type: Transform - - uid: 3334 + - uid: 3337 components: - pos: 17.5,5.5 parent: 2 type: Transform - - uid: 3335 + - uid: 3338 components: - pos: 17.5,4.5 parent: 2 type: Transform - - uid: 3336 + - uid: 3339 components: - pos: 17.5,3.5 parent: 2 type: Transform - - uid: 3337 + - uid: 3340 components: - pos: 17.5,2.5 parent: 2 type: Transform - - uid: 3338 + - uid: 3341 components: - pos: 17.5,1.5 parent: 2 type: Transform - - uid: 3339 + - uid: 3342 components: - pos: 17.5,0.5 parent: 2 type: Transform - - uid: 3340 + - uid: 3343 components: - pos: 17.5,-0.5 parent: 2 type: Transform - - uid: 3341 + - uid: 3344 components: - pos: 17.5,-1.5 parent: 2 type: Transform - - uid: 3342 + - uid: 3345 components: - pos: 17.5,-2.5 parent: 2 type: Transform - - uid: 3343 + - uid: 3346 components: - pos: 17.5,-3.5 parent: 2 type: Transform - - uid: 3344 + - uid: 3347 components: - pos: 17.5,-4.5 parent: 2 type: Transform - - uid: 3345 + - uid: 3348 components: - pos: 17.5,-5.5 parent: 2 type: Transform - - uid: 3346 + - uid: 3349 components: - pos: 18.5,4.5 parent: 2 type: Transform - - uid: 3347 + - uid: 3350 components: - pos: 16.5,-2.5 parent: 2 type: Transform - - uid: 3348 + - uid: 3351 components: - pos: 10.5,8.5 parent: 2 type: Transform - - uid: 3349 + - uid: 3352 components: - pos: 24.5,24.5 parent: 2 type: Transform - - uid: 3350 + - uid: 3353 components: - pos: 24.5,23.5 parent: 2 type: Transform - - uid: 3351 + - uid: 3354 components: - pos: 24.5,22.5 parent: 2 type: Transform - - uid: 3352 + - uid: 3355 components: - pos: 23.5,22.5 parent: 2 type: Transform - - uid: 3353 + - uid: 3356 components: - pos: 22.5,22.5 parent: 2 type: Transform - - uid: 3354 + - uid: 3357 components: - pos: 22.5,21.5 parent: 2 type: Transform - - uid: 3355 + - uid: 3358 components: - pos: 22.5,20.5 parent: 2 type: Transform - - uid: 3356 + - uid: 3359 components: - pos: 22.5,19.5 parent: 2 type: Transform - - uid: 3357 + - uid: 3360 components: - pos: 22.5,18.5 parent: 2 type: Transform - - uid: 3358 + - uid: 3361 components: - pos: 22.5,17.5 parent: 2 type: Transform - - uid: 3359 + - uid: 3362 components: - pos: 21.5,17.5 parent: 2 type: Transform - - uid: 3360 + - uid: 3363 components: - pos: 20.5,17.5 parent: 2 type: Transform - - uid: 3361 + - uid: 3364 components: - pos: 19.5,17.5 parent: 2 type: Transform - - uid: 3362 + - uid: 3365 components: - pos: 18.5,17.5 parent: 2 type: Transform - - uid: 3363 + - uid: 3366 components: - pos: 17.5,17.5 parent: 2 type: Transform - - uid: 3364 + - uid: 3367 components: - pos: 16.5,17.5 parent: 2 type: Transform - - uid: 3365 + - uid: 3368 components: - pos: 15.5,17.5 parent: 2 type: Transform - - uid: 3366 + - uid: 3369 components: - pos: 14.5,17.5 parent: 2 type: Transform - - uid: 3367 + - uid: 3370 components: - pos: 13.5,17.5 parent: 2 type: Transform - - uid: 3368 + - uid: 3371 components: - pos: 12.5,17.5 parent: 2 type: Transform - - uid: 3369 + - uid: 3372 components: - pos: 11.5,17.5 parent: 2 type: Transform - - uid: 3370 + - uid: 3373 components: - pos: 10.5,17.5 parent: 2 type: Transform - - uid: 3371 + - uid: 3374 components: - pos: 9.5,17.5 parent: 2 type: Transform - - uid: 3372 + - uid: 3375 components: - pos: 8.5,17.5 parent: 2 type: Transform - - uid: 3373 + - uid: 3376 components: - pos: 7.5,17.5 parent: 2 type: Transform - - uid: 3374 + - uid: 3377 components: - pos: 11.5,18.5 parent: 2 type: Transform - - uid: 3375 + - uid: 3378 components: - pos: 11.5,19.5 parent: 2 type: Transform - - uid: 3376 + - uid: 3379 components: - pos: 11.5,20.5 parent: 2 type: Transform - - uid: 3377 + - uid: 3380 components: - pos: 11.5,21.5 parent: 2 type: Transform - - uid: 3378 + - uid: 3381 components: - pos: 16.5,18.5 parent: 2 type: Transform - - uid: 3379 + - uid: 3382 components: - pos: 16.5,19.5 parent: 2 type: Transform - - uid: 3380 + - uid: 3383 components: - pos: 16.5,20.5 parent: 2 type: Transform - - uid: 3381 + - uid: 3384 components: - pos: 16.5,21.5 parent: 2 type: Transform - - uid: 3382 + - uid: 3385 components: - pos: 17.5,21.5 parent: 2 type: Transform - - uid: 3383 + - uid: 3386 components: - pos: 15.5,21.5 parent: 2 type: Transform - - uid: 3384 + - uid: 3387 components: - pos: 6.5,17.5 parent: 2 type: Transform - - uid: 3385 + - uid: 3388 components: - pos: 6.5,18.5 parent: 2 type: Transform - - uid: 3386 + - uid: 3389 components: - pos: 6.5,19.5 parent: 2 type: Transform - - uid: 3387 + - uid: 3390 components: - pos: 6.5,20.5 parent: 2 type: Transform - - uid: 3388 + - uid: 3391 components: - pos: 6.5,21.5 parent: 2 type: Transform - - uid: 3389 + - uid: 3392 components: - pos: 7.5,21.5 parent: 2 type: Transform - - uid: 3390 + - uid: 3393 components: - pos: 5.5,21.5 parent: 2 type: Transform - - uid: 3391 + - uid: 3394 components: - pos: 5.5,17.5 parent: 2 type: Transform - - uid: 3392 + - uid: 3395 components: - pos: 4.5,17.5 parent: 2 type: Transform - - uid: 3393 + - uid: 3396 components: - pos: 2.5,17.5 parent: 2 type: Transform - - uid: 3394 + - uid: 3397 components: - pos: 3.5,17.5 parent: 2 type: Transform - - uid: 3395 + - uid: 3398 components: - pos: 1.5,17.5 parent: 2 type: Transform - - uid: 3396 + - uid: 3399 components: - pos: 0.5,17.5 parent: 2 type: Transform - - uid: 3397 + - uid: 3400 components: - pos: 0.5,18.5 parent: 2 type: Transform - - uid: 3398 + - uid: 3401 components: - pos: -0.5,18.5 parent: 2 type: Transform - - uid: 3399 + - uid: 3402 components: - pos: -0.5,19.5 parent: 2 type: Transform - - uid: 3400 + - uid: 3403 components: - pos: -0.5,20.5 parent: 2 type: Transform - - uid: 3401 + - uid: 3404 components: - pos: 0.5,20.5 parent: 2 type: Transform - - uid: 3402 + - uid: 3405 components: - pos: 1.5,20.5 parent: 2 type: Transform - - uid: 3403 + - uid: 3406 components: - pos: 24.5,21.5 parent: 2 type: Transform - - uid: 3404 + - uid: 3407 components: - pos: 25.5,21.5 parent: 2 type: Transform - - uid: 3405 + - uid: 3408 components: - pos: 26.5,21.5 parent: 2 type: Transform - - uid: 3406 + - uid: 3409 components: - pos: 27.5,21.5 parent: 2 type: Transform - - uid: 3407 + - uid: 3410 components: - pos: 28.5,21.5 parent: 2 type: Transform - - uid: 3408 + - uid: 3411 components: - pos: 23.5,17.5 parent: 2 type: Transform - - uid: 3409 + - uid: 3412 components: - pos: 24.5,17.5 parent: 2 type: Transform - - uid: 3410 + - uid: 3413 components: - pos: 25.5,17.5 parent: 2 type: Transform - - uid: 3411 + - uid: 3414 components: - pos: 25.5,16.5 parent: 2 type: Transform - - uid: 3412 + - uid: 3415 components: - pos: 26.5,17.5 parent: 2 type: Transform - - uid: 3413 + - uid: 3416 components: - pos: 27.5,17.5 parent: 2 type: Transform - - uid: 3414 + - uid: 3417 components: - pos: 28.5,17.5 parent: 2 type: Transform - - uid: 3415 + - uid: 3418 components: - pos: 29.5,17.5 parent: 2 type: Transform - - uid: 3416 + - uid: 3419 components: - pos: 40.5,7.5 parent: 2 type: Transform - - uid: 3417 + - uid: 3420 components: - pos: 29.5,15.5 parent: 2 type: Transform - - uid: 3418 + - uid: 3421 components: - pos: 29.5,21.5 parent: 2 type: Transform - - uid: 3419 + - uid: 3422 components: - pos: 30.5,21.5 parent: 2 type: Transform - - uid: 3420 + - uid: 3423 components: - pos: 31.5,21.5 parent: 2 type: Transform - - uid: 3421 + - uid: 3424 components: - pos: 32.5,21.5 parent: 2 type: Transform - - uid: 3422 + - uid: 3425 components: - pos: 32.5,22.5 parent: 2 type: Transform - - uid: 3423 + - uid: 3426 components: - pos: 32.5,23.5 parent: 2 type: Transform - - uid: 3424 + - uid: 3427 components: - pos: 29.5,22.5 parent: 2 type: Transform - - uid: 3425 + - uid: 3428 components: - pos: 29.5,23.5 parent: 2 type: Transform - - uid: 3426 + - uid: 3429 components: - pos: 29.5,24.5 parent: 2 type: Transform - - uid: 3427 + - uid: 3430 components: - pos: 29.5,25.5 parent: 2 type: Transform - - uid: 3428 + - uid: 3431 components: - pos: 29.5,26.5 parent: 2 type: Transform - - uid: 3429 + - uid: 3432 components: - pos: 29.5,27.5 parent: 2 type: Transform - - uid: 3430 + - uid: 3433 components: - pos: 29.5,28.5 parent: 2 type: Transform - - uid: 3431 + - uid: 3434 components: - pos: 29.5,29.5 parent: 2 type: Transform - - uid: 3432 + - uid: 3435 components: - pos: 29.5,30.5 parent: 2 type: Transform - - uid: 3433 + - uid: 3436 components: - pos: 29.5,31.5 parent: 2 type: Transform - - uid: 3434 + - uid: 3437 components: - pos: 30.5,31.5 parent: 2 type: Transform - - uid: 3435 + - uid: 3438 components: - pos: 32.5,31.5 parent: 2 type: Transform - - uid: 3436 + - uid: 3439 components: - pos: 31.5,31.5 parent: 2 type: Transform - - uid: 3437 + - uid: 3440 components: - pos: 28.5,31.5 parent: 2 type: Transform - - uid: 3438 + - uid: 3441 components: - pos: 27.5,31.5 parent: 2 type: Transform - - uid: 3439 + - uid: 3442 components: - pos: 27.5,30.5 parent: 2 type: Transform - - uid: 3440 + - uid: 3443 components: - pos: 27.5,29.5 parent: 2 type: Transform - - uid: 3441 + - uid: 3444 components: - pos: 32.5,30.5 parent: 2 type: Transform - - uid: 3442 + - uid: 3445 components: - pos: 32.5,29.5 parent: 2 type: Transform - - uid: 3443 + - uid: 3446 components: - pos: 27.5,28.5 parent: 2 type: Transform - - uid: 3444 + - uid: 3447 components: - pos: 32.5,28.5 parent: 2 type: Transform - - uid: 3445 + - uid: 3448 components: - pos: -8.5,-41.5 parent: 2 type: Transform - - uid: 3446 + - uid: 3449 components: - pos: -8.5,-40.5 parent: 2 type: Transform - - uid: 3447 + - uid: 3450 components: - pos: -8.5,-39.5 parent: 2 type: Transform - - uid: 3448 + - uid: 3451 components: - pos: -8.5,-38.5 parent: 2 type: Transform - - uid: 3449 + - uid: 3452 components: - pos: -8.5,-37.5 parent: 2 type: Transform - - uid: 3450 + - uid: 3453 components: - pos: -8.5,-36.5 parent: 2 type: Transform - - uid: 3451 + - uid: 3454 components: - pos: -9.5,-36.5 parent: 2 type: Transform - - uid: 3452 + - uid: 3455 components: - pos: -10.5,-36.5 parent: 2 type: Transform - - uid: 3453 + - uid: 3456 components: - pos: -11.5,-36.5 parent: 2 type: Transform - - uid: 3454 + - uid: 3457 components: - pos: -12.5,-36.5 parent: 2 type: Transform - - uid: 3455 + - uid: 3458 components: - pos: -12.5,-37.5 parent: 2 type: Transform - - uid: 3456 + - uid: 3459 components: - pos: -12.5,-38.5 parent: 2 type: Transform - - uid: 3457 + - uid: 3460 components: - pos: -13.5,-38.5 parent: 2 type: Transform - - uid: 3458 + - uid: 3461 components: - pos: -14.5,-38.5 parent: 2 type: Transform - - uid: 3459 + - uid: 3462 components: - pos: -15.5,-38.5 parent: 2 type: Transform - - uid: 3460 + - uid: 3463 components: - pos: -11.5,-35.5 parent: 2 type: Transform - - uid: 3461 + - uid: 3464 components: - pos: -11.5,-34.5 parent: 2 type: Transform - - uid: 3462 + - uid: 3465 components: - pos: -11.5,-33.5 parent: 2 type: Transform - - uid: 3463 + - uid: 3466 components: - pos: -10.5,-33.5 parent: 2 type: Transform - - uid: 3464 + - uid: 3467 components: - pos: -9.5,-33.5 parent: 2 type: Transform - - uid: 3465 + - uid: 3468 components: - pos: -12.5,-39.5 parent: 2 type: Transform - - uid: 3466 + - uid: 3469 components: - pos: -11.5,-39.5 parent: 2 type: Transform - - uid: 3467 + - uid: 3470 components: - pos: 21.5,-47.5 parent: 2 type: Transform - - uid: 3468 + - uid: 3471 components: - pos: -55.5,-27.5 parent: 2 type: Transform - - uid: 3469 + - uid: 3472 components: - pos: -54.5,-27.5 parent: 2 type: Transform - - uid: 3470 + - uid: 3473 components: - pos: -53.5,-27.5 parent: 2 type: Transform - - uid: 3471 + - uid: 3474 components: - pos: 17.5,-49.5 parent: 2 type: Transform - - uid: 3472 + - uid: 3475 components: - pos: 18.5,-51.5 parent: 2 type: Transform - - uid: 3473 + - uid: 3476 components: - pos: 21.5,-48.5 parent: 2 type: Transform - - uid: 3474 + - uid: 3477 components: - pos: 21.5,-49.5 parent: 2 type: Transform - - uid: 3475 + - uid: 3478 components: - pos: 20.5,-50.5 parent: 2 type: Transform - - uid: 3476 + - uid: 3479 components: - pos: 27.5,3.5 parent: 2 type: Transform - - uid: 3477 + - uid: 3480 components: - pos: 18.5,-50.5 parent: 2 type: Transform - - uid: 3478 + - uid: 3481 components: - pos: 17.5,-50.5 parent: 2 type: Transform - - uid: 3479 + - uid: 3482 components: - pos: -13.5,42.5 parent: 2 type: Transform - - uid: 3480 + - uid: 3483 components: - pos: -7.5,-8.5 parent: 2 type: Transform - - uid: 3481 + - uid: 3484 components: - pos: 34.5,18.5 parent: 2 type: Transform - - uid: 3482 + - uid: 3485 components: - pos: 35.5,18.5 parent: 2 type: Transform - - uid: 3483 + - uid: 3486 components: - pos: 46.5,5.5 parent: 2 type: Transform - - uid: 3484 + - uid: 3487 components: - pos: 44.5,5.5 parent: 2 type: Transform - - uid: 3485 + - uid: 3488 components: - pos: 45.5,5.5 parent: 2 type: Transform - - uid: 3486 + - uid: 3489 components: - pos: 59.5,-5.5 parent: 2 type: Transform - - uid: 3487 + - uid: 3490 components: - pos: 61.5,-5.5 parent: 2 type: Transform - - uid: 3488 + - uid: 3491 components: - pos: 58.5,11.5 parent: 2 type: Transform - - uid: 3489 + - uid: 3492 components: - pos: 58.5,12.5 parent: 2 type: Transform - - uid: 3490 + - uid: 3493 components: - pos: 58.5,13.5 parent: 2 type: Transform - - uid: 3491 + - uid: 3494 components: - pos: 58.5,14.5 parent: 2 type: Transform - - uid: 3492 + - uid: 3495 components: - pos: 58.5,15.5 parent: 2 type: Transform - - uid: 3493 + - uid: 3496 components: - pos: 58.5,16.5 parent: 2 type: Transform - - uid: 3494 + - uid: 3497 components: - pos: 57.5,16.5 parent: 2 type: Transform - - uid: 3495 + - uid: 3498 components: - pos: 57.5,17.5 parent: 2 type: Transform - - uid: 3496 + - uid: 3499 components: - pos: 57.5,18.5 parent: 2 type: Transform - - uid: 3497 + - uid: 3500 components: - pos: 56.5,18.5 parent: 2 type: Transform - - uid: 3498 + - uid: 3501 components: - pos: 56.5,19.5 parent: 2 type: Transform - - uid: 3499 + - uid: 3502 components: - pos: 56.5,20.5 parent: 2 type: Transform - - uid: 3500 + - uid: 3503 components: - pos: 55.5,20.5 parent: 2 type: Transform - - uid: 3501 + - uid: 3504 components: - pos: 54.5,20.5 parent: 2 type: Transform - - uid: 3502 + - uid: 3505 components: - pos: 56.5,21.5 parent: 2 type: Transform - - uid: 3503 + - uid: 3506 components: - pos: 58.5,21.5 parent: 2 type: Transform - - uid: 3504 + - uid: 3507 components: - pos: 57.5,21.5 parent: 2 type: Transform - - uid: 3505 + - uid: 3508 components: - pos: 58.5,21.5 parent: 2 type: Transform - - uid: 3506 + - uid: 3509 components: - pos: 53.5,20.5 parent: 2 type: Transform - - uid: 3507 + - uid: 3510 components: - pos: 52.5,20.5 parent: 2 type: Transform - - uid: 3508 + - uid: 3511 components: - pos: 51.5,20.5 parent: 2 type: Transform - - uid: 3509 + - uid: 3512 components: - pos: 50.5,20.5 parent: 2 type: Transform - - uid: 3510 + - uid: 3513 components: - pos: 49.5,20.5 parent: 2 type: Transform - - uid: 3511 + - uid: 3514 components: - pos: 48.5,20.5 parent: 2 type: Transform - - uid: 3512 + - uid: 3515 components: - pos: 47.5,20.5 parent: 2 type: Transform - - uid: 3513 + - uid: 3516 components: - pos: 46.5,20.5 parent: 2 type: Transform - - uid: 3514 + - uid: 3517 components: - pos: 46.5,21.5 parent: 2 type: Transform - - uid: 3515 + - uid: 3518 components: - pos: 49.5,21.5 parent: 2 type: Transform - - uid: 3516 + - uid: 3519 components: - pos: 52.5,21.5 parent: 2 type: Transform - - uid: 3517 + - uid: 3520 components: - pos: 54.5,21.5 parent: 2 type: Transform - - uid: 3518 + - uid: 3521 components: - pos: 59.5,18.5 parent: 2 type: Transform - - uid: 3519 + - uid: 3522 components: - pos: 58.5,18.5 parent: 2 type: Transform - - uid: 3520 + - uid: 3523 components: - pos: 59.5,15.5 parent: 2 type: Transform - - uid: 3521 + - uid: 3524 components: - pos: 60.5,13.5 parent: 2 type: Transform - - uid: 3522 + - uid: 3525 components: - pos: 59.5,13.5 parent: 2 type: Transform - - uid: 3523 + - uid: 3526 components: - pos: 61.5,13.5 parent: 2 type: Transform - - uid: 3524 + - uid: 3527 components: - pos: 57.5,11.5 parent: 2 type: Transform - - uid: 3525 + - uid: 3528 components: - pos: 56.5,11.5 parent: 2 type: Transform - - uid: 3526 + - uid: 3529 components: - pos: 56.5,10.5 parent: 2 type: Transform - - uid: 3527 + - uid: 3530 components: - pos: 56.5,9.5 parent: 2 type: Transform - - uid: 3528 + - uid: 3531 components: - pos: 56.5,8.5 parent: 2 type: Transform - - uid: 3529 + - uid: 3532 components: - pos: 56.5,7.5 parent: 2 type: Transform - - uid: 3530 + - uid: 3533 components: - pos: 56.5,6.5 parent: 2 type: Transform - - uid: 3531 + - uid: 3534 components: - pos: 55.5,6.5 parent: 2 type: Transform - - uid: 3532 + - uid: 3535 components: - pos: 54.5,6.5 parent: 2 type: Transform - - uid: 3533 + - uid: 3536 components: - pos: 53.5,6.5 parent: 2 type: Transform - - uid: 3534 + - uid: 3537 components: - pos: 52.5,6.5 parent: 2 type: Transform - - uid: 3535 + - uid: 3538 components: - pos: 51.5,6.5 parent: 2 type: Transform - - uid: 3536 + - uid: 3539 components: - pos: 50.5,6.5 parent: 2 type: Transform - - uid: 3537 + - uid: 3540 components: - pos: 49.5,6.5 parent: 2 type: Transform - - uid: 3538 + - uid: 3541 components: - pos: 48.5,6.5 parent: 2 type: Transform - - uid: 3539 + - uid: 3542 components: - pos: 47.5,6.5 parent: 2 type: Transform - - uid: 3540 + - uid: 3543 components: - pos: 47.5,7.5 parent: 2 type: Transform - - uid: 3541 + - uid: 3544 components: - pos: 47.5,8.5 parent: 2 type: Transform - - uid: 3542 + - uid: 3545 components: - pos: 48.5,10.5 parent: 2 type: Transform - - uid: 3543 + - uid: 3546 components: - pos: 47.5,10.5 parent: 2 type: Transform - - uid: 3544 + - uid: 3547 components: - pos: 47.5,11.5 parent: 2 type: Transform - - uid: 3545 + - uid: 3548 components: - pos: 47.5,12.5 parent: 2 type: Transform - - uid: 3546 + - uid: 3549 components: - pos: 47.5,13.5 parent: 2 type: Transform - - uid: 3547 + - uid: 3550 components: - pos: 47.5,14.5 parent: 2 type: Transform - - uid: 3548 + - uid: 3551 components: - pos: 47.5,15.5 parent: 2 type: Transform - - uid: 3549 + - uid: 3552 components: - pos: 48.5,13.5 parent: 2 type: Transform - - uid: 3550 + - uid: 3553 components: - pos: 49.5,13.5 parent: 2 type: Transform - - uid: 3551 + - uid: 3554 components: - pos: 49.5,14.5 parent: 2 type: Transform - - uid: 3552 + - uid: 3555 components: - pos: 49.5,15.5 parent: 2 type: Transform - - uid: 3553 + - uid: 3556 components: - pos: 49.5,16.5 parent: 2 type: Transform - - uid: 3554 + - uid: 3557 components: - pos: 50.5,16.5 parent: 2 type: Transform - - uid: 3555 + - uid: 3558 components: - pos: 51.5,16.5 parent: 2 type: Transform - - uid: 3556 + - uid: 3559 components: - pos: 52.5,16.5 parent: 2 type: Transform - - uid: 3557 + - uid: 3560 components: - pos: 53.5,16.5 parent: 2 type: Transform - - uid: 3558 + - uid: 3561 components: - pos: 54.5,16.5 parent: 2 type: Transform - - uid: 3559 + - uid: 3562 components: - pos: 55.5,16.5 parent: 2 type: Transform - - uid: 3560 + - uid: 3563 components: - pos: 50.5,17.5 parent: 2 type: Transform - - uid: 3561 + - uid: 3564 components: - pos: 50.5,18.5 parent: 2 type: Transform - - uid: 3562 + - uid: 3565 components: - pos: 49.5,12.5 parent: 2 type: Transform - - uid: 3563 + - uid: 3566 components: - pos: 50.5,12.5 parent: 2 type: Transform - - uid: 3564 + - uid: 3567 components: - pos: 50.5,11.5 parent: 2 type: Transform - - uid: 3565 + - uid: 3568 components: - pos: 50.5,10.5 parent: 2 type: Transform - - uid: 3566 + - uid: 3569 components: - pos: 50.5,9.5 parent: 2 type: Transform - - uid: 3567 + - uid: 3570 components: - pos: 51.5,9.5 parent: 2 type: Transform - - uid: 3568 + - uid: 3571 components: - pos: 52.5,9.5 parent: 2 type: Transform - - uid: 3569 + - uid: 3572 components: - pos: 53.5,9.5 parent: 2 type: Transform - - uid: 3570 + - uid: 3573 components: - pos: 53.5,10.5 parent: 2 type: Transform - - uid: 3571 + - uid: 3574 components: - pos: 53.5,11.5 parent: 2 type: Transform - - uid: 3572 + - uid: 3575 components: - pos: 53.5,12.5 parent: 2 type: Transform - - uid: 3573 + - uid: 3576 components: - pos: 59.5,11.5 parent: 2 type: Transform - - uid: 3574 + - uid: 3577 components: - pos: 59.5,10.5 parent: 2 type: Transform - - uid: 3575 + - uid: 3578 components: - pos: 59.5,9.5 parent: 2 type: Transform - - uid: 3576 + - uid: 3579 components: - pos: 60.5,9.5 parent: 2 type: Transform - - uid: 3577 + - uid: 3580 components: - pos: 60.5,8.5 parent: 2 type: Transform - - uid: 3578 + - uid: 3581 components: - pos: 60.5,7.5 parent: 2 type: Transform - - uid: 3579 + - uid: 3582 components: - pos: 60.5,6.5 parent: 2 type: Transform - - uid: 3580 + - uid: 3583 components: - pos: 60.5,5.5 parent: 2 type: Transform - - uid: 3581 + - uid: 3584 components: - pos: 60.5,4.5 parent: 2 type: Transform - - uid: 3582 + - uid: 3585 components: - pos: 61.5,4.5 parent: 2 type: Transform - - uid: 3583 + - uid: 3586 components: - pos: 62.5,4.5 parent: 2 type: Transform - - uid: 3584 + - uid: 3587 components: - pos: 62.5,5.5 parent: 2 type: Transform - - uid: 3585 + - uid: 3588 components: - pos: 60.5,-5.5 parent: 2 type: Transform - - uid: 3586 + - uid: 3589 components: - pos: 45.5,20.5 parent: 2 type: Transform - - uid: 3587 + - uid: 3590 components: - pos: 44.5,20.5 parent: 2 type: Transform - - uid: 3588 + - uid: 3591 components: - pos: 43.5,20.5 parent: 2 type: Transform - - uid: 3589 + - uid: 3592 components: - pos: 42.5,20.5 parent: 2 type: Transform - - uid: 3590 + - uid: 3593 components: - pos: 41.5,20.5 parent: 2 type: Transform - - uid: 3591 + - uid: 3594 components: - pos: 40.5,20.5 parent: 2 type: Transform - - uid: 3592 + - uid: 3595 components: - pos: 39.5,20.5 parent: 2 type: Transform - - uid: 3593 + - uid: 3596 components: - pos: 38.5,20.5 parent: 2 type: Transform - - uid: 3594 + - uid: 3597 components: - pos: 37.5,20.5 parent: 2 type: Transform - - uid: 3595 + - uid: 3598 components: - pos: 36.5,20.5 parent: 2 type: Transform - - uid: 3596 + - uid: 3599 components: - pos: 35.5,20.5 parent: 2 type: Transform - - uid: 3597 + - uid: 3600 components: - pos: 35.5,19.5 parent: 2 type: Transform - - uid: 3598 + - uid: 3601 components: - pos: 46.5,11.5 parent: 2 type: Transform - - uid: 3599 + - uid: 3602 components: - pos: 45.5,11.5 parent: 2 type: Transform - - uid: 3600 + - uid: 3603 components: - pos: 43.5,11.5 parent: 2 type: Transform - - uid: 3601 + - uid: 3604 components: - pos: 42.5,11.5 parent: 2 type: Transform - - uid: 3602 + - uid: 3605 components: - pos: 41.5,11.5 parent: 2 type: Transform - - uid: 3603 + - uid: 3606 components: - pos: 40.5,11.5 parent: 2 type: Transform - - uid: 3604 + - uid: 3607 components: - pos: 41.5,10.5 parent: 2 type: Transform - - uid: 3605 + - uid: 3608 components: - pos: 41.5,9.5 parent: 2 type: Transform - - uid: 3606 + - uid: 3609 components: - pos: 41.5,8.5 parent: 2 type: Transform - - uid: 3607 + - uid: 3610 components: - pos: 41.5,7.5 parent: 2 type: Transform - - uid: 3608 + - uid: 3611 components: - pos: 41.5,6.5 parent: 2 type: Transform - - uid: 3609 + - uid: 3612 components: - pos: 41.5,5.5 parent: 2 type: Transform - - uid: 3610 + - uid: 3613 components: - pos: 41.5,4.5 parent: 2 type: Transform - - uid: 3611 + - uid: 3614 components: - pos: 40.5,12.5 parent: 2 type: Transform - - uid: 3612 + - uid: 3615 components: - pos: 40.5,13.5 parent: 2 type: Transform - - uid: 3613 + - uid: 3616 components: - pos: 40.5,14.5 parent: 2 type: Transform - - uid: 3614 + - uid: 3617 components: - pos: 39.5,14.5 parent: 2 type: Transform - - uid: 3615 + - uid: 3618 components: - pos: 38.5,14.5 parent: 2 type: Transform - - uid: 3616 + - uid: 3619 components: - pos: 37.5,14.5 parent: 2 type: Transform - - uid: 3617 + - uid: 3620 components: - pos: 36.5,14.5 parent: 2 type: Transform - - uid: 3618 + - uid: 3621 components: - pos: 35.5,14.5 parent: 2 type: Transform - - uid: 3619 + - uid: 3622 components: - pos: 34.5,14.5 parent: 2 type: Transform - - uid: 3620 + - uid: 3623 components: - pos: 33.5,14.5 parent: 2 type: Transform - - uid: 3621 + - uid: 3624 components: - pos: 32.5,14.5 parent: 2 type: Transform - - uid: 3622 + - uid: 3625 components: - pos: 31.5,14.5 parent: 2 type: Transform - - uid: 3623 + - uid: 3626 components: - pos: 35.5,15.5 parent: 2 type: Transform - - uid: 3624 + - uid: 3627 components: - pos: 35.5,16.5 parent: 2 type: Transform - - uid: 3625 + - uid: 3628 components: - pos: 32.5,13.5 parent: 2 type: Transform - - uid: 3626 + - uid: 3629 components: - pos: 32.5,12.5 parent: 2 type: Transform - - uid: 3627 + - uid: 3630 components: - pos: 32.5,11.5 parent: 2 type: Transform - - uid: 3628 + - uid: 3631 components: - pos: 30.5,14.5 parent: 2 type: Transform - - uid: 3629 + - uid: 3632 components: - pos: 29.5,14.5 parent: 2 type: Transform - - uid: 3630 + - uid: 3633 components: - pos: 29.5,13.5 parent: 2 type: Transform - - uid: 3631 + - uid: 3634 components: - pos: 29.5,12.5 parent: 2 type: Transform - - uid: 3632 + - uid: 3635 components: - pos: 29.5,11.5 parent: 2 type: Transform - - uid: 3633 + - uid: 3636 components: - pos: 35.5,13.5 parent: 2 type: Transform - - uid: 3634 + - uid: 3637 components: - pos: 35.5,12.5 parent: 2 type: Transform - - uid: 3635 + - uid: 3638 components: - pos: 35.5,11.5 parent: 2 type: Transform - - uid: 3636 + - uid: 3639 components: - pos: 38.5,7.5 parent: 2 type: Transform - - uid: 3637 + - uid: 3640 components: - pos: 37.5,7.5 parent: 2 type: Transform - - uid: 3638 + - uid: 3641 components: - pos: 40.5,4.5 parent: 2 type: Transform - - uid: 3639 + - uid: 3642 components: - pos: 39.5,4.5 parent: 2 type: Transform - - uid: 3640 + - uid: 3643 components: - pos: 37.5,4.5 parent: 2 type: Transform - - uid: 3641 + - uid: 3644 components: - pos: 38.5,4.5 parent: 2 type: Transform - - uid: 3642 + - uid: 3645 components: - pos: -12.5,42.5 parent: 2 type: Transform - - uid: 3643 + - uid: 3646 components: - pos: 51.5,11.5 parent: 2 type: Transform - - uid: 3644 + - uid: 3647 components: - pos: 55.5,13.5 parent: 2 type: Transform - - uid: 3645 + - uid: 3648 components: - pos: 55.5,14.5 parent: 2 type: Transform - - uid: 3646 + - uid: 3649 components: - pos: 54.5,14.5 parent: 2 type: Transform - - uid: 3647 + - uid: 3650 components: - pos: 53.5,14.5 parent: 2 type: Transform - - uid: 3648 + - uid: 3651 components: - pos: 52.5,14.5 parent: 2 type: Transform - - uid: 3649 + - uid: 3652 components: - pos: 51.5,14.5 parent: 2 type: Transform - - uid: 3650 + - uid: 3653 components: - pos: 51.5,13.5 parent: 2 type: Transform - - uid: 3651 + - uid: 3654 components: - pos: 51.5,12.5 parent: 2 type: Transform - - uid: 3652 + - uid: 3655 components: - pos: 49.5,10.5 parent: 2 type: Transform - - uid: 3653 + - uid: 3656 components: - pos: 45.5,7.5 parent: 2 type: Transform - - uid: 3654 + - uid: 3657 components: - pos: 42.5,21.5 parent: 2 type: Transform - - uid: 3655 + - uid: 3658 components: - pos: 42.5,22.5 parent: 2 type: Transform - - uid: 3656 + - uid: 3659 components: - pos: 49.5,3.5 parent: 2 type: Transform - - uid: 3657 + - uid: 3660 components: - pos: 49.5,2.5 parent: 2 type: Transform - - uid: 3658 + - uid: 3661 components: - pos: 48.5,2.5 parent: 2 type: Transform - - uid: 3659 + - uid: 3662 components: - pos: 48.5,1.5 parent: 2 type: Transform - - uid: 3660 + - uid: 3663 components: - pos: 47.5,1.5 parent: 2 type: Transform - - uid: 3661 + - uid: 3664 components: - pos: 46.5,1.5 parent: 2 type: Transform - - uid: 3662 + - uid: 3665 components: - pos: 45.5,1.5 parent: 2 type: Transform - - uid: 3663 + - uid: 3666 components: - pos: 44.5,1.5 parent: 2 type: Transform - - uid: 3664 + - uid: 3667 components: - pos: 43.5,1.5 parent: 2 type: Transform - - uid: 3665 + - uid: 3668 components: - pos: 42.5,1.5 parent: 2 type: Transform - - uid: 3666 + - uid: 3669 components: - pos: 42.5,0.5 parent: 2 type: Transform - - uid: 3667 + - uid: 3670 components: - pos: 42.5,-0.5 parent: 2 type: Transform - - uid: 3668 + - uid: 3671 components: - pos: 42.5,-1.5 parent: 2 type: Transform - - uid: 3669 + - uid: 3672 components: - pos: 42.5,-2.5 parent: 2 type: Transform - - uid: 3670 + - uid: 3673 components: - pos: 42.5,-3.5 parent: 2 type: Transform - - uid: 3671 + - uid: 3674 components: - pos: 41.5,-1.5 parent: 2 type: Transform - - uid: 3672 + - uid: 3675 components: - pos: 40.5,-1.5 parent: 2 type: Transform - - uid: 3673 + - uid: 3676 components: - pos: 39.5,-1.5 parent: 2 type: Transform - - uid: 3674 + - uid: 3677 components: - pos: 38.5,-1.5 parent: 2 type: Transform - - uid: 3675 + - uid: 3678 components: - pos: 37.5,-1.5 parent: 2 type: Transform - - uid: 3676 + - uid: 3679 components: - pos: 37.5,-2.5 parent: 2 type: Transform - - uid: 3677 + - uid: 3680 components: - pos: 37.5,-3.5 parent: 2 type: Transform - - uid: 3678 + - uid: 3681 components: - pos: 43.5,-1.5 parent: 2 type: Transform - - uid: 3679 + - uid: 3682 components: - pos: 44.5,-1.5 parent: 2 type: Transform - - uid: 3680 + - uid: 3683 components: - pos: 44.5,-2.5 parent: 2 type: Transform - - uid: 3681 + - uid: 3684 components: - pos: 38.5,-3.5 parent: 2 type: Transform - - uid: 3682 + - uid: 3685 components: - pos: 38.5,-4.5 parent: 2 type: Transform - - uid: 3683 + - uid: 3686 components: - pos: 38.5,-5.5 parent: 2 type: Transform - - uid: 3684 + - uid: 3687 components: - pos: 38.5,-6.5 parent: 2 type: Transform - - uid: 3685 + - uid: 3688 components: - pos: 38.5,-8.5 parent: 2 type: Transform - - uid: 3686 + - uid: 3689 components: - pos: 38.5,-7.5 parent: 2 type: Transform - - uid: 3687 + - uid: 3690 components: - pos: 39.5,-8.5 parent: 2 type: Transform - - uid: 3688 + - uid: 3691 components: - pos: 46.5,0.5 parent: 2 type: Transform - - uid: 3689 + - uid: 3692 components: - pos: 46.5,-0.5 parent: 2 type: Transform - - uid: 3690 + - uid: 3693 components: - pos: 46.5,-1.5 parent: 2 type: Transform - - uid: 3691 + - uid: 3694 components: - pos: 47.5,-1.5 parent: 2 type: Transform - - uid: 3692 + - uid: 3695 components: - pos: 47.5,-2.5 parent: 2 type: Transform - - uid: 3693 + - uid: 3696 components: - pos: 41.5,1.5 parent: 2 type: Transform - - uid: 3694 + - uid: 3697 components: - pos: 40.5,1.5 parent: 2 type: Transform - - uid: 3695 + - uid: 3698 components: - pos: 39.5,1.5 parent: 2 type: Transform - - uid: 3696 + - uid: 3699 components: - pos: 38.5,1.5 parent: 2 type: Transform - - uid: 3697 + - uid: 3700 components: - pos: 37.5,1.5 parent: 2 type: Transform - - uid: 3698 + - uid: 3701 components: - pos: 41.5,2.5 parent: 2 type: Transform - - uid: 3699 + - uid: 3702 components: - pos: 48.5,0.5 parent: 2 type: Transform - - uid: 3700 + - uid: 3703 components: - pos: 49.5,0.5 parent: 2 type: Transform - - uid: 3701 + - uid: 3704 components: - pos: 50.5,0.5 parent: 2 type: Transform - - uid: 3702 + - uid: 3705 components: - pos: 51.5,0.5 parent: 2 type: Transform - - uid: 3703 + - uid: 3706 components: - pos: 52.5,0.5 parent: 2 type: Transform - - uid: 3704 + - uid: 3707 components: - pos: 52.5,1.5 parent: 2 type: Transform - - uid: 3705 + - uid: 3708 components: - pos: 52.5,2.5 parent: 2 type: Transform - - uid: 3706 + - uid: 3709 components: - pos: 53.5,0.5 parent: 2 type: Transform - - uid: 3707 + - uid: 3710 components: - pos: 53.5,-0.5 parent: 2 type: Transform - - uid: 3708 + - uid: 3711 components: - pos: 54.5,-0.5 parent: 2 type: Transform - - uid: 3709 + - uid: 3712 components: - pos: 55.5,-0.5 parent: 2 type: Transform - - uid: 3710 + - uid: 3713 components: - pos: 56.5,-0.5 parent: 2 type: Transform - - uid: 3711 + - uid: 3714 components: - pos: 57.5,-0.5 parent: 2 type: Transform - - uid: 3712 + - uid: 3715 components: - pos: 57.5,0.5 parent: 2 type: Transform - - uid: 3713 + - uid: 3716 components: - pos: 57.5,1.5 parent: 2 type: Transform - - uid: 3714 + - uid: 3717 components: - pos: 58.5,1.5 parent: 2 type: Transform - - uid: 3715 + - uid: 3718 components: - pos: 59.5,1.5 parent: 2 type: Transform - - uid: 3716 + - uid: 3719 components: - pos: 60.5,1.5 parent: 2 type: Transform - - uid: 3717 + - uid: 3720 components: - pos: 61.5,1.5 parent: 2 type: Transform - - uid: 3718 + - uid: 3721 components: - pos: 62.5,1.5 parent: 2 type: Transform - - uid: 3719 + - uid: 3722 components: - pos: 56.5,-1.5 parent: 2 type: Transform - - uid: 3720 + - uid: 3723 components: - pos: 56.5,-2.5 parent: 2 type: Transform - - uid: 3721 + - uid: 3724 components: - pos: 56.5,-3.5 parent: 2 type: Transform - - uid: 3722 + - uid: 3725 components: - pos: 51.5,-0.5 parent: 2 type: Transform - - uid: 3723 + - uid: 3726 components: - pos: 51.5,-1.5 parent: 2 type: Transform - - uid: 3724 + - uid: 3727 components: - pos: 51.5,-2.5 parent: 2 type: Transform - - uid: 3725 + - uid: 3728 components: - pos: 52.5,-2.5 parent: 2 type: Transform - - uid: 3726 + - uid: 3729 components: - pos: 52.5,-3.5 parent: 2 type: Transform - - uid: 3727 + - uid: 3730 components: - pos: 52.5,-5.5 parent: 2 type: Transform - - uid: 3728 + - uid: 3731 components: - pos: 59.5,21.5 parent: 2 type: Transform - - uid: 3729 + - uid: 3732 components: - pos: 60.5,21.5 parent: 2 type: Transform - - uid: 3730 + - uid: 3733 components: - pos: 61.5,21.5 parent: 2 type: Transform - - uid: 3731 + - uid: 3734 components: - pos: 67.5,-11.5 parent: 2 type: Transform - - uid: 3732 + - uid: 3735 components: - pos: 68.5,-11.5 parent: 2 type: Transform - - uid: 3733 + - uid: 3736 components: - pos: 66.5,-13.5 parent: 2 type: Transform - - uid: 3734 + - uid: 3737 components: - pos: 68.5,-13.5 parent: 2 type: Transform - - uid: 3735 + - uid: 3738 components: - pos: 66.5,-11.5 parent: 2 type: Transform - - uid: 3736 + - uid: 3739 components: - pos: 58.5,-34.5 parent: 2 type: Transform - - uid: 3737 + - uid: 3740 components: - pos: 63.5,-43.5 parent: 2 type: Transform - - uid: 3738 + - uid: 3741 components: - pos: 45.5,-39.5 parent: 2 type: Transform - - uid: 3739 + - uid: 3742 components: - pos: 44.5,-39.5 parent: 2 type: Transform - - uid: 3740 + - uid: 3743 components: - pos: 54.5,-33.5 parent: 2 type: Transform - - uid: 3741 + - uid: 3744 components: - pos: 65.5,-45.5 parent: 2 type: Transform - - uid: 3742 + - uid: 3745 components: - pos: 65.5,-44.5 parent: 2 type: Transform - - uid: 3743 + - uid: 3746 components: - pos: 60.5,-11.5 parent: 2 type: Transform - - uid: 3744 + - uid: 3747 components: - pos: 59.5,-11.5 parent: 2 type: Transform - - uid: 3745 + - uid: 3748 components: - pos: 58.5,-11.5 parent: 2 type: Transform - - uid: 3746 + - uid: 3749 components: - pos: 57.5,-11.5 parent: 2 type: Transform - - uid: 3747 + - uid: 3750 components: - pos: 56.5,-11.5 parent: 2 type: Transform - - uid: 3748 + - uid: 3751 components: - pos: 55.5,-11.5 parent: 2 type: Transform - - uid: 3749 + - uid: 3752 components: - pos: 54.5,-11.5 parent: 2 type: Transform - - uid: 3750 + - uid: 3753 components: - pos: 53.5,-11.5 parent: 2 type: Transform - - uid: 3751 + - uid: 3754 components: - pos: 52.5,-11.5 parent: 2 type: Transform - - uid: 3752 + - uid: 3755 components: - pos: 53.5,-12.5 parent: 2 type: Transform - - uid: 3753 + - uid: 3756 components: - pos: 53.5,-13.5 parent: 2 type: Transform - - uid: 3754 + - uid: 3757 components: - pos: 51.5,-11.5 parent: 2 type: Transform - - uid: 3755 + - uid: 3758 components: - pos: 51.5,-10.5 parent: 2 type: Transform - - uid: 3756 + - uid: 3759 components: - pos: 51.5,-9.5 parent: 2 type: Transform - - uid: 3757 + - uid: 3760 components: - pos: 51.5,-8.5 parent: 2 type: Transform - - uid: 3758 + - uid: 3761 components: - pos: 50.5,-8.5 parent: 2 type: Transform - - uid: 3759 + - uid: 3762 components: - pos: 49.5,-8.5 parent: 2 type: Transform - - uid: 3760 + - uid: 3763 components: - pos: 48.5,-8.5 parent: 2 type: Transform - - uid: 3761 + - uid: 3764 components: - pos: 47.5,-8.5 parent: 2 type: Transform - - uid: 3762 + - uid: 3765 components: - pos: 46.5,-8.5 parent: 2 type: Transform - - uid: 3763 + - uid: 3766 components: - pos: 47.5,-7.5 parent: 2 type: Transform - - uid: 3764 + - uid: 3767 components: - pos: 46.5,-9.5 parent: 2 type: Transform - - uid: 3765 + - uid: 3768 components: - pos: 46.5,-10.5 parent: 2 type: Transform - - uid: 3766 + - uid: 3769 components: - pos: 46.5,-11.5 parent: 2 type: Transform - - uid: 3767 + - uid: 3770 components: - pos: 45.5,-11.5 parent: 2 type: Transform - - uid: 3768 + - uid: 3771 components: - pos: 44.5,-11.5 parent: 2 type: Transform - - uid: 3769 + - uid: 3772 components: - pos: 43.5,-11.5 parent: 2 type: Transform - - uid: 3770 + - uid: 3773 components: - pos: 42.5,-11.5 parent: 2 type: Transform - - uid: 3771 + - uid: 3774 components: - pos: 41.5,-11.5 parent: 2 type: Transform - - uid: 3772 + - uid: 3775 components: - pos: 40.5,-11.5 parent: 2 type: Transform - - uid: 3773 + - uid: 3776 components: - pos: 40.5,-12.5 parent: 2 type: Transform - - uid: 3774 + - uid: 3777 components: - pos: 39.5,-12.5 parent: 2 type: Transform - - uid: 3775 + - uid: 3778 components: - pos: 38.5,-12.5 parent: 2 type: Transform - - uid: 3776 + - uid: 3779 components: - pos: 38.5,-13.5 parent: 2 type: Transform - - uid: 3777 + - uid: 3780 components: - pos: 38.5,-14.5 parent: 2 type: Transform - - uid: 3778 + - uid: 3781 components: - pos: 38.5,-15.5 parent: 2 type: Transform - - uid: 3779 + - uid: 3782 components: - pos: 39.5,-14.5 parent: 2 type: Transform - - uid: 3780 + - uid: 3783 components: - pos: 40.5,-14.5 parent: 2 type: Transform - - uid: 3781 + - uid: 3784 components: - pos: 41.5,-14.5 parent: 2 type: Transform - - uid: 3782 + - uid: 3785 components: - pos: 42.5,-14.5 parent: 2 type: Transform - - uid: 3783 + - uid: 3786 components: - pos: 43.5,-13.5 parent: 2 type: Transform - - uid: 3784 + - uid: 3787 components: - pos: 42.5,-13.5 parent: 2 type: Transform - - uid: 3785 + - uid: 3788 components: - pos: 38.5,-11.5 parent: 2 type: Transform - - uid: 3786 + - uid: 3789 components: - pos: 38.5,-10.5 parent: 2 type: Transform - - uid: 3787 + - uid: 3790 components: - pos: 37.5,-8.5 parent: 2 type: Transform - - uid: 3788 + - uid: 3791 components: - pos: 36.5,-8.5 parent: 2 type: Transform - - uid: 3789 + - uid: 3792 components: - pos: 35.5,-8.5 parent: 2 type: Transform - - uid: 3790 + - uid: 3793 components: - pos: 33.5,-8.5 parent: 2 type: Transform - - uid: 3791 + - uid: 3794 components: - pos: 34.5,-8.5 parent: 2 type: Transform - - uid: 3792 + - uid: 3795 components: - pos: 35.5,-9.5 parent: 2 type: Transform - - uid: 3793 + - uid: 3796 components: - pos: 44.5,-10.5 parent: 2 type: Transform - - uid: 3794 + - uid: 3797 components: - pos: 58.5,-5.5 parent: 2 type: Transform - - uid: 3795 + - uid: 3798 components: - pos: 57.5,-5.5 parent: 2 type: Transform - - uid: 3796 + - uid: 3799 components: - pos: 56.5,-5.5 parent: 2 type: Transform - - uid: 3797 + - uid: 3800 components: - pos: 55.5,-5.5 parent: 2 type: Transform - - uid: 3798 + - uid: 3801 components: - pos: 54.5,-6.5 parent: 2 type: Transform - - uid: 3799 + - uid: 3802 components: - pos: 54.5,-5.5 parent: 2 type: Transform - - uid: 3800 + - uid: 3803 components: - pos: 59.5,-3.5 parent: 2 type: Transform - - uid: 3801 + - uid: 3804 components: - pos: 59.5,-2.5 parent: 2 type: Transform - - uid: 3802 + - uid: 3805 components: - pos: 60.5,-2.5 parent: 2 type: Transform - - uid: 3803 + - uid: 3806 components: - pos: 61.5,-2.5 parent: 2 type: Transform - - uid: 3804 + - uid: 3807 components: - pos: 62.5,-2.5 parent: 2 type: Transform - - uid: 3805 + - uid: 3808 components: - pos: 63.5,-2.5 parent: 2 type: Transform - - uid: 3806 + - uid: 3809 components: - pos: 62.5,-1.5 parent: 2 type: Transform - - uid: 3807 + - uid: 3810 components: - pos: 60.5,-1.5 parent: 2 type: Transform - - uid: 3808 + - uid: 3811 components: - pos: 63.5,-11.5 parent: 2 type: Transform - - uid: 3809 + - uid: 3812 components: - pos: 64.5,-11.5 parent: 2 type: Transform - - uid: 3810 + - uid: 3813 components: - pos: 62.5,-13.5 parent: 2 type: Transform - - uid: 3811 + - uid: 3814 components: - pos: 63.5,-13.5 parent: 2 type: Transform - - uid: 3812 + - uid: 3815 components: - pos: 64.5,-13.5 parent: 2 type: Transform - - uid: 3813 + - uid: 3816 components: - pos: 62.5,-14.5 parent: 2 type: Transform - - uid: 3814 + - uid: 3817 components: - pos: 62.5,-15.5 parent: 2 type: Transform - - uid: 3815 + - uid: 3818 components: - pos: 62.5,-16.5 parent: 2 type: Transform - - uid: 3816 + - uid: 3819 components: - pos: 62.5,-17.5 parent: 2 type: Transform - - uid: 3817 + - uid: 3820 components: - pos: 62.5,-18.5 parent: 2 type: Transform - - uid: 3818 + - uid: 3821 components: - pos: 62.5,-19.5 parent: 2 type: Transform - - uid: 3819 + - uid: 3822 components: - pos: 62.5,-20.5 parent: 2 type: Transform - - uid: 3820 + - uid: 3823 components: - pos: 62.5,-21.5 parent: 2 type: Transform - - uid: 3821 + - uid: 3824 components: - pos: 62.5,-22.5 parent: 2 type: Transform - - uid: 3822 + - uid: 3825 components: - pos: 62.5,-23.5 parent: 2 type: Transform - - uid: 3823 + - uid: 3826 components: - pos: 62.5,-24.5 parent: 2 type: Transform - - uid: 3824 + - uid: 3827 components: - pos: 62.5,-25.5 parent: 2 type: Transform - - uid: 3825 + - uid: 3828 components: - pos: 62.5,-26.5 parent: 2 type: Transform - - uid: 3826 + - uid: 3829 components: - pos: 62.5,-27.5 parent: 2 type: Transform - - uid: 3827 + - uid: 3830 components: - pos: 62.5,-28.5 parent: 2 type: Transform - - uid: 3828 + - uid: 3831 components: - pos: 64.5,-5.5 parent: 2 type: Transform - - uid: 3829 + - uid: 3832 components: - pos: 63.5,-3.5 parent: 2 type: Transform - - uid: 3830 + - uid: 3833 components: - pos: 64.5,-3.5 parent: 2 type: Transform - - uid: 3831 + - uid: 3834 components: - pos: 57.5,-12.5 parent: 2 type: Transform - - uid: 3832 + - uid: 3835 components: - pos: 57.5,-13.5 parent: 2 type: Transform - - uid: 3833 + - uid: 3836 components: - pos: 45.5,19.5 parent: 2 type: Transform - - uid: 3834 + - uid: 3837 components: - pos: 55.5,-43.5 parent: 2 type: Transform - - uid: 3835 + - uid: 3838 components: - pos: 55.5,-42.5 parent: 2 type: Transform - - uid: 3836 + - uid: 3839 components: - pos: 55.5,-41.5 parent: 2 type: Transform - - uid: 3837 + - uid: 3840 components: - pos: 54.5,-41.5 parent: 2 type: Transform - - uid: 3838 + - uid: 3841 components: - pos: 53.5,-41.5 parent: 2 type: Transform - - uid: 3839 + - uid: 3842 components: - pos: 53.5,-42.5 parent: 2 type: Transform - - uid: 3840 + - uid: 3843 components: - pos: 52.5,-42.5 parent: 2 type: Transform - - uid: 3841 + - uid: 3844 components: - pos: 51.5,-42.5 parent: 2 type: Transform - - uid: 3842 + - uid: 3845 components: - pos: 50.5,-42.5 parent: 2 type: Transform - - uid: 3843 + - uid: 3846 components: - pos: 49.5,-42.5 parent: 2 type: Transform - - uid: 3844 + - uid: 3847 components: - pos: 48.5,-42.5 parent: 2 type: Transform - - uid: 3845 + - uid: 3848 components: - pos: 47.5,-42.5 parent: 2 type: Transform - - uid: 3846 + - uid: 3849 components: - pos: 46.5,-42.5 parent: 2 type: Transform - - uid: 3847 + - uid: 3850 components: - pos: 45.5,-42.5 parent: 2 type: Transform - - uid: 3848 + - uid: 3851 components: - pos: 44.5,-42.5 parent: 2 type: Transform - - uid: 3849 + - uid: 3852 components: - pos: 43.5,-42.5 parent: 2 type: Transform - - uid: 3850 + - uid: 3853 components: - pos: 42.5,-42.5 parent: 2 type: Transform - - uid: 3851 + - uid: 3854 components: - pos: 46.5,-41.5 parent: 2 type: Transform - - uid: 3852 + - uid: 3855 components: - pos: 46.5,-40.5 parent: 2 type: Transform - - uid: 3853 + - uid: 3856 components: - pos: 46.5,-39.5 parent: 2 type: Transform - - uid: 3854 + - uid: 3857 components: - pos: 46.5,-38.5 parent: 2 type: Transform - - uid: 3855 + - uid: 3858 components: - pos: 46.5,-37.5 parent: 2 type: Transform - - uid: 3856 + - uid: 3859 components: - pos: 45.5,-37.5 parent: 2 type: Transform - - uid: 3857 + - uid: 3860 components: - pos: 44.5,-37.5 parent: 2 type: Transform - - uid: 3858 + - uid: 3861 components: - pos: 43.5,-37.5 parent: 2 type: Transform - - uid: 3859 + - uid: 3862 components: - pos: 42.5,-37.5 parent: 2 type: Transform - - uid: 3860 + - uid: 3863 components: - pos: 41.5,-37.5 parent: 2 type: Transform - - uid: 3861 + - uid: 3864 components: - pos: 40.5,-37.5 parent: 2 type: Transform - - uid: 3862 + - uid: 3865 components: - pos: 39.5,-37.5 parent: 2 type: Transform - - uid: 3863 + - uid: 3866 components: - pos: 40.5,-36.5 parent: 2 type: Transform - - uid: 3864 + - uid: 3867 components: - pos: 43.5,-36.5 parent: 2 type: Transform - - uid: 3865 + - uid: 3868 components: - pos: 45.5,-36.5 parent: 2 type: Transform - - uid: 3866 + - uid: 3869 components: - pos: 43.5,-38.5 parent: 2 type: Transform - - uid: 3867 + - uid: 3870 components: - pos: 40.5,-38.5 parent: 2 type: Transform - - uid: 3868 + - uid: 3871 components: - pos: 49.5,-41.5 parent: 2 type: Transform - - uid: 3869 + - uid: 3872 components: - pos: 49.5,-40.5 parent: 2 type: Transform - - uid: 3870 + - uid: 3873 components: - pos: 49.5,-39.5 parent: 2 type: Transform - - uid: 3871 + - uid: 3874 components: - pos: 49.5,-38.5 parent: 2 type: Transform - - uid: 3872 + - uid: 3875 components: - pos: 50.5,-38.5 parent: 2 type: Transform - - uid: 3873 + - uid: 3876 components: - pos: 51.5,-38.5 parent: 2 type: Transform - - uid: 3874 + - uid: 3877 components: - pos: 49.5,-37.5 parent: 2 type: Transform - - uid: 3875 + - uid: 3878 components: - pos: 55.5,-44.5 parent: 2 type: Transform - - uid: 3876 + - uid: 3879 components: - pos: 56.5,-44.5 parent: 2 type: Transform - - uid: 3877 + - uid: 3880 components: - pos: 57.5,-44.5 parent: 2 type: Transform - - uid: 3878 + - uid: 3881 components: - pos: 58.5,-44.5 parent: 2 type: Transform - - uid: 3879 + - uid: 3882 components: - pos: 59.5,-44.5 parent: 2 type: Transform - - uid: 3880 + - uid: 3883 components: - pos: 60.5,-44.5 parent: 2 type: Transform - - uid: 3881 + - uid: 3884 components: - pos: 61.5,-44.5 parent: 2 type: Transform - - uid: 3882 + - uid: 3885 components: - pos: 62.5,-44.5 parent: 2 type: Transform - - uid: 3883 + - uid: 3886 components: - pos: 62.5,-43.5 parent: 2 type: Transform - - uid: 3884 + - uid: 3887 components: - pos: 62.5,-42.5 parent: 2 type: Transform - - uid: 3885 + - uid: 3888 components: - pos: 62.5,-41.5 parent: 2 type: Transform - - uid: 3886 + - uid: 3889 components: - pos: 62.5,-40.5 parent: 2 type: Transform - - uid: 3887 + - uid: 3890 components: - pos: 62.5,-39.5 parent: 2 type: Transform - - uid: 3888 + - uid: 3891 components: - pos: 62.5,-37.5 parent: 2 type: Transform - - uid: 3889 + - uid: 3892 components: - pos: 62.5,-36.5 parent: 2 type: Transform - - uid: 3890 + - uid: 3893 components: - pos: 62.5,-35.5 parent: 2 type: Transform - - uid: 3891 + - uid: 3894 components: - pos: 62.5,-34.5 parent: 2 type: Transform - - uid: 3892 + - uid: 3895 components: - pos: 63.5,-34.5 parent: 2 type: Transform - - uid: 3893 + - uid: 3896 components: - pos: 64.5,-34.5 parent: 2 type: Transform - - uid: 3894 + - uid: 3897 components: - pos: 65.5,-34.5 parent: 2 type: Transform - - uid: 3895 + - uid: 3898 components: - pos: 62.5,-33.5 parent: 2 type: Transform - - uid: 3896 + - uid: 3899 components: - pos: 62.5,-32.5 parent: 2 type: Transform - - uid: 3897 + - uid: 3900 components: - pos: 62.5,-31.5 parent: 2 type: Transform - - uid: 3898 + - uid: 3901 components: - pos: 61.5,-34.5 parent: 2 type: Transform - - uid: 3899 + - uid: 3902 components: - pos: 60.5,-34.5 parent: 2 type: Transform - - uid: 3900 + - uid: 3903 components: - pos: 59.5,-34.5 parent: 2 type: Transform - - uid: 3901 + - uid: 3904 components: - pos: 64.5,-35.5 parent: 2 type: Transform - - uid: 3902 + - uid: 3905 components: - pos: 60.5,-35.5 parent: 2 type: Transform - - uid: 3903 + - uid: 3906 components: - pos: 63.5,-33.5 parent: 2 type: Transform - - uid: 3904 + - uid: 3907 components: - pos: 62.5,-45.5 parent: 2 type: Transform - - uid: 3905 + - uid: 3908 components: - pos: 62.5,-46.5 parent: 2 type: Transform - - uid: 3906 + - uid: 3909 components: - pos: 62.5,-47.5 parent: 2 type: Transform - - uid: 3907 + - uid: 3910 components: - pos: 62.5,-48.5 parent: 2 type: Transform - - uid: 3908 + - uid: 3911 components: - pos: 62.5,-49.5 parent: 2 type: Transform - - uid: 3909 + - uid: 3912 components: - pos: 62.5,-50.5 parent: 2 type: Transform - - uid: 3910 + - uid: 3913 components: - pos: 62.5,-51.5 parent: 2 type: Transform - - uid: 3911 + - uid: 3914 components: - pos: 62.5,-52.5 parent: 2 type: Transform - - uid: 3912 + - uid: 3915 components: - pos: 62.5,-53.5 parent: 2 type: Transform - - uid: 3913 + - uid: 3916 components: - pos: 62.5,-54.5 parent: 2 type: Transform - - uid: 3914 + - uid: 3917 components: - pos: 63.5,-52.5 parent: 2 type: Transform - - uid: 3915 + - uid: 3918 components: - pos: 64.5,-52.5 parent: 2 type: Transform - - uid: 3916 + - uid: 3919 components: - pos: 61.5,-52.5 parent: 2 type: Transform - - uid: 3917 + - uid: 3920 components: - pos: 60.5,-52.5 parent: 2 type: Transform - - uid: 3918 + - uid: 3921 components: - pos: 63.5,-46.5 parent: 2 type: Transform - - uid: 3919 + - uid: 3922 components: - pos: 64.5,-46.5 parent: 2 type: Transform - - uid: 3920 + - uid: 3923 components: - pos: 65.5,-46.5 parent: 2 type: Transform - - uid: 3921 + - uid: 3924 components: - pos: 66.5,-46.5 parent: 2 type: Transform - - uid: 3922 + - uid: 3925 components: - pos: 68.5,-46.5 parent: 2 type: Transform - - uid: 3923 + - uid: 3926 components: - pos: 69.5,-46.5 parent: 2 type: Transform - - uid: 3924 + - uid: 3927 components: - pos: 70.5,-46.5 parent: 2 type: Transform - - uid: 3925 + - uid: 3928 components: - pos: 71.5,-46.5 parent: 2 type: Transform - - uid: 3926 + - uid: 3929 components: - pos: 72.5,-46.5 parent: 2 type: Transform - - uid: 3927 + - uid: 3930 components: - pos: 69.5,-47.5 parent: 2 type: Transform - - uid: 3928 + - uid: 3931 components: - pos: 69.5,-48.5 parent: 2 type: Transform - - uid: 3929 + - uid: 3932 components: - pos: 69.5,-49.5 parent: 2 type: Transform - - uid: 3930 + - uid: 3933 components: - pos: 69.5,-45.5 parent: 2 type: Transform - - uid: 3931 + - uid: 3934 components: - pos: 69.5,-44.5 parent: 2 type: Transform - - uid: 3932 + - uid: 3935 components: - pos: 71.5,-45.5 parent: 2 type: Transform - - uid: 3933 + - uid: 3936 components: - pos: 71.5,-47.5 parent: 2 type: Transform - - uid: 3934 + - uid: 3937 components: - pos: 73.5,-46.5 parent: 2 type: Transform - - uid: 3935 + - uid: 3938 components: - pos: 73.5,-47.5 parent: 2 type: Transform - - uid: 3936 + - uid: 3939 components: - pos: 73.5,-45.5 parent: 2 type: Transform - - uid: 3937 + - uid: 3940 components: - pos: 49.5,-43.5 parent: 2 type: Transform - - uid: 3938 + - uid: 3941 components: - pos: 49.5,-44.5 parent: 2 type: Transform - - uid: 3939 + - uid: 3942 components: - pos: 49.5,-46.5 parent: 2 type: Transform - - uid: 3940 + - uid: 3943 components: - pos: 49.5,-47.5 parent: 2 type: Transform - - uid: 3941 + - uid: 3944 components: - pos: 49.5,-49.5 parent: 2 type: Transform - - uid: 3942 + - uid: 3945 components: - pos: 49.5,-50.5 parent: 2 type: Transform - - uid: 3943 + - uid: 3946 components: - pos: 49.5,-51.5 parent: 2 type: Transform - - uid: 3944 + - uid: 3947 components: - pos: 49.5,-52.5 parent: 2 type: Transform - - uid: 3945 + - uid: 3948 components: - pos: 49.5,-53.5 parent: 2 type: Transform - - uid: 3946 + - uid: 3949 components: - pos: 49.5,-54.5 parent: 2 type: Transform - - uid: 3947 + - uid: 3950 components: - pos: 48.5,-45.5 parent: 2 type: Transform - - uid: 3948 + - uid: 3951 components: - pos: 47.5,-45.5 parent: 2 type: Transform - - uid: 3949 + - uid: 3952 components: - pos: 46.5,-45.5 parent: 2 type: Transform - - uid: 3950 + - uid: 3953 components: - pos: 45.5,-45.5 parent: 2 type: Transform - - uid: 3951 + - uid: 3954 components: - pos: 45.5,-46.5 parent: 2 type: Transform - - uid: 3952 + - uid: 3955 components: - pos: 45.5,-47.5 parent: 2 type: Transform - - uid: 3953 + - uid: 3956 components: - pos: 45.5,-48.5 parent: 2 type: Transform - - uid: 3954 + - uid: 3957 components: - pos: 44.5,-48.5 parent: 2 type: Transform - - uid: 3955 + - uid: 3958 components: - pos: 43.5,-48.5 parent: 2 type: Transform - - uid: 3956 + - uid: 3959 components: - pos: 43.5,-47.5 parent: 2 type: Transform - - uid: 3957 + - uid: 3960 components: - pos: 43.5,-46.5 parent: 2 type: Transform - - uid: 3958 + - uid: 3961 components: - pos: 42.5,-46.5 parent: 2 type: Transform - - uid: 3959 + - uid: 3962 components: - pos: 41.5,-46.5 parent: 2 type: Transform - - uid: 3960 + - uid: 3963 components: - pos: 40.5,-46.5 parent: 2 type: Transform - - uid: 3961 + - uid: 3964 components: - pos: 39.5,-46.5 parent: 2 type: Transform - - uid: 3962 + - uid: 3965 components: - pos: 41.5,-42.5 parent: 2 type: Transform - - uid: 3963 + - uid: 3966 components: - pos: 40.5,-42.5 parent: 2 type: Transform - - uid: 3964 + - uid: 3967 components: - pos: 39.5,-42.5 parent: 2 type: Transform - - uid: 3965 + - uid: 3968 components: - pos: 38.5,-42.5 parent: 2 type: Transform - - uid: 3966 + - uid: 3969 components: - pos: 37.5,-42.5 parent: 2 type: Transform - - uid: 3967 + - uid: 3970 components: - pos: 59.5,-33.5 parent: 2 type: Transform - - uid: 3968 + - uid: 3971 components: - pos: 55.5,-63.5 parent: 2 type: Transform - - uid: 3969 + - uid: 3972 components: - pos: 64.5,-43.5 parent: 2 type: Transform - - uid: 3970 + - uid: 3973 components: - pos: -15.5,-18.5 parent: 2 type: Transform - - uid: 3971 + - uid: 3974 components: - pos: -21.5,-59.5 parent: 2 type: Transform - - uid: 3972 + - uid: 3975 components: - pos: 30.5,-47.5 parent: 2 type: Transform - - uid: 3973 + - uid: 3976 components: - pos: 31.5,-47.5 parent: 2 type: Transform - - uid: 3974 + - uid: 3977 components: - pos: 32.5,-47.5 parent: 2 type: Transform - - uid: 3975 + - uid: 3978 components: - pos: 33.5,-47.5 parent: 2 type: Transform - - uid: 3976 + - uid: 3979 components: - pos: 31.5,-46.5 parent: 2 type: Transform - - uid: 3977 + - uid: 3980 components: - pos: 31.5,-46.5 parent: 2 type: Transform - - uid: 3978 + - uid: 3981 components: - pos: 31.5,-45.5 parent: 2 type: Transform - - uid: 3979 + - uid: 3982 components: - pos: 29.5,-48.5 parent: 2 type: Transform - - uid: 3980 + - uid: 3983 components: - pos: 29.5,-49.5 parent: 2 type: Transform - - uid: 3981 + - uid: 3984 components: - pos: 30.5,-49.5 parent: 2 type: Transform - - uid: 3982 + - uid: 3985 components: - pos: 31.5,-49.5 parent: 2 type: Transform - - uid: 3983 + - uid: 3986 components: - pos: 31.5,-50.5 parent: 2 type: Transform - - uid: 3984 + - uid: 3987 components: - pos: 31.5,-51.5 parent: 2 type: Transform - - uid: 3985 + - uid: 3988 components: - pos: 31.5,-52.5 parent: 2 type: Transform - - uid: 3986 + - uid: 3989 components: - pos: 30.5,-51.5 parent: 2 type: Transform - - uid: 3987 + - uid: 3990 components: - pos: 32.5,-51.5 parent: 2 type: Transform - - uid: 3988 + - uid: 3991 components: - pos: 31.5,-53.5 parent: 2 type: Transform - - uid: 3989 + - uid: 3992 components: - pos: 31.5,-54.5 parent: 2 type: Transform - - uid: 3990 + - uid: 3993 components: - pos: 31.5,-56.5 parent: 2 type: Transform - - uid: 3991 + - uid: 3994 components: - pos: 31.5,-55.5 parent: 2 type: Transform - - uid: 3992 + - uid: 3995 components: - pos: 30.5,-54.5 parent: 2 type: Transform - - uid: 3993 + - uid: 3996 components: - pos: 29.5,-54.5 parent: 2 type: Transform - - uid: 3994 + - uid: 3997 components: - pos: 32.5,-54.5 parent: 2 type: Transform - - uid: 3995 + - uid: 3998 components: - pos: 33.5,-54.5 parent: 2 type: Transform - - uid: 3996 + - uid: 3999 components: - pos: 30.5,-45.5 parent: 2 type: Transform - - uid: 3997 + - uid: 4000 components: - pos: 32.5,-45.5 parent: 2 type: Transform - - uid: 3998 + - uid: 4001 components: - pos: 29.5,-45.5 parent: 2 type: Transform - - uid: 3999 + - uid: 4002 components: - pos: 33.5,-45.5 parent: 2 type: Transform - - uid: 4000 + - uid: 4003 components: - pos: 48.5,-54.5 parent: 2 type: Transform - - uid: 4001 + - uid: 4004 components: - pos: 47.5,-54.5 parent: 2 type: Transform - - uid: 4002 + - uid: 4005 components: - pos: 46.5,-54.5 parent: 2 type: Transform - - uid: 4003 + - uid: 4006 components: - pos: 49.5,-55.5 parent: 2 type: Transform - - uid: 4004 + - uid: 4007 components: - pos: 49.5,-56.5 parent: 2 type: Transform - - uid: 4005 + - uid: 4008 components: - pos: 49.5,-57.5 parent: 2 type: Transform - - uid: 4006 + - uid: 4009 components: - pos: 49.5,-58.5 parent: 2 type: Transform - - uid: 4007 + - uid: 4010 components: - pos: 49.5,-59.5 parent: 2 type: Transform - - uid: 4008 + - uid: 4011 components: - pos: 49.5,-60.5 parent: 2 type: Transform - - uid: 4009 + - uid: 4012 components: - pos: 50.5,-60.5 parent: 2 type: Transform - - uid: 4010 + - uid: 4013 components: - pos: 50.5,-53.5 parent: 2 type: Transform - - uid: 4011 + - uid: 4014 components: - pos: 51.5,-53.5 parent: 2 type: Transform - - uid: 4012 + - uid: 4015 components: - pos: 52.5,-53.5 parent: 2 type: Transform - - uid: 4013 + - uid: 4016 components: - pos: 52.5,-52.5 parent: 2 type: Transform - - uid: 4014 + - uid: 4017 components: - pos: 52.5,-51.5 parent: 2 type: Transform - - uid: 4015 + - uid: 4018 components: - pos: 50.5,-50.5 parent: 2 type: Transform - - uid: 4016 + - uid: 4019 components: - pos: 48.5,-57.5 parent: 2 type: Transform - - uid: 4017 + - uid: 4020 components: - pos: 47.5,-57.5 parent: 2 type: Transform - - uid: 4018 + - uid: 4021 components: - pos: 46.5,-57.5 parent: 2 type: Transform - - uid: 4019 + - uid: 4022 components: - pos: 45.5,-57.5 parent: 2 type: Transform - - uid: 4020 + - uid: 4023 components: - pos: 51.5,-54.5 parent: 2 type: Transform - - uid: 4021 + - uid: 4024 components: - pos: 51.5,-55.5 parent: 2 type: Transform - - uid: 4022 + - uid: 4025 components: - pos: 51.5,-56.5 parent: 2 type: Transform - - uid: 4023 + - uid: 4026 components: - pos: 49.5,-48.5 parent: 2 type: Transform - - uid: 4024 + - uid: 4027 components: - pos: 32.5,15.5 parent: 2 type: Transform - - uid: 4025 + - uid: 4028 components: - pos: -20.5,0.5 parent: 2 type: Transform - - uid: 4026 + - uid: 4029 components: - pos: -21.5,0.5 parent: 2 type: Transform - - uid: 4027 + - uid: 4030 components: - pos: -21.5,1.5 parent: 2 type: Transform - - uid: 4028 + - uid: 4031 components: - pos: -20.5,1.5 parent: 2 type: Transform - - uid: 4029 + - uid: 4032 components: - pos: -19.5,1.5 parent: 2 type: Transform - - uid: 4030 + - uid: 4033 components: - pos: -19.5,2.5 parent: 2 type: Transform - - uid: 4031 + - uid: 4034 components: - pos: -18.5,2.5 parent: 2 type: Transform - - uid: 4032 + - uid: 4035 components: - pos: -17.5,2.5 parent: 2 type: Transform - - uid: 4033 + - uid: 4036 components: - pos: -17.5,3.5 parent: 2 type: Transform - - uid: 4034 + - uid: 4037 components: - pos: -19.5,-1.5 parent: 2 type: Transform - - uid: 4035 + - uid: 4038 components: - pos: -19.5,-2.5 parent: 2 type: Transform - - uid: 4036 + - uid: 4039 components: - pos: -19.5,-0.5 parent: 2 type: Transform - - uid: 4037 + - uid: 4040 components: - pos: -20.5,-0.5 parent: 2 type: Transform - - uid: 4038 + - uid: 4041 components: - pos: -21.5,2.5 parent: 2 type: Transform - - uid: 4039 + - uid: 4042 components: - pos: -21.5,3.5 parent: 2 type: Transform - - uid: 4040 + - uid: 4043 components: - pos: -18.5,-0.5 parent: 2 type: Transform - - uid: 4041 + - uid: 4044 components: - pos: 57.5,6.5 parent: 2 type: Transform - - uid: 4042 + - uid: 4045 components: - pos: 18.5,-81.5 parent: 2 type: Transform - - uid: 4043 + - uid: 4046 components: - pos: -29.5,-9.5 parent: 2 type: Transform - - uid: 4044 + - uid: 4047 components: - pos: -29.5,-10.5 parent: 2 type: Transform - - uid: 4045 + - uid: 4048 components: - pos: -29.5,-11.5 parent: 2 type: Transform - - uid: 4046 + - uid: 4049 components: - pos: -29.5,-12.5 parent: 2 type: Transform - - uid: 4047 + - uid: 4050 components: - pos: -28.5,-12.5 parent: 2 type: Transform - - uid: 4048 + - uid: 4051 components: - pos: -27.5,-12.5 parent: 2 type: Transform - - uid: 4049 + - uid: 4052 components: - pos: -26.5,-12.5 parent: 2 type: Transform - - uid: 4050 + - uid: 4053 components: - pos: -25.5,-12.5 parent: 2 type: Transform - - uid: 4051 + - uid: 4054 components: - pos: -24.5,-12.5 parent: 2 type: Transform - - uid: 4052 + - uid: 4055 components: - pos: -23.5,-12.5 parent: 2 type: Transform - - uid: 4053 + - uid: 4056 components: - pos: -22.5,-12.5 parent: 2 type: Transform - - uid: 4054 + - uid: 4057 components: - pos: -21.5,-12.5 parent: 2 type: Transform - - uid: 4055 + - uid: 4058 components: - pos: -20.5,-12.5 parent: 2 type: Transform - - uid: 4056 + - uid: 4059 components: - pos: -19.5,-12.5 parent: 2 type: Transform - - uid: 4057 + - uid: 4060 components: - pos: -24.5,-11.5 parent: 2 type: Transform - - uid: 4058 + - uid: 4061 components: - pos: -24.5,-10.5 parent: 2 type: Transform - - uid: 4059 + - uid: 4062 components: - pos: -24.5,-9.5 parent: 2 type: Transform - - uid: 4060 + - uid: 4063 components: - pos: -19.5,-13.5 parent: 2 type: Transform - - uid: 4061 + - uid: 4064 components: - pos: -19.5,-14.5 parent: 2 type: Transform - - uid: 4062 + - uid: 4065 components: - pos: -19.5,-15.5 parent: 2 type: Transform - - uid: 4063 + - uid: 4066 components: - pos: -19.5,-16.5 parent: 2 type: Transform - - uid: 4064 + - uid: 4067 components: - pos: -19.5,-17.5 parent: 2 type: Transform - - uid: 4065 + - uid: 4068 components: - pos: -19.5,-18.5 parent: 2 type: Transform - - uid: 4066 + - uid: 4069 components: - pos: -19.5,-19.5 parent: 2 type: Transform - - uid: 4067 + - uid: 4070 components: - pos: -19.5,-20.5 parent: 2 type: Transform - - uid: 4068 + - uid: 4071 components: - pos: -19.5,-21.5 parent: 2 type: Transform - - uid: 4069 + - uid: 4072 components: - pos: -19.5,-22.5 parent: 2 type: Transform - - uid: 4070 + - uid: 4073 components: - pos: -20.5,-17.5 parent: 2 type: Transform - - uid: 4071 + - uid: 4074 components: - pos: -21.5,-17.5 parent: 2 type: Transform - - uid: 4072 + - uid: 4075 components: - pos: -23.5,-17.5 parent: 2 type: Transform - - uid: 4073 + - uid: 4076 components: - pos: -24.5,-17.5 parent: 2 type: Transform - - uid: 4074 + - uid: 4077 components: - pos: -25.5,-17.5 parent: 2 type: Transform - - uid: 4075 + - uid: 4078 components: - pos: -26.5,-17.5 parent: 2 type: Transform - - uid: 4076 + - uid: 4079 components: - pos: -27.5,-17.5 parent: 2 type: Transform - - uid: 4077 + - uid: 4080 components: - pos: -28.5,-17.5 parent: 2 type: Transform - - uid: 4078 + - uid: 4081 components: - pos: -29.5,-17.5 parent: 2 type: Transform - - uid: 4079 + - uid: 4082 components: - pos: -20.5,-22.5 parent: 2 type: Transform - - uid: 4080 + - uid: 4083 components: - pos: -21.5,-22.5 parent: 2 type: Transform - - uid: 4081 + - uid: 4084 components: - pos: -22.5,-22.5 parent: 2 type: Transform - - uid: 4082 + - uid: 4085 components: - pos: -23.5,-22.5 parent: 2 type: Transform - - uid: 4083 + - uid: 4086 components: - pos: -24.5,-22.5 parent: 2 type: Transform - - uid: 4084 + - uid: 4087 components: - pos: -25.5,-22.5 parent: 2 type: Transform - - uid: 4085 + - uid: 4088 components: - pos: -26.5,-22.5 parent: 2 type: Transform - - uid: 4086 + - uid: 4089 components: - pos: -27.5,-22.5 parent: 2 type: Transform - - uid: 4087 + - uid: 4090 components: - pos: -28.5,-22.5 parent: 2 type: Transform - - uid: 4088 + - uid: 4091 components: - pos: -29.5,-22.5 parent: 2 type: Transform - - uid: 4089 + - uid: 4092 components: - pos: -19.5,-23.5 parent: 2 type: Transform - - uid: 4090 + - uid: 4093 components: - pos: -19.5,-11.5 parent: 2 type: Transform - - uid: 4091 + - uid: 4094 components: - pos: -19.5,-10.5 parent: 2 type: Transform - - uid: 4092 + - uid: 4095 components: - pos: -19.5,-9.5 parent: 2 type: Transform - - uid: 4093 + - uid: 4096 components: - pos: -19.5,-8.5 parent: 2 type: Transform - - uid: 4094 + - uid: 4097 components: - pos: -19.5,-6.5 parent: 2 type: Transform - - uid: 4095 + - uid: 4098 components: - pos: -19.5,-5.5 parent: 2 type: Transform - - uid: 4096 + - uid: 4099 components: - pos: -18.5,-5.5 parent: 2 type: Transform - - uid: 4097 + - uid: 4100 components: - pos: -17.5,-5.5 parent: 2 type: Transform - - uid: 4098 + - uid: 4101 components: - pos: -16.5,-5.5 parent: 2 type: Transform - - uid: 4099 + - uid: 4102 components: - pos: -15.5,-5.5 parent: 2 type: Transform - - uid: 4100 + - uid: 4103 components: - pos: -14.5,-5.5 parent: 2 type: Transform - - uid: 4101 + - uid: 4104 components: - pos: -13.5,-5.5 parent: 2 type: Transform - - uid: 4102 + - uid: 4105 components: - pos: -13.5,-4.5 parent: 2 type: Transform - - uid: 4103 + - uid: 4106 components: - pos: -13.5,3.5 parent: 2 type: Transform - - uid: 4104 + - uid: 4107 components: - pos: -19.5,7.5 parent: 2 type: Transform - - uid: 4105 + - uid: 4108 components: - pos: -20.5,7.5 parent: 2 type: Transform - - uid: 4106 + - uid: 4109 components: - pos: -21.5,7.5 parent: 2 type: Transform - - uid: 4107 + - uid: 4110 components: - pos: -22.5,7.5 parent: 2 type: Transform - - uid: 4108 + - uid: 4111 components: - pos: -20.5,-5.5 parent: 2 type: Transform - - uid: 4109 + - uid: 4112 components: - pos: -21.5,-5.5 parent: 2 type: Transform - - uid: 4110 + - uid: 4113 components: - pos: -22.5,-5.5 parent: 2 type: Transform - - uid: 4111 + - uid: 4114 components: - pos: -23.5,-5.5 parent: 2 type: Transform - - uid: 4112 + - uid: 4115 components: - pos: -24.5,-5.5 parent: 2 type: Transform - - uid: 4113 + - uid: 4116 components: - pos: -25.5,-5.5 parent: 2 type: Transform - - uid: 4114 + - uid: 4117 components: - pos: -25.5,-4.5 parent: 2 type: Transform - - uid: 4115 + - uid: 4118 components: - pos: -25.5,-3.5 parent: 2 type: Transform - - uid: 4116 + - uid: 4119 components: - pos: -25.5,-2.5 parent: 2 type: Transform - - uid: 4117 + - uid: 4120 components: - pos: -25.5,-1.5 parent: 2 type: Transform - - uid: 4118 + - uid: 4121 components: - pos: -25.5,-0.5 parent: 2 type: Transform - - uid: 4119 + - uid: 4122 components: - pos: -25.5,0.5 parent: 2 type: Transform - - uid: 4120 + - uid: 4123 components: - pos: -24.5,-9.5 parent: 2 type: Transform - - uid: 4121 + - uid: 4124 components: - pos: -23.5,-9.5 parent: 2 type: Transform - - uid: 4122 + - uid: 4125 components: - pos: -29.5,-13.5 parent: 2 type: Transform - - uid: 4123 + - uid: 4126 components: - pos: -29.5,-14.5 parent: 2 type: Transform - - uid: 4124 + - uid: 4127 components: - pos: -29.5,-8.5 parent: 2 type: Transform - - uid: 4125 + - uid: 4128 components: - pos: 45.5,18.5 parent: 2 type: Transform - - uid: 4126 + - uid: 4129 components: - pos: 30.5,-59.5 parent: 2 type: Transform - - uid: 4127 + - uid: 4130 components: - pos: 31.5,-59.5 parent: 2 type: Transform - - uid: 4128 + - uid: 4131 components: - pos: 32.5,-59.5 parent: 2 type: Transform - - uid: 4129 + - uid: 4132 components: - pos: 33.5,-59.5 parent: 2 type: Transform - - uid: 4130 + - uid: 4133 components: - pos: 34.5,-59.5 parent: 2 type: Transform - - uid: 4131 + - uid: 4134 components: - pos: 38.5,-36.5 parent: 2 type: Transform - - uid: 4132 + - uid: 4135 components: - pos: 38.5,-37.5 parent: 2 type: Transform - - uid: 4133 + - uid: 4136 components: - pos: 51.5,-57.5 parent: 2 type: Transform - - uid: 4134 + - uid: 4137 components: - pos: 51.5,-58.5 parent: 2 type: Transform - - uid: 4135 + - uid: 4138 components: - pos: 52.5,-58.5 parent: 2 type: Transform - - uid: 4136 + - uid: 4139 components: - pos: 53.5,-58.5 parent: 2 type: Transform - - uid: 4137 + - uid: 4140 components: - pos: 54.5,-58.5 parent: 2 type: Transform - - uid: 4138 + - uid: 4141 components: - pos: 55.5,-58.5 parent: 2 type: Transform - - uid: 4139 + - uid: 4142 components: - pos: 55.5,-59.5 parent: 2 type: Transform - - uid: 4140 + - uid: 4143 components: - pos: 55.5,-60.5 parent: 2 type: Transform - - uid: 4141 + - uid: 4144 components: - pos: 56.5,-60.5 parent: 2 type: Transform - - uid: 4142 + - uid: 4145 components: - pos: -35.5,-39.5 parent: 2 type: Transform - - uid: 4143 + - uid: 4146 components: - pos: 29.5,-72.5 parent: 2 type: Transform - - uid: 4144 + - uid: 4147 components: - pos: 47.5,-82.5 parent: 2 type: Transform - - uid: 4145 + - uid: 4148 components: - pos: 37.5,-57.5 parent: 2 type: Transform - - uid: 4146 + - uid: 4149 components: - pos: 37.5,-58.5 parent: 2 type: Transform - - uid: 4147 + - uid: 4150 components: - pos: 37.5,-59.5 parent: 2 type: Transform - - uid: 4148 + - uid: 4151 components: - pos: 38.5,-59.5 parent: 2 type: Transform - - uid: 4149 + - uid: 4152 components: - pos: 39.5,-59.5 parent: 2 type: Transform - - uid: 4150 + - uid: 4153 components: - pos: 40.5,-59.5 parent: 2 type: Transform - - uid: 4151 + - uid: 4154 components: - pos: 40.5,-59.5 parent: 2 type: Transform - - uid: 4152 + - uid: 4155 components: - pos: 40.5,-60.5 parent: 2 type: Transform - - uid: 4153 + - uid: 4156 components: - pos: 40.5,-61.5 parent: 2 type: Transform - - uid: 4154 + - uid: 4157 components: - pos: 40.5,-62.5 parent: 2 type: Transform - - uid: 4155 + - uid: 4158 components: - pos: 40.5,-63.5 parent: 2 type: Transform - - uid: 4156 + - uid: 4159 components: - pos: 40.5,-64.5 parent: 2 type: Transform - - uid: 4157 + - uid: 4160 components: - pos: 40.5,-65.5 parent: 2 type: Transform - - uid: 4158 + - uid: 4161 components: - pos: 40.5,-66.5 parent: 2 type: Transform - - uid: 4159 + - uid: 4162 components: - pos: 40.5,-67.5 parent: 2 type: Transform - - uid: 4160 + - uid: 4163 components: - pos: 40.5,-68.5 parent: 2 type: Transform - - uid: 4161 + - uid: 4164 components: - pos: 40.5,-69.5 parent: 2 type: Transform - - uid: 4162 + - uid: 4165 components: - pos: 40.5,-70.5 parent: 2 type: Transform - - uid: 4163 + - uid: 4166 components: - pos: 40.5,-71.5 parent: 2 type: Transform - - uid: 4164 + - uid: 4167 components: - pos: 40.5,-72.5 parent: 2 type: Transform - - uid: 4165 + - uid: 4168 components: - pos: 41.5,-72.5 parent: 2 type: Transform - - uid: 4166 + - uid: 4169 components: - pos: 42.5,-72.5 parent: 2 type: Transform - - uid: 4167 + - uid: 4170 components: - pos: 43.5,-72.5 parent: 2 type: Transform - - uid: 4168 + - uid: 4171 components: - pos: 44.5,-72.5 parent: 2 type: Transform - - uid: 4169 + - uid: 4172 components: - pos: 44.5,-73.5 parent: 2 type: Transform - - uid: 4170 + - uid: 4173 components: - pos: 44.5,-74.5 parent: 2 type: Transform - - uid: 4171 + - uid: 4174 components: - pos: 42.5,-73.5 parent: 2 type: Transform - - uid: 4172 + - uid: 4175 components: - pos: 42.5,-74.5 parent: 2 type: Transform - - uid: 4173 + - uid: 4176 components: - pos: 39.5,-72.5 parent: 2 type: Transform - - uid: 4174 + - uid: 4177 components: - pos: 38.5,-72.5 parent: 2 type: Transform - - uid: 4175 + - uid: 4178 components: - pos: 37.5,-72.5 parent: 2 type: Transform - - uid: 4176 + - uid: 4179 components: - pos: 36.5,-72.5 parent: 2 type: Transform - - uid: 4177 + - uid: 4180 components: - pos: 35.5,-72.5 parent: 2 type: Transform - - uid: 4178 + - uid: 4181 components: - pos: 34.5,-72.5 parent: 2 type: Transform - - uid: 4179 + - uid: 4182 components: - pos: 34.5,-73.5 parent: 2 type: Transform - - uid: 4180 + - uid: 4183 components: - pos: 34.5,-74.5 parent: 2 type: Transform - - uid: 4181 + - uid: 4184 components: - pos: 36.5,-73.5 parent: 2 type: Transform - - uid: 4182 + - uid: 4185 components: - pos: 36.5,-74.5 parent: 2 type: Transform - - uid: 4183 + - uid: 4186 components: - pos: 44.5,-71.5 parent: 2 type: Transform - - uid: 4184 + - uid: 4187 components: - pos: 44.5,-70.5 parent: 2 type: Transform - - uid: 4185 + - uid: 4188 components: - pos: 34.5,-71.5 parent: 2 type: Transform - - uid: 4186 + - uid: 4189 components: - pos: 34.5,-70.5 parent: 2 type: Transform - - uid: 4187 + - uid: 4190 components: - pos: 41.5,-59.5 parent: 2 type: Transform - - uid: 4188 + - uid: 4191 components: - pos: 42.5,-59.5 parent: 2 type: Transform - - uid: 4189 + - uid: 4192 components: - pos: 43.5,-59.5 parent: 2 type: Transform - - uid: 4190 + - uid: 4193 components: - pos: 39.5,-58.5 parent: 2 type: Transform - - uid: 4191 + - uid: 4194 components: - pos: 39.5,-57.5 parent: 2 type: Transform - - uid: 4192 + - uid: 4195 components: - pos: 39.5,-56.5 parent: 2 type: Transform - - uid: 4193 + - uid: 4196 components: - pos: 39.5,-55.5 parent: 2 type: Transform - - uid: 4194 + - uid: 4197 components: - pos: 39.5,-54.5 parent: 2 type: Transform - - uid: 4195 + - uid: 4198 components: - pos: 40.5,-55.5 parent: 2 type: Transform - - uid: 4196 + - uid: 4199 components: - pos: 36.5,-58.5 parent: 2 type: Transform - - uid: 4197 + - uid: 4200 components: - pos: 36.5,-56.5 parent: 2 type: Transform - - uid: 4198 + - uid: 4201 components: - pos: 36.5,-54.5 parent: 2 type: Transform - - uid: 4199 + - uid: 4202 components: - pos: 36.5,-57.5 parent: 2 type: Transform - - uid: 4200 + - uid: 4203 components: - pos: 36.5,-55.5 parent: 2 type: Transform - - uid: 4201 + - uid: 4204 components: - pos: 36.5,-53.5 parent: 2 type: Transform - - uid: 4202 + - uid: 4205 components: - pos: 36.5,-52.5 parent: 2 type: Transform - - uid: 4203 + - uid: 4206 components: - pos: 36.5,-51.5 parent: 2 type: Transform - - uid: 4204 + - uid: 4207 components: - pos: 37.5,-51.5 parent: 2 type: Transform - - uid: 4205 + - uid: 4208 components: - pos: 38.5,-51.5 parent: 2 type: Transform - - uid: 4206 + - uid: 4209 components: - pos: 39.5,-51.5 parent: 2 type: Transform - - uid: 4207 + - uid: 4210 components: - pos: 40.5,-51.5 parent: 2 type: Transform - - uid: 4208 + - uid: 4211 components: - pos: 40.5,-50.5 parent: 2 type: Transform - - uid: 4209 + - uid: 4212 components: - pos: 40.5,-49.5 parent: 2 type: Transform - - uid: 4210 + - uid: 4213 components: - pos: 39.5,-49.5 parent: 2 type: Transform - - uid: 4211 + - uid: 4214 components: - pos: 39.5,-48.5 parent: 2 type: Transform - - uid: 4212 + - uid: 4215 components: - pos: 38.5,-48.5 parent: 2 type: Transform - - uid: 4213 + - uid: 4216 components: - pos: 41.5,-51.5 parent: 2 type: Transform - - uid: 4214 + - uid: 4217 components: - pos: 42.5,-51.5 parent: 2 type: Transform - - uid: 4215 + - uid: 4218 components: - pos: 43.5,-51.5 parent: 2 type: Transform - - uid: 4216 + - uid: 4219 components: - pos: 43.5,-52.5 parent: 2 type: Transform - - uid: 4217 + - uid: 4220 components: - pos: 43.5,-53.5 parent: 2 type: Transform - - uid: 4218 + - uid: 4221 components: - pos: 43.5,-54.5 parent: 2 type: Transform - - uid: 4219 + - uid: 4222 components: - pos: 31.5,-72.5 parent: 2 type: Transform - - uid: 4220 + - uid: 4223 components: - pos: 27.5,-72.5 parent: 2 type: Transform - - uid: 4221 + - uid: 4224 components: - pos: 28.5,-72.5 parent: 2 type: Transform - - uid: 4222 + - uid: 4225 components: - pos: 22.5,-83.5 parent: 2 type: Transform - - uid: 4223 + - uid: 4226 components: - pos: 23.5,-72.5 parent: 2 type: Transform - - uid: 4224 + - uid: 4227 components: - pos: 25.5,-70.5 parent: 2 type: Transform - - uid: 4225 + - uid: 4228 components: - pos: 25.5,-69.5 parent: 2 type: Transform - - uid: 4226 + - uid: 4229 components: - pos: 13.5,-83.5 parent: 2 type: Transform - - uid: 4227 + - uid: 4230 components: - pos: 26.5,-72.5 parent: 2 type: Transform - - uid: 4228 + - uid: 4231 components: - pos: 25.5,-72.5 parent: 2 type: Transform - - uid: 4229 + - uid: 4232 components: - pos: 25.5,-71.5 parent: 2 type: Transform - - uid: 4230 + - uid: 4233 components: - pos: 20.5,-83.5 parent: 2 type: Transform - - uid: 4231 + - uid: 4234 components: - pos: 18.5,-83.5 parent: 2 type: Transform - - uid: 4232 + - uid: 4235 components: - pos: 24.5,-72.5 parent: 2 type: Transform - - uid: 4233 + - uid: 4236 components: - pos: 13.5,-86.5 parent: 2 type: Transform - - uid: 4234 + - uid: 4237 components: - pos: 21.5,-83.5 parent: 2 type: Transform - - uid: 4235 + - uid: 4238 components: - pos: 14.5,-81.5 parent: 2 type: Transform - - uid: 4236 + - uid: 4239 components: - pos: 12.5,-81.5 parent: 2 type: Transform - - uid: 4237 + - uid: 4240 components: - pos: 17.5,-81.5 parent: 2 type: Transform - - uid: 4238 + - uid: 4241 components: - pos: 14.5,-86.5 parent: 2 type: Transform - - uid: 4239 + - uid: 4242 components: - pos: 10.5,-70.5 parent: 2 type: Transform - - uid: 4240 + - uid: 4243 components: - pos: 32.5,-72.5 parent: 2 type: Transform - - uid: 4241 + - uid: 4244 components: - pos: 30.5,-75.5 parent: 2 type: Transform - - uid: 4242 + - uid: 4245 components: - pos: 30.5,-73.5 parent: 2 type: Transform - - uid: 4243 + - uid: 4246 components: - pos: 30.5,-76.5 parent: 2 type: Transform - - uid: 4244 + - uid: 4247 components: - pos: 30.5,-74.5 parent: 2 type: Transform - - uid: 4245 + - uid: 4248 components: - pos: 33.5,-72.5 parent: 2 type: Transform - - uid: 4246 + - uid: 4249 components: - pos: 48.5,-73.5 parent: 2 type: Transform - - uid: 4247 + - uid: 4250 components: - pos: 42.5,-75.5 parent: 2 type: Transform - - uid: 4248 + - uid: 4251 components: - pos: 36.5,-75.5 parent: 2 type: Transform - - uid: 4249 + - uid: 4252 components: - pos: 30.5,-78.5 parent: 2 type: Transform - - uid: 4250 + - uid: 4253 components: - pos: 46.5,-82.5 parent: 2 type: Transform - - uid: 4251 + - uid: 4254 components: - pos: 48.5,-91.5 parent: 2 type: Transform - - uid: 4252 + - uid: 4255 components: - pos: 21.5,-73.5 parent: 2 type: Transform - - uid: 4253 + - uid: 4256 components: - pos: 20.5,-73.5 parent: 2 type: Transform - - uid: 4254 + - uid: 4257 components: - pos: 19.5,-73.5 parent: 2 type: Transform - - uid: 4255 + - uid: 4258 components: - pos: 18.5,-73.5 parent: 2 type: Transform - - uid: 4256 + - uid: 4259 components: - pos: 17.5,-73.5 parent: 2 type: Transform - - uid: 4257 + - uid: 4260 components: - pos: 16.5,-73.5 parent: 2 type: Transform - - uid: 4258 + - uid: 4261 components: - pos: 15.5,-73.5 parent: 2 type: Transform - - uid: 4259 + - uid: 4262 components: - pos: 14.5,-73.5 parent: 2 type: Transform - - uid: 4260 + - uid: 4263 components: - pos: 13.5,-73.5 parent: 2 type: Transform - - uid: 4261 + - uid: 4264 components: - pos: 12.5,-73.5 parent: 2 type: Transform - - uid: 4262 + - uid: 4265 components: - pos: 11.5,-73.5 parent: 2 type: Transform - - uid: 4263 + - uid: 4266 components: - pos: 11.5,-72.5 parent: 2 type: Transform - - uid: 4264 + - uid: 4267 components: - pos: 11.5,-71.5 parent: 2 type: Transform - - uid: 4265 + - uid: 4268 components: - pos: 11.5,-70.5 parent: 2 type: Transform - - uid: 4266 + - uid: 4269 components: - pos: 19.5,-83.5 parent: 2 type: Transform - - uid: 4267 + - uid: 4270 components: - pos: 48.5,-89.5 parent: 2 type: Transform - - uid: 4268 + - uid: 4271 components: - pos: 23.5,-83.5 parent: 2 type: Transform - - uid: 4269 + - uid: 4272 components: - pos: 9.5,-70.5 parent: 2 type: Transform - - uid: 4270 + - uid: 4273 components: - pos: 16.5,-86.5 parent: 2 type: Transform - - uid: 4271 + - uid: 4274 components: - pos: 15.5,-86.5 parent: 2 type: Transform - - uid: 4272 + - uid: 4275 components: - pos: 12.5,-86.5 parent: 2 type: Transform - - uid: 4273 + - uid: 4276 components: - pos: 17.5,-86.5 parent: 2 type: Transform - - uid: 4274 + - uid: 4277 components: - pos: -13.5,-26.5 parent: 2 type: Transform - - uid: 4275 + - uid: 4278 components: - pos: -14.5,-26.5 parent: 2 type: Transform - - uid: 4276 + - uid: 4279 components: - pos: -15.5,-26.5 parent: 2 type: Transform - - uid: 4277 + - uid: 4280 components: - pos: -16.5,-26.5 parent: 2 type: Transform - - uid: 4278 + - uid: 4281 components: - pos: -17.5,-26.5 parent: 2 type: Transform - - uid: 4279 + - uid: 4282 components: - pos: -18.5,-26.5 parent: 2 type: Transform - - uid: 4280 + - uid: 4283 components: - pos: -19.5,-26.5 parent: 2 type: Transform - - uid: 4281 + - uid: 4284 components: - pos: -19.5,-27.5 parent: 2 type: Transform - - uid: 4282 + - uid: 4285 components: - pos: -19.5,-28.5 parent: 2 type: Transform - - uid: 4283 + - uid: 4286 components: - pos: -19.5,-29.5 parent: 2 type: Transform - - uid: 4284 + - uid: 4287 components: - pos: -19.5,-30.5 parent: 2 type: Transform - - uid: 4285 + - uid: 4288 components: - pos: -19.5,-31.5 parent: 2 type: Transform - - uid: 4286 + - uid: 4289 components: - pos: -19.5,-32.5 parent: 2 type: Transform - - uid: 4287 + - uid: 4290 components: - pos: -19.5,-33.5 parent: 2 type: Transform - - uid: 4288 + - uid: 4291 components: - pos: -19.5,-34.5 parent: 2 type: Transform - - uid: 4289 + - uid: 4292 components: - pos: -19.5,-35.5 parent: 2 type: Transform - - uid: 4290 + - uid: 4293 components: - pos: -19.5,-36.5 parent: 2 type: Transform - - uid: 4291 + - uid: 4294 components: - pos: -19.5,-37.5 parent: 2 type: Transform - - uid: 4292 + - uid: 4295 components: - pos: -20.5,-26.5 parent: 2 type: Transform - - uid: 4293 + - uid: 4296 components: - pos: -18.5,-29.5 parent: 2 type: Transform - - uid: 4294 + - uid: 4297 components: - pos: -13.5,-42.5 parent: 2 type: Transform - - uid: 4295 + - uid: 4298 components: - pos: -14.5,-42.5 parent: 2 type: Transform - - uid: 4296 + - uid: 4299 components: - pos: -15.5,-42.5 parent: 2 type: Transform - - uid: 4297 + - uid: 4300 components: - pos: -16.5,-42.5 parent: 2 type: Transform - - uid: 4298 + - uid: 4301 components: - pos: -17.5,-42.5 parent: 2 type: Transform - - uid: 4299 + - uid: 4302 components: - pos: -18.5,-42.5 parent: 2 type: Transform - - uid: 4300 + - uid: 4303 components: - pos: -19.5,-42.5 parent: 2 type: Transform - - uid: 4301 + - uid: 4304 components: - pos: -19.5,-43.5 parent: 2 type: Transform - - uid: 4302 + - uid: 4305 components: - pos: -19.5,-44.5 parent: 2 type: Transform - - uid: 4303 + - uid: 4306 components: - pos: -19.5,-45.5 parent: 2 type: Transform - - uid: 4304 + - uid: 4307 components: - pos: -19.5,-46.5 parent: 2 type: Transform - - uid: 4305 + - uid: 4308 components: - pos: -19.5,-47.5 parent: 2 type: Transform - - uid: 4306 + - uid: 4309 components: - pos: -20.5,-46.5 parent: 2 type: Transform - - uid: 4307 + - uid: 4310 components: - pos: -19.5,-48.5 parent: 2 type: Transform - - uid: 4308 + - uid: 4311 components: - pos: -20.5,-42.5 parent: 2 type: Transform - - uid: 4309 + - uid: 4312 components: - pos: -19.5,-41.5 parent: 2 type: Transform - - uid: 4310 + - uid: 4313 components: - pos: 30.5,-89.5 parent: 2 type: Transform - - uid: 4311 + - uid: 4314 components: - pos: 48.5,-72.5 parent: 2 type: Transform - - uid: 4312 + - uid: 4315 components: - pos: 30.5,-90.5 parent: 2 type: Transform - - uid: 4313 + - uid: 4316 components: - pos: -37.5,-14.5 parent: 2 type: Transform - - uid: 4314 + - uid: 4317 components: - pos: -29.5,-21.5 parent: 2 type: Transform - - uid: 4315 + - uid: 4318 components: - pos: -30.5,-21.5 parent: 2 type: Transform - - uid: 4316 + - uid: 4319 components: - pos: -31.5,-21.5 parent: 2 type: Transform - - uid: 4317 + - uid: 4320 components: - pos: -32.5,-21.5 parent: 2 type: Transform - - uid: 4318 + - uid: 4321 components: - pos: -32.5,-20.5 parent: 2 type: Transform - - uid: 4319 + - uid: 4322 components: - pos: -32.5,-19.5 parent: 2 type: Transform - - uid: 4320 + - uid: 4323 components: - pos: -32.5,-18.5 parent: 2 type: Transform - - uid: 4321 + - uid: 4324 components: - pos: -32.5,-17.5 parent: 2 type: Transform - - uid: 4322 + - uid: 4325 components: - pos: -32.5,-16.5 parent: 2 type: Transform - - uid: 4323 + - uid: 4326 components: - pos: -32.5,-15.5 parent: 2 type: Transform - - uid: 4324 + - uid: 4327 components: - pos: -32.5,-14.5 parent: 2 type: Transform - - uid: 4325 + - uid: 4328 components: - pos: -32.5,-13.5 parent: 2 type: Transform - - uid: 4326 + - uid: 4329 components: - pos: -32.5,-12.5 parent: 2 type: Transform - - uid: 4327 + - uid: 4330 components: - pos: -32.5,-11.5 parent: 2 type: Transform - - uid: 4328 + - uid: 4331 components: - pos: -32.5,-10.5 parent: 2 type: Transform - - uid: 4329 + - uid: 4332 components: - pos: -38.5,-7.5 parent: 2 type: Transform - - uid: 4330 + - uid: 4333 components: - pos: -31.5,-17.5 parent: 2 type: Transform - - uid: 4331 + - uid: 4334 components: - pos: -33.5,-10.5 parent: 2 type: Transform - - uid: 4332 + - uid: 4335 components: - pos: -34.5,-10.5 parent: 2 type: Transform - - uid: 4333 + - uid: 4336 components: - pos: -35.5,-10.5 parent: 2 type: Transform - - uid: 4334 + - uid: 4337 components: - pos: -36.5,-10.5 parent: 2 type: Transform - - uid: 4335 + - uid: 4338 components: - pos: -37.5,-10.5 parent: 2 type: Transform - - uid: 4336 + - uid: 4339 components: - pos: -38.5,-10.5 parent: 2 type: Transform - - uid: 4337 + - uid: 4340 components: - pos: -39.5,-10.5 parent: 2 type: Transform - - uid: 4338 + - uid: 4341 components: - pos: -37.5,-11.5 parent: 2 type: Transform - - uid: 4339 + - uid: 4342 components: - pos: -37.5,-12.5 parent: 2 type: Transform - - uid: 4340 + - uid: 4343 components: - pos: -37.5,-13.5 parent: 2 type: Transform - - uid: 4341 + - uid: 4344 components: - pos: -38.5,-9.5 parent: 2 type: Transform - - uid: 4342 + - uid: 4345 components: - pos: -35.5,-9.5 parent: 2 type: Transform - - uid: 4343 + - uid: 4346 components: - pos: -38.5,-84.5 parent: 2 type: Transform - - uid: 4344 + - uid: 4347 components: - pos: -33.5,-16.5 parent: 2 type: Transform - - uid: 4345 + - uid: 4348 components: - pos: -34.5,-16.5 parent: 2 type: Transform - - uid: 4346 + - uid: 4349 components: - pos: -35.5,-16.5 parent: 2 type: Transform - - uid: 4347 + - uid: 4350 components: - pos: -36.5,-16.5 parent: 2 type: Transform - - uid: 4348 + - uid: 4351 components: - pos: -36.5,-17.5 parent: 2 type: Transform - - uid: 4349 + - uid: 4352 components: - pos: -35.5,-11.5 parent: 2 type: Transform - - uid: 4350 + - uid: 4353 components: - pos: -35.5,-12.5 parent: 2 type: Transform - - uid: 4351 + - uid: 4354 components: - pos: -32.5,-22.5 parent: 2 type: Transform - - uid: 4352 + - uid: 4355 components: - pos: -32.5,-23.5 parent: 2 type: Transform - - uid: 4353 + - uid: 4356 components: - pos: -32.5,-24.5 parent: 2 type: Transform - - uid: 4354 + - uid: 4357 components: - pos: -32.5,-25.5 parent: 2 type: Transform - - uid: 4355 + - uid: 4358 components: - pos: -32.5,-26.5 parent: 2 type: Transform - - uid: 4356 + - uid: 4359 components: - pos: -32.5,-27.5 parent: 2 type: Transform - - uid: 4357 + - uid: 4360 components: - pos: -32.5,-28.5 parent: 2 type: Transform - - uid: 4358 + - uid: 4361 components: - pos: -40.5,-10.5 parent: 2 type: Transform - - uid: 4359 + - uid: 4362 components: - pos: -41.5,-10.5 parent: 2 type: Transform - - uid: 4360 + - uid: 4363 components: - pos: -41.5,-11.5 parent: 2 type: Transform - - uid: 4361 + - uid: 4364 components: - pos: -41.5,-12.5 parent: 2 type: Transform - - uid: 4362 + - uid: 4365 components: - pos: -41.5,-13.5 parent: 2 type: Transform - - uid: 4363 + - uid: 4366 components: - pos: -41.5,-14.5 parent: 2 type: Transform - - uid: 4364 + - uid: 4367 components: - pos: -41.5,-15.5 parent: 2 type: Transform - - uid: 4365 + - uid: 4368 components: - pos: -41.5,-16.5 parent: 2 type: Transform - - uid: 4366 + - uid: 4369 components: - pos: -40.5,-16.5 parent: 2 type: Transform - - uid: 4367 + - uid: 4370 components: - pos: -31.5,-26.5 parent: 2 type: Transform - - uid: 4368 + - uid: 4371 components: - pos: -30.5,-26.5 parent: 2 type: Transform - - uid: 4369 + - uid: 4372 components: - pos: -29.5,-26.5 parent: 2 type: Transform - - uid: 4370 + - uid: 4373 components: - pos: -28.5,-26.5 parent: 2 type: Transform - - uid: 4371 + - uid: 4374 components: - pos: -27.5,-26.5 parent: 2 type: Transform - - uid: 4372 + - uid: 4375 components: - pos: -26.5,-26.5 parent: 2 type: Transform - - uid: 4373 + - uid: 4376 components: - pos: -25.5,-26.5 parent: 2 type: Transform - - uid: 4374 + - uid: 4377 components: - pos: 3.5,-49.5 parent: 2 type: Transform - - uid: 4375 + - uid: 4378 components: - pos: 3.5,-50.5 parent: 2 type: Transform - - uid: 4376 + - uid: 4379 components: - pos: -18.5,14.5 parent: 2 type: Transform - - uid: 4377 + - uid: 4380 components: - pos: -18.5,13.5 parent: 2 type: Transform - - uid: 4378 + - uid: 4381 components: - pos: -18.5,12.5 parent: 2 type: Transform - - uid: 4379 + - uid: 4382 components: - pos: -18.5,11.5 parent: 2 type: Transform - - uid: 4380 + - uid: 4383 components: - pos: -18.5,10.5 parent: 2 type: Transform - - uid: 4381 + - uid: 4384 components: - pos: -18.5,9.5 parent: 2 type: Transform - - uid: 4382 + - uid: 4385 components: - pos: -18.5,8.5 parent: 2 type: Transform - - uid: 4383 + - uid: 4386 components: - pos: -18.5,7.5 parent: 2 type: Transform - - uid: 4384 + - uid: 4387 components: - pos: -17.5,7.5 parent: 2 type: Transform - - uid: 4385 + - uid: 4388 components: - pos: -16.5,7.5 parent: 2 type: Transform - - uid: 4386 + - uid: 4389 components: - pos: -15.5,7.5 parent: 2 type: Transform - - uid: 4387 + - uid: 4390 components: - pos: -14.5,7.5 parent: 2 type: Transform - - uid: 4388 + - uid: 4391 components: - pos: -13.5,7.5 parent: 2 type: Transform - - uid: 4389 + - uid: 4392 components: - pos: -12.5,7.5 parent: 2 type: Transform - - uid: 4390 + - uid: 4393 components: - pos: -12.5,6.5 parent: 2 type: Transform - - uid: 4391 + - uid: 4394 components: - pos: -12.5,5.5 parent: 2 type: Transform - - uid: 4392 + - uid: 4395 components: - pos: -12.5,4.5 parent: 2 type: Transform - - uid: 4393 + - uid: 4396 components: - pos: -12.5,3.5 parent: 2 type: Transform - - uid: 4394 + - uid: 4397 components: - pos: -12.5,2.5 parent: 2 type: Transform - - uid: 4395 + - uid: 4398 components: - pos: -12.5,1.5 parent: 2 type: Transform - - uid: 4396 + - uid: 4399 components: - pos: -12.5,0.5 parent: 2 type: Transform - - uid: 4397 + - uid: 4400 components: - pos: -12.5,-0.5 parent: 2 type: Transform - - uid: 4398 + - uid: 4401 components: - pos: -12.5,-1.5 parent: 2 type: Transform - - uid: 4399 + - uid: 4402 components: - pos: -12.5,-2.5 parent: 2 type: Transform - - uid: 4400 + - uid: 4403 components: - pos: -13.5,-2.5 parent: 2 type: Transform - - uid: 4401 + - uid: 4404 components: - pos: -12.5,-4.5 parent: 2 type: Transform - - uid: 4402 + - uid: 4405 components: - pos: -23.5,7.5 parent: 2 type: Transform - - uid: 4403 + - uid: 4406 components: - pos: -24.5,7.5 parent: 2 type: Transform - - uid: 4404 + - uid: 4407 components: - pos: -25.5,7.5 parent: 2 type: Transform - - uid: 4405 + - uid: 4408 components: - pos: -25.5,6.5 parent: 2 type: Transform - - uid: 4406 + - uid: 4409 components: - pos: -25.5,5.5 parent: 2 type: Transform - - uid: 4407 + - uid: 4410 components: - pos: -25.5,4.5 parent: 2 type: Transform - - uid: 4408 + - uid: 4411 components: - pos: -25.5,3.5 parent: 2 type: Transform - - uid: 4409 + - uid: 4412 components: - pos: -25.5,2.5 parent: 2 type: Transform - - uid: 4410 + - uid: 4413 components: - pos: -16.5,10.5 parent: 2 type: Transform - - uid: 4411 + - uid: 4414 components: - pos: -15.5,10.5 parent: 2 type: Transform - - uid: 4412 + - uid: 4415 components: - pos: -14.5,10.5 parent: 2 type: Transform - - uid: 4413 + - uid: 4416 components: - pos: -14.5,11.5 parent: 2 type: Transform - - uid: 4414 + - uid: 4417 components: - pos: -14.5,12.5 parent: 2 type: Transform - - uid: 4415 + - uid: 4418 components: - pos: -14.5,13.5 parent: 2 type: Transform - - uid: 4416 + - uid: 4419 components: - pos: -14.5,14.5 parent: 2 type: Transform - - uid: 4417 + - uid: 4420 components: - pos: -14.5,15.5 parent: 2 type: Transform - - uid: 4418 + - uid: 4421 components: - pos: -13.5,15.5 parent: 2 type: Transform - - uid: 4419 + - uid: 4422 components: - pos: -12.5,15.5 parent: 2 type: Transform - - uid: 4420 + - uid: 4423 components: - pos: -11.5,15.5 parent: 2 type: Transform - - uid: 4421 + - uid: 4424 components: - pos: -10.5,15.5 parent: 2 type: Transform - - uid: 4422 + - uid: 4425 components: - pos: -8.5,16.5 parent: 2 type: Transform - - uid: 4423 + - uid: 4426 components: - pos: -7.5,16.5 parent: 2 type: Transform - - uid: 4424 + - uid: 4427 components: - pos: -6.5,16.5 parent: 2 type: Transform - - uid: 4425 + - uid: 4428 components: - pos: -5.5,16.5 parent: 2 type: Transform - - uid: 4426 + - uid: 4429 components: - pos: -4.5,16.5 parent: 2 type: Transform - - uid: 4427 + - uid: 4430 components: - pos: -42.5,-10.5 parent: 2 type: Transform - - uid: 4428 + - uid: 4431 components: - pos: -43.5,-10.5 parent: 2 type: Transform - - uid: 4429 + - uid: 4432 components: - pos: -44.5,-10.5 parent: 2 type: Transform - - uid: 4430 + - uid: 4433 components: - pos: -45.5,-10.5 parent: 2 type: Transform - - uid: 4431 + - uid: 4434 components: - pos: -46.5,-10.5 parent: 2 type: Transform - - uid: 4432 + - uid: 4435 components: - pos: -46.5,-9.5 parent: 2 type: Transform - - uid: 4433 + - uid: 4436 components: - pos: -46.5,-11.5 parent: 2 type: Transform - - uid: 4434 + - uid: 4437 components: - pos: -46.5,-12.5 parent: 2 type: Transform - - uid: 4435 + - uid: 4438 components: - pos: -46.5,-13.5 parent: 2 type: Transform - - uid: 4436 + - uid: 4439 components: - pos: -46.5,-14.5 parent: 2 type: Transform - - uid: 4437 + - uid: 4440 components: - pos: -46.5,-15.5 parent: 2 type: Transform - - uid: 4438 + - uid: 4441 components: - pos: -46.5,-16.5 parent: 2 type: Transform - - uid: 4439 + - uid: 4442 components: - pos: -47.5,-13.5 parent: 2 type: Transform - - uid: 4440 + - uid: 4443 components: - pos: -48.5,-13.5 parent: 2 type: Transform - - uid: 4441 + - uid: 4444 components: - pos: -49.5,-13.5 parent: 2 type: Transform - - uid: 4442 + - uid: 4445 components: - pos: -45.5,-16.5 parent: 2 type: Transform - - uid: 4443 + - uid: 4446 components: - pos: -45.5,-17.5 parent: 2 type: Transform - - uid: 4444 + - uid: 4447 components: - pos: -45.5,-18.5 parent: 2 type: Transform - - uid: 4445 + - uid: 4448 components: - pos: -45.5,-19.5 parent: 2 type: Transform - - uid: 4446 + - uid: 4449 components: - pos: -45.5,-20.5 parent: 2 type: Transform - - uid: 4447 + - uid: 4450 components: - pos: -45.5,-21.5 parent: 2 type: Transform - - uid: 4448 + - uid: 4451 components: - pos: -46.5,-20.5 parent: 2 type: Transform - - uid: 4449 + - uid: 4452 components: - pos: -47.5,-20.5 parent: 2 type: Transform - - uid: 4450 + - uid: 4453 components: - pos: -47.5,-21.5 parent: 2 type: Transform - - uid: 4451 + - uid: 4454 components: - pos: -45.5,-22.5 parent: 2 type: Transform - - uid: 4452 + - uid: 4455 components: - pos: -48.5,-22.5 parent: 2 type: Transform - - uid: 4453 + - uid: 4456 components: - pos: -47.5,-22.5 parent: 2 type: Transform - - uid: 4454 + - uid: 4457 components: - pos: -38.5,-8.5 parent: 2 type: Transform - - uid: 4455 + - uid: 4458 components: - pos: -35.5,-7.5 parent: 2 type: Transform - - uid: 4456 + - uid: 4459 components: - pos: -35.5,-8.5 parent: 2 type: Transform - - uid: 4457 + - uid: 4460 components: - pos: -34.5,-6.5 parent: 2 type: Transform - - uid: 4458 + - uid: 4461 components: - pos: -35.5,-6.5 parent: 2 type: Transform - - uid: 4459 + - uid: 4462 components: - pos: -36.5,-6.5 parent: 2 type: Transform - - uid: 4460 + - uid: 4463 components: - pos: -37.5,-6.5 parent: 2 type: Transform - - uid: 4461 + - uid: 4464 components: - pos: -38.5,-6.5 parent: 2 type: Transform - - uid: 4462 + - uid: 4465 components: - pos: -39.5,-6.5 parent: 2 type: Transform - - uid: 4463 + - uid: 4466 components: - pos: -40.5,-6.5 parent: 2 type: Transform - - uid: 4464 + - uid: 4467 components: - pos: -41.5,-6.5 parent: 2 type: Transform - - uid: 4465 + - uid: 4468 components: - pos: -38.5,-5.5 parent: 2 type: Transform - - uid: 4466 + - uid: 4469 components: - pos: -55.5,-28.5 parent: 2 type: Transform - - uid: 4467 + - uid: 4470 components: - pos: -55.5,-30.5 parent: 2 type: Transform - - uid: 4468 + - uid: 4471 components: - pos: -57.5,-28.5 parent: 2 type: Transform - - uid: 4469 + - uid: 4472 components: - pos: -39.5,-69.5 parent: 2 type: Transform - - uid: 4470 + - uid: 4473 components: - pos: -39.5,-71.5 parent: 2 type: Transform - - uid: 4471 + - uid: 4474 components: - pos: -50.5,-15.5 parent: 2 type: Transform - - uid: 4472 + - uid: 4475 components: - pos: -50.5,-16.5 parent: 2 type: Transform - - uid: 4473 + - uid: 4476 components: - pos: -51.5,-16.5 parent: 2 type: Transform - - uid: 4474 + - uid: 4477 components: - pos: -51.5,-17.5 parent: 2 type: Transform - - uid: 4475 + - uid: 4478 components: - pos: -51.5,-18.5 parent: 2 type: Transform - - uid: 4476 + - uid: 4479 components: - pos: -51.5,-19.5 parent: 2 type: Transform - - uid: 4477 + - uid: 4480 components: - pos: -51.5,-20.5 parent: 2 type: Transform - - uid: 4478 + - uid: 4481 components: - pos: -52.5,-23.5 parent: 2 type: Transform - - uid: 4479 + - uid: 4482 components: - pos: -51.5,-22.5 parent: 2 type: Transform - - uid: 4480 + - uid: 4483 components: - pos: -51.5,-23.5 parent: 2 type: Transform - - uid: 4481 + - uid: 4484 components: - pos: -51.5,-24.5 parent: 2 type: Transform - - uid: 4482 + - uid: 4485 components: - pos: -51.5,-25.5 parent: 2 type: Transform - - uid: 4483 + - uid: 4486 components: - pos: -50.5,-25.5 parent: 2 type: Transform - - uid: 4484 + - uid: 4487 components: - pos: -52.5,-19.5 parent: 2 type: Transform - - uid: 4485 + - uid: 4488 components: - pos: -53.5,-19.5 parent: 2 type: Transform - - uid: 4486 + - uid: 4489 components: - pos: -54.5,-19.5 parent: 2 type: Transform - - uid: 4487 + - uid: 4490 components: - pos: -54.5,-20.5 parent: 2 type: Transform - - uid: 4488 + - uid: 4491 components: - pos: -54.5,-21.5 parent: 2 type: Transform - - uid: 4489 + - uid: 4492 components: - pos: -54.5,-22.5 parent: 2 type: Transform - - uid: 4490 + - uid: 4493 components: - pos: -54.5,-23.5 parent: 2 type: Transform - - uid: 4491 + - uid: 4494 components: - pos: -54.5,-24.5 parent: 2 type: Transform - - uid: 4492 + - uid: 4495 components: - pos: -55.5,-24.5 parent: 2 type: Transform - - uid: 4493 + - uid: 4496 components: - pos: -56.5,-24.5 parent: 2 type: Transform - - uid: 4494 + - uid: 4497 components: - pos: -57.5,-24.5 parent: 2 type: Transform - - uid: 4495 + - uid: 4498 components: - pos: -58.5,-24.5 parent: 2 type: Transform - - uid: 4496 + - uid: 4499 components: - pos: -59.5,-24.5 parent: 2 type: Transform - - uid: 4497 + - uid: 4500 components: - pos: -60.5,-24.5 parent: 2 type: Transform - - uid: 4498 + - uid: 4501 components: - pos: -61.5,-24.5 parent: 2 type: Transform - - uid: 4499 + - uid: 4502 components: - pos: -62.5,-24.5 parent: 2 type: Transform - - uid: 4500 + - uid: 4503 components: - pos: -63.5,-24.5 parent: 2 type: Transform - - uid: 4501 + - uid: 4504 components: - pos: -64.5,-24.5 parent: 2 type: Transform - - uid: 4502 + - uid: 4505 components: - pos: -64.5,-25.5 parent: 2 type: Transform - - uid: 4503 + - uid: 4506 components: - pos: -64.5,-26.5 parent: 2 type: Transform - - uid: 4504 + - uid: 4507 components: - pos: -64.5,-27.5 parent: 2 type: Transform - - uid: 4505 + - uid: 4508 components: - pos: -64.5,-28.5 parent: 2 type: Transform - - uid: 4506 + - uid: 4509 components: - pos: -64.5,-29.5 parent: 2 type: Transform - - uid: 4507 + - uid: 4510 components: - pos: -64.5,-30.5 parent: 2 type: Transform - - uid: 4508 + - uid: 4511 components: - pos: -65.5,-30.5 parent: 2 type: Transform - - uid: 4509 + - uid: 4512 components: - pos: -66.5,-30.5 parent: 2 type: Transform - - uid: 4510 + - uid: 4513 components: - pos: -67.5,-30.5 parent: 2 type: Transform - - uid: 4511 + - uid: 4514 components: - pos: -68.5,-30.5 parent: 2 type: Transform - - uid: 4512 + - uid: 4515 components: - pos: -65.5,-30.5 parent: 2 type: Transform - - uid: 4513 + - uid: 4516 components: - pos: -65.5,-31.5 parent: 2 type: Transform - - uid: 4514 + - uid: 4517 components: - pos: -65.5,-32.5 parent: 2 type: Transform - - uid: 4515 + - uid: 4518 components: - pos: -68.5,-31.5 parent: 2 type: Transform - - uid: 4516 + - uid: 4519 components: - pos: -68.5,-28.5 parent: 2 type: Transform - - uid: 4517 + - uid: 4520 components: - pos: -68.5,-27.5 parent: 2 type: Transform - - uid: 4518 + - uid: 4521 components: - pos: -68.5,-26.5 parent: 2 type: Transform - - uid: 4519 + - uid: 4522 components: - pos: -68.5,-29.5 parent: 2 type: Transform - - uid: 4520 + - uid: 4523 components: - pos: -54.5,-18.5 parent: 2 type: Transform - - uid: 4521 + - uid: 4524 components: - pos: -54.5,-17.5 parent: 2 type: Transform - - uid: 4522 + - uid: 4525 components: - pos: -54.5,-16.5 parent: 2 type: Transform - - uid: 4523 + - uid: 4526 components: - pos: -54.5,-15.5 parent: 2 type: Transform - - uid: 4524 + - uid: 4527 components: - pos: -54.5,-14.5 parent: 2 type: Transform - - uid: 4525 + - uid: 4528 components: - pos: -54.5,-13.5 parent: 2 type: Transform - - uid: 4526 + - uid: 4529 components: - pos: -54.5,-12.5 parent: 2 type: Transform - - uid: 4527 + - uid: 4530 components: - pos: -54.5,-11.5 parent: 2 type: Transform - - uid: 4528 + - uid: 4531 components: - pos: -54.5,-10.5 parent: 2 type: Transform - - uid: 4529 + - uid: 4532 components: - pos: -54.5,-9.5 parent: 2 type: Transform - - uid: 4530 + - uid: 4533 components: - pos: -54.5,-8.5 parent: 2 type: Transform - - uid: 4531 + - uid: 4534 components: - pos: -54.5,-7.5 parent: 2 type: Transform - - uid: 4532 + - uid: 4535 components: - pos: -54.5,-6.5 parent: 2 type: Transform - - uid: 4533 + - uid: 4536 components: - pos: -53.5,-7.5 parent: 2 type: Transform - - uid: 4534 + - uid: 4537 components: - pos: -52.5,-7.5 parent: 2 type: Transform - - uid: 4535 + - uid: 4538 components: - pos: -51.5,-7.5 parent: 2 type: Transform - - uid: 4536 + - uid: 4539 components: - pos: -52.5,-6.5 parent: 2 type: Transform - - uid: 4537 + - uid: 4540 components: - pos: -56.5,-28.5 parent: 2 type: Transform - - uid: 4538 + - uid: 4541 components: - pos: -55.5,-29.5 parent: 2 type: Transform - - uid: 4539 + - uid: 4542 components: - pos: -39.5,-70.5 parent: 2 type: Transform - - uid: 4540 + - uid: 4543 components: - pos: 55.5,10.5 parent: 2 type: Transform - - uid: 4541 + - uid: 4544 components: - pos: -35.5,-31.5 parent: 2 type: Transform - - uid: 4542 + - uid: 4545 components: - pos: -35.5,-32.5 parent: 2 type: Transform - - uid: 4543 + - uid: 4546 components: - pos: -35.5,-33.5 parent: 2 type: Transform - - uid: 4544 + - uid: 4547 components: - pos: -35.5,-34.5 parent: 2 type: Transform - - uid: 4545 + - uid: 4548 components: - pos: -36.5,-34.5 parent: 2 type: Transform - - uid: 4546 + - uid: 4549 components: - pos: -37.5,-34.5 parent: 2 type: Transform - - uid: 4547 + - uid: 4550 components: - pos: -38.5,-34.5 parent: 2 type: Transform - - uid: 4548 + - uid: 4551 components: - pos: -39.5,-34.5 parent: 2 type: Transform - - uid: 4549 + - uid: 4552 components: - pos: -40.5,-34.5 parent: 2 type: Transform - - uid: 4550 + - uid: 4553 components: - pos: -41.5,-34.5 parent: 2 type: Transform - - uid: 4551 + - uid: 4554 components: - pos: -42.5,-34.5 parent: 2 type: Transform - - uid: 4552 + - uid: 4555 components: - pos: -43.5,-34.5 parent: 2 type: Transform - - uid: 4553 + - uid: 4556 components: - pos: -39.5,-33.5 parent: 2 type: Transform - - uid: 4554 + - uid: 4557 components: - pos: -41.5,-35.5 parent: 2 type: Transform - - uid: 4555 + - uid: 4558 components: - pos: -41.5,-36.5 parent: 2 type: Transform - - uid: 4556 + - uid: 4559 components: - pos: -41.5,-37.5 parent: 2 type: Transform - - uid: 4557 + - uid: 4560 components: - pos: -41.5,-38.5 parent: 2 type: Transform - - uid: 4558 + - uid: 4561 components: - pos: -41.5,-39.5 parent: 2 type: Transform - - uid: 4559 + - uid: 4562 components: - pos: -42.5,-39.5 parent: 2 type: Transform - - uid: 4560 + - uid: 4563 components: - pos: -43.5,-39.5 parent: 2 type: Transform - - uid: 4561 + - uid: 4564 components: - pos: -44.5,-39.5 parent: 2 type: Transform - - uid: 4562 + - uid: 4565 components: - pos: -45.5,-39.5 parent: 2 type: Transform - - uid: 4563 + - uid: 4566 components: - pos: -46.5,-39.5 parent: 2 type: Transform - - uid: 4564 + - uid: 4567 components: - pos: -47.5,-39.5 parent: 2 type: Transform - - uid: 4565 + - uid: 4568 components: - pos: -47.5,-40.5 parent: 2 type: Transform - - uid: 4566 + - uid: 4569 components: - pos: -47.5,-41.5 parent: 2 type: Transform - - uid: 4567 + - uid: 4570 components: - pos: -48.5,-41.5 parent: 2 type: Transform - - uid: 4568 + - uid: 4571 components: - pos: -49.5,-41.5 parent: 2 type: Transform - - uid: 4569 + - uid: 4572 components: - pos: -50.5,-41.5 parent: 2 type: Transform - - uid: 4570 + - uid: 4573 components: - pos: -51.5,-41.5 parent: 2 type: Transform - - uid: 4571 + - uid: 4574 components: - pos: -51.5,-42.5 parent: 2 type: Transform - - uid: 4572 + - uid: 4575 components: - pos: -51.5,-43.5 parent: 2 type: Transform - - uid: 4573 + - uid: 4576 components: - pos: -51.5,-44.5 parent: 2 type: Transform - - uid: 4574 + - uid: 4577 components: - pos: -51.5,-45.5 parent: 2 type: Transform - - uid: 4575 + - uid: 4578 components: - pos: -51.5,-46.5 parent: 2 type: Transform - - uid: 4576 + - uid: 4579 components: - pos: -51.5,-47.5 parent: 2 type: Transform - - uid: 4577 + - uid: 4580 components: - pos: -51.5,-48.5 parent: 2 type: Transform - - uid: 4578 + - uid: 4581 components: - pos: -51.5,-49.5 parent: 2 type: Transform - - uid: 4579 + - uid: 4582 components: - pos: -51.5,-50.5 parent: 2 type: Transform - - uid: 4580 + - uid: 4583 components: - pos: -51.5,-51.5 parent: 2 type: Transform - - uid: 4581 + - uid: 4584 components: - pos: -51.5,-52.5 parent: 2 type: Transform - - uid: 4582 + - uid: 4585 components: - pos: -51.5,-53.5 parent: 2 type: Transform - - uid: 4583 + - uid: 4586 components: - pos: -51.5,-54.5 parent: 2 type: Transform - - uid: 4584 + - uid: 4587 components: - pos: -51.5,-55.5 parent: 2 type: Transform - - uid: 4585 + - uid: 4588 components: - pos: -50.5,-55.5 parent: 2 type: Transform - - uid: 4586 + - uid: 4589 components: - pos: -49.5,-55.5 parent: 2 type: Transform - - uid: 4587 + - uid: 4590 components: - pos: -48.5,-55.5 parent: 2 type: Transform - - uid: 4588 + - uid: 4591 components: - pos: -47.5,-55.5 parent: 2 type: Transform - - uid: 4589 + - uid: 4592 components: - pos: -50.5,-53.5 parent: 2 type: Transform - - uid: 4590 + - uid: 4593 components: - pos: -49.5,-53.5 parent: 2 type: Transform - - uid: 4591 + - uid: 4594 components: - pos: -48.5,-53.5 parent: 2 type: Transform - - uid: 4592 + - uid: 4595 components: - pos: -47.5,-53.5 parent: 2 type: Transform - - uid: 4593 + - uid: 4596 components: - pos: -50.5,-51.5 parent: 2 type: Transform - - uid: 4594 + - uid: 4597 components: - pos: -49.5,-51.5 parent: 2 type: Transform - - uid: 4595 + - uid: 4598 components: - pos: -48.5,-51.5 parent: 2 type: Transform - - uid: 4596 + - uid: 4599 components: - pos: -47.5,-51.5 parent: 2 type: Transform - - uid: 4597 + - uid: 4600 components: - pos: -50.5,-49.5 parent: 2 type: Transform - - uid: 4598 + - uid: 4601 components: - pos: -49.5,-49.5 parent: 2 type: Transform - - uid: 4599 + - uid: 4602 components: - pos: -48.5,-49.5 parent: 2 type: Transform - - uid: 4600 + - uid: 4603 components: - pos: -47.5,-49.5 parent: 2 type: Transform - - uid: 4601 + - uid: 4604 components: - pos: -50.5,-47.5 parent: 2 type: Transform - - uid: 4602 + - uid: 4605 components: - pos: -49.5,-47.5 parent: 2 type: Transform - - uid: 4603 + - uid: 4606 components: - pos: -48.5,-47.5 parent: 2 type: Transform - - uid: 4604 + - uid: 4607 components: - pos: -47.5,-47.5 parent: 2 type: Transform - - uid: 4605 + - uid: 4608 components: - pos: -50.5,-45.5 parent: 2 type: Transform - - uid: 4606 + - uid: 4609 components: - pos: -49.5,-45.5 parent: 2 type: Transform - - uid: 4607 + - uid: 4610 components: - pos: -48.5,-45.5 parent: 2 type: Transform - - uid: 4608 + - uid: 4611 components: - pos: -47.5,-45.5 parent: 2 type: Transform - - uid: 4609 + - uid: 4612 components: - pos: -50.5,-43.5 parent: 2 type: Transform - - uid: 4610 + - uid: 4613 components: - pos: -49.5,-43.5 parent: 2 type: Transform - - uid: 4611 + - uid: 4614 components: - pos: -48.5,-43.5 parent: 2 type: Transform - - uid: 4612 + - uid: 4615 components: - pos: -47.5,-43.5 parent: 2 type: Transform - - uid: 4613 + - uid: 4616 components: - pos: -38.5,-35.5 parent: 2 type: Transform - - uid: 4614 + - uid: 4617 components: - pos: -38.5,-36.5 parent: 2 type: Transform - - uid: 4615 + - uid: 4618 components: - pos: -38.5,-37.5 parent: 2 type: Transform - - uid: 4616 + - uid: 4619 components: - pos: -38.5,-38.5 parent: 2 type: Transform - - uid: 4617 + - uid: 4620 components: - pos: -38.5,-39.5 parent: 2 type: Transform - - uid: 4618 + - uid: 4621 components: - pos: -34.5,-34.5 parent: 2 type: Transform - - uid: 4619 + - uid: 4622 components: - pos: -33.5,-34.5 parent: 2 type: Transform - - uid: 4620 + - uid: 4623 components: - pos: -32.5,-34.5 parent: 2 type: Transform - - uid: 4621 + - uid: 4624 components: - pos: -31.5,-34.5 parent: 2 type: Transform - - uid: 4622 + - uid: 4625 components: - pos: -30.5,-34.5 parent: 2 type: Transform - - uid: 4623 + - uid: 4626 components: - pos: -29.5,-34.5 parent: 2 type: Transform - - uid: 4624 + - uid: 4627 components: - pos: -28.5,-34.5 parent: 2 type: Transform - - uid: 4625 + - uid: 4628 components: - pos: -27.5,-34.5 parent: 2 type: Transform - - uid: 4626 + - uid: 4629 components: - pos: -26.5,-34.5 parent: 2 type: Transform - - uid: 4627 + - uid: 4630 components: - pos: -25.5,-34.5 parent: 2 type: Transform - - uid: 4628 + - uid: 4631 components: - pos: -24.5,-34.5 parent: 2 type: Transform - - uid: 4629 + - uid: 4632 components: - pos: -23.5,-34.5 parent: 2 type: Transform - - uid: 4630 + - uid: 4633 components: - pos: -23.5,-33.5 parent: 2 type: Transform - - uid: 4631 + - uid: 4634 components: - pos: -32.5,-33.5 parent: 2 type: Transform - - uid: 4632 + - uid: 4635 components: - pos: -32.5,-32.5 parent: 2 type: Transform - - uid: 4633 + - uid: 4636 components: - pos: -31.5,-35.5 parent: 2 type: Transform - - uid: 4634 + - uid: 4637 components: - pos: -31.5,-36.5 parent: 2 type: Transform - - uid: 4635 + - uid: 4638 components: - pos: -31.5,-37.5 parent: 2 type: Transform - - uid: 4636 + - uid: 4639 components: - pos: -31.5,-38.5 parent: 2 type: Transform - - uid: 4637 + - uid: 4640 components: - pos: -31.5,-39.5 parent: 2 type: Transform - - uid: 4638 + - uid: 4641 components: - pos: -31.5,-40.5 parent: 2 type: Transform - - uid: 4639 + - uid: 4642 components: - pos: -32.5,-40.5 parent: 2 type: Transform - - uid: 4640 + - uid: 4643 components: - pos: -33.5,-40.5 parent: 2 type: Transform - - uid: 4641 + - uid: 4644 components: - pos: -34.5,-40.5 parent: 2 type: Transform - - uid: 4642 + - uid: 4645 components: - pos: -35.5,-40.5 parent: 2 type: Transform - - uid: 4643 + - uid: 4646 components: - pos: -35.5,-41.5 parent: 2 type: Transform - - uid: 4644 + - uid: 4647 components: - pos: -35.5,-42.5 parent: 2 type: Transform - - uid: 4645 + - uid: 4648 components: - pos: -35.5,-43.5 parent: 2 type: Transform - - uid: 4646 + - uid: 4649 components: - pos: -35.5,-44.5 parent: 2 type: Transform - - uid: 4647 + - uid: 4650 components: - pos: -35.5,-45.5 parent: 2 type: Transform - - uid: 4648 + - uid: 4651 components: - pos: -35.5,-46.5 parent: 2 type: Transform - - uid: 4649 + - uid: 4652 components: - pos: -35.5,-47.5 parent: 2 type: Transform - - uid: 4650 + - uid: 4653 components: - pos: -35.5,-48.5 parent: 2 type: Transform - - uid: 4651 + - uid: 4654 components: - pos: -35.5,-49.5 parent: 2 type: Transform - - uid: 4652 + - uid: 4655 components: - pos: -35.5,-50.5 parent: 2 type: Transform - - uid: 4653 + - uid: 4656 components: - pos: -35.5,-51.5 parent: 2 type: Transform - - uid: 4654 + - uid: 4657 components: - pos: -35.5,-52.5 parent: 2 type: Transform - - uid: 4655 + - uid: 4658 components: - pos: -35.5,-53.5 parent: 2 type: Transform - - uid: 4656 + - uid: 4659 components: - pos: -35.5,-54.5 parent: 2 type: Transform - - uid: 4657 + - uid: 4660 components: - pos: -35.5,-55.5 parent: 2 type: Transform - - uid: 4658 + - uid: 4661 components: - pos: -36.5,-43.5 parent: 2 type: Transform - - uid: 4659 + - uid: 4662 components: - pos: -37.5,-43.5 parent: 2 type: Transform - - uid: 4660 + - uid: 4663 components: - pos: -36.5,-46.5 parent: 2 type: Transform - - uid: 4661 + - uid: 4664 components: - pos: -37.5,-46.5 parent: 2 type: Transform - - uid: 4662 + - uid: 4665 components: - pos: 55.5,11.5 parent: 2 type: Transform - - uid: 4663 + - uid: 4666 components: - pos: -63.5,-30.5 parent: 2 type: Transform - - uid: 4664 + - uid: 4667 components: - pos: -52.5,-29.5 parent: 2 type: Transform - - uid: 4665 + - uid: 4668 components: - pos: -52.5,-28.5 parent: 2 type: Transform - - uid: 4666 + - uid: 4669 components: - pos: -57.5,-18.5 parent: 2 type: Transform - - uid: 4667 + - uid: 4670 components: - pos: -55.5,-18.5 parent: 2 type: Transform - - uid: 4668 + - uid: 4671 components: - pos: -41.5,-40.5 parent: 2 type: Transform - - uid: 4669 + - uid: 4672 components: - pos: -41.5,-41.5 parent: 2 type: Transform - - uid: 4670 + - uid: 4673 components: - pos: -46.5,-40.5 parent: 2 type: Transform - - uid: 4671 + - uid: 4674 components: - pos: -46.5,-41.5 parent: 2 type: Transform - - uid: 4672 + - uid: 4675 components: - pos: -46.5,-42.5 parent: 2 type: Transform - - uid: 4673 + - uid: 4676 components: - pos: -46.5,-43.5 parent: 2 type: Transform - - uid: 4674 + - uid: 4677 components: - pos: -46.5,-44.5 parent: 2 type: Transform - - uid: 4675 + - uid: 4678 components: - pos: -46.5,-45.5 parent: 2 type: Transform - - uid: 4676 + - uid: 4679 components: - pos: -25.5,-73.5 parent: 2 type: Transform - - uid: 4677 + - uid: 4680 components: - pos: -21.5,-42.5 parent: 2 type: Transform - - uid: 4678 + - uid: 4681 components: - pos: -22.5,-42.5 parent: 2 type: Transform - - uid: 4679 + - uid: 4682 components: - pos: -29.5,-73.5 parent: 2 type: Transform - - uid: 4680 + - uid: 4683 components: - pos: -39.5,-66.5 parent: 2 type: Transform - - uid: 4681 + - uid: 4684 components: - pos: -29.5,-64.5 parent: 2 type: Transform - - uid: 4682 + - uid: 4685 components: - pos: -29.5,-65.5 parent: 2 type: Transform - - uid: 4683 + - uid: 4686 components: - pos: -29.5,-66.5 parent: 2 type: Transform - - uid: 4684 + - uid: 4687 components: - pos: -30.5,-66.5 parent: 2 type: Transform - - uid: 4685 + - uid: 4688 components: - pos: -31.5,-66.5 parent: 2 type: Transform - - uid: 4686 + - uid: 4689 components: - pos: -32.5,-66.5 parent: 2 type: Transform - - uid: 4687 + - uid: 4690 components: - pos: -33.5,-66.5 parent: 2 type: Transform - - uid: 4688 + - uid: 4691 components: - pos: -34.5,-66.5 parent: 2 type: Transform - - uid: 4689 + - uid: 4692 components: - pos: -35.5,-66.5 parent: 2 type: Transform - - uid: 4690 + - uid: 4693 components: - pos: -35.5,-65.5 parent: 2 type: Transform - - uid: 4691 + - uid: 4694 components: - pos: -36.5,-65.5 parent: 2 type: Transform - - uid: 4692 + - uid: 4695 components: - pos: -37.5,-65.5 parent: 2 type: Transform - - uid: 4693 + - uid: 4696 components: - pos: -38.5,-65.5 parent: 2 type: Transform - - uid: 4694 + - uid: 4697 components: - pos: -39.5,-65.5 parent: 2 type: Transform - - uid: 4695 + - uid: 4698 components: - pos: -39.5,-64.5 parent: 2 type: Transform - - uid: 4696 + - uid: 4699 components: - pos: -40.5,-64.5 parent: 2 type: Transform - - uid: 4697 + - uid: 4700 components: - pos: -41.5,-64.5 parent: 2 type: Transform - - uid: 4698 + - uid: 4701 components: - pos: -42.5,-64.5 parent: 2 type: Transform - - uid: 4699 + - uid: 4702 components: - pos: -43.5,-64.5 parent: 2 type: Transform - - uid: 4700 + - uid: 4703 components: - pos: -44.5,-64.5 parent: 2 type: Transform - - uid: 4701 + - uid: 4704 components: - pos: -45.5,-64.5 parent: 2 type: Transform - - uid: 4702 + - uid: 4705 components: - pos: -45.5,-63.5 parent: 2 type: Transform - - uid: 4703 + - uid: 4706 components: - pos: -46.5,-63.5 parent: 2 type: Transform - - uid: 4704 + - uid: 4707 components: - pos: -47.5,-63.5 parent: 2 type: Transform - - uid: 4705 + - uid: 4708 components: - pos: -47.5,-64.5 parent: 2 type: Transform - - uid: 4706 + - uid: 4709 components: - pos: -48.5,-64.5 parent: 2 type: Transform - - uid: 4707 + - uid: 4710 components: - pos: -49.5,-64.5 parent: 2 type: Transform - - uid: 4708 + - uid: 4711 components: - pos: -49.5,-65.5 parent: 2 type: Transform - - uid: 4709 + - uid: 4712 components: - pos: -49.5,-66.5 parent: 2 type: Transform - - uid: 4710 + - uid: 4713 components: - pos: -48.5,-66.5 parent: 2 type: Transform - - uid: 4711 + - uid: 4714 components: - pos: -47.5,-66.5 parent: 2 type: Transform - - uid: 4712 + - uid: 4715 components: - pos: -46.5,-66.5 parent: 2 type: Transform - - uid: 4713 + - uid: 4716 components: - pos: -45.5,-66.5 parent: 2 type: Transform - - uid: 4714 + - uid: 4717 components: - pos: -44.5,-66.5 parent: 2 type: Transform - - uid: 4715 + - uid: 4718 components: - pos: -43.5,-66.5 parent: 2 type: Transform - - uid: 4716 + - uid: 4719 components: - pos: -42.5,-66.5 parent: 2 type: Transform - - uid: 4717 + - uid: 4720 components: - pos: -42.5,-68.5 parent: 2 type: Transform - - uid: 4718 + - uid: 4721 components: - pos: -42.5,-69.5 parent: 2 type: Transform - - uid: 4719 + - uid: 4722 components: - pos: -42.5,-70.5 parent: 2 type: Transform - - uid: 4720 + - uid: 4723 components: - pos: -42.5,-71.5 parent: 2 type: Transform - - uid: 4721 + - uid: 4724 components: - pos: -43.5,-71.5 parent: 2 type: Transform - - uid: 4722 + - uid: 4725 components: - pos: -44.5,-71.5 parent: 2 type: Transform - - uid: 4723 + - uid: 4726 components: - pos: -45.5,-71.5 parent: 2 type: Transform - - uid: 4724 + - uid: 4727 components: - pos: -45.5,-72.5 parent: 2 type: Transform - - uid: 4725 + - uid: 4728 components: - pos: -45.5,-73.5 parent: 2 type: Transform - - uid: 4726 + - uid: 4729 components: - pos: -45.5,-74.5 parent: 2 type: Transform - - uid: 4727 + - uid: 4730 components: - pos: -45.5,-75.5 parent: 2 type: Transform - - uid: 4728 + - uid: 4731 components: - pos: -44.5,-75.5 parent: 2 type: Transform - - uid: 4729 + - uid: 4732 components: - pos: -43.5,-75.5 parent: 2 type: Transform - - uid: 4730 + - uid: 4733 components: - pos: -42.5,-76.5 parent: 2 type: Transform - - uid: 4731 + - uid: 4734 components: - pos: -42.5,-75.5 parent: 2 type: Transform - - uid: 4732 + - uid: 4735 components: - pos: -41.5,-76.5 parent: 2 type: Transform - - uid: 4733 + - uid: 4736 components: - pos: -40.5,-76.5 parent: 2 type: Transform - - uid: 4734 + - uid: 4737 components: - pos: -40.5,-75.5 parent: 2 type: Transform - - uid: 4735 + - uid: 4738 components: - pos: -39.5,-75.5 parent: 2 type: Transform - - uid: 4736 + - uid: 4739 components: - pos: -38.5,-75.5 parent: 2 type: Transform - - uid: 4737 + - uid: 4740 components: - pos: -37.5,-75.5 parent: 2 type: Transform - - uid: 4738 + - uid: 4741 components: - pos: -37.5,-76.5 parent: 2 type: Transform - - uid: 4739 + - uid: 4742 components: - pos: -37.5,-77.5 parent: 2 type: Transform - - uid: 4740 + - uid: 4743 components: - pos: -37.5,-78.5 parent: 2 type: Transform - - uid: 4741 + - uid: 4744 components: - pos: -37.5,-79.5 parent: 2 type: Transform - - uid: 4742 + - uid: 4745 components: - pos: -37.5,-80.5 parent: 2 type: Transform - - uid: 4743 + - uid: 4746 components: - pos: -37.5,-81.5 parent: 2 type: Transform - - uid: 4744 + - uid: 4747 components: - pos: -37.5,-82.5 parent: 2 type: Transform - - uid: 4745 + - uid: 4748 components: - pos: -44.5,-85.5 parent: 2 type: Transform - - uid: 4746 + - uid: 4749 components: - pos: -45.5,-85.5 parent: 2 type: Transform - - uid: 4747 + - uid: 4750 components: - pos: -45.5,-84.5 parent: 2 type: Transform - - uid: 4748 + - uid: 4751 components: - pos: -41.5,-85.5 parent: 2 type: Transform - - uid: 4749 + - uid: 4752 components: - pos: -45.5,-83.5 parent: 2 type: Transform - - uid: 4750 + - uid: 4753 components: - pos: -45.5,-82.5 parent: 2 type: Transform - - uid: 4751 + - uid: 4754 components: - pos: -46.5,-82.5 parent: 2 type: Transform - - uid: 4752 + - uid: 4755 components: - pos: -46.5,-83.5 parent: 2 type: Transform - - uid: 4753 + - uid: 4756 components: - pos: -42.5,-85.5 parent: 2 type: Transform - - uid: 4754 + - uid: 4757 components: - pos: -37.5,-83.5 parent: 2 type: Transform - - uid: 4755 + - uid: 4758 components: - pos: -37.5,-84.5 parent: 2 type: Transform - - uid: 4756 + - uid: 4759 components: - pos: -46.5,-81.5 parent: 2 type: Transform - - uid: 4757 + - uid: 4760 components: - pos: -46.5,-80.5 parent: 2 type: Transform - - uid: 4758 + - uid: 4761 components: - pos: -46.5,-79.5 parent: 2 type: Transform - - uid: 4759 + - uid: 4762 components: - pos: -46.5,-78.5 parent: 2 type: Transform - - uid: 4760 + - uid: 4763 components: - pos: -46.5,-77.5 parent: 2 type: Transform - - uid: 4761 + - uid: 4764 components: - pos: -46.5,-76.5 parent: 2 type: Transform - - uid: 4762 + - uid: 4765 components: - pos: -47.5,-76.5 parent: 2 type: Transform - - uid: 4763 + - uid: 4766 components: - pos: -48.5,-76.5 parent: 2 type: Transform - - uid: 4764 + - uid: 4767 components: - pos: -49.5,-76.5 parent: 2 type: Transform - - uid: 4765 + - uid: 4768 components: - pos: -50.5,-76.5 parent: 2 type: Transform - - uid: 4766 + - uid: 4769 components: - pos: -51.5,-76.5 parent: 2 type: Transform - - uid: 4767 + - uid: 4770 components: - pos: -52.5,-76.5 parent: 2 type: Transform - - uid: 4768 + - uid: 4771 components: - pos: -53.5,-76.5 parent: 2 type: Transform - - uid: 4769 + - uid: 4772 components: - pos: -54.5,-76.5 parent: 2 type: Transform - - uid: 4770 + - uid: 4773 components: - pos: -55.5,-76.5 parent: 2 type: Transform - - uid: 4771 + - uid: 4774 components: - pos: -55.5,-77.5 parent: 2 type: Transform - - uid: 4772 + - uid: 4775 components: - pos: -55.5,-78.5 parent: 2 type: Transform - - uid: 4773 + - uid: 4776 components: - pos: -55.5,-79.5 parent: 2 type: Transform - - uid: 4774 + - uid: 4777 components: - pos: -55.5,-80.5 parent: 2 type: Transform - - uid: 4775 + - uid: 4778 components: - pos: -55.5,-81.5 parent: 2 type: Transform - - uid: 4776 + - uid: 4779 components: - pos: -55.5,-75.5 parent: 2 type: Transform - - uid: 4777 + - uid: 4780 components: - pos: -55.5,-74.5 parent: 2 type: Transform - - uid: 4778 + - uid: 4781 components: - pos: -55.5,-73.5 parent: 2 type: Transform - - uid: 4779 + - uid: 4782 components: - pos: -55.5,-72.5 parent: 2 type: Transform - - uid: 4780 + - uid: 4783 components: - pos: -55.5,-71.5 parent: 2 type: Transform - - uid: 4781 + - uid: 4784 components: - pos: -54.5,-73.5 parent: 2 type: Transform - - uid: 4782 + - uid: 4785 components: - pos: -53.5,-73.5 parent: 2 type: Transform - - uid: 4783 + - uid: 4786 components: - pos: -54.5,-79.5 parent: 2 type: Transform - - uid: 4784 + - uid: 4787 components: - pos: -53.5,-79.5 parent: 2 type: Transform - - uid: 4785 + - uid: 4788 components: - pos: -56.5,-71.5 parent: 2 type: Transform - - uid: 4786 + - uid: 4789 components: - pos: -57.5,-71.5 parent: 2 type: Transform - - uid: 4787 + - uid: 4790 components: - pos: -56.5,-73.5 parent: 2 type: Transform - - uid: 4788 + - uid: 4791 components: - pos: -57.5,-73.5 parent: 2 type: Transform - - uid: 4789 + - uid: 4792 components: - pos: -56.5,-79.5 parent: 2 type: Transform - - uid: 4790 + - uid: 4793 components: - pos: -57.5,-79.5 parent: 2 type: Transform - - uid: 4791 + - uid: 4794 components: - pos: -56.5,-81.5 parent: 2 type: Transform - - uid: 4792 + - uid: 4795 components: - pos: -57.5,-81.5 parent: 2 type: Transform - - uid: 4793 + - uid: 4796 components: - pos: -55.5,-82.5 parent: 2 type: Transform - - uid: 4794 + - uid: 4797 components: - pos: -29.5,-63.5 parent: 2 type: Transform - - uid: 4795 + - uid: 4798 components: - pos: -28.5,-63.5 parent: 2 type: Transform - - uid: 4796 + - uid: 4799 components: - pos: -28.5,-62.5 parent: 2 type: Transform - - uid: 4797 + - uid: 4800 components: - pos: -28.5,-61.5 parent: 2 type: Transform - - uid: 4798 + - uid: 4801 components: - pos: -28.5,-60.5 parent: 2 type: Transform - - uid: 4799 + - uid: 4802 components: - pos: -28.5,-59.5 parent: 2 type: Transform - - uid: 4800 + - uid: 4803 components: - pos: -28.5,-58.5 parent: 2 type: Transform - - uid: 4801 + - uid: 4804 components: - pos: -28.5,-57.5 parent: 2 type: Transform - - uid: 4802 + - uid: 4805 components: - pos: -28.5,-56.5 parent: 2 type: Transform - - uid: 4803 + - uid: 4806 components: - pos: -28.5,-55.5 parent: 2 type: Transform - - uid: 4804 + - uid: 4807 components: - pos: -28.5,-54.5 parent: 2 type: Transform - - uid: 4805 + - uid: 4808 components: - pos: -27.5,-54.5 parent: 2 type: Transform - - uid: 4806 + - uid: 4809 components: - pos: -26.5,-54.5 parent: 2 type: Transform - - uid: 4807 + - uid: 4810 components: - pos: -25.5,-54.5 parent: 2 type: Transform - - uid: 4808 + - uid: 4811 components: - pos: -25.5,-53.5 parent: 2 type: Transform - - uid: 4809 + - uid: 4812 components: - pos: -25.5,-52.5 parent: 2 type: Transform - - uid: 4810 + - uid: 4813 components: - pos: -25.5,-51.5 parent: 2 type: Transform - - uid: 4811 + - uid: 4814 components: - pos: -24.5,-51.5 parent: 2 type: Transform - - uid: 4812 + - uid: 4815 components: - pos: -27.5,-63.5 parent: 2 type: Transform - - uid: 4813 + - uid: 4816 components: - pos: -27.5,-64.5 parent: 2 type: Transform - - uid: 4814 + - uid: 4817 components: - pos: -23.5,-64.5 parent: 2 type: Transform - - uid: 4815 + - uid: 4818 components: - pos: -24.5,-64.5 parent: 2 type: Transform - - uid: 4816 + - uid: 4819 components: - pos: -25.5,-64.5 parent: 2 type: Transform - - uid: 4817 + - uid: 4820 components: - pos: -26.5,-64.5 parent: 2 type: Transform - - uid: 4818 + - uid: 4821 components: - pos: -23.5,-66.5 parent: 2 type: Transform - - uid: 4819 + - uid: 4822 components: - pos: -23.5,-65.5 parent: 2 type: Transform - - uid: 4820 + - uid: 4823 components: - pos: -42.5,-72.5 parent: 2 type: Transform - - uid: 4821 + - uid: 4824 components: - pos: -41.5,-72.5 parent: 2 type: Transform - - uid: 4822 + - uid: 4825 components: - pos: -40.5,-72.5 parent: 2 type: Transform - - uid: 4823 + - uid: 4826 components: - pos: -39.5,-72.5 parent: 2 type: Transform - - uid: 4824 + - uid: 4827 components: - pos: -38.5,-72.5 parent: 2 type: Transform - - uid: 4825 + - uid: 4828 components: - pos: -23.5,-42.5 parent: 2 type: Transform - - uid: 4826 + - uid: 4829 components: - pos: -23.5,-43.5 parent: 2 type: Transform - - uid: 4827 + - uid: 4830 components: - pos: -23.5,-44.5 parent: 2 type: Transform - - uid: 4828 + - uid: 4831 components: - pos: -23.5,-45.5 parent: 2 type: Transform - - uid: 4829 + - uid: 4832 components: - pos: -23.5,-46.5 parent: 2 type: Transform - - uid: 4830 + - uid: 4833 components: - pos: -23.5,-47.5 parent: 2 type: Transform - - uid: 4831 + - uid: 4834 components: - pos: -23.5,-48.5 parent: 2 type: Transform - - uid: 4832 + - uid: 4835 components: - pos: -23.5,-49.5 parent: 2 type: Transform - - uid: 4833 + - uid: 4836 components: - pos: -24.5,-49.5 parent: 2 type: Transform - - uid: 4834 + - uid: 4837 components: - pos: -25.5,-49.5 parent: 2 type: Transform - - uid: 4835 + - uid: 4838 components: - pos: -26.5,-49.5 parent: 2 type: Transform - - uid: 4836 + - uid: 4839 components: - pos: -27.5,-49.5 parent: 2 type: Transform - - uid: 4837 + - uid: 4840 components: - pos: -27.5,-48.5 parent: 2 type: Transform - - uid: 4838 + - uid: 4841 components: - pos: -27.5,-47.5 parent: 2 type: Transform - - uid: 4839 + - uid: 4842 components: - pos: -27.5,-46.5 parent: 2 type: Transform - - uid: 4840 + - uid: 4843 components: - pos: -26.5,-46.5 parent: 2 type: Transform - - uid: 4841 + - uid: 4844 components: - pos: -25.5,-46.5 parent: 2 type: Transform - - uid: 4842 + - uid: 4845 components: - pos: -25.5,-45.5 parent: 2 type: Transform - - uid: 4843 + - uid: 4846 components: - pos: -25.5,-44.5 parent: 2 type: Transform - - uid: 4844 + - uid: 4847 components: - pos: -25.5,-43.5 parent: 2 type: Transform - - uid: 4845 + - uid: 4848 components: - pos: -25.5,-42.5 parent: 2 type: Transform - - uid: 4846 + - uid: 4849 components: - pos: -25.5,-41.5 parent: 2 type: Transform - - uid: 4847 + - uid: 4850 components: - pos: -25.5,-40.5 parent: 2 type: Transform - - uid: 4848 + - uid: 4851 components: - pos: -25.5,-39.5 parent: 2 type: Transform - - uid: 4849 + - uid: 4852 components: - pos: -26.5,-41.5 parent: 2 type: Transform - - uid: 4850 + - uid: 4853 components: - pos: -27.5,-41.5 parent: 2 type: Transform - - uid: 4851 + - uid: 4854 components: - pos: -28.5,-41.5 parent: 2 type: Transform - - uid: 4852 + - uid: 4855 components: - pos: -27.5,-45.5 parent: 2 type: Transform - - uid: 4853 + - uid: 4856 components: - pos: -27.5,-44.5 parent: 2 type: Transform - - uid: 4854 + - uid: 4857 components: - pos: -28.5,-44.5 parent: 2 type: Transform - - uid: 4855 + - uid: 4858 components: - pos: -29.5,-44.5 parent: 2 type: Transform - - uid: 4856 + - uid: 4859 components: - pos: -30.5,-44.5 parent: 2 type: Transform - - uid: 4857 + - uid: 4860 components: - pos: -31.5,-44.5 parent: 2 type: Transform - - uid: 4858 + - uid: 4861 components: - pos: -31.5,-45.5 parent: 2 type: Transform - - uid: 4859 + - uid: 4862 components: - pos: -31.5,-46.5 parent: 2 type: Transform - - uid: 4860 + - uid: 4863 components: - pos: -31.5,-47.5 parent: 2 type: Transform - - uid: 4861 + - uid: 4864 components: - pos: -23.5,-51.5 parent: 2 type: Transform - - uid: 4862 + - uid: 4865 components: - pos: -30.5,-47.5 parent: 2 type: Transform - - uid: 4863 + - uid: 4866 components: - pos: -30.5,-48.5 parent: 2 type: Transform - - uid: 4864 + - uid: 4867 components: - pos: -30.5,-49.5 parent: 2 type: Transform - - uid: 4865 + - uid: 4868 components: - pos: -22.5,-51.5 parent: 2 type: Transform - - uid: 4866 + - uid: 4869 components: - pos: -19.5,-49.5 parent: 2 type: Transform - - uid: 4867 + - uid: 4870 components: - pos: -20.5,-49.5 parent: 2 type: Transform - - uid: 4868 + - uid: 4871 components: - pos: -22.5,-52.5 parent: 2 type: Transform - - uid: 4869 + - uid: 4872 components: - pos: -22.5,-53.5 parent: 2 type: Transform - - uid: 4870 + - uid: 4873 components: - pos: -22.5,-54.5 parent: 2 type: Transform - - uid: 4871 + - uid: 4874 components: - pos: -22.5,-55.5 parent: 2 type: Transform - - uid: 4872 + - uid: 4875 components: - pos: -21.5,-52.5 parent: 2 type: Transform - - uid: 4873 + - uid: 4876 components: - pos: -55.5,-60.5 parent: 2 type: Transform - - uid: 4874 + - uid: 4877 components: - pos: 30.5,-14.5 parent: 2 type: Transform - - uid: 4875 + - uid: 4878 components: - pos: 29.5,-14.5 parent: 2 type: Transform - - uid: 4876 + - uid: 4879 components: - pos: 30.5,-11.5 parent: 2 type: Transform - - uid: 4877 + - uid: 4880 components: - pos: 30.5,-12.5 parent: 2 type: Transform - - uid: 4878 + - uid: 4881 components: - pos: -1.5,-79.5 parent: 2 type: Transform - - uid: 4879 + - uid: 4882 components: - pos: 28.5,-25.5 parent: 2 type: Transform - - uid: 4880 + - uid: 4883 components: - pos: -34.5,-55.5 parent: 2 type: Transform - - uid: 4881 + - uid: 4884 components: - pos: -33.5,-26.5 parent: 2 type: Transform - - uid: 4882 + - uid: 4885 components: - pos: -34.5,-26.5 parent: 2 type: Transform - - uid: 4883 + - uid: 4886 components: - pos: -35.5,-26.5 parent: 2 type: Transform - - uid: 4884 + - uid: 4887 components: - pos: -35.5,-25.5 parent: 2 type: Transform - - uid: 4885 + - uid: 4888 components: - pos: -35.5,-24.5 parent: 2 type: Transform - - uid: 4886 + - uid: 4889 components: - pos: -36.5,-24.5 parent: 2 type: Transform - - uid: 4887 + - uid: 4890 components: - pos: -37.5,-24.5 parent: 2 type: Transform - - uid: 4888 + - uid: 4891 components: - pos: -37.5,-23.5 parent: 2 type: Transform - - uid: 4889 + - uid: 4892 components: - pos: -37.5,-22.5 parent: 2 type: Transform - - uid: 4890 + - uid: 4893 components: - pos: -37.5,-21.5 parent: 2 type: Transform - - uid: 4891 + - uid: 4894 components: - pos: -38.5,-22.5 parent: 2 type: Transform - - uid: 4892 + - uid: 4895 components: - pos: -39.5,-22.5 parent: 2 type: Transform - - uid: 4893 + - uid: 4896 components: - pos: -39.5,-23.5 parent: 2 type: Transform - - uid: 4894 + - uid: 4897 components: - pos: -39.5,-24.5 parent: 2 type: Transform - - uid: 4895 + - uid: 4898 components: - pos: -40.5,-24.5 parent: 2 type: Transform - - uid: 4896 + - uid: 4899 components: - pos: -41.5,-24.5 parent: 2 type: Transform - - uid: 4897 + - uid: 4900 components: - pos: -41.5,-25.5 parent: 2 type: Transform - - uid: 4898 + - uid: 4901 components: - pos: -41.5,-26.5 parent: 2 type: Transform - - uid: 4899 + - uid: 4902 components: - pos: -43.5,-26.5 parent: 2 type: Transform - - uid: 4900 + - uid: 4903 components: - pos: -42.5,-26.5 parent: 2 type: Transform - - uid: 4901 + - uid: 4904 components: - pos: -40.5,-26.5 parent: 2 type: Transform - - uid: 4902 + - uid: 4905 components: - pos: -39.5,-26.5 parent: 2 type: Transform - - uid: 4903 + - uid: 4906 components: - pos: -38.5,-26.5 parent: 2 type: Transform - - uid: 4904 + - uid: 4907 components: - pos: -37.5,-26.5 parent: 2 type: Transform - - uid: 4905 + - uid: 4908 components: - pos: -37.5,-27.5 parent: 2 type: Transform - - uid: 4906 + - uid: 4909 components: - pos: -37.5,-28.5 parent: 2 type: Transform - - uid: 4907 + - uid: 4910 components: - pos: -36.5,-28.5 parent: 2 type: Transform - - uid: 4908 + - uid: 4911 components: - pos: -35.5,-28.5 parent: 2 type: Transform - - uid: 4909 + - uid: 4912 components: - pos: -35.5,-29.5 parent: 2 type: Transform - - uid: 4910 + - uid: 4913 components: - pos: -35.5,-30.5 parent: 2 type: Transform - - uid: 4911 + - uid: 4914 components: - pos: -44.5,-26.5 parent: 2 type: Transform - - uid: 4912 + - uid: 4915 components: - pos: -44.5,-27.5 parent: 2 type: Transform - - uid: 4913 + - uid: 4916 components: - pos: -45.5,-27.5 parent: 2 type: Transform - - uid: 4914 + - uid: 4917 components: - pos: -46.5,-27.5 parent: 2 type: Transform - - uid: 4915 + - uid: 4918 components: - pos: -47.5,-27.5 parent: 2 type: Transform - - uid: 4916 + - uid: 4919 components: - pos: -48.5,-27.5 parent: 2 type: Transform - - uid: 4917 + - uid: 4920 components: - pos: -48.5,-28.5 parent: 2 type: Transform - - uid: 4918 + - uid: 4921 components: - pos: -48.5,-29.5 parent: 2 type: Transform - - uid: 4919 + - uid: 4922 components: - pos: -48.5,-30.5 parent: 2 type: Transform - - uid: 4920 + - uid: 4923 components: - pos: -48.5,-31.5 parent: 2 type: Transform - - uid: 4921 + - uid: 4924 components: - pos: -48.5,-32.5 parent: 2 type: Transform - - uid: 4922 + - uid: 4925 components: - pos: -50.5,-32.5 parent: 2 type: Transform - - uid: 4923 + - uid: 4926 components: - pos: -49.5,-32.5 parent: 2 type: Transform - - uid: 4924 + - uid: 4927 components: - pos: -51.5,-32.5 parent: 2 type: Transform - - uid: 4925 + - uid: 4928 components: - pos: -52.5,-32.5 parent: 2 type: Transform - - uid: 4926 + - uid: 4929 components: - pos: -53.5,-32.5 parent: 2 type: Transform - - uid: 4927 + - uid: 4930 components: - pos: -54.5,-32.5 parent: 2 type: Transform - - uid: 4928 + - uid: 4931 components: - pos: -55.5,-32.5 parent: 2 type: Transform - - uid: 4929 + - uid: 4932 components: - pos: -55.5,-33.5 parent: 2 type: Transform - - uid: 4930 + - uid: 4933 components: - pos: -55.5,-34.5 parent: 2 type: Transform - - uid: 4931 + - uid: 4934 components: - pos: -55.5,-35.5 parent: 2 type: Transform - - uid: 4932 + - uid: 4935 components: - pos: -55.5,-36.5 parent: 2 type: Transform - - uid: 4933 + - uid: 4936 components: - pos: -55.5,-37.5 parent: 2 type: Transform - - uid: 4934 + - uid: 4937 components: - pos: -55.5,-38.5 parent: 2 type: Transform - - uid: 4935 + - uid: 4938 components: - pos: -55.5,-39.5 parent: 2 type: Transform - - uid: 4936 + - uid: 4939 components: - pos: -56.5,-39.5 parent: 2 type: Transform - - uid: 4937 + - uid: 4940 components: - pos: -56.5,-40.5 parent: 2 type: Transform - - uid: 4938 + - uid: 4941 components: - pos: -56.5,-41.5 parent: 2 type: Transform - - uid: 4939 + - uid: 4942 components: - pos: -56.5,-42.5 parent: 2 type: Transform - - uid: 4940 + - uid: 4943 components: - pos: -56.5,-43.5 parent: 2 type: Transform - - uid: 4941 + - uid: 4944 components: - pos: -56.5,-44.5 parent: 2 type: Transform - - uid: 4942 + - uid: 4945 components: - pos: -56.5,-45.5 parent: 2 type: Transform - - uid: 4943 + - uid: 4946 components: - pos: -56.5,-46.5 parent: 2 type: Transform - - uid: 4944 + - uid: 4947 components: - pos: -56.5,-47.5 parent: 2 type: Transform - - uid: 4945 + - uid: 4948 components: - pos: -56.5,-48.5 parent: 2 type: Transform - - uid: 4946 + - uid: 4949 components: - pos: -56.5,-49.5 parent: 2 type: Transform - - uid: 4947 + - uid: 4950 components: - pos: -56.5,-50.5 parent: 2 type: Transform - - uid: 4948 + - uid: 4951 components: - pos: -56.5,-51.5 parent: 2 type: Transform - - uid: 4949 + - uid: 4952 components: - pos: -56.5,-52.5 parent: 2 type: Transform - - uid: 4950 + - uid: 4953 components: - pos: -56.5,-53.5 parent: 2 type: Transform - - uid: 4951 + - uid: 4954 components: - pos: -56.5,-54.5 parent: 2 type: Transform - - uid: 4952 + - uid: 4955 components: - pos: -56.5,-55.5 parent: 2 type: Transform - - uid: 4953 + - uid: 4956 components: - pos: -56.5,-56.5 parent: 2 type: Transform - - uid: 4954 + - uid: 4957 components: - pos: -56.5,-57.5 parent: 2 type: Transform - - uid: 4955 + - uid: 4958 components: - pos: -56.5,-58.5 parent: 2 type: Transform - - uid: 4956 + - uid: 4959 components: - pos: -57.5,-58.5 parent: 2 type: Transform - - uid: 4957 + - uid: 4960 components: - pos: -57.5,-59.5 parent: 2 type: Transform - - uid: 4958 + - uid: 4961 components: - pos: -50.5,-64.5 parent: 2 type: Transform - - uid: 4959 + - uid: 4962 components: - pos: -50.5,-63.5 parent: 2 type: Transform - - uid: 4960 + - uid: 4963 components: - pos: -51.5,-63.5 parent: 2 type: Transform - - uid: 4961 + - uid: 4964 components: - pos: -55.5,-58.5 parent: 2 type: Transform - - uid: 4962 + - uid: 4965 components: - pos: -55.5,-59.5 parent: 2 type: Transform - - uid: 4963 + - uid: 4966 components: - pos: -55.5,-61.5 parent: 2 type: Transform - - uid: 4964 + - uid: 4967 components: - pos: -36.5,-30.5 parent: 2 type: Transform - - uid: 4965 + - uid: 4968 components: - pos: -38.5,-28.5 parent: 2 type: Transform - - uid: 4966 + - uid: 4969 components: - pos: -38.5,-30.5 parent: 2 type: Transform - - uid: 4967 + - uid: 4970 components: - pos: -39.5,-30.5 parent: 2 type: Transform - - uid: 4968 + - uid: 4971 components: - pos: -40.5,-30.5 parent: 2 type: Transform - - uid: 4969 + - uid: 4972 components: - pos: -41.5,-30.5 parent: 2 type: Transform - - uid: 4970 + - uid: 4973 components: - pos: -41.5,-29.5 parent: 2 type: Transform - - uid: 4971 + - uid: 4974 components: - pos: -56.5,-85.5 parent: 2 type: Transform - - uid: 4972 + - uid: 4975 components: - pos: -56.5,-86.5 parent: 2 type: Transform - - uid: 4973 + - uid: 4976 components: - pos: -56.5,-87.5 parent: 2 type: Transform - - uid: 4974 + - uid: 4977 components: - pos: -55.5,-87.5 parent: 2 type: Transform - - uid: 4975 + - uid: 4978 components: - pos: -54.5,-87.5 parent: 2 type: Transform - - uid: 4976 + - uid: 4979 components: - pos: -53.5,-87.5 parent: 2 type: Transform - - uid: 4977 + - uid: 4980 components: - pos: -52.5,-87.5 parent: 2 type: Transform - - uid: 4978 + - uid: 4981 components: - pos: -54.5,-86.5 parent: 2 type: Transform - - uid: 4979 + - uid: 4982 components: - pos: -54.5,-85.5 parent: 2 type: Transform - - uid: 4980 + - uid: 4983 components: - pos: -54.5,-88.5 parent: 2 type: Transform - - uid: 4981 + - uid: 4984 components: - pos: -54.5,-89.5 parent: 2 type: Transform - - uid: 4982 + - uid: 4985 components: - pos: -55.5,-85.5 parent: 2 type: Transform - - uid: 4983 + - uid: 4986 components: - pos: 33.5,22.5 parent: 2 type: Transform - - uid: 4984 + - uid: 4987 components: - pos: 34.5,22.5 parent: 2 type: Transform - - uid: 4985 + - uid: 4988 components: - pos: 35.5,22.5 parent: 2 type: Transform - - uid: 4986 + - uid: 4989 components: - pos: 36.5,22.5 parent: 2 type: Transform - - uid: 4987 + - uid: 4990 components: - pos: 36.5,23.5 parent: 2 type: Transform - - uid: 4988 + - uid: 4991 components: - pos: 37.5,23.5 parent: 2 type: Transform - - uid: 4989 + - uid: 4992 components: - pos: 38.5,23.5 parent: 2 type: Transform - - uid: 4990 + - uid: 4993 components: - pos: 39.5,23.5 parent: 2 type: Transform - - uid: 4991 + - uid: 4994 components: - pos: 40.5,23.5 parent: 2 type: Transform - - uid: 4992 + - uid: 4995 components: - pos: 42.5,23.5 parent: 2 type: Transform - - uid: 4993 + - uid: 4996 components: - pos: 44.5,23.5 parent: 2 type: Transform - - uid: 4994 + - uid: 4997 components: - pos: 43.5,23.5 parent: 2 type: Transform - - uid: 4995 + - uid: 4998 components: - pos: 44.5,24.5 parent: 2 type: Transform - - uid: 4996 + - uid: 4999 components: - pos: 44.5,25.5 parent: 2 type: Transform - - uid: 4997 + - uid: 5000 components: - pos: 44.5,26.5 parent: 2 type: Transform - - uid: 4998 + - uid: 5001 components: - pos: 47.5,26.5 parent: 2 type: Transform - - uid: 4999 + - uid: 5002 components: - pos: 48.5,26.5 parent: 2 type: Transform - - uid: 5000 + - uid: 5003 components: - pos: 49.5,26.5 parent: 2 type: Transform - - uid: 5001 + - uid: 5004 components: - pos: 50.5,26.5 parent: 2 type: Transform - - uid: 5002 + - uid: 5005 components: - pos: 51.5,26.5 parent: 2 type: Transform - - uid: 5003 + - uid: 5006 components: - pos: 52.5,26.5 parent: 2 type: Transform - - uid: 5004 + - uid: 5007 components: - pos: 53.5,26.5 parent: 2 type: Transform - - uid: 5005 + - uid: 5008 components: - pos: 54.5,26.5 parent: 2 type: Transform - - uid: 5006 + - uid: 5009 components: - pos: 55.5,26.5 parent: 2 type: Transform - - uid: 5007 + - uid: 5010 components: - pos: 56.5,26.5 parent: 2 type: Transform - - uid: 5008 + - uid: 5011 components: - pos: 57.5,26.5 parent: 2 type: Transform - - uid: 5009 + - uid: 5012 components: - pos: 58.5,26.5 parent: 2 type: Transform - - uid: 5010 + - uid: 5013 components: - pos: 59.5,26.5 parent: 2 type: Transform - - uid: 5011 + - uid: 5014 components: - pos: 60.5,26.5 parent: 2 type: Transform - - uid: 5012 + - uid: 5015 components: - pos: 63.5,5.5 parent: 2 type: Transform - - uid: 5013 + - uid: 5016 components: - pos: 64.5,5.5 parent: 2 type: Transform - - uid: 5014 + - uid: 5017 components: - pos: 65.5,5.5 parent: 2 type: Transform - - uid: 5015 + - uid: 5018 components: - pos: 65.5,4.5 parent: 2 type: Transform - - uid: 5016 + - uid: 5019 components: - pos: 65.5,6.5 parent: 2 type: Transform - - uid: 5017 + - uid: 5020 components: - pos: 65.5,7.5 parent: 2 type: Transform - - uid: 5018 + - uid: 5021 components: - pos: 65.5,8.5 parent: 2 type: Transform - - uid: 5019 + - uid: 5022 components: - pos: 65.5,9.5 parent: 2 type: Transform - - uid: 5020 + - uid: 5023 components: - pos: 65.5,10.5 parent: 2 type: Transform - - uid: 5021 + - uid: 5024 components: - pos: 65.5,11.5 parent: 2 type: Transform - - uid: 5022 + - uid: 5025 components: - pos: 65.5,12.5 parent: 2 type: Transform - - uid: 5023 + - uid: 5026 components: - pos: 65.5,13.5 parent: 2 type: Transform - - uid: 5024 + - uid: 5027 components: - pos: 65.5,14.5 parent: 2 type: Transform - - uid: 5025 + - uid: 5028 components: - pos: 65.5,15.5 parent: 2 type: Transform - - uid: 5026 + - uid: 5029 components: - pos: 53.5,27.5 parent: 2 type: Transform - - uid: 5027 + - uid: 5030 components: - pos: -25.5,-27.5 parent: 2 type: Transform - - uid: 5028 + - uid: 5031 components: - pos: -25.5,-28.5 parent: 2 type: Transform - - uid: 5029 + - uid: 5032 components: - pos: -25.5,-29.5 parent: 2 type: Transform - - uid: 5030 + - uid: 5033 components: - pos: -26.5,-29.5 parent: 2 type: Transform - - uid: 5031 + - uid: 5034 components: - pos: -28.5,-29.5 parent: 2 type: Transform - - uid: 5032 + - uid: 5035 components: - pos: -27.5,-29.5 parent: 2 type: Transform - - uid: 5033 + - uid: 5036 components: - pos: -24.5,-29.5 parent: 2 type: Transform - - uid: 5034 + - uid: 5037 components: - pos: 8.5,-14.5 parent: 2 type: Transform - - uid: 5035 + - uid: 5038 components: - pos: 7.5,-14.5 parent: 2 type: Transform - - uid: 5036 + - uid: 5039 components: - pos: 6.5,-14.5 parent: 2 type: Transform - - uid: 5037 + - uid: 5040 components: - pos: 5.5,-14.5 parent: 2 type: Transform - - uid: 5038 + - uid: 5041 components: - pos: 4.5,-14.5 parent: 2 type: Transform - - uid: 5039 + - uid: 5042 components: - pos: 4.5,-15.5 parent: 2 type: Transform - - uid: 5040 + - uid: 5043 components: - pos: 4.5,-16.5 parent: 2 type: Transform - - uid: 5041 + - uid: 5044 components: - pos: 3.5,-16.5 parent: 2 type: Transform - - uid: 5042 + - uid: 5045 components: - pos: 2.5,-16.5 parent: 2 type: Transform - - uid: 5043 + - uid: 5046 components: - pos: 1.5,-16.5 parent: 2 type: Transform - - uid: 5044 + - uid: 5047 components: - pos: 0.5,-16.5 parent: 2 type: Transform - - uid: 5045 + - uid: 5048 components: - pos: 2.5,-14.5 parent: 2 type: Transform - - uid: 5046 + - uid: 5049 components: - pos: 3.5,-14.5 parent: 2 type: Transform - - uid: 5047 + - uid: 5050 components: - pos: 1.5,-14.5 parent: 2 type: Transform - - uid: 5048 + - uid: 5051 components: - pos: 0.5,-14.5 parent: 2 type: Transform - - uid: 5049 + - uid: 5052 components: - pos: -0.5,-14.5 parent: 2 type: Transform - - uid: 5050 + - uid: 5053 components: - pos: -0.5,-13.5 parent: 2 type: Transform - - uid: 5051 + - uid: 5054 components: - pos: -0.5,-12.5 parent: 2 type: Transform - - uid: 5052 + - uid: 5055 components: - pos: -0.5,-11.5 parent: 2 type: Transform - - uid: 5053 + - uid: 5056 components: - pos: -0.5,-9.5 parent: 2 type: Transform - - uid: 5054 + - uid: 5057 components: - pos: -0.5,-10.5 parent: 2 type: Transform - - uid: 5055 + - uid: 5058 components: - pos: 0.5,35.5 parent: 2 type: Transform - - uid: 5056 + - uid: 5059 components: - pos: 0.5,34.5 parent: 2 type: Transform - - uid: 5057 + - uid: 5060 components: - pos: 0.5,33.5 parent: 2 type: Transform - - uid: 5058 + - uid: 5061 components: - pos: 0.5,32.5 parent: 2 type: Transform - - uid: 5059 + - uid: 5062 components: - pos: 1.5,32.5 parent: 2 type: Transform - - uid: 5060 + - uid: 5063 components: - pos: 2.5,32.5 parent: 2 type: Transform - - uid: 5061 + - uid: 5064 components: - pos: 13.5,32.5 parent: 2 type: Transform - - uid: 5062 + - uid: 5065 components: - pos: 14.5,32.5 parent: 2 type: Transform - - uid: 5063 + - uid: 5066 components: - pos: 15.5,32.5 parent: 2 type: Transform - - uid: 5064 + - uid: 5067 components: - pos: 16.5,32.5 parent: 2 type: Transform - - uid: 5065 + - uid: 5068 components: - pos: 16.5,33.5 parent: 2 type: Transform - - uid: 5066 + - uid: 5069 components: - pos: 16.5,34.5 parent: 2 type: Transform - - uid: 5067 + - uid: 5070 components: - pos: 16.5,31.5 parent: 2 type: Transform - - uid: 5068 + - uid: 5071 components: - pos: 16.5,30.5 parent: 2 type: Transform - - uid: 5069 + - uid: 5072 components: - pos: 16.5,29.5 parent: 2 type: Transform - - uid: 5070 + - uid: 5073 components: - pos: 16.5,28.5 parent: 2 type: Transform - - uid: 5071 + - uid: 5074 components: - pos: 16.5,27.5 parent: 2 type: Transform - - uid: 5072 + - uid: 5075 components: - pos: 16.5,26.5 parent: 2 type: Transform - - uid: 5073 + - uid: 5076 components: - pos: 16.5,25.5 parent: 2 type: Transform - - uid: 5074 + - uid: 5077 components: - pos: 15.5,25.5 parent: 2 type: Transform - - uid: 5075 + - uid: 5078 components: - pos: 14.5,25.5 parent: 2 type: Transform - - uid: 5076 + - uid: 5079 components: - pos: 13.5,25.5 parent: 2 type: Transform - - uid: 5077 + - uid: 5080 components: - pos: 12.5,25.5 parent: 2 type: Transform - - uid: 5078 + - uid: 5081 components: - pos: 11.5,25.5 parent: 2 type: Transform - - uid: 5079 + - uid: 5082 components: - pos: 8.5,25.5 parent: 2 type: Transform - - uid: 5080 + - uid: 5083 components: - pos: 9.5,25.5 parent: 2 type: Transform - - uid: 5081 + - uid: 5084 components: - pos: 10.5,25.5 parent: 2 type: Transform - - uid: 5082 + - uid: 5085 components: - pos: 8.5,24.5 parent: 2 type: Transform - - uid: 5083 + - uid: 5086 components: - pos: 7.5,24.5 parent: 2 type: Transform - - uid: 5084 + - uid: 5087 components: - pos: 6.5,24.5 parent: 2 type: Transform - - uid: 5085 + - uid: 5088 components: - pos: 5.5,24.5 parent: 2 type: Transform - - uid: 5086 + - uid: 5089 components: - pos: 4.5,24.5 parent: 2 type: Transform - - uid: 5087 + - uid: 5090 components: - pos: 3.5,24.5 parent: 2 type: Transform - - uid: 5088 + - uid: 5091 components: - pos: 2.5,24.5 parent: 2 type: Transform - - uid: 5089 + - uid: 5092 components: - pos: 1.5,24.5 parent: 2 type: Transform - - uid: 5090 + - uid: 5093 components: - pos: 0.5,24.5 parent: 2 type: Transform - - uid: 5091 + - uid: 5094 components: - pos: -0.5,24.5 parent: 2 type: Transform - - uid: 5092 + - uid: 5095 components: - pos: -1.5,24.5 parent: 2 type: Transform - - uid: 5093 + - uid: 5096 components: - pos: -0.5,32.5 parent: 2 type: Transform - - uid: 5094 + - uid: 5097 components: - pos: -1.5,32.5 parent: 2 type: Transform - - uid: 5095 + - uid: 5098 components: - pos: -2.5,32.5 parent: 2 type: Transform - - uid: 5096 + - uid: 5099 components: - pos: -3.5,32.5 parent: 2 type: Transform - - uid: 5097 + - uid: 5100 components: - pos: -4.5,32.5 parent: 2 type: Transform - - uid: 5098 + - uid: 5101 components: - pos: -5.5,32.5 parent: 2 type: Transform - - uid: 5099 + - uid: 5102 components: - pos: -6.5,32.5 parent: 2 type: Transform - - uid: 5100 + - uid: 5103 components: - pos: -7.5,32.5 parent: 2 type: Transform - - uid: 5101 + - uid: 5104 components: - pos: -8.5,32.5 parent: 2 type: Transform - - uid: 5102 + - uid: 5105 components: - pos: -8.5,31.5 parent: 2 type: Transform - - uid: 5103 + - uid: 5106 components: - pos: -8.5,30.5 parent: 2 type: Transform - - uid: 5104 + - uid: 5107 components: - pos: -8.5,29.5 parent: 2 type: Transform - - uid: 5105 + - uid: 5108 components: - pos: -8.5,28.5 parent: 2 type: Transform - - uid: 5106 + - uid: 5109 components: - pos: -8.5,27.5 parent: 2 type: Transform - - uid: 5107 + - uid: 5110 components: - pos: -8.5,26.5 parent: 2 type: Transform - - uid: 5108 + - uid: 5111 components: - pos: -12.5,26.5 parent: 2 type: Transform - - uid: 5109 + - uid: 5112 components: - pos: -8.5,23.5 parent: 2 type: Transform - - uid: 5110 + - uid: 5113 components: - pos: -1.5,33.5 parent: 2 type: Transform - - uid: 5111 + - uid: 5114 components: - pos: -1.5,34.5 parent: 2 type: Transform - - uid: 5112 + - uid: 5115 components: - pos: -1.5,31.5 parent: 2 type: Transform - - uid: 5113 + - uid: 5116 components: - pos: -15.5,26.5 parent: 2 type: Transform - - uid: 5114 + - uid: 5117 components: - pos: -11.5,28.5 parent: 2 type: Transform - - uid: 5115 + - uid: 5118 components: - pos: -11.5,29.5 parent: 2 type: Transform - - uid: 5116 + - uid: 5119 components: - pos: -68.5,-25.5 parent: 2 type: Transform - - uid: 5117 + - uid: 5120 components: - pos: -68.5,-24.5 parent: 2 type: Transform - - uid: 5118 + - uid: 5121 components: - pos: -68.5,-23.5 parent: 2 type: Transform - - uid: 5119 + - uid: 5122 components: - pos: -69.5,-23.5 parent: 2 type: Transform - - uid: 5120 + - uid: 5123 components: - pos: -70.5,-23.5 parent: 2 type: Transform - - uid: 5121 + - uid: 5124 components: - pos: -71.5,-23.5 parent: 2 type: Transform - - uid: 5122 + - uid: 5125 components: - pos: -72.5,-23.5 parent: 2 type: Transform - - uid: 5123 + - uid: 5126 components: - pos: -73.5,-23.5 parent: 2 type: Transform - - uid: 5124 + - uid: 5127 components: - pos: -72.5,-24.5 parent: 2 type: Transform - - uid: 5125 + - uid: 5128 components: - pos: -72.5,-25.5 parent: 2 type: Transform - - uid: 5126 + - uid: 5129 components: - pos: -74.5,-23.5 parent: 2 type: Transform - - uid: 5127 + - uid: 5130 components: - pos: -74.5,-24.5 parent: 2 type: Transform - - uid: 5128 + - uid: 5131 components: - pos: -42.5,-6.5 parent: 2 type: Transform - - uid: 5129 + - uid: 5132 components: - pos: -43.5,-6.5 parent: 2 type: Transform - - uid: 5130 + - uid: 5133 components: - pos: -44.5,-6.5 parent: 2 type: Transform - - uid: 5131 + - uid: 5134 components: - pos: -45.5,-6.5 parent: 2 type: Transform - - uid: 5132 + - uid: 5135 components: - pos: -46.5,-6.5 parent: 2 type: Transform - - uid: 5133 + - uid: 5136 components: - pos: -47.5,-6.5 parent: 2 type: Transform - - uid: 5134 + - uid: 5137 components: - pos: -48.5,-6.5 parent: 2 type: Transform - - uid: 5135 + - uid: 5138 components: - pos: -42.5,16.5 parent: 2 type: Transform - - uid: 5136 + - uid: 5139 components: - pos: -9.5,24.5 parent: 2 type: Transform - - uid: 5137 + - uid: 5140 components: - pos: -10.5,26.5 parent: 2 type: Transform - - uid: 5138 + - uid: 5141 components: - pos: -9.5,26.5 parent: 2 type: Transform - - uid: 5139 + - uid: 5142 components: - pos: -9.5,25.5 parent: 2 type: Transform - - uid: 5140 + - uid: 5143 components: - pos: -9.5,23.5 parent: 2 type: Transform - - uid: 5141 + - uid: 5144 components: - pos: -14.5,26.5 parent: 2 type: Transform - - uid: 5142 + - uid: 5145 components: - pos: -11.5,27.5 parent: 2 type: Transform - - uid: 5143 + - uid: 5146 components: - pos: 21.5,22.5 parent: 2 type: Transform - - uid: 5144 + - uid: 5147 components: - pos: 21.5,23.5 parent: 2 type: Transform - - uid: 5145 + - uid: 5148 components: - pos: -18.5,15.5 parent: 2 type: Transform - - uid: 5146 + - uid: 5149 components: - pos: -18.5,16.5 parent: 2 type: Transform - - uid: 5147 + - uid: 5150 components: - pos: -18.5,17.5 parent: 2 type: Transform - - uid: 5148 + - uid: 5151 components: - pos: -18.5,18.5 parent: 2 type: Transform - - uid: 5149 + - uid: 5152 components: - pos: -18.5,19.5 parent: 2 type: Transform - - uid: 5150 + - uid: 5153 components: - pos: -18.5,20.5 parent: 2 type: Transform - - uid: 5151 + - uid: 5154 components: - pos: -18.5,21.5 parent: 2 type: Transform - - uid: 5152 + - uid: 5155 components: - pos: -19.5,21.5 parent: 2 type: Transform - - uid: 5153 + - uid: 5156 components: - pos: -20.5,21.5 parent: 2 type: Transform - - uid: 5154 + - uid: 5157 components: - pos: -21.5,21.5 parent: 2 type: Transform - - uid: 5155 + - uid: 5158 components: - pos: -22.5,21.5 parent: 2 type: Transform - - uid: 5156 + - uid: 5159 components: - pos: -23.5,21.5 parent: 2 type: Transform - - uid: 5157 + - uid: 5160 components: - pos: -23.5,22.5 parent: 2 type: Transform - - uid: 5158 + - uid: 5161 components: - pos: -23.5,23.5 parent: 2 type: Transform - - uid: 5159 + - uid: 5162 components: - pos: -23.5,24.5 parent: 2 type: Transform - - uid: 5160 + - uid: 5163 components: - pos: -23.5,25.5 parent: 2 type: Transform - - uid: 5161 + - uid: 5164 components: - pos: -23.5,26.5 parent: 2 type: Transform - - uid: 5162 + - uid: 5165 components: - pos: -24.5,21.5 parent: 2 type: Transform - - uid: 5163 + - uid: 5166 components: - pos: -25.5,21.5 parent: 2 type: Transform - - uid: 5164 + - uid: 5167 components: - pos: -26.5,21.5 parent: 2 type: Transform - - uid: 5165 + - uid: 5168 components: - pos: -27.5,21.5 parent: 2 type: Transform - - uid: 5166 + - uid: 5169 components: - pos: -28.5,21.5 parent: 2 type: Transform - - uid: 5167 + - uid: 5170 components: - pos: -28.5,22.5 parent: 2 type: Transform - - uid: 5168 + - uid: 5171 components: - pos: -29.5,22.5 parent: 2 type: Transform - - uid: 5169 + - uid: 5172 components: - pos: -30.5,22.5 parent: 2 type: Transform - - uid: 5170 + - uid: 5173 components: - pos: -31.5,22.5 parent: 2 type: Transform - - uid: 5171 + - uid: 5174 components: - pos: -32.5,22.5 parent: 2 type: Transform - - uid: 5172 + - uid: 5175 components: - pos: -32.5,23.5 parent: 2 type: Transform - - uid: 5173 + - uid: 5176 components: - pos: -32.5,24.5 parent: 2 type: Transform - - uid: 5174 + - uid: 5177 components: - pos: -32.5,25.5 parent: 2 type: Transform - - uid: 5175 + - uid: 5178 components: - pos: -32.5,26.5 parent: 2 type: Transform - - uid: 5176 + - uid: 5179 components: - pos: -32.5,27.5 parent: 2 type: Transform - - uid: 5177 + - uid: 5180 components: - pos: -31.5,27.5 parent: 2 type: Transform - - uid: 5178 + - uid: 5181 components: - pos: -30.5,27.5 parent: 2 type: Transform - - uid: 5179 + - uid: 5182 components: - pos: -33.5,27.5 parent: 2 type: Transform - - uid: 5180 + - uid: 5183 components: - pos: -32.5,28.5 parent: 2 type: Transform - - uid: 5181 + - uid: 5184 components: - pos: -32.5,29.5 parent: 2 type: Transform - - uid: 5182 + - uid: 5185 components: - pos: -32.5,30.5 parent: 2 type: Transform - - uid: 5183 + - uid: 5186 components: - pos: -33.5,30.5 parent: 2 type: Transform - - uid: 5184 + - uid: 5187 components: - pos: -33.5,25.5 parent: 2 type: Transform - - uid: 5185 + - uid: 5188 components: - pos: -34.5,25.5 parent: 2 type: Transform - - uid: 5186 + - uid: 5189 components: - pos: -35.5,25.5 parent: 2 type: Transform - - uid: 5187 + - uid: 5190 components: - pos: -36.5,25.5 parent: 2 type: Transform - - uid: 5188 + - uid: 5191 components: - pos: -37.5,25.5 parent: 2 type: Transform - - uid: 5189 + - uid: 5192 components: - pos: -38.5,25.5 parent: 2 type: Transform - - uid: 5190 + - uid: 5193 components: - pos: -38.5,24.5 parent: 2 type: Transform - - uid: 5191 + - uid: 5194 components: - pos: -38.5,23.5 parent: 2 type: Transform - - uid: 5192 + - uid: 5195 components: - pos: -38.5,22.5 parent: 2 type: Transform - - uid: 5193 + - uid: 5196 components: - pos: -39.5,22.5 parent: 2 type: Transform - - uid: 5194 + - uid: 5197 components: - pos: -40.5,22.5 parent: 2 type: Transform - - uid: 5195 + - uid: 5198 components: - pos: -41.5,22.5 parent: 2 type: Transform - - uid: 5196 + - uid: 5199 components: - pos: -42.5,22.5 parent: 2 type: Transform - - uid: 5197 + - uid: 5200 components: - pos: -43.5,22.5 parent: 2 type: Transform - - uid: 5198 + - uid: 5201 components: - pos: -44.5,22.5 parent: 2 type: Transform - - uid: 5199 + - uid: 5202 components: - pos: -45.5,22.5 parent: 2 type: Transform - - uid: 5200 + - uid: 5203 components: - pos: -46.5,22.5 parent: 2 type: Transform - - uid: 5201 + - uid: 5204 components: - pos: -47.5,22.5 parent: 2 type: Transform - - uid: 5202 + - uid: 5205 components: - pos: -48.5,22.5 parent: 2 type: Transform - - uid: 5203 + - uid: 5206 components: - pos: -49.5,22.5 parent: 2 type: Transform - - uid: 5204 + - uid: 5207 components: - pos: -50.5,22.5 parent: 2 type: Transform - - uid: 5205 + - uid: 5208 components: - pos: -32.5,21.5 parent: 2 type: Transform - - uid: 5206 + - uid: 5209 components: - pos: -32.5,20.5 parent: 2 type: Transform - - uid: 5207 + - uid: 5210 components: - pos: -32.5,19.5 parent: 2 type: Transform - - uid: 5208 + - uid: 5211 components: - pos: -32.5,18.5 parent: 2 type: Transform - - uid: 5209 + - uid: 5212 components: - pos: -33.5,18.5 parent: 2 type: Transform - - uid: 5210 + - uid: 5213 components: - pos: -34.5,18.5 parent: 2 type: Transform - - uid: 5211 + - uid: 5214 components: - pos: -35.5,18.5 parent: 2 type: Transform - - uid: 5212 + - uid: 5215 components: - pos: -36.5,18.5 parent: 2 type: Transform - - uid: 5213 + - uid: 5216 components: - pos: -37.5,18.5 parent: 2 type: Transform - - uid: 5214 + - uid: 5217 components: - pos: -38.5,18.5 parent: 2 type: Transform - - uid: 5215 + - uid: 5218 components: - pos: -39.5,18.5 parent: 2 type: Transform - - uid: 5216 + - uid: 5219 components: - pos: -40.5,18.5 parent: 2 type: Transform - - uid: 5217 + - uid: 5220 components: - pos: -41.5,18.5 parent: 2 type: Transform - - uid: 5218 + - uid: 5221 components: - pos: -42.5,18.5 parent: 2 type: Transform - - uid: 5219 + - uid: 5222 components: - pos: -43.5,18.5 parent: 2 type: Transform - - uid: 5220 + - uid: 5223 components: - pos: -44.5,18.5 parent: 2 type: Transform - - uid: 5221 + - uid: 5224 components: - pos: -45.5,18.5 parent: 2 type: Transform - - uid: 5222 + - uid: 5225 components: - pos: -46.5,18.5 parent: 2 type: Transform - - uid: 5223 + - uid: 5226 components: - pos: -47.5,18.5 parent: 2 type: Transform - - uid: 5224 + - uid: 5227 components: - pos: -37.5,19.5 parent: 2 type: Transform - - uid: 5225 + - uid: 5228 components: - pos: -37.5,20.5 parent: 2 type: Transform - - uid: 5226 + - uid: 5229 components: - pos: -37.5,21.5 parent: 2 type: Transform - - uid: 5227 + - uid: 5230 components: - pos: -36.5,21.5 parent: 2 type: Transform - - uid: 5228 + - uid: 5231 components: - pos: -36.5,22.5 parent: 2 type: Transform - - uid: 5229 + - uid: 5232 components: - pos: -47.5,19.5 parent: 2 type: Transform - - uid: 5230 + - uid: 5233 components: - pos: -48.5,19.5 parent: 2 type: Transform - - uid: 5231 + - uid: 5234 components: - pos: -49.5,19.5 parent: 2 type: Transform - - uid: 5232 + - uid: 5235 components: - pos: -50.5,19.5 parent: 2 type: Transform - - uid: 5233 + - uid: 5236 components: - pos: -46.5,23.5 parent: 2 type: Transform - - uid: 5234 + - uid: 5237 components: - pos: -46.5,24.5 parent: 2 type: Transform - - uid: 5235 + - uid: 5238 components: - pos: -46.5,25.5 parent: 2 type: Transform - - uid: 5236 + - uid: 5239 components: - pos: -46.5,26.5 parent: 2 type: Transform - - uid: 5237 + - uid: 5240 components: - pos: -43.5,19.5 parent: 2 type: Transform - - uid: 5238 + - uid: 5241 components: - pos: -41.5,19.5 parent: 2 type: Transform - - uid: 5239 + - uid: 5242 components: - pos: -31.5,25.5 parent: 2 type: Transform - - uid: 5240 + - uid: 5243 components: - pos: -30.5,25.5 parent: 2 type: Transform - - uid: 5241 + - uid: 5244 components: - pos: -29.5,25.5 parent: 2 type: Transform - - uid: 5242 + - uid: 5245 components: - pos: -28.5,25.5 parent: 2 type: Transform - - uid: 5243 + - uid: 5246 components: - pos: -27.5,25.5 parent: 2 type: Transform - - uid: 5244 + - uid: 5247 components: - pos: -25.5,20.5 parent: 2 type: Transform - - uid: 5245 + - uid: 5248 components: - pos: -25.5,19.5 parent: 2 type: Transform - - uid: 5246 + - uid: 5249 components: - pos: -25.5,18.5 parent: 2 type: Transform - - uid: 5247 + - uid: 5250 components: - pos: -26.5,18.5 parent: 2 type: Transform - - uid: 5248 + - uid: 5251 components: - pos: -27.5,18.5 parent: 2 type: Transform - - uid: 5249 + - uid: 5252 components: - pos: -29.5,18.5 parent: 2 type: Transform - - uid: 5250 + - uid: 5253 components: - pos: -28.5,18.5 parent: 2 type: Transform - - uid: 5251 + - uid: 5254 components: - pos: -18.5,22.5 parent: 2 type: Transform - - uid: 5252 + - uid: 5255 components: - pos: -18.5,23.5 parent: 2 type: Transform - - uid: 5253 + - uid: 5256 components: - pos: -24.5,18.5 parent: 2 type: Transform - - uid: 5254 + - uid: 5257 components: - pos: -41.5,27.5 parent: 2 type: Transform - - uid: 5255 + - uid: 5258 components: - pos: -51.5,22.5 parent: 2 type: Transform - - uid: 5256 + - uid: 5259 components: - pos: -52.5,22.5 parent: 2 type: Transform - - uid: 5257 + - uid: 5260 components: - pos: -52.5,21.5 parent: 2 type: Transform - - uid: 5258 + - uid: 5261 components: - pos: -52.5,-27.5 parent: 2 type: Transform - - uid: 5259 + - uid: 5262 components: - pos: -46.5,27.5 parent: 2 type: Transform - - uid: 5260 + - uid: 5263 components: - pos: -46.5,28.5 parent: 2 type: Transform - - uid: 5261 + - uid: 5264 components: - pos: -46.5,29.5 parent: 2 type: Transform - - uid: 5262 + - uid: 5265 components: - pos: -46.5,30.5 parent: 2 type: Transform - - uid: 5263 + - uid: 5266 components: - pos: -46.5,31.5 parent: 2 type: Transform - - uid: 5264 + - uid: 5267 components: - pos: -46.5,32.5 parent: 2 type: Transform - - uid: 5265 + - uid: 5268 components: - pos: -46.5,33.5 parent: 2 type: Transform - - uid: 5266 + - uid: 5269 components: - pos: -47.5,33.5 parent: 2 type: Transform - - uid: 5267 + - uid: 5270 components: - pos: -48.5,33.5 parent: 2 type: Transform - - uid: 5268 + - uid: 5271 components: - pos: -49.5,33.5 parent: 2 type: Transform - - uid: 5269 + - uid: 5272 components: - pos: -50.5,33.5 parent: 2 type: Transform - - uid: 5270 + - uid: 5273 components: - pos: -51.5,33.5 parent: 2 type: Transform - - uid: 5271 + - uid: 5274 components: - pos: -47.5,31.5 parent: 2 type: Transform - - uid: 5272 + - uid: 5275 components: - pos: -48.5,31.5 parent: 2 type: Transform - - uid: 5273 + - uid: 5276 components: - pos: -49.5,31.5 parent: 2 type: Transform - - uid: 5274 + - uid: 5277 components: - pos: -50.5,31.5 parent: 2 type: Transform - - uid: 5275 + - uid: 5278 components: - pos: -51.5,31.5 parent: 2 type: Transform - - uid: 5276 + - uid: 5279 components: - pos: -45.5,30.5 parent: 2 type: Transform - - uid: 5277 + - uid: 5280 components: - pos: -44.5,30.5 parent: 2 type: Transform - - uid: 5278 + - uid: 5281 components: - pos: -43.5,30.5 parent: 2 type: Transform - - uid: 5279 + - uid: 5282 components: - pos: -42.5,30.5 parent: 2 type: Transform - - uid: 5280 + - uid: 5283 components: - pos: -41.5,30.5 parent: 2 type: Transform - - uid: 5281 + - uid: 5284 components: - pos: -40.5,30.5 parent: 2 type: Transform - - uid: 5282 + - uid: 5285 components: - pos: -40.5,31.5 parent: 2 type: Transform - - uid: 5283 + - uid: 5286 components: - pos: -39.5,31.5 parent: 2 type: Transform - - uid: 5284 + - uid: 5287 components: - pos: -38.5,31.5 parent: 2 type: Transform - - uid: 5285 + - uid: 5288 components: - pos: -37.5,31.5 parent: 2 type: Transform - - uid: 5286 + - uid: 5289 components: - pos: -36.5,31.5 parent: 2 type: Transform - - uid: 5287 + - uid: 5290 components: - pos: -37.5,30.5 parent: 2 type: Transform - - uid: 5288 + - uid: 5291 components: - pos: -37.5,29.5 parent: 2 type: Transform - - uid: 5289 + - uid: 5292 components: - pos: -44.5,31.5 parent: 2 type: Transform - - uid: 5290 + - uid: 5293 components: - pos: -44.5,32.5 parent: 2 type: Transform - - uid: 5291 + - uid: 5294 components: - pos: -44.5,33.5 parent: 2 type: Transform - - uid: 5292 + - uid: 5295 components: - pos: -44.5,34.5 parent: 2 type: Transform - - uid: 5293 + - uid: 5296 components: - pos: -42.5,29.5 parent: 2 type: Transform - - uid: 5294 + - uid: 5297 components: - pos: -42.5,28.5 parent: 2 type: Transform - - uid: 5295 + - uid: 5298 components: - pos: -43.5,33.5 parent: 2 type: Transform - - uid: 5296 + - uid: 5299 components: - pos: -44.5,35.5 parent: 2 type: Transform - - uid: 5297 + - uid: 5300 components: - pos: -45.5,35.5 parent: 2 type: Transform - - uid: 5298 + - uid: 5301 components: - pos: -46.5,35.5 parent: 2 type: Transform - - uid: 5299 + - uid: 5302 components: - pos: -47.5,35.5 parent: 2 type: Transform - - uid: 5300 + - uid: 5303 components: - pos: -23.5,17.5 parent: 2 type: Transform - - uid: 5301 + - uid: 5304 components: - pos: -24.5,8.5 parent: 2 type: Transform - - uid: 5302 + - uid: 5305 components: - pos: -24.5,9.5 parent: 2 type: Transform - - uid: 5303 + - uid: 5306 components: - pos: -24.5,10.5 parent: 2 type: Transform - - uid: 5304 + - uid: 5307 components: - pos: -25.5,10.5 parent: 2 type: Transform - - uid: 5305 + - uid: 5308 components: - pos: -25.5,11.5 parent: 2 type: Transform - - uid: 5306 + - uid: 5309 components: - pos: -25.5,12.5 parent: 2 type: Transform - - uid: 5307 + - uid: 5310 components: - pos: -25.5,13.5 parent: 2 type: Transform - - uid: 5308 + - uid: 5311 components: - pos: -25.5,14.5 parent: 2 type: Transform - - uid: 5309 + - uid: 5312 components: - pos: -24.5,13.5 parent: 2 type: Transform - - uid: 5310 + - uid: 5313 components: - pos: -23.5,13.5 parent: 2 type: Transform - - uid: 5311 + - uid: 5314 components: - pos: -26.5,12.5 parent: 2 type: Transform - - uid: 5312 + - uid: 5315 components: - pos: -27.5,12.5 parent: 2 type: Transform - - uid: 5313 + - uid: 5316 components: - pos: -42.5,15.5 parent: 2 type: Transform - - uid: 5314 + - uid: 5317 components: - pos: -42.5,2.5 parent: 2 type: Transform - - uid: 5315 + - uid: 5318 components: - pos: -42.5,1.5 parent: 2 type: Transform - - uid: 5316 + - uid: 5319 components: - pos: -41.5,1.5 parent: 2 type: Transform - - uid: 5317 + - uid: 5320 components: - pos: -40.5,1.5 parent: 2 type: Transform - - uid: 5318 + - uid: 5321 components: - pos: -39.5,1.5 parent: 2 type: Transform - - uid: 5319 + - uid: 5322 components: - pos: -38.5,1.5 parent: 2 type: Transform - - uid: 5320 + - uid: 5323 components: - pos: -37.5,1.5 parent: 2 type: Transform - - uid: 5321 + - uid: 5324 components: - pos: -37.5,2.5 parent: 2 type: Transform - - uid: 5322 + - uid: 5325 components: - pos: -37.5,3.5 parent: 2 type: Transform - - uid: 5323 + - uid: 5326 components: - pos: -37.5,4.5 parent: 2 type: Transform - - uid: 5324 + - uid: 5327 components: - pos: -37.5,5.5 parent: 2 type: Transform - - uid: 5325 + - uid: 5328 components: - pos: -37.5,6.5 parent: 2 type: Transform - - uid: 5326 + - uid: 5329 components: - pos: -37.5,7.5 parent: 2 type: Transform - - uid: 5327 + - uid: 5330 components: - pos: -37.5,8.5 parent: 2 type: Transform - - uid: 5328 + - uid: 5331 components: - pos: -37.5,9.5 parent: 2 type: Transform - - uid: 5329 + - uid: 5332 components: - pos: -37.5,10.5 parent: 2 type: Transform - - uid: 5330 + - uid: 5333 components: - pos: -37.5,11.5 parent: 2 type: Transform - - uid: 5331 + - uid: 5334 components: - pos: -37.5,12.5 parent: 2 type: Transform - - uid: 5332 + - uid: 5335 components: - pos: -37.5,13.5 parent: 2 type: Transform - - uid: 5333 + - uid: 5336 components: - pos: -38.5,13.5 parent: 2 type: Transform - - uid: 5334 + - uid: 5337 components: - pos: -39.5,13.5 parent: 2 type: Transform - - uid: 5335 + - uid: 5338 components: - pos: -42.5,13.5 parent: 2 type: Transform - - uid: 5336 + - uid: 5339 components: - pos: -42.5,14.5 parent: 2 type: Transform - - uid: 5337 + - uid: 5340 components: - pos: -39.5,14.5 parent: 2 type: Transform - - uid: 5338 + - uid: 5341 components: - pos: -39.5,15.5 parent: 2 type: Transform - - uid: 5339 + - uid: 5342 components: - pos: -36.5,13.5 parent: 2 type: Transform - - uid: 5340 + - uid: 5343 components: - pos: -35.5,13.5 parent: 2 type: Transform - - uid: 5341 + - uid: 5344 components: - pos: -34.5,13.5 parent: 2 type: Transform - - uid: 5342 + - uid: 5345 components: - pos: -33.5,13.5 parent: 2 type: Transform - - uid: 5343 + - uid: 5346 components: - pos: -35.5,14.5 parent: 2 type: Transform - - uid: 5344 + - uid: 5347 components: - pos: -35.5,15.5 parent: 2 type: Transform - - uid: 5345 + - uid: 5348 components: - pos: -33.5,14.5 parent: 2 type: Transform - - uid: 5346 + - uid: 5349 components: - pos: -32.5,14.5 parent: 2 type: Transform - - uid: 5347 + - uid: 5350 components: - pos: -31.5,14.5 parent: 2 type: Transform - - uid: 5348 + - uid: 5351 components: - pos: -30.5,14.5 parent: 2 type: Transform - - uid: 5349 + - uid: 5352 components: - pos: -30.5,13.5 parent: 2 type: Transform - - uid: 5350 + - uid: 5353 components: - pos: -30.5,12.5 parent: 2 type: Transform - - uid: 5351 + - uid: 5354 components: - pos: -30.5,11.5 parent: 2 type: Transform - - uid: 5352 + - uid: 5355 components: - pos: -30.5,10.5 parent: 2 type: Transform - - uid: 5353 + - uid: 5356 components: - pos: -30.5,9.5 parent: 2 type: Transform - - uid: 5354 + - uid: 5357 components: - pos: -30.5,8.5 parent: 2 type: Transform - - uid: 5355 + - uid: 5358 components: - pos: -31.5,10.5 parent: 2 type: Transform - - uid: 5356 + - uid: 5359 components: - pos: -32.5,10.5 parent: 2 type: Transform - - uid: 5357 + - uid: 5360 components: - pos: -33.5,10.5 parent: 2 type: Transform - - uid: 5358 + - uid: 5361 components: - pos: -29.5,9.5 parent: 2 type: Transform - - uid: 5359 + - uid: 5362 components: - pos: -28.5,9.5 parent: 2 type: Transform - - uid: 5360 + - uid: 5363 components: - pos: -30.5,7.5 parent: 2 type: Transform - - uid: 5361 + - uid: 5364 components: - pos: -37.5,0.5 parent: 2 type: Transform - - uid: 5362 + - uid: 5365 components: - pos: -37.5,-0.5 parent: 2 type: Transform - - uid: 5363 + - uid: 5366 components: - pos: -37.5,-1.5 parent: 2 type: Transform - - uid: 5364 + - uid: 5367 components: - pos: -37.5,-2.5 parent: 2 type: Transform - - uid: 5365 + - uid: 5368 components: - pos: -38.5,-2.5 parent: 2 type: Transform - - uid: 5366 + - uid: 5369 components: - pos: -39.5,-2.5 parent: 2 type: Transform - - uid: 5367 + - uid: 5370 components: - pos: -40.5,-2.5 parent: 2 type: Transform - - uid: 5368 + - uid: 5371 components: - pos: -41.5,-2.5 parent: 2 type: Transform - - uid: 5369 + - uid: 5372 components: - pos: -42.5,-2.5 parent: 2 type: Transform - - uid: 5370 + - uid: 5373 components: - pos: -42.5,-3.5 parent: 2 type: Transform - - uid: 5371 + - uid: 5374 components: - pos: -43.5,-3.5 parent: 2 type: Transform - - uid: 5372 + - uid: 5375 components: - pos: -44.5,-3.5 parent: 2 type: Transform - - uid: 5373 + - uid: 5376 components: - pos: -45.5,-3.5 parent: 2 type: Transform - - uid: 5374 + - uid: 5377 components: - pos: 55.5,12.5 parent: 2 type: Transform - - uid: 5375 + - uid: 5378 components: - pos: -36.5,-0.5 parent: 2 type: Transform - - uid: 5376 + - uid: 5379 components: - pos: -35.5,-0.5 parent: 2 type: Transform - - uid: 5377 + - uid: 5380 components: - pos: -34.5,-0.5 parent: 2 type: Transform - - uid: 5378 + - uid: 5381 components: - pos: -33.5,-0.5 parent: 2 type: Transform - - uid: 5379 + - uid: 5382 components: - pos: -32.5,-0.5 parent: 2 type: Transform - - uid: 5380 + - uid: 5383 components: - pos: -31.5,-0.5 parent: 2 type: Transform - - uid: 5381 + - uid: 5384 components: - pos: -30.5,-0.5 parent: 2 type: Transform - - uid: 5382 + - uid: 5385 components: - pos: -29.5,-0.5 parent: 2 type: Transform - - uid: 5383 + - uid: 5386 components: - pos: -29.5,-1.5 parent: 2 type: Transform - - uid: 5384 + - uid: 5387 components: - pos: -29.5,-2.5 parent: 2 type: Transform - - uid: 5385 + - uid: 5388 components: - pos: -29.5,-3.5 parent: 2 type: Transform - - uid: 5386 + - uid: 5389 components: - pos: -28.5,-3.5 parent: 2 type: Transform - - uid: 5387 + - uid: 5390 components: - pos: -28.5,-4.5 parent: 2 type: Transform - - uid: 5388 + - uid: 5391 components: - pos: -28.5,-4.5 parent: 2 type: Transform - - uid: 5389 + - uid: 5392 components: - pos: -28.5,-5.5 parent: 2 type: Transform - - uid: 5390 + - uid: 5393 components: - pos: -30.5,0.5 parent: 2 type: Transform - - uid: 5391 + - uid: 5394 components: - pos: -30.5,1.5 parent: 2 type: Transform - - uid: 5392 + - uid: 5395 components: - pos: -23.5,18.5 parent: 2 type: Transform - - uid: 5393 + - uid: 5396 components: - pos: -41.5,26.5 parent: 2 type: Transform - - uid: 5394 + - uid: 5397 components: - pos: -2.5,24.5 parent: 2 type: Transform - - uid: 5395 + - uid: 5398 components: - pos: -2.5,23.5 parent: 2 type: Transform - - uid: 5396 + - uid: 5399 components: - pos: -3.5,23.5 parent: 2 type: Transform - - uid: 5397 + - uid: 5400 components: - pos: -3.5,22.5 parent: 2 type: Transform - - uid: 5398 + - uid: 5401 components: - pos: -4.5,22.5 parent: 2 type: Transform - - uid: 5399 + - uid: 5402 components: - pos: -5.5,22.5 parent: 2 type: Transform - - uid: 5400 + - uid: 5403 components: - pos: 65.5,-8.5 parent: 2 type: Transform - - uid: 5401 + - uid: 5404 components: - pos: 65.5,-0.5 parent: 2 type: Transform - - uid: 5402 + - uid: 5405 components: - pos: 65.5,-1.5 parent: 2 type: Transform - - uid: 5403 + - uid: 5406 components: - pos: 68.5,-3.5 parent: 2 type: Transform - - uid: 5404 + - uid: 5407 components: - pos: 65.5,-12.5 parent: 2 type: Transform - - uid: 5405 + - uid: 5408 components: - pos: 65.5,-10.5 parent: 2 type: Transform - - uid: 5406 + - uid: 5409 components: - pos: -42.5,0.5 parent: 2 type: Transform - - uid: 5407 + - uid: 5410 components: - pos: -43.5,0.5 parent: 2 type: Transform - - uid: 5408 + - uid: 5411 components: - pos: -44.5,0.5 parent: 2 type: Transform - - uid: 5409 + - uid: 5412 components: - pos: -45.5,0.5 parent: 2 type: Transform - - uid: 5410 + - uid: 5413 components: - pos: -46.5,0.5 parent: 2 type: Transform - - uid: 5411 + - uid: 5414 components: - pos: -46.5,1.5 parent: 2 type: Transform - - uid: 5412 + - uid: 5415 components: - pos: -46.5,2.5 parent: 2 type: Transform - - uid: 5413 + - uid: 5416 components: - pos: -46.5,3.5 parent: 2 type: Transform - - uid: 5414 + - uid: 5417 components: - pos: -46.5,4.5 parent: 2 type: Transform - - uid: 5415 + - uid: 5418 components: - pos: -46.5,5.5 parent: 2 type: Transform - - uid: 5416 + - uid: 5419 components: - pos: -46.5,6.5 parent: 2 type: Transform - - uid: 5417 + - uid: 5420 components: - pos: -46.5,7.5 parent: 2 type: Transform - - uid: 5418 + - uid: 5421 components: - pos: -46.5,8.5 parent: 2 type: Transform - - uid: 5419 + - uid: 5422 components: - pos: -45.5,5.5 parent: 2 type: Transform - - uid: 5420 + - uid: 5423 components: - pos: -44.5,5.5 parent: 2 type: Transform - - uid: 5421 + - uid: 5424 components: - pos: -45.5,3.5 parent: 2 type: Transform - - uid: 5422 + - uid: 5425 components: - pos: -44.5,3.5 parent: 2 type: Transform - - uid: 5423 + - uid: 5426 components: - pos: -47.5,7.5 parent: 2 type: Transform - - uid: 5424 + - uid: 5427 components: - pos: -48.5,7.5 parent: 2 type: Transform - - uid: 5425 + - uid: 5428 components: - pos: -46.5,9.5 parent: 2 type: Transform - - uid: 5426 + - uid: 5429 components: - pos: -46.5,10.5 parent: 2 type: Transform - - uid: 5427 + - uid: 5430 components: - pos: -46.5,11.5 parent: 2 type: Transform - - uid: 5428 + - uid: 5431 components: - pos: -47.5,11.5 parent: 2 type: Transform - - uid: 5429 + - uid: 5432 components: - pos: -48.5,11.5 parent: 2 type: Transform - - uid: 5430 + - uid: 5433 components: - pos: -49.5,11.5 parent: 2 type: Transform - - uid: 5431 + - uid: 5434 components: - pos: -50.5,11.5 parent: 2 type: Transform - - uid: 5432 + - uid: 5435 components: - pos: -51.5,11.5 parent: 2 type: Transform - - uid: 5433 + - uid: 5436 components: - pos: -51.5,10.5 parent: 2 type: Transform - - uid: 5434 + - uid: 5437 components: - pos: -52.5,10.5 parent: 2 type: Transform - - uid: 5435 + - uid: 5438 components: - pos: -52.5,9.5 parent: 2 type: Transform - - uid: 5436 + - uid: 5439 components: - pos: -52.5,8.5 parent: 2 type: Transform - - uid: 5437 + - uid: 5440 components: - pos: -52.5,7.5 parent: 2 type: Transform - - uid: 5438 + - uid: 5441 components: - pos: -51.5,12.5 parent: 2 type: Transform - - uid: 5439 + - uid: 5442 components: - pos: -51.5,13.5 parent: 2 type: Transform - - uid: 5440 + - uid: 5443 components: - pos: -51.5,14.5 parent: 2 type: Transform - - uid: 5441 + - uid: 5444 components: - pos: -48.5,12.5 parent: 2 type: Transform - - uid: 5442 + - uid: 5445 components: - pos: -48.5,13.5 parent: 2 type: Transform - - uid: 5443 + - uid: 5446 components: - pos: -48.5,14.5 parent: 2 type: Transform - - uid: 5444 + - uid: 5447 components: - pos: -46.5,12.5 parent: 2 type: Transform - - uid: 5445 + - uid: 5448 components: - pos: -46.5,13.5 parent: 2 type: Transform - - uid: 5446 + - uid: 5449 components: - pos: -46.5,14.5 parent: 2 type: Transform - - uid: 5447 + - uid: 5450 components: - pos: -45.5,11.5 parent: 2 type: Transform - - uid: 5448 + - uid: 5451 components: - pos: -44.5,11.5 parent: 2 type: Transform - - uid: 5449 + - uid: 5452 components: - pos: -43.5,11.5 parent: 2 type: Transform - - uid: 5450 + - uid: 5453 components: - pos: -42.5,11.5 parent: 2 type: Transform - - uid: 5451 + - uid: 5454 components: - pos: -42.5,10.5 parent: 2 type: Transform - - uid: 5452 + - uid: 5455 components: - pos: -47.5,7.5 parent: 2 type: Transform - - uid: 5453 + - uid: 5456 components: - pos: -47.5,0.5 parent: 2 type: Transform - - uid: 5454 + - uid: 5457 components: - pos: -48.5,0.5 parent: 2 type: Transform - - uid: 5455 + - uid: 5458 components: - pos: -49.5,0.5 parent: 2 type: Transform - - uid: 5456 + - uid: 5459 components: - pos: -49.5,-0.5 parent: 2 type: Transform - - uid: 5457 + - uid: 5460 components: - pos: -49.5,-1.5 parent: 2 type: Transform - - uid: 5458 + - uid: 5461 components: - pos: -49.5,-2.5 parent: 2 type: Transform - - uid: 5459 + - uid: 5462 components: - pos: -49.5,-3.5 parent: 2 type: Transform - - uid: 5460 + - uid: 5463 components: - pos: -50.5,-3.5 parent: 2 type: Transform - - uid: 5461 + - uid: 5464 components: - pos: -51.5,-3.5 parent: 2 type: Transform - - uid: 5462 + - uid: 5465 components: - pos: -52.5,-3.5 parent: 2 type: Transform - - uid: 5463 + - uid: 5466 components: - pos: -53.5,-3.5 parent: 2 type: Transform - - uid: 5464 + - uid: 5467 components: - pos: -54.5,-3.5 parent: 2 type: Transform - - uid: 5465 + - uid: 5468 components: - pos: -53.5,-2.5 parent: 2 type: Transform - - uid: 5466 + - uid: 5469 components: - pos: -53.5,-1.5 parent: 2 type: Transform - - uid: 5467 + - uid: 5470 components: - pos: -54.5,-1.5 parent: 2 type: Transform - - uid: 5468 + - uid: 5471 components: - pos: -55.5,-1.5 parent: 2 type: Transform - - uid: 5469 + - uid: 5472 components: - pos: -56.5,-1.5 parent: 2 type: Transform - - uid: 5470 + - uid: 5473 components: - pos: -51.5,-2.5 parent: 2 type: Transform - - uid: 5471 + - uid: 5474 components: - pos: -51.5,-1.5 parent: 2 type: Transform - - uid: 5472 + - uid: 5475 components: - pos: -51.5,-0.5 parent: 2 type: Transform - - uid: 5473 + - uid: 5476 components: - pos: -51.5,0.5 parent: 2 type: Transform - - uid: 5474 + - uid: 5477 components: - pos: -51.5,1.5 parent: 2 type: Transform - - uid: 5475 + - uid: 5478 components: - pos: -51.5,2.5 parent: 2 type: Transform - - uid: 5476 + - uid: 5479 components: - pos: -51.5,3.5 parent: 2 type: Transform - - uid: 5477 + - uid: 5480 components: - pos: -45.5,-2.5 parent: 2 type: Transform - - uid: 5478 + - uid: 5481 components: - pos: -46.5,-2.5 parent: 2 type: Transform - - uid: 5479 + - uid: 5482 components: - pos: -47.5,-2.5 parent: 2 type: Transform - - uid: 5480 + - uid: 5483 components: - pos: 3.5,-64.5 parent: 2 type: Transform - - uid: 5481 + - uid: 5484 components: - pos: 68.5,-5.5 parent: 2 type: Transform - - uid: 5482 - components: - - pos: -19.5,-52.5 - parent: 2 - type: Transform - - uid: 5483 - components: - - pos: -20.5,-52.5 - parent: 2 - type: Transform - - uid: 5484 - components: - - pos: 67.5,-5.5 - parent: 2 - type: Transform - uid: 5485 components: - - pos: 66.5,-5.5 + - pos: -19.5,-52.5 parent: 2 type: Transform - uid: 5486 components: - - pos: 65.5,-6.5 + - pos: -20.5,-52.5 parent: 2 type: Transform - uid: 5487 components: - - pos: 65.5,-7.5 + - pos: 67.5,-5.5 parent: 2 type: Transform - uid: 5488 components: - - pos: 65.5,-9.5 + - pos: 66.5,-5.5 parent: 2 type: Transform - uid: 5489 components: - - pos: 66.5,-3.5 + - pos: 65.5,-6.5 parent: 2 type: Transform - uid: 5490 components: - - pos: 65.5,-2.5 + - pos: 65.5,-7.5 parent: 2 type: Transform - uid: 5491 components: - - pos: 67.5,-3.5 + - pos: 65.5,-9.5 parent: 2 type: Transform - uid: 5492 components: - - pos: -28.5,1.5 + - pos: 66.5,-3.5 parent: 2 type: Transform - uid: 5493 components: - - pos: -27.5,1.5 + - pos: 65.5,-2.5 parent: 2 type: Transform - uid: 5494 components: - - pos: -27.5,0.5 + - pos: 67.5,-3.5 parent: 2 type: Transform - uid: 5495 components: - - pos: 22.5,-46.5 + - pos: -28.5,1.5 parent: 2 type: Transform - uid: 5496 components: - - pos: -11.5,26.5 + - pos: -27.5,1.5 parent: 2 type: Transform - uid: 5497 components: - - pos: -13.5,26.5 + - pos: -27.5,0.5 parent: 2 type: Transform - uid: 5498 components: - - pos: -26.5,0.5 + - pos: 22.5,-46.5 parent: 2 type: Transform - uid: 5499 components: - - pos: -8.5,14.5 + - pos: -11.5,26.5 parent: 2 type: Transform - uid: 5500 components: - - pos: -8.5,15.5 + - pos: -13.5,26.5 parent: 2 type: Transform - uid: 5501 components: - - pos: -1.5,-80.5 + - pos: -26.5,0.5 parent: 2 type: Transform - uid: 5502 components: - - pos: -1.5,-81.5 + - pos: -8.5,14.5 parent: 2 type: Transform - uid: 5503 components: - - pos: -1.5,-82.5 + - pos: -8.5,15.5 parent: 2 type: Transform - uid: 5504 components: - - pos: -74.5,-25.5 + - pos: -1.5,-80.5 parent: 2 type: Transform - uid: 5505 components: - - pos: -56.5,-18.5 + - pos: -1.5,-81.5 parent: 2 type: Transform - uid: 5506 components: - - pos: -23.5,10.5 + - pos: -1.5,-82.5 parent: 2 type: Transform - uid: 5507 components: - - pos: -22.5,10.5 + - pos: -74.5,-25.5 parent: 2 type: Transform - uid: 5508 components: - - pos: -22.5,11.5 + - pos: -56.5,-18.5 parent: 2 type: Transform - uid: 5509 components: - - pos: 41.5,14.5 + - pos: -23.5,10.5 parent: 2 type: Transform - uid: 5510 components: - - pos: 42.5,14.5 + - pos: -22.5,10.5 parent: 2 type: Transform - uid: 5511 components: - - pos: -75.5,-11.5 + - pos: -22.5,11.5 parent: 2 type: Transform - uid: 5512 components: - - pos: -75.5,-10.5 + - pos: 41.5,14.5 parent: 2 type: Transform - uid: 5513 components: - - pos: -75.5,-9.5 + - pos: 42.5,14.5 parent: 2 type: Transform - uid: 5514 components: - - pos: -75.5,-8.5 + - pos: -75.5,-11.5 parent: 2 type: Transform - uid: 5515 components: - - pos: -75.5,-7.5 + - pos: -75.5,-10.5 parent: 2 type: Transform - uid: 5516 components: - - pos: -75.5,-6.5 + - pos: -75.5,-9.5 parent: 2 type: Transform - uid: 5517 components: - - pos: -75.5,-5.5 + - pos: -75.5,-8.5 parent: 2 type: Transform - uid: 5518 components: - - pos: -75.5,-4.5 + - pos: -75.5,-7.5 parent: 2 type: Transform - uid: 5519 components: - - pos: -74.5,-4.5 + - pos: -75.5,-6.5 parent: 2 type: Transform - uid: 5520 components: - - pos: -73.5,-4.5 + - pos: -75.5,-5.5 parent: 2 type: Transform - uid: 5521 components: - - pos: -72.5,-4.5 + - pos: -75.5,-4.5 parent: 2 type: Transform - uid: 5522 components: - - pos: -71.5,-4.5 + - pos: -74.5,-4.5 parent: 2 type: Transform - uid: 5523 components: - - pos: -70.5,-4.5 + - pos: -73.5,-4.5 parent: 2 type: Transform - uid: 5524 components: - - pos: -69.5,-4.5 + - pos: -72.5,-4.5 parent: 2 type: Transform - uid: 5525 components: - - pos: -68.5,-4.5 + - pos: -71.5,-4.5 parent: 2 type: Transform - uid: 5526 components: - - pos: -67.5,-4.5 + - pos: -70.5,-4.5 parent: 2 type: Transform - uid: 5527 components: - - pos: -66.5,-4.5 + - pos: -69.5,-4.5 parent: 2 type: Transform - uid: 5528 components: - - pos: -65.5,-4.5 + - pos: -68.5,-4.5 parent: 2 type: Transform - uid: 5529 components: - - pos: -64.5,-4.5 + - pos: -67.5,-4.5 parent: 2 type: Transform - uid: 5530 components: - - pos: -47.5,39.5 + - pos: -66.5,-4.5 parent: 2 type: Transform - uid: 5531 components: - - pos: -47.5,40.5 + - pos: -65.5,-4.5 parent: 2 type: Transform - uid: 5532 components: - - pos: -47.5,41.5 + - pos: -64.5,-4.5 parent: 2 type: Transform - uid: 5533 components: - - pos: -46.5,41.5 + - pos: -47.5,39.5 parent: 2 type: Transform - uid: 5534 components: - - pos: -45.5,41.5 + - pos: -47.5,40.5 parent: 2 type: Transform - uid: 5535 components: - - pos: -45.5,42.5 + - pos: -47.5,41.5 parent: 2 type: Transform - uid: 5536 components: - - pos: -45.5,46.5 + - pos: -46.5,41.5 parent: 2 type: Transform - uid: 5537 components: - - pos: -45.5,47.5 + - pos: -45.5,41.5 parent: 2 type: Transform - uid: 5538 components: - - pos: -45.5,48.5 + - pos: -45.5,42.5 parent: 2 type: Transform - uid: 5539 components: - - pos: -45.5,49.5 + - pos: -45.5,46.5 parent: 2 type: Transform - uid: 5540 components: - - pos: -46.5,49.5 + - pos: -45.5,47.5 parent: 2 type: Transform - uid: 5541 components: - - pos: -46.5,50.5 + - pos: -45.5,48.5 parent: 2 type: Transform - uid: 5542 components: - - pos: -46.5,51.5 + - pos: -45.5,49.5 parent: 2 type: Transform - uid: 5543 components: - - pos: -46.5,52.5 + - pos: -46.5,49.5 parent: 2 type: Transform - uid: 5544 components: - - pos: -46.5,53.5 + - pos: -46.5,50.5 parent: 2 type: Transform - uid: 5545 components: - - pos: -45.5,53.5 + - pos: -46.5,51.5 parent: 2 type: Transform - uid: 5546 components: - - pos: -44.5,53.5 + - pos: -46.5,52.5 parent: 2 type: Transform - uid: 5547 components: - - pos: -43.5,53.5 + - pos: -46.5,53.5 parent: 2 type: Transform - uid: 5548 components: - - pos: -42.5,53.5 + - pos: -45.5,53.5 parent: 2 type: Transform - uid: 5549 components: - - pos: -41.5,53.5 + - pos: -44.5,53.5 parent: 2 type: Transform - uid: 5550 components: - - pos: -40.5,53.5 + - pos: -43.5,53.5 parent: 2 type: Transform - uid: 5551 components: - - pos: -39.5,53.5 + - pos: -42.5,53.5 parent: 2 type: Transform - uid: 5552 components: - - pos: -38.5,53.5 + - pos: -41.5,53.5 parent: 2 type: Transform - uid: 5553 components: - - pos: -37.5,53.5 + - pos: -40.5,53.5 parent: 2 type: Transform - uid: 5554 components: - - pos: -47.5,53.5 + - pos: -39.5,53.5 parent: 2 type: Transform - uid: 5555 components: - - pos: -48.5,53.5 + - pos: -38.5,53.5 parent: 2 type: Transform - uid: 5556 components: - - pos: -49.5,53.5 + - pos: -37.5,53.5 parent: 2 type: Transform - uid: 5557 components: - - pos: -50.5,53.5 + - pos: -47.5,53.5 parent: 2 type: Transform - uid: 5558 components: - - pos: -51.5,53.5 + - pos: -48.5,53.5 parent: 2 type: Transform - uid: 5559 components: - - pos: -52.5,53.5 + - pos: -49.5,53.5 parent: 2 type: Transform - uid: 5560 components: - - pos: 10.5,-65.5 + - pos: -50.5,53.5 parent: 2 type: Transform - uid: 5561 components: - - pos: 11.5,-65.5 + - pos: -51.5,53.5 parent: 2 type: Transform - uid: 5562 components: - - pos: 12.5,-65.5 + - pos: -52.5,53.5 parent: 2 type: Transform - uid: 5563 components: - - pos: 13.5,-65.5 + - pos: 10.5,-65.5 parent: 2 type: Transform - uid: 5564 components: - - pos: 14.5,-65.5 + - pos: 11.5,-65.5 parent: 2 type: Transform - uid: 5565 components: - - pos: 26.5,31.5 + - pos: 12.5,-65.5 parent: 2 type: Transform - uid: 5566 components: - - pos: 25.5,31.5 + - pos: 13.5,-65.5 parent: 2 type: Transform - uid: 5567 components: - - pos: 24.5,31.5 + - pos: 14.5,-65.5 parent: 2 type: Transform - uid: 5568 components: - - pos: 24.5,32.5 + - pos: 26.5,31.5 parent: 2 type: Transform - uid: 5569 components: - - pos: 24.5,33.5 + - pos: 25.5,31.5 parent: 2 type: Transform - uid: 5570 components: - - pos: 24.5,34.5 + - pos: 24.5,31.5 parent: 2 type: Transform - uid: 5571 components: - - pos: 54.5,28.5 + - pos: 24.5,32.5 parent: 2 type: Transform - uid: 5572 components: - - pos: 53.5,28.5 + - pos: 24.5,33.5 parent: 2 type: Transform - uid: 5573 components: - - pos: -62.5,-30.5 + - pos: 24.5,34.5 parent: 2 type: Transform - uid: 5574 components: - - pos: -61.5,-30.5 + - pos: 54.5,28.5 parent: 2 type: Transform - uid: 5575 components: - - pos: -60.5,-30.5 + - pos: 53.5,28.5 parent: 2 type: Transform - uid: 5576 components: - - pos: -40.5,-41.5 + - pos: -62.5,-30.5 parent: 2 type: Transform - uid: 5577 components: - - pos: 48.5,-46.5 + - pos: -61.5,-30.5 parent: 2 type: Transform - uid: 5578 components: - - pos: 48.5,-48.5 + - pos: -60.5,-30.5 parent: 2 type: Transform - uid: 5579 components: - - pos: 28.5,-5.5 + - pos: -40.5,-41.5 parent: 2 type: Transform - uid: 5580 components: - - pos: -24.5,-13.5 + - pos: 48.5,-46.5 parent: 2 type: Transform - uid: 5581 components: - - pos: 65.5,-43.5 + - pos: 48.5,-48.5 parent: 2 type: Transform - uid: 5582 components: - - pos: -52.5,-73.5 + - pos: 28.5,-5.5 parent: 2 type: Transform - uid: 5583 components: - - pos: -51.5,-73.5 + - pos: -24.5,-13.5 parent: 2 type: Transform - uid: 5584 components: - - pos: -51.5,-74.5 + - pos: 65.5,-43.5 parent: 2 type: Transform - uid: 5585 components: - - pos: -46.5,-75.5 + - pos: -52.5,-73.5 parent: 2 type: Transform - uid: 5586 components: - - pos: 59.5,-32.5 + - pos: -51.5,-73.5 parent: 2 type: Transform - uid: 5587 components: - - pos: 52.5,-13.5 + - pos: -51.5,-74.5 parent: 2 type: Transform - uid: 5588 components: - - pos: 52.5,-14.5 + - pos: -46.5,-75.5 parent: 2 type: Transform - uid: 5589 components: - - pos: 52.5,-15.5 + - pos: 59.5,-32.5 parent: 2 type: Transform - uid: 5590 components: - - pos: 65.5,-11.5 + - pos: 52.5,-13.5 parent: 2 type: Transform - uid: 5591 components: - - pos: 65.5,-13.5 + - pos: 52.5,-14.5 parent: 2 type: Transform - uid: 5592 components: - - pos: 65.5,-5.5 + - pos: 52.5,-15.5 parent: 2 type: Transform - uid: 5593 components: - - pos: 65.5,-3.5 + - pos: 65.5,-11.5 parent: 2 type: Transform - uid: 5594 components: - - pos: 11.5,-5.5 + - pos: 65.5,-13.5 parent: 2 type: Transform - uid: 5595 components: - - pos: 10.5,-0.5 + - pos: 65.5,-5.5 parent: 2 type: Transform - uid: 5596 components: - - pos: 9.5,-0.5 + - pos: 65.5,-3.5 parent: 2 type: Transform - uid: 5597 components: - - pos: 9.5,-1.5 + - pos: 11.5,-5.5 parent: 2 type: Transform - uid: 5598 components: - - pos: 10.5,-5.5 + - pos: 10.5,-0.5 parent: 2 type: Transform - uid: 5599 components: - - pos: 9.5,-5.5 + - pos: 9.5,-0.5 parent: 2 type: Transform - uid: 5600 components: - - pos: 17.5,-43.5 + - pos: 9.5,-1.5 parent: 2 type: Transform - uid: 5601 components: - - pos: 18.5,-43.5 + - pos: 10.5,-5.5 parent: 2 type: Transform - uid: 5602 components: - - pos: 16.5,-43.5 + - pos: 9.5,-5.5 parent: 2 type: Transform - uid: 5603 components: - - pos: 11.5,-41.5 + - pos: 17.5,-43.5 parent: 2 type: Transform - uid: 5604 components: - - pos: 33.5,-42.5 + - pos: 18.5,-43.5 parent: 2 type: Transform - uid: 5605 components: - - pos: 34.5,-21.5 + - pos: 16.5,-43.5 parent: 2 type: Transform - uid: 5606 components: - - pos: 32.5,-42.5 + - pos: 11.5,-41.5 parent: 2 type: Transform - uid: 5607 components: - - pos: 34.5,-24.5 + - pos: 33.5,-42.5 parent: 2 type: Transform - uid: 5608 components: - - pos: 34.5,-23.5 + - pos: 34.5,-21.5 parent: 2 type: Transform - uid: 5609 components: - - pos: 34.5,-22.5 + - pos: 32.5,-42.5 parent: 2 type: Transform - uid: 5610 components: - - pos: -7.5,5.5 + - pos: 34.5,-24.5 parent: 2 type: Transform - uid: 5611 components: - - pos: 1.5,5.5 + - pos: 34.5,-23.5 parent: 2 type: Transform - uid: 5612 components: - - pos: 11.5,-25.5 + - pos: 34.5,-22.5 parent: 2 type: Transform - uid: 5613 components: - - pos: 2.5,5.5 + - pos: -7.5,5.5 parent: 2 type: Transform - uid: 5614 components: - - pos: -6.5,5.5 + - pos: 1.5,5.5 parent: 2 type: Transform - uid: 5615 components: - - pos: 3.5,5.5 + - pos: 11.5,-25.5 parent: 2 type: Transform - uid: 5616 components: - - pos: -4.5,5.5 + - pos: 2.5,5.5 parent: 2 type: Transform - uid: 5617 components: - - pos: -3.5,3.5 + - pos: -6.5,5.5 parent: 2 type: Transform - uid: 5618 components: - - pos: -5.5,5.5 + - pos: 3.5,5.5 parent: 2 type: Transform - uid: 5619 components: - - pos: -4.5,3.5 + - pos: -4.5,5.5 parent: 2 type: Transform - uid: 5620 components: - - pos: -18.5,4.5 + - pos: -3.5,3.5 parent: 2 type: Transform - uid: 5621 components: - - pos: -5.5,3.5 + - pos: -5.5,5.5 parent: 2 type: Transform - uid: 5622 components: - - pos: -20.5,4.5 + - pos: -4.5,3.5 parent: 2 type: Transform - uid: 5623 components: - - pos: -17.5,4.5 + - pos: -18.5,4.5 parent: 2 type: Transform - uid: 5624 components: - - pos: -19.5,4.5 + - pos: -5.5,3.5 parent: 2 type: Transform - uid: 5625 components: - - pos: -21.5,4.5 + - pos: -20.5,4.5 parent: 2 type: Transform - uid: 5626 components: - - pos: -44.5,8.5 + - pos: -17.5,4.5 parent: 2 type: Transform - uid: 5627 components: - - pos: -44.5,4.5 + - pos: -19.5,4.5 parent: 2 type: Transform - uid: 5628 components: - - pos: -45.5,8.5 + - pos: -21.5,4.5 parent: 2 type: Transform - uid: 5629 components: - - pos: -44.5,6.5 + - pos: -44.5,8.5 parent: 2 type: Transform - uid: 5630 components: - - pos: -44.5,7.5 + - pos: -44.5,4.5 parent: 2 type: Transform - uid: 5631 components: - - pos: -22.5,-9.5 + - pos: -45.5,8.5 parent: 2 type: Transform - uid: 5632 components: - - pos: -48.5,10.5 + - pos: -44.5,6.5 parent: 2 type: Transform - uid: 5633 components: - - pos: -22.5,-10.5 + - pos: -44.5,7.5 parent: 2 type: Transform - uid: 5634 components: - - pos: -50.5,10.5 + - pos: -22.5,-9.5 parent: 2 type: Transform - uid: 5635 components: - - pos: -49.5,10.5 + - pos: -48.5,10.5 parent: 2 type: Transform - uid: 5636 components: - - pos: -22.5,-11.5 + - pos: -22.5,-10.5 parent: 2 type: Transform - uid: 5637 components: - - pos: -2.5,-47.5 + - pos: -50.5,10.5 parent: 2 type: Transform - uid: 5638 components: - - pos: -37.5,-41.5 + - pos: -49.5,10.5 parent: 2 type: Transform - uid: 5639 components: - - pos: -3.5,-47.5 + - pos: -22.5,-11.5 parent: 2 type: Transform - uid: 5640 components: - - pos: -37.5,-42.5 + - pos: -2.5,-47.5 parent: 2 type: Transform - uid: 5641 components: - - pos: -38.5,-41.5 + - pos: -37.5,-41.5 parent: 2 type: Transform - uid: 5642 components: - - pos: -39.5,-41.5 + - pos: -3.5,-47.5 parent: 2 type: Transform - uid: 5643 components: - - pos: 52.5,-40.5 + - pos: -37.5,-42.5 parent: 2 type: Transform - uid: 5644 components: - - pos: 63.5,-48.5 + - pos: -38.5,-41.5 parent: 2 type: Transform - uid: 5645 components: - - pos: 52.5,-39.5 + - pos: -39.5,-41.5 parent: 2 type: Transform - uid: 5646 components: - - pos: 51.5,-39.5 + - pos: 52.5,-40.5 parent: 2 type: Transform - uid: 5647 components: - - pos: 68.5,-48.5 + - pos: 63.5,-48.5 parent: 2 type: Transform - uid: 5648 components: - - pos: 66.5,-48.5 + - pos: 52.5,-39.5 parent: 2 type: Transform - uid: 5649 components: - - pos: 52.5,-41.5 + - pos: 51.5,-39.5 parent: 2 type: Transform - uid: 5650 components: - - pos: 65.5,-48.5 + - pos: 68.5,-48.5 parent: 2 type: Transform - uid: 5651 components: - - pos: 64.5,-48.5 + - pos: 66.5,-48.5 parent: 2 type: Transform - uid: 5652 components: - - pos: -14.5,-73.5 + - pos: 52.5,-41.5 parent: 2 type: Transform - uid: 5653 components: - - pos: -14.5,-71.5 + - pos: 65.5,-48.5 parent: 2 type: Transform - uid: 5654 components: - - pos: -15.5,-73.5 + - pos: 64.5,-48.5 parent: 2 type: Transform - uid: 5655 components: - - pos: -15.5,-72.5 + - pos: -14.5,-73.5 parent: 2 type: Transform - uid: 5656 components: - - pos: -37.5,22.5 + - pos: -14.5,-71.5 parent: 2 type: Transform - uid: 5657 components: - - pos: -15.5,-71.5 + - pos: -15.5,-73.5 parent: 2 type: Transform - uid: 5658 components: - - pos: -11.5,-71.5 + - pos: -15.5,-72.5 parent: 2 type: Transform - uid: 5659 components: - - pos: -12.5,-71.5 + - pos: -37.5,22.5 parent: 2 type: Transform - uid: 5660 components: - - pos: -13.5,-71.5 + - pos: -15.5,-71.5 parent: 2 type: Transform - uid: 5661 components: - - pos: -45.5,33.5 + - pos: -11.5,-71.5 parent: 2 type: Transform - uid: 5662 components: - - pos: -44.5,28.5 + - pos: -12.5,-71.5 parent: 2 type: Transform - uid: 5663 components: - - pos: -10.5,-71.5 + - pos: -13.5,-71.5 parent: 2 type: Transform - uid: 5664 components: - - pos: -45.5,28.5 + - pos: -45.5,33.5 parent: 2 type: Transform - uid: 5665 components: - - pos: -43.5,28.5 + - pos: -44.5,28.5 parent: 2 type: Transform - uid: 5666 components: - - pos: -41.5,31.5 + - pos: -10.5,-71.5 parent: 2 type: Transform - uid: 5667 components: - - pos: -42.5,33.5 + - pos: -45.5,28.5 parent: 2 type: Transform - uid: 5668 components: - - pos: -41.5,32.5 + - pos: -43.5,28.5 parent: 2 type: Transform - uid: 5669 components: - - pos: -41.5,33.5 + - pos: -41.5,31.5 parent: 2 type: Transform - uid: 5670 components: - - pos: -20.5,18.5 + - pos: -42.5,33.5 parent: 2 type: Transform - uid: 5671 components: - - pos: -20.5,20.5 + - pos: -41.5,32.5 parent: 2 type: Transform - uid: 5672 components: - - pos: -20.5,16.5 + - pos: -41.5,33.5 parent: 2 type: Transform - uid: 5673 components: - - pos: -20.5,19.5 + - pos: -20.5,18.5 parent: 2 type: Transform - uid: 5674 components: - - pos: -20.5,17.5 + - pos: -20.5,20.5 parent: 2 type: Transform - uid: 5675 components: - - pos: -19.5,16.5 + - pos: -20.5,16.5 parent: 2 type: Transform - uid: 5676 components: - - pos: 53.5,-6.5 + - pos: -20.5,19.5 parent: 2 type: Transform - uid: 5677 components: - - pos: 52.5,-6.5 + - pos: -20.5,17.5 parent: 2 type: Transform - uid: 5678 components: - - pos: 51.5,-6.5 + - pos: -19.5,16.5 parent: 2 type: Transform - uid: 5679 components: - - pos: 51.5,-7.5 + - pos: 53.5,-6.5 parent: 2 type: Transform - uid: 5680 components: - - pos: 5.5,21.5 + - pos: 52.5,-6.5 parent: 2 type: Transform - uid: 5681 components: - - pos: 6.5,21.5 + - pos: 51.5,-6.5 parent: 2 type: Transform - uid: 5682 components: - - pos: 7.5,15.5 + - pos: 51.5,-7.5 parent: 2 type: Transform - uid: 5683 components: - - pos: 8.5,15.5 + - pos: 5.5,21.5 parent: 2 type: Transform - uid: 5684 components: - - pos: 2.5,20.5 + - pos: 6.5,21.5 parent: 2 type: Transform - uid: 5685 components: - - pos: 2.5,19.5 + - pos: 7.5,15.5 parent: 2 type: Transform - uid: 5686 components: - - pos: 2.5,18.5 + - pos: 8.5,15.5 parent: 2 type: Transform - uid: 5687 components: - - pos: 42.5,15.5 + - pos: 2.5,20.5 parent: 2 type: Transform - uid: 5688 components: - - pos: 42.5,16.5 + - pos: 2.5,19.5 parent: 2 type: Transform - uid: 5689 components: - - pos: 41.5,16.5 + - pos: 2.5,18.5 parent: 2 type: Transform - uid: 5690 components: - - pos: 40.5,16.5 + - pos: 42.5,15.5 parent: 2 type: Transform - uid: 5691 components: - - pos: 39.5,16.5 + - pos: 42.5,16.5 parent: 2 type: Transform - uid: 5692 components: - - pos: 38.5,16.5 + - pos: 41.5,16.5 parent: 2 type: Transform - uid: 5693 components: - - pos: 37.5,16.5 + - pos: 40.5,16.5 parent: 2 type: Transform - uid: 5694 components: - - pos: 36.5,16.5 + - pos: 39.5,16.5 parent: 2 type: Transform - uid: 5695 components: - - pos: 34.5,16.5 + - pos: 38.5,16.5 parent: 2 type: Transform - uid: 5696 components: - - pos: 33.5,16.5 + - pos: 37.5,16.5 parent: 2 type: Transform - uid: 5697 components: - - pos: 42.5,13.5 + - pos: 36.5,16.5 parent: 2 type: Transform - uid: 5698 components: - - pos: 42.5,12.5 + - pos: 34.5,16.5 parent: 2 type: Transform - uid: 5699 components: - - pos: 28.5,28.5 + - pos: 33.5,16.5 parent: 2 type: Transform - uid: 5700 components: - - pos: 31.5,28.5 + - pos: 42.5,13.5 parent: 2 type: Transform - uid: 5701 components: - - pos: 30.5,28.5 + - pos: 42.5,12.5 parent: 2 type: Transform - uid: 5702 components: - - pos: -12.5,-59.5 + - pos: 28.5,28.5 parent: 2 type: Transform - uid: 5703 components: - - pos: -11.5,-59.5 + - pos: 31.5,28.5 parent: 2 type: Transform - uid: 5704 components: - - pos: -10.5,-59.5 + - pos: 30.5,28.5 parent: 2 type: Transform - uid: 5705 components: - - pos: -10.5,-58.5 + - pos: -12.5,-59.5 parent: 2 type: Transform - uid: 5706 components: - - pos: -9.5,-59.5 + - pos: -11.5,-59.5 parent: 2 type: Transform - uid: 5707 components: - - pos: -8.5,-59.5 + - pos: -10.5,-59.5 parent: 2 type: Transform - uid: 5708 components: - - pos: -7.5,-59.5 + - pos: -10.5,-58.5 parent: 2 type: Transform - uid: 5709 components: - - pos: -6.5,-59.5 + - pos: -9.5,-59.5 parent: 2 type: Transform - uid: 5710 components: - - pos: -51.5,-75.5 + - pos: -8.5,-59.5 parent: 2 type: Transform - uid: 5711 components: - - pos: -51.5,-77.5 + - pos: -7.5,-59.5 parent: 2 type: Transform - uid: 5712 components: - - pos: -51.5,-78.5 + - pos: -6.5,-59.5 parent: 2 type: Transform - uid: 5713 components: - - pos: -51.5,-79.5 + - pos: -51.5,-75.5 parent: 2 type: Transform - uid: 5714 components: - - pos: -52.5,-79.5 + - pos: -51.5,-77.5 parent: 2 type: Transform - uid: 5715 components: - - pos: 38.5,17.5 + - pos: -51.5,-78.5 parent: 2 type: Transform - uid: 5716 components: - - pos: 18.5,-31.5 + - pos: -51.5,-79.5 parent: 2 type: Transform - uid: 5717 components: - - pos: 52.5,10.5 + - pos: -52.5,-79.5 parent: 2 type: Transform - uid: 5718 components: - - pos: 45.5,-72.5 + - pos: 38.5,17.5 parent: 2 type: Transform - uid: 5719 components: - - pos: 29.5,-27.5 + - pos: 18.5,-31.5 parent: 2 type: Transform - uid: 5720 components: - - pos: 29.5,-26.5 + - pos: 52.5,10.5 parent: 2 type: Transform - uid: 5721 components: - - pos: 29.5,-25.5 + - pos: 45.5,-72.5 parent: 2 type: Transform - uid: 5722 components: - - pos: 31.5,-42.5 + - pos: 29.5,-27.5 parent: 2 type: Transform - uid: 5723 components: - - pos: 30.5,-42.5 + - pos: 29.5,-26.5 parent: 2 type: Transform - uid: 5724 components: - - pos: 28.5,-41.5 + - pos: 29.5,-25.5 parent: 2 type: Transform - uid: 5725 components: - - pos: 38.5,-60.5 + - pos: 31.5,-42.5 parent: 2 type: Transform - uid: 5726 components: - - pos: 38.5,-61.5 + - pos: 30.5,-42.5 parent: 2 type: Transform - uid: 5727 components: - - pos: 38.5,-62.5 + - pos: 28.5,-41.5 parent: 2 type: Transform - uid: 5728 components: - - pos: 38.5,-63.5 + - pos: 38.5,-60.5 parent: 2 type: Transform - uid: 5729 components: - - pos: 38.5,-64.5 + - pos: 38.5,-61.5 parent: 2 type: Transform - uid: 5730 components: - - pos: 38.5,-65.5 + - pos: 38.5,-62.5 parent: 2 type: Transform - uid: 5731 components: - - pos: 38.5,-66.5 + - pos: 38.5,-63.5 parent: 2 type: Transform - uid: 5732 components: - - pos: 38.5,-67.5 + - pos: 38.5,-64.5 parent: 2 type: Transform - uid: 5733 components: - - pos: 38.5,-68.5 + - pos: 38.5,-65.5 parent: 2 type: Transform - uid: 5734 components: - - pos: 38.5,-69.5 + - pos: 38.5,-66.5 parent: 2 type: Transform - uid: 5735 components: - - pos: 38.5,-70.5 + - pos: 38.5,-67.5 parent: 2 type: Transform - uid: 5736 components: - - pos: 38.5,-71.5 + - pos: 38.5,-68.5 parent: 2 type: Transform - uid: 5737 components: - - pos: 14.5,-64.5 + - pos: 38.5,-69.5 parent: 2 type: Transform - uid: 5738 components: - - pos: 14.5,-63.5 + - pos: 38.5,-70.5 parent: 2 type: Transform - uid: 5739 components: - - pos: 14.5,-62.5 + - pos: 38.5,-71.5 parent: 2 type: Transform - uid: 5740 components: - - pos: 14.5,-61.5 + - pos: 14.5,-64.5 parent: 2 type: Transform - uid: 5741 components: - - pos: 14.5,-60.5 + - pos: 14.5,-63.5 parent: 2 type: Transform - uid: 5742 components: - - pos: 14.5,-59.5 + - pos: 14.5,-62.5 parent: 2 type: Transform - uid: 5743 components: - - pos: 14.5,-58.5 + - pos: 14.5,-61.5 parent: 2 type: Transform - uid: 5744 components: - - pos: 10.5,-64.5 + - pos: 14.5,-60.5 parent: 2 type: Transform - uid: 5745 components: - - pos: 11.5,-64.5 + - pos: 14.5,-59.5 parent: 2 type: Transform - uid: 5746 components: - - pos: 12.5,-64.5 + - pos: 14.5,-58.5 parent: 2 type: Transform - uid: 5747 components: - - pos: 12.5,-63.5 + - pos: 10.5,-64.5 parent: 2 type: Transform - uid: 5748 components: - - pos: 12.5,-62.5 + - pos: 11.5,-64.5 parent: 2 type: Transform - uid: 5749 components: - - pos: 12.5,-61.5 + - pos: 12.5,-64.5 parent: 2 type: Transform - uid: 5750 components: - - pos: 12.5,-60.5 + - pos: 12.5,-63.5 parent: 2 type: Transform - uid: 5751 components: - - pos: 12.5,-59.5 + - pos: 12.5,-62.5 parent: 2 type: Transform - uid: 5752 components: - - pos: 12.5,-58.5 + - pos: 12.5,-61.5 parent: 2 type: Transform - uid: 5753 components: - - pos: 12.5,-57.5 + - pos: 12.5,-60.5 parent: 2 type: Transform - uid: 5754 components: - - pos: 12.5,-56.5 + - pos: 12.5,-59.5 parent: 2 type: Transform - uid: 5755 components: - - pos: 14.5,-57.5 + - pos: 12.5,-58.5 parent: 2 type: Transform - uid: 5756 components: - - pos: 13.5,-57.5 + - pos: 12.5,-57.5 parent: 2 type: Transform - uid: 5757 components: - - pos: -33.5,-71.5 + - pos: 12.5,-56.5 parent: 2 type: Transform - uid: 5758 components: - - pos: -33.5,-72.5 + - pos: 14.5,-57.5 parent: 2 type: Transform - uid: 5759 components: - - pos: -26.5,-73.5 + - pos: 13.5,-57.5 parent: 2 type: Transform - uid: 5760 components: - - pos: -28.5,-73.5 + - pos: -33.5,-71.5 parent: 2 type: Transform - uid: 5761 components: - - pos: -29.5,-72.5 + - pos: -33.5,-72.5 parent: 2 type: Transform - uid: 5762 components: - - pos: -29.5,-75.5 + - pos: -26.5,-73.5 parent: 2 type: Transform - uid: 5763 components: - - pos: -30.5,-71.5 + - pos: -28.5,-73.5 parent: 2 type: Transform - uid: 5764 components: - - pos: -30.5,-70.5 + - pos: -29.5,-72.5 parent: 2 type: Transform - uid: 5765 components: - - pos: -30.5,-69.5 + - pos: -29.5,-75.5 parent: 2 type: Transform - uid: 5766 components: - - pos: -29.5,-69.5 + - pos: -30.5,-71.5 parent: 2 type: Transform - uid: 5767 components: - - pos: -28.5,-69.5 + - pos: -30.5,-70.5 parent: 2 type: Transform - uid: 5768 components: - - pos: -27.5,-69.5 + - pos: -30.5,-69.5 parent: 2 type: Transform - uid: 5769 components: - - pos: -27.5,-70.5 + - pos: -29.5,-69.5 parent: 2 type: Transform - uid: 5770 components: - - pos: -27.5,-71.5 + - pos: -28.5,-69.5 parent: 2 type: Transform - uid: 5771 components: - - pos: -27.5,-73.5 + - pos: -27.5,-69.5 parent: 2 type: Transform - uid: 5772 components: - - pos: -27.5,-74.5 + - pos: -27.5,-70.5 parent: 2 type: Transform - uid: 5773 components: - - pos: -27.5,-75.5 + - pos: -27.5,-71.5 parent: 2 type: Transform - uid: 5774 components: - - pos: -28.5,-75.5 + - pos: -27.5,-73.5 parent: 2 type: Transform - uid: 5775 components: - - pos: -30.5,-75.5 + - pos: -27.5,-74.5 parent: 2 type: Transform - uid: 5776 components: - - pos: -30.5,-74.5 + - pos: -27.5,-75.5 parent: 2 type: Transform - uid: 5777 components: - - pos: -30.5,-73.5 + - pos: -28.5,-75.5 parent: 2 type: Transform - uid: 5778 components: - - pos: -28.5,-71.5 + - pos: -30.5,-75.5 parent: 2 type: Transform - uid: 5779 components: - - pos: -29.5,-72.5 + - pos: -30.5,-74.5 parent: 2 type: Transform - uid: 5780 components: - - pos: -29.5,-71.5 + - pos: -30.5,-73.5 parent: 2 type: Transform - uid: 5781 components: - - pos: 52.5,38.5 + - pos: -28.5,-71.5 parent: 2 type: Transform - uid: 5782 components: - - pos: 52.5,37.5 + - pos: -29.5,-72.5 parent: 2 type: Transform - uid: 5783 components: - - pos: 52.5,36.5 + - pos: -29.5,-71.5 parent: 2 type: Transform - uid: 5784 components: - - pos: 52.5,35.5 + - pos: 52.5,38.5 parent: 2 type: Transform - uid: 5785 components: - - pos: 52.5,34.5 + - pos: 52.5,37.5 parent: 2 type: Transform - uid: 5786 components: - - pos: 52.5,33.5 + - pos: 52.5,36.5 parent: 2 type: Transform - uid: 5787 components: - - pos: 52.5,32.5 + - pos: 52.5,35.5 parent: 2 type: Transform - uid: 5788 components: - - pos: 52.5,31.5 + - pos: 52.5,34.5 parent: 2 type: Transform - uid: 5789 components: - - pos: 51.5,31.5 + - pos: 52.5,33.5 parent: 2 type: Transform - uid: 5790 components: - - pos: 50.5,31.5 + - pos: 52.5,32.5 parent: 2 type: Transform - uid: 5791 components: - - pos: 49.5,31.5 + - pos: 52.5,31.5 parent: 2 type: Transform - uid: 5792 components: - - pos: 48.5,31.5 + - pos: 51.5,31.5 parent: 2 type: Transform - uid: 5793 components: - - pos: 48.5,30.5 + - pos: 50.5,31.5 parent: 2 type: Transform - uid: 5794 components: - - pos: 48.5,29.5 + - pos: 49.5,31.5 parent: 2 type: Transform - uid: 5795 components: - - pos: 48.5,28.5 + - pos: 48.5,31.5 parent: 2 type: Transform - uid: 5796 components: - - pos: 53.5,37.5 + - pos: 48.5,30.5 parent: 2 type: Transform - uid: 5797 components: - - pos: 54.5,37.5 + - pos: 48.5,29.5 parent: 2 type: Transform - uid: 5798 components: - - pos: 55.5,37.5 + - pos: 48.5,28.5 parent: 2 type: Transform - uid: 5799 components: - - pos: 56.5,37.5 + - pos: 53.5,37.5 parent: 2 type: Transform - uid: 5800 components: - - pos: 56.5,35.5 + - pos: 54.5,37.5 parent: 2 type: Transform - uid: 5801 components: - - pos: 56.5,33.5 + - pos: 55.5,37.5 parent: 2 type: Transform - uid: 5802 components: - - pos: 56.5,32.5 + - pos: 56.5,37.5 parent: 2 type: Transform - uid: 5803 components: - - pos: 56.5,31.5 + - pos: 56.5,35.5 parent: 2 type: Transform - uid: 5804 components: - - pos: 57.5,31.5 + - pos: 56.5,33.5 parent: 2 type: Transform - uid: 5805 components: - - pos: 57.5,30.5 + - pos: 56.5,32.5 parent: 2 type: Transform - uid: 5806 components: - - pos: 57.5,29.5 + - pos: 56.5,31.5 parent: 2 type: Transform - uid: 5807 components: - - pos: 57.5,28.5 + - pos: 57.5,31.5 parent: 2 type: Transform - uid: 5808 components: - - pos: 54.5,38.5 + - pos: 57.5,30.5 parent: 2 type: Transform - uid: 5809 components: - - pos: 54.5,39.5 + - pos: 57.5,29.5 parent: 2 type: Transform - uid: 5810 components: - - pos: 54.5,40.5 + - pos: 57.5,28.5 parent: 2 type: Transform - uid: 5811 components: - - pos: 54.5,41.5 + - pos: 54.5,38.5 parent: 2 type: Transform - uid: 5812 components: - - pos: 54.5,42.5 + - pos: 54.5,39.5 parent: 2 type: Transform - uid: 5813 components: - - pos: 54.5,43.5 + - pos: 54.5,40.5 parent: 2 type: Transform - uid: 5814 components: - - pos: 54.5,44.5 + - pos: 54.5,41.5 parent: 2 type: Transform - uid: 5815 components: - - pos: 54.5,45.5 + - pos: 54.5,42.5 parent: 2 type: Transform - uid: 5816 components: - - pos: 54.5,46.5 + - pos: 54.5,43.5 parent: 2 type: Transform - uid: 5817 components: - - pos: 54.5,47.5 + - pos: 54.5,44.5 parent: 2 type: Transform - uid: 5818 components: - - pos: 54.5,48.5 + - pos: 54.5,45.5 parent: 2 type: Transform - uid: 5819 components: - - pos: 54.5,49.5 + - pos: 54.5,46.5 parent: 2 type: Transform - uid: 5820 components: - - pos: 54.5,50.5 + - pos: 54.5,47.5 parent: 2 type: Transform - uid: 5821 components: - - pos: 53.5,42.5 + - pos: 54.5,48.5 parent: 2 type: Transform - uid: 5822 components: - - pos: 52.5,42.5 + - pos: 54.5,49.5 parent: 2 type: Transform - uid: 5823 components: - - pos: 51.5,42.5 + - pos: 54.5,50.5 parent: 2 type: Transform - uid: 5824 components: - - pos: 51.5,43.5 + - pos: 53.5,42.5 parent: 2 type: Transform - uid: 5825 components: - - pos: 51.5,44.5 + - pos: 52.5,42.5 parent: 2 type: Transform - uid: 5826 components: - - pos: 51.5,45.5 + - pos: 51.5,42.5 parent: 2 type: Transform - uid: 5827 components: - - pos: 51.5,46.5 + - pos: 51.5,43.5 parent: 2 type: Transform - uid: 5828 components: - - pos: 51.5,47.5 + - pos: 51.5,44.5 parent: 2 type: Transform - uid: 5829 components: - - pos: 51.5,48.5 + - pos: 51.5,45.5 parent: 2 type: Transform - uid: 5830 components: - - pos: 51.5,49.5 + - pos: 51.5,46.5 parent: 2 type: Transform - uid: 5831 components: - - pos: 51.5,50.5 + - pos: 51.5,47.5 parent: 2 type: Transform - uid: 5832 components: - - pos: 55.5,42.5 + - pos: 51.5,48.5 parent: 2 type: Transform - uid: 5833 components: - - pos: 56.5,42.5 + - pos: 51.5,49.5 parent: 2 type: Transform - uid: 5834 components: - - pos: 57.5,42.5 + - pos: 51.5,50.5 parent: 2 type: Transform - uid: 5835 components: - - pos: 57.5,43.5 + - pos: 55.5,42.5 parent: 2 type: Transform - uid: 5836 components: - - pos: 57.5,44.5 + - pos: 56.5,42.5 parent: 2 type: Transform - uid: 5837 components: - - pos: 57.5,45.5 + - pos: 57.5,42.5 parent: 2 type: Transform - uid: 5838 components: - - pos: 57.5,46.5 + - pos: 57.5,43.5 parent: 2 type: Transform - uid: 5839 components: - - pos: 57.5,47.5 + - pos: 57.5,44.5 parent: 2 type: Transform - uid: 5840 components: - - pos: 57.5,48.5 + - pos: 57.5,45.5 parent: 2 type: Transform - uid: 5841 components: - - pos: 57.5,49.5 + - pos: 57.5,46.5 parent: 2 type: Transform - uid: 5842 components: - - pos: 57.5,50.5 + - pos: 57.5,47.5 parent: 2 type: Transform - uid: 5843 components: - - pos: 56.5,50.5 + - pos: 57.5,48.5 parent: 2 type: Transform - uid: 5844 components: - - pos: 55.5,50.5 + - pos: 57.5,49.5 parent: 2 type: Transform - uid: 5845 components: - - pos: 53.5,50.5 + - pos: 57.5,50.5 parent: 2 type: Transform - uid: 5846 components: - - pos: 52.5,50.5 + - pos: 56.5,50.5 parent: 2 type: Transform - uid: 5847 components: - - pos: 56.5,51.5 + - pos: 55.5,50.5 parent: 2 type: Transform - uid: 5848 components: - - pos: 56.5,52.5 + - pos: 53.5,50.5 parent: 2 type: Transform - uid: 5849 components: - - pos: 52.5,51.5 + - pos: 52.5,50.5 parent: 2 type: Transform - uid: 5850 components: - - pos: 52.5,52.5 + - pos: 56.5,51.5 parent: 2 type: Transform - uid: 5851 components: - - pos: 56.5,53.5 + - pos: 56.5,52.5 parent: 2 type: Transform - uid: 5852 components: - - pos: 55.5,53.5 + - pos: 52.5,51.5 parent: 2 type: Transform - uid: 5853 components: - - pos: 54.5,53.5 + - pos: 52.5,52.5 parent: 2 type: Transform - uid: 5854 components: - - pos: 52.5,53.5 + - pos: 56.5,53.5 parent: 2 type: Transform - uid: 5855 components: - - pos: 53.5,53.5 + - pos: 55.5,53.5 parent: 2 type: Transform - uid: 5856 components: - - pos: 54.5,54.5 + - pos: 54.5,53.5 parent: 2 type: Transform - uid: 5857 components: - - pos: 54.5,55.5 + - pos: 52.5,53.5 parent: 2 type: Transform - uid: 5858 components: - - pos: 54.5,57.5 + - pos: 53.5,53.5 parent: 2 type: Transform - uid: 5859 components: - - pos: 54.5,56.5 + - pos: 54.5,54.5 parent: 2 type: Transform - uid: 5860 components: - - pos: 54.5,58.5 + - pos: 54.5,55.5 parent: 2 type: Transform - uid: 5861 components: - - pos: 54.5,59.5 + - pos: 54.5,57.5 parent: 2 type: Transform - uid: 5862 components: - - pos: 53.5,57.5 + - pos: 54.5,56.5 parent: 2 type: Transform - uid: 5863 components: - - pos: 52.5,57.5 + - pos: 54.5,58.5 parent: 2 type: Transform - uid: 5864 components: - - pos: 51.5,57.5 + - pos: 54.5,59.5 parent: 2 type: Transform - uid: 5865 components: - - pos: 55.5,57.5 + - pos: 53.5,57.5 parent: 2 type: Transform - uid: 5866 components: - - pos: 56.5,57.5 + - pos: 52.5,57.5 parent: 2 type: Transform - uid: 5867 components: - - pos: 57.5,57.5 + - pos: 51.5,57.5 parent: 2 type: Transform - uid: 5868 components: - - pos: 58.5,57.5 + - pos: 55.5,57.5 parent: 2 type: Transform - uid: 5869 components: - - pos: 58.5,58.5 + - pos: 56.5,57.5 parent: 2 type: Transform - uid: 5870 components: - - pos: 58.5,56.5 + - pos: 57.5,57.5 parent: 2 type: Transform - uid: 5871 components: - - pos: 50.5,57.5 + - pos: 58.5,57.5 parent: 2 type: Transform - uid: 5872 components: - - pos: 50.5,58.5 + - pos: 50.5,57.5 parent: 2 type: Transform - uid: 5873 components: - - pos: 50.5,56.5 + - pos: 54.5,60.5 parent: 2 type: Transform - uid: 5874 components: - - pos: 54.5,60.5 + - pos: 54.5,61.5 parent: 2 type: Transform - uid: 5875 components: - - pos: 54.5,61.5 + - pos: 50.5,45.5 parent: 2 type: Transform - uid: 5876 components: - - pos: 53.5,61.5 + - pos: 49.5,45.5 parent: 2 type: Transform - uid: 5877 components: - - pos: 55.5,61.5 + - pos: 48.5,45.5 parent: 2 type: Transform - uid: 5878 components: - - pos: 50.5,45.5 + - pos: 47.5,45.5 parent: 2 type: Transform - uid: 5879 components: - - pos: 49.5,45.5 + - pos: 46.5,45.5 parent: 2 type: Transform - uid: 5880 components: - - pos: 48.5,45.5 + - pos: 45.5,45.5 parent: 2 type: Transform - uid: 5881 components: - - pos: 47.5,45.5 + - pos: 44.5,45.5 parent: 2 type: Transform - uid: 5882 components: - - pos: 46.5,45.5 + - pos: 58.5,45.5 parent: 2 type: Transform - uid: 5883 components: - - pos: 45.5,45.5 + - pos: 59.5,45.5 parent: 2 type: Transform - uid: 5884 components: - - pos: 44.5,45.5 + - pos: 60.5,45.5 parent: 2 type: Transform - uid: 5885 components: - - pos: 58.5,45.5 + - pos: 60.5,46.5 parent: 2 type: Transform - uid: 5886 components: - - pos: 59.5,45.5 + - pos: 60.5,47.5 parent: 2 type: Transform - uid: 5887 components: - - pos: 60.5,45.5 + - pos: -18.5,24.5 parent: 2 type: Transform - uid: 5888 components: - - pos: 60.5,46.5 + - pos: -18.5,25.5 parent: 2 type: Transform - uid: 5889 components: - - pos: 60.5,47.5 + - pos: -18.5,26.5 parent: 2 type: Transform - uid: 5890 components: - - pos: -18.5,24.5 + - pos: -18.5,27.5 parent: 2 type: Transform - uid: 5891 components: - - pos: -18.5,25.5 + - pos: -18.5,28.5 parent: 2 type: Transform - uid: 5892 components: - - pos: -18.5,26.5 + - pos: -18.5,29.5 parent: 2 type: Transform - uid: 5893 components: - - pos: -18.5,27.5 + - pos: -18.5,30.5 parent: 2 type: Transform - uid: 5894 components: - - pos: -18.5,28.5 + - pos: -19.5,30.5 parent: 2 type: Transform - uid: 5895 components: - - pos: -18.5,29.5 + - pos: -20.5,30.5 parent: 2 type: Transform - uid: 5896 components: - - pos: -18.5,30.5 + - pos: -21.5,30.5 parent: 2 type: Transform - uid: 5897 components: - - pos: -19.5,30.5 + - pos: -22.5,30.5 parent: 2 type: Transform - uid: 5898 components: - - pos: -20.5,30.5 + - pos: -23.5,30.5 parent: 2 type: Transform - uid: 5899 components: - - pos: -21.5,30.5 + - pos: -20.5,22.5 parent: 2 type: Transform - uid: 5900 components: - - pos: -22.5,30.5 + - pos: -20.5,23.5 parent: 2 type: Transform - uid: 5901 components: - - pos: -23.5,30.5 + - pos: -20.5,24.5 parent: 2 type: Transform - uid: 5902 components: - - pos: -20.5,22.5 + - pos: -20.5,25.5 parent: 2 type: Transform - uid: 5903 components: - - pos: -20.5,23.5 + - pos: -20.5,26.5 parent: 2 type: Transform - uid: 5904 components: - - pos: -20.5,24.5 + - pos: -20.5,27.5 parent: 2 type: Transform - uid: 5905 components: - - pos: -20.5,25.5 + - pos: -20.5,28.5 parent: 2 type: Transform - uid: 5906 components: - - pos: -20.5,26.5 + - pos: -20.5,29.5 parent: 2 type: Transform - uid: 5907 components: - - pos: -20.5,27.5 + - pos: 44.5,-13.5 parent: 2 type: Transform - uid: 5908 components: - - pos: -20.5,28.5 + - pos: 45.5,-13.5 parent: 2 type: Transform - uid: 5909 components: - - pos: -20.5,29.5 + - pos: 46.5,-13.5 parent: 2 type: Transform - uid: 5910 components: - - pos: 44.5,-13.5 + - pos: 47.5,-13.5 parent: 2 type: Transform - uid: 5911 components: - - pos: 45.5,-13.5 + - pos: 46.5,-14.5 parent: 2 type: Transform - uid: 5912 components: - - pos: 46.5,-13.5 + - pos: 46.5,-15.5 parent: 2 type: Transform - uid: 5913 components: - - pos: 47.5,-13.5 + - pos: 46.5,-16.5 parent: 2 type: Transform - uid: 5914 components: - - pos: 46.5,-14.5 + - pos: 37.5,-13.5 parent: 2 type: Transform - uid: 5915 components: - - pos: 46.5,-15.5 + - pos: 36.5,-13.5 parent: 2 type: Transform - uid: 5916 components: - - pos: 46.5,-16.5 + - pos: 61.5,26.5 parent: 2 type: Transform - uid: 5917 components: - - pos: 37.5,-13.5 + - pos: 62.5,26.5 parent: 2 type: Transform - uid: 5918 components: - - pos: 36.5,-13.5 + - pos: 63.5,26.5 parent: 2 type: Transform - uid: 5919 components: - - pos: 61.5,26.5 + - pos: 64.5,26.5 parent: 2 type: Transform - uid: 5920 components: - - pos: 62.5,26.5 + - pos: 65.5,26.5 parent: 2 type: Transform - uid: 5921 components: - - pos: 63.5,26.5 + - pos: 65.5,25.5 parent: 2 type: Transform - uid: 5922 components: - - pos: 64.5,26.5 + - pos: 64.5,15.5 parent: 2 type: Transform - uid: 5923 components: - - pos: 65.5,26.5 + - pos: 64.5,16.5 parent: 2 type: Transform - uid: 5924 components: - - pos: 65.5,25.5 + - pos: 64.5,17.5 parent: 2 type: Transform - uid: 5925 components: - - pos: 64.5,15.5 + - pos: 12.5,32.5 parent: 2 type: Transform - uid: 5926 components: - - pos: 64.5,16.5 + - pos: 11.5,32.5 parent: 2 type: Transform - uid: 5927 components: - - pos: 64.5,17.5 + - pos: 10.5,32.5 parent: 2 type: Transform - uid: 5928 components: - - pos: 12.5,32.5 + - pos: 9.5,32.5 parent: 2 type: Transform - uid: 5929 components: - - pos: 11.5,32.5 + - pos: 8.5,32.5 parent: 2 type: Transform - uid: 5930 components: - - pos: 10.5,32.5 + - pos: 7.5,32.5 parent: 2 type: Transform - uid: 5931 components: - - pos: 9.5,32.5 + - pos: 6.5,32.5 parent: 2 type: Transform - uid: 5932 components: - - pos: 8.5,32.5 + - pos: 5.5,32.5 parent: 2 type: Transform - uid: 5933 components: - - pos: 7.5,32.5 + - pos: 4.5,32.5 parent: 2 type: Transform - uid: 5934 components: - - pos: 6.5,32.5 + - pos: 9.5,31.5 parent: 2 type: Transform - uid: 5935 components: - - pos: 5.5,32.5 + - pos: 9.5,30.5 parent: 2 type: Transform - uid: 5936 components: - - pos: 4.5,32.5 + - pos: 8.5,30.5 parent: 2 type: Transform - uid: 5937 components: - - pos: 9.5,31.5 + - pos: 7.5,30.5 parent: 2 type: Transform - uid: 5938 components: - - pos: 9.5,30.5 + - pos: 6.5,30.5 parent: 2 type: Transform - uid: 5939 components: - - pos: 8.5,30.5 + - pos: 6.5,31.5 parent: 2 type: Transform - uid: 5940 components: - - pos: 7.5,30.5 + - pos: 6.5,33.5 parent: 2 type: Transform - uid: 5941 components: - - pos: 6.5,30.5 + - pos: 6.5,34.5 parent: 2 type: Transform - uid: 5942 components: - - pos: 6.5,31.5 + - pos: 7.5,34.5 parent: 2 type: Transform - uid: 5943 components: - - pos: 6.5,33.5 + - pos: 8.5,34.5 parent: 2 type: Transform - uid: 5944 components: - - pos: 6.5,34.5 + - pos: 9.5,34.5 parent: 2 type: Transform - uid: 5945 components: - - pos: 7.5,34.5 + - pos: 9.5,33.5 parent: 2 type: Transform - uid: 5946 components: - - pos: 8.5,34.5 + - pos: 57.5,33.5 parent: 2 type: Transform - uid: 5947 components: - - pos: 9.5,34.5 + - pos: 58.5,33.5 parent: 2 type: Transform - uid: 5948 components: - - pos: 9.5,33.5 + - pos: 55.5,31.5 parent: 2 type: Transform - uid: 5949 components: - - pos: 57.5,33.5 + - pos: 54.5,31.5 parent: 2 type: Transform - uid: 5950 components: - - pos: 58.5,33.5 + - pos: -15.5,42.5 parent: 2 type: Transform - uid: 5951 components: - - pos: 55.5,31.5 + - pos: -16.5,42.5 parent: 2 type: Transform - uid: 5952 components: - - pos: 54.5,31.5 + - pos: -16.5,41.5 parent: 2 type: Transform - uid: 5953 components: - - pos: -15.5,42.5 + - pos: -16.5,40.5 parent: 2 type: Transform - uid: 5954 components: - - pos: -16.5,42.5 + - pos: -16.5,39.5 parent: 2 type: Transform - uid: 5955 components: - - pos: -16.5,41.5 + - pos: -16.5,38.5 parent: 2 type: Transform - uid: 5956 components: - - pos: -16.5,40.5 + - pos: -16.5,37.5 parent: 2 type: Transform - uid: 5957 components: - - pos: -16.5,39.5 + - pos: -16.5,36.5 parent: 2 type: Transform - uid: 5958 components: - - pos: -16.5,38.5 + - pos: -16.5,35.5 parent: 2 type: Transform - uid: 5959 components: - - pos: -16.5,37.5 + - pos: -16.5,34.5 parent: 2 type: Transform - uid: 5960 components: - - pos: -16.5,36.5 + - pos: -16.5,33.5 parent: 2 type: Transform - uid: 5961 components: - - pos: -16.5,35.5 + - pos: -16.5,32.5 parent: 2 type: Transform - uid: 5962 components: - - pos: -16.5,34.5 + - pos: -16.5,31.5 parent: 2 type: Transform - uid: 5963 components: - - pos: -16.5,33.5 + - pos: -16.5,30.5 parent: 2 type: Transform - uid: 5964 components: - - pos: -16.5,32.5 + - pos: -16.5,29.5 parent: 2 type: Transform - uid: 5965 components: - - pos: -16.5,31.5 + - pos: -15.5,29.5 parent: 2 type: Transform - uid: 5966 components: - - pos: -16.5,30.5 + - pos: -14.5,29.5 parent: 2 type: Transform - uid: 5967 components: - - pos: -16.5,29.5 + - pos: -14.5,30.5 parent: 2 type: Transform - uid: 5968 components: - - pos: -15.5,29.5 + - pos: -14.5,31.5 parent: 2 type: Transform - uid: 5969 components: - - pos: -14.5,29.5 + - pos: -14.5,32.5 parent: 2 type: Transform - uid: 5970 components: - - pos: -14.5,30.5 + - pos: -14.5,33.5 parent: 2 type: Transform - uid: 5971 components: - - pos: -14.5,31.5 + - pos: -14.5,34.5 parent: 2 type: Transform - uid: 5972 components: - - pos: -14.5,32.5 + - pos: -14.5,35.5 parent: 2 type: Transform - uid: 5973 components: - - pos: -14.5,33.5 + - pos: -14.5,36.5 parent: 2 type: Transform - uid: 5974 components: - - pos: -14.5,34.5 + - pos: -14.5,37.5 parent: 2 type: Transform - uid: 5975 components: - - pos: -14.5,35.5 + - pos: -14.5,38.5 parent: 2 type: Transform - uid: 5976 components: - - pos: -14.5,36.5 + - pos: -14.5,39.5 parent: 2 type: Transform - uid: 5977 components: - - pos: -14.5,37.5 + - pos: -14.5,40.5 parent: 2 type: Transform - uid: 5978 components: - - pos: -14.5,38.5 + - pos: -14.5,41.5 parent: 2 type: Transform - uid: 5979 components: - - pos: -14.5,39.5 + - pos: -14.5,42.5 parent: 2 type: Transform - uid: 5980 components: - - pos: -14.5,40.5 + - pos: -17.5,41.5 parent: 2 type: Transform - uid: 5981 components: - - pos: -14.5,41.5 + - pos: -18.5,41.5 parent: 2 type: Transform - uid: 5982 components: - - pos: -14.5,42.5 + - pos: -18.5,42.5 parent: 2 type: Transform - uid: 5983 components: - - pos: -17.5,41.5 + - pos: -18.5,43.5 parent: 2 type: Transform - uid: 5984 components: - - pos: -18.5,41.5 + - pos: -18.5,44.5 parent: 2 type: Transform - uid: 5985 components: - - pos: -18.5,42.5 + - pos: -18.5,45.5 parent: 2 type: Transform - uid: 5986 components: - - pos: -18.5,43.5 + - pos: -19.5,45.5 parent: 2 type: Transform - uid: 5987 components: - - pos: -18.5,44.5 + - pos: -20.5,45.5 parent: 2 type: Transform - uid: 5988 components: - - pos: -18.5,45.5 + - pos: -21.5,45.5 parent: 2 type: Transform - uid: 5989 components: - - pos: -19.5,45.5 + - pos: -22.5,45.5 parent: 2 type: Transform - uid: 5990 components: - - pos: -20.5,45.5 + - pos: -21.5,44.5 parent: 2 type: Transform - uid: 5991 components: - - pos: -21.5,45.5 + - pos: -21.5,43.5 parent: 2 type: Transform - uid: 5992 components: - - pos: -22.5,45.5 + - pos: -21.5,42.5 parent: 2 type: Transform - uid: 5993 components: - - pos: -21.5,44.5 + - pos: -21.5,41.5 parent: 2 type: Transform - uid: 5994 components: - - pos: -21.5,43.5 + - pos: -21.5,40.5 parent: 2 type: Transform - uid: 5995 components: - - pos: -21.5,42.5 + - pos: -17.5,44.5 parent: 2 type: Transform - uid: 5996 components: - - pos: -21.5,41.5 + - pos: -16.5,44.5 parent: 2 type: Transform - uid: 5997 components: - - pos: -21.5,40.5 + - pos: -16.5,45.5 parent: 2 type: Transform - uid: 5998 components: - - pos: -17.5,44.5 + - pos: -16.5,46.5 parent: 2 type: Transform - uid: 5999 components: - - pos: -16.5,44.5 + - pos: -16.5,47.5 parent: 2 type: Transform - uid: 6000 components: - - pos: -16.5,45.5 + - pos: -16.5,48.5 parent: 2 type: Transform - uid: 6001 components: - - pos: -16.5,46.5 + - pos: -16.5,49.5 parent: 2 type: Transform - uid: 6002 components: - - pos: -16.5,47.5 + - pos: -16.5,50.5 parent: 2 type: Transform - uid: 6003 components: - - pos: -16.5,48.5 + - pos: -16.5,51.5 parent: 2 type: Transform - uid: 6004 components: - - pos: -16.5,49.5 + - pos: -17.5,51.5 parent: 2 type: Transform - uid: 6005 components: - - pos: -16.5,50.5 + - pos: -18.5,51.5 parent: 2 type: Transform - uid: 6006 components: - - pos: -16.5,51.5 + - pos: -18.5,50.5 parent: 2 type: Transform - uid: 6007 components: - - pos: -17.5,51.5 + - pos: -18.5,49.5 parent: 2 type: Transform - uid: 6008 components: - - pos: -18.5,51.5 + - pos: -18.5,48.5 parent: 2 type: Transform - uid: 6009 components: - - pos: -18.5,50.5 + - pos: -18.5,47.5 parent: 2 type: Transform - uid: 6010 components: - - pos: -18.5,49.5 + - pos: -18.5,46.5 parent: 2 type: Transform - uid: 6011 components: - - pos: -18.5,48.5 + - pos: -13.5,39.5 parent: 2 type: Transform - uid: 6012 components: - - pos: -18.5,47.5 + - pos: -12.5,39.5 parent: 2 type: Transform - uid: 6013 components: - - pos: -18.5,46.5 + - pos: -11.5,39.5 parent: 2 type: Transform - uid: 6014 components: - - pos: -13.5,39.5 + - pos: -10.5,39.5 parent: 2 type: Transform - uid: 6015 components: - - pos: -12.5,39.5 + - pos: -9.5,39.5 parent: 2 type: Transform - uid: 6016 components: - - pos: -11.5,39.5 + - pos: -8.5,39.5 parent: 2 type: Transform - uid: 6017 components: - - pos: -10.5,39.5 + - pos: -8.5,38.5 parent: 2 type: Transform - uid: 6018 components: - - pos: -9.5,39.5 + - pos: -8.5,37.5 parent: 2 type: Transform - uid: 6019 components: - - pos: -8.5,39.5 + - pos: -9.5,37.5 parent: 2 type: Transform - uid: 6020 components: - - pos: -8.5,38.5 + - pos: -10.5,37.5 parent: 2 type: Transform - uid: 6021 components: - - pos: -8.5,37.5 + - pos: -11.5,37.5 parent: 2 type: Transform - uid: 6022 components: - - pos: -9.5,37.5 + - pos: -12.5,37.5 parent: 2 type: Transform - uid: 6023 components: - - pos: -10.5,37.5 + - pos: -13.5,37.5 parent: 2 type: Transform - uid: 6024 components: - - pos: -11.5,37.5 + - pos: -17.5,34.5 parent: 2 type: Transform - uid: 6025 components: - - pos: -12.5,37.5 + - pos: -18.5,34.5 parent: 2 type: Transform - uid: 6026 components: - - pos: -13.5,37.5 + - pos: -19.5,34.5 parent: 2 type: Transform - uid: 6027 components: - - pos: -17.5,34.5 + - pos: -20.5,34.5 parent: 2 type: Transform - uid: 6028 components: - - pos: -18.5,34.5 + - pos: -21.5,34.5 parent: 2 type: Transform - uid: 6029 components: - - pos: -19.5,34.5 + - pos: -13.5,34.5 parent: 2 type: Transform - uid: 6030 components: - - pos: -20.5,34.5 + - pos: -12.5,34.5 parent: 2 type: Transform - uid: 6031 components: - - pos: -21.5,34.5 + - pos: -11.5,34.5 parent: 2 type: Transform - uid: 6032 components: - - pos: -13.5,34.5 + - pos: -11.5,33.5 parent: 2 type: Transform - uid: 6033 components: - - pos: -12.5,34.5 + - pos: -11.5,32.5 parent: 2 type: Transform - uid: 6034 components: - - pos: -11.5,34.5 + - pos: -11.5,31.5 parent: 2 type: Transform - uid: 6035 components: - - pos: -11.5,33.5 + - pos: -15.5,44.5 parent: 2 type: Transform - uid: 6036 components: - - pos: -11.5,32.5 + - pos: -41.5,23.5 parent: 2 type: Transform - uid: 6037 components: - - pos: -11.5,31.5 + - pos: -41.5,24.5 parent: 2 type: Transform - uid: 6038 components: - - pos: -15.5,44.5 + - pos: -14.5,44.5 parent: 2 type: Transform - uid: 6039 components: - - pos: -41.5,23.5 + - pos: -13.5,44.5 parent: 2 type: Transform - uid: 6040 components: - - pos: -41.5,24.5 + - pos: -12.5,44.5 parent: 2 type: Transform - uid: 6041 components: - - pos: -14.5,44.5 + - pos: -11.5,44.5 parent: 2 type: Transform - uid: 6042 components: - - pos: -13.5,44.5 + - pos: -10.5,44.5 parent: 2 type: Transform - uid: 6043 components: - - pos: -12.5,44.5 + - pos: -15.5,46.5 parent: 2 type: Transform - uid: 6044 components: - - pos: -11.5,44.5 + - pos: -14.5,46.5 parent: 2 type: Transform - uid: 6045 components: - - pos: -10.5,44.5 + - pos: -13.5,46.5 parent: 2 type: Transform - uid: 6046 components: - - pos: -15.5,46.5 + - pos: -12.5,46.5 parent: 2 type: Transform - uid: 6047 components: - - pos: -14.5,46.5 + - pos: -11.5,46.5 parent: 2 type: Transform - uid: 6048 components: - - pos: -13.5,46.5 + - pos: -10.5,46.5 parent: 2 type: Transform - uid: 6049 components: - - pos: -12.5,46.5 + - pos: 52.5,39.5 parent: 2 type: Transform - uid: 6050 components: - - pos: -11.5,46.5 + - pos: 51.5,39.5 parent: 2 type: Transform - uid: 6051 components: - - pos: -10.5,46.5 + - pos: 49.5,39.5 parent: 2 type: Transform - uid: 6052 components: - - pos: 52.5,39.5 + - pos: 48.5,39.5 parent: 2 type: Transform - uid: 6053 components: - - pos: 51.5,39.5 + - pos: 47.5,38.5 parent: 2 type: Transform - uid: 6054 components: - - pos: 49.5,39.5 + - pos: 47.5,39.5 parent: 2 type: Transform - uid: 6055 components: - - pos: 48.5,39.5 + - pos: 47.5,37.5 parent: 2 type: Transform - uid: 6056 components: - - pos: 47.5,38.5 + - pos: 46.5,37.5 parent: 2 type: Transform - uid: 6057 components: - - pos: 47.5,39.5 + - pos: 45.5,37.5 parent: 2 type: Transform - uid: 6058 components: - - pos: 47.5,37.5 + - pos: 45.5,36.5 parent: 2 type: Transform - uid: 6059 components: - - pos: 46.5,37.5 + - pos: 45.5,35.5 parent: 2 type: Transform - uid: 6060 components: - - pos: 45.5,37.5 + - pos: 46.5,35.5 parent: 2 type: Transform - uid: 6061 components: - - pos: 45.5,36.5 + - pos: 46.5,33.5 parent: 2 type: Transform - uid: 6062 components: - - pos: 45.5,35.5 + - pos: 46.5,32.5 parent: 2 type: Transform - uid: 6063 components: - - pos: 46.5,35.5 + - pos: 47.5,32.5 parent: 2 type: Transform - uid: 6064 components: - - pos: 46.5,33.5 + - pos: 48.5,32.5 parent: 2 type: Transform - uid: 6065 components: - - pos: 46.5,32.5 + - pos: 49.5,32.5 parent: 2 type: Transform - uid: 6066 components: - - pos: 47.5,32.5 + - pos: 52.5,40.5 parent: 2 type: Transform - uid: 6067 components: - - pos: 48.5,32.5 + - pos: 52.5,41.5 parent: 2 type: Transform - uid: 6068 components: - - pos: 49.5,32.5 + - pos: 49.5,38.5 parent: 2 type: Transform - uid: 6069 components: - - pos: 52.5,40.5 + - pos: 49.5,37.5 parent: 2 type: Transform - uid: 6070 components: - - pos: 52.5,41.5 + - pos: 49.5,36.5 parent: 2 type: Transform - uid: 6071 components: - - pos: 49.5,38.5 + - pos: 6.5,48.5 parent: 2 type: Transform - uid: 6072 components: - - pos: 49.5,37.5 + - pos: 5.5,48.5 parent: 2 type: Transform - uid: 6073 components: - - pos: 49.5,36.5 + - pos: 4.5,48.5 parent: 2 type: Transform - uid: 6074 components: - - pos: 6.5,48.5 + - pos: 3.5,48.5 parent: 2 type: Transform - uid: 6075 components: - - pos: 5.5,48.5 + - pos: 3.5,49.5 parent: 2 type: Transform - uid: 6076 components: - - pos: 4.5,48.5 + - pos: 2.5,49.5 parent: 2 type: Transform - uid: 6077 components: - - pos: 3.5,48.5 + - pos: 1.5,49.5 parent: 2 type: Transform - uid: 6078 components: - - pos: 3.5,49.5 + - pos: 58.5,27.5 parent: 2 type: Transform - uid: 6079 components: - - pos: 2.5,49.5 + - pos: 59.5,28.5 parent: 2 type: Transform - uid: 6080 components: - - pos: 1.5,49.5 + - pos: 58.5,28.5 parent: 2 type: Transform - uid: 6081 components: - - pos: 58.5,27.5 + - pos: 5.5,49.5 parent: 2 type: Transform - uid: 6082 components: - - pos: 59.5,28.5 + - pos: 5.5,50.5 parent: 2 type: Transform - uid: 6083 components: - - pos: 58.5,28.5 + - pos: 5.5,51.5 parent: 2 type: Transform - uid: 6084 components: - - pos: 5.5,49.5 + - pos: 6.5,51.5 parent: 2 type: Transform - uid: 6085 components: - - pos: 5.5,50.5 + - pos: 6.5,52.5 parent: 2 type: Transform - uid: 6086 components: - - pos: 5.5,51.5 + - pos: 7.5,52.5 parent: 2 type: Transform - uid: 6087 components: - - pos: 6.5,51.5 + - pos: 8.5,52.5 parent: 2 type: Transform - uid: 6088 components: - - pos: 6.5,52.5 + - pos: 63.5,27.5 parent: 2 type: Transform - uid: 6089 components: - - pos: 7.5,52.5 + - pos: 63.5,28.5 parent: 2 type: Transform - uid: 6090 components: - - pos: 8.5,52.5 + - pos: 63.5,29.5 parent: 2 type: Transform - uid: 6091 components: - - pos: 63.5,27.5 + - pos: 16.5,35.5 parent: 2 type: Transform - uid: 6092 components: - - pos: 63.5,28.5 + - pos: 16.5,36.5 parent: 2 type: Transform - uid: 6093 components: - - pos: 63.5,29.5 + - pos: 16.5,37.5 parent: 2 type: Transform - uid: 6094 components: - - pos: 16.5,35.5 + - pos: 16.5,38.5 parent: 2 type: Transform - uid: 6095 components: - - pos: 16.5,36.5 + - pos: 16.5,39.5 parent: 2 type: Transform - uid: 6096 components: - - pos: 16.5,37.5 + - pos: 15.5,39.5 parent: 2 type: Transform - uid: 6097 components: - - pos: 16.5,38.5 + - pos: 14.5,39.5 parent: 2 type: Transform - uid: 6098 components: - - pos: 16.5,39.5 + - pos: 14.5,38.5 parent: 2 type: Transform - uid: 6099 components: - - pos: 15.5,39.5 + - pos: 14.5,37.5 parent: 2 type: Transform - uid: 6100 components: - - pos: 14.5,39.5 + - pos: 14.5,36.5 parent: 2 type: Transform - uid: 6101 components: - - pos: 14.5,38.5 + - pos: 15.5,36.5 parent: 2 type: Transform - uid: 6102 components: - - pos: 14.5,37.5 + - pos: 17.5,39.5 parent: 2 type: Transform - uid: 6103 components: - - pos: 14.5,36.5 + - pos: 18.5,39.5 parent: 2 type: Transform - uid: 6104 components: - - pos: 15.5,36.5 + - pos: 18.5,38.5 parent: 2 type: Transform - uid: 6105 components: - - pos: 17.5,39.5 + - pos: 18.5,37.5 parent: 2 type: Transform - uid: 6106 components: - - pos: 18.5,39.5 + - pos: 18.5,36.5 parent: 2 type: Transform - uid: 6107 components: - - pos: 18.5,38.5 + - pos: 17.5,36.5 parent: 2 type: Transform - uid: 6108 components: - - pos: 18.5,37.5 + - pos: 16.5,40.5 parent: 2 type: Transform - uid: 6109 components: - - pos: 18.5,36.5 + - pos: 63.5,30.5 parent: 2 type: Transform - uid: 6110 components: - - pos: 17.5,36.5 + - pos: 63.5,31.5 parent: 2 type: Transform - uid: 6111 components: - - pos: 16.5,40.5 + - pos: 63.5,32.5 parent: 2 type: Transform - uid: 6112 components: - - pos: 63.5,30.5 + - pos: 63.5,33.5 parent: 2 type: Transform - uid: 6113 components: - - pos: 63.5,31.5 + - pos: 63.5,34.5 parent: 2 type: Transform - uid: 6114 components: - - pos: 63.5,32.5 + - pos: 63.5,35.5 parent: 2 type: Transform - uid: 6115 components: - - pos: 63.5,33.5 + - pos: 63.5,36.5 parent: 2 type: Transform - uid: 6116 components: - - pos: 63.5,34.5 + - pos: 64.5,36.5 parent: 2 type: Transform - uid: 6117 components: - - pos: 63.5,35.5 + - pos: 65.5,36.5 parent: 2 type: Transform - uid: 6118 components: - - pos: 63.5,36.5 + - pos: 66.5,36.5 parent: 2 type: Transform - uid: 6119 components: - - pos: 64.5,36.5 + - pos: 67.5,36.5 parent: 2 type: Transform - uid: 6120 components: - - pos: 65.5,36.5 + - pos: 68.5,36.5 parent: 2 type: Transform - uid: 6121 components: - - pos: 66.5,36.5 + - pos: 69.5,36.5 parent: 2 type: Transform - uid: 6122 components: - - pos: 67.5,36.5 + - pos: 70.5,36.5 parent: 2 type: Transform - uid: 6123 components: - - pos: 68.5,36.5 + - pos: 71.5,36.5 parent: 2 type: Transform - uid: 6124 components: - - pos: 69.5,36.5 + - pos: 72.5,36.5 parent: 2 type: Transform - uid: 6125 components: - - pos: 70.5,36.5 + - pos: 73.5,36.5 parent: 2 type: Transform - uid: 6126 components: - - pos: 71.5,36.5 + - pos: 74.5,36.5 parent: 2 type: Transform - uid: 6127 components: - - pos: 72.5,36.5 + - pos: 75.5,36.5 parent: 2 type: Transform - uid: 6128 components: - - pos: 73.5,36.5 + - pos: 76.5,36.5 parent: 2 type: Transform - uid: 6129 components: - - pos: 74.5,36.5 + - pos: 73.5,35.5 parent: 2 type: Transform - uid: 6130 components: - - pos: 75.5,36.5 + - pos: 73.5,34.5 parent: 2 type: Transform - uid: 6131 components: - - pos: 76.5,36.5 + - pos: 71.5,35.5 parent: 2 type: Transform - uid: 6132 components: - - pos: 73.5,35.5 + - pos: 71.5,34.5 parent: 2 type: Transform - uid: 6133 components: - - pos: 73.5,34.5 + - pos: 71.5,37.5 parent: 2 type: Transform - uid: 6134 components: - - pos: 71.5,35.5 + - pos: 71.5,38.5 parent: 2 type: Transform - uid: 6135 components: - - pos: 71.5,34.5 + - pos: 73.5,38.5 parent: 2 type: Transform - uid: 6136 components: - - pos: 71.5,37.5 + - pos: 73.5,37.5 parent: 2 type: Transform - uid: 6137 components: - - pos: 71.5,38.5 + - pos: 39.5,47.5 parent: 2 type: Transform - uid: 6138 components: - - pos: 73.5,38.5 + - pos: 43.5,45.5 parent: 2 type: Transform - uid: 6139 components: - - pos: 73.5,37.5 + - pos: 42.5,45.5 parent: 2 type: Transform - uid: 6140 components: - - pos: 39.5,47.5 + - pos: 41.5,45.5 parent: 2 type: Transform - uid: 6141 components: - - pos: 43.5,45.5 + - pos: 40.5,45.5 parent: 2 type: Transform - uid: 6142 components: - - pos: 42.5,45.5 + - pos: 39.5,45.5 parent: 2 type: Transform - uid: 6143 components: - - pos: 41.5,45.5 + - pos: 38.5,45.5 parent: 2 type: Transform - uid: 6144 components: - - pos: 40.5,45.5 + - pos: 37.5,45.5 parent: 2 type: Transform - uid: 6145 components: - - pos: 39.5,45.5 + - pos: 36.5,45.5 parent: 2 type: Transform - uid: 6146 components: - - pos: 38.5,45.5 + - pos: 35.5,45.5 parent: 2 type: Transform - uid: 6147 components: - - pos: 37.5,45.5 + - pos: 34.5,45.5 parent: 2 type: Transform - uid: 6148 components: - - pos: 36.5,45.5 + - pos: 39.5,46.5 parent: 2 type: Transform - uid: 6149 components: - - pos: 35.5,45.5 + - pos: 38.5,44.5 parent: 2 type: Transform - uid: 6150 components: - - pos: 34.5,45.5 + - pos: 38.5,43.5 parent: 2 type: Transform - uid: 6151 components: - - pos: 39.5,46.5 + - pos: 38.5,48.5 parent: 2 type: Transform - uid: 6152 components: - - pos: 38.5,44.5 + - pos: 38.5,49.5 parent: 2 type: Transform - uid: 6153 components: - - pos: 38.5,43.5 + - pos: 38.5,50.5 parent: 2 type: Transform - uid: 6154 components: - - pos: 38.5,48.5 + - pos: 39.5,50.5 parent: 2 type: Transform - uid: 6155 components: - - pos: 38.5,49.5 + - pos: 39.5,51.5 parent: 2 type: Transform - uid: 6156 components: - - pos: 38.5,50.5 + - pos: 40.5,51.5 parent: 2 type: Transform - uid: 6157 components: - - pos: 39.5,50.5 + - pos: 41.5,51.5 parent: 2 type: Transform - uid: 6158 components: - - pos: 39.5,51.5 + - pos: 41.5,44.5 parent: 2 type: Transform - uid: 6159 components: - - pos: 40.5,51.5 + - pos: 41.5,46.5 parent: 2 type: Transform - uid: 6160 components: - - pos: 41.5,51.5 + - pos: 41.5,47.5 parent: 2 type: Transform - uid: 6161 components: - - pos: 41.5,44.5 + - pos: 34.5,46.5 parent: 2 type: Transform - uid: 6162 components: - - pos: 41.5,46.5 + - pos: 34.5,47.5 parent: 2 type: Transform - uid: 6163 components: - - pos: 41.5,47.5 + - pos: 35.5,44.5 parent: 2 type: Transform - uid: 6164 components: - - pos: 34.5,46.5 + - pos: 35.5,43.5 parent: 2 type: Transform - uid: 6165 components: - - pos: 34.5,47.5 + - pos: 45.5,32.5 parent: 2 type: Transform - uid: 6166 components: - - pos: 35.5,44.5 + - pos: 45.5,31.5 parent: 2 type: Transform - uid: 6167 components: - - pos: 35.5,43.5 + - pos: 45.5,30.5 parent: 2 type: Transform - uid: 6168 components: - - pos: 45.5,32.5 + - pos: 45.5,29.5 parent: 2 type: Transform - uid: 6169 components: - - pos: 45.5,31.5 + - pos: 44.5,29.5 parent: 2 type: Transform - uid: 6170 components: - - pos: 45.5,30.5 + - pos: 43.5,29.5 parent: 2 type: Transform - uid: 6171 components: - - pos: 45.5,29.5 + - pos: 37.5,50.5 parent: 2 type: Transform - uid: 6172 components: - - pos: 44.5,29.5 + - pos: -9.5,46.5 parent: 2 type: Transform - uid: 6173 components: - - pos: 43.5,29.5 + - pos: -8.5,46.5 parent: 2 type: Transform - uid: 6174 components: - - pos: 37.5,50.5 + - pos: -7.5,46.5 parent: 2 type: Transform - uid: 6175 components: - - pos: -9.5,46.5 + - pos: -6.5,46.5 parent: 2 type: Transform - uid: 6176 components: - - pos: -8.5,46.5 + - pos: -5.5,46.5 parent: 2 type: Transform - uid: 6177 components: - - pos: -7.5,46.5 + - pos: -4.5,46.5 parent: 2 type: Transform - uid: 6178 components: - - pos: -6.5,46.5 + - pos: -3.5,46.5 parent: 2 type: Transform - uid: 6179 components: - - pos: -5.5,46.5 + - pos: -2.5,46.5 parent: 2 type: Transform - uid: 6180 components: - - pos: -4.5,46.5 + - pos: -1.5,46.5 parent: 2 type: Transform - uid: 6181 components: - - pos: -3.5,46.5 + - pos: -0.5,46.5 parent: 2 type: Transform - uid: 6182 components: - - pos: -2.5,46.5 + - pos: -0.5,45.5 parent: 2 type: Transform - uid: 6183 components: - - pos: -1.5,46.5 + - pos: -0.5,44.5 parent: 2 type: Transform - uid: 6184 components: - - pos: -0.5,46.5 + - pos: -1.5,44.5 parent: 2 type: Transform - uid: 6185 components: - - pos: -0.5,45.5 + - pos: -2.5,44.5 parent: 2 type: Transform - uid: 6186 components: - - pos: -0.5,44.5 + - pos: -3.5,44.5 parent: 2 type: Transform - uid: 6187 components: - - pos: -1.5,44.5 + - pos: -4.5,44.5 parent: 2 type: Transform - uid: 6188 components: - - pos: -2.5,44.5 + - pos: -5.5,44.5 parent: 2 type: Transform - uid: 6189 components: - - pos: -3.5,44.5 + - pos: -6.5,44.5 parent: 2 type: Transform - uid: 6190 components: - - pos: -4.5,44.5 + - pos: -7.5,44.5 parent: 2 type: Transform - uid: 6191 components: - - pos: -5.5,44.5 + - pos: -8.5,44.5 parent: 2 type: Transform - uid: 6192 components: - - pos: -6.5,44.5 + - pos: -9.5,44.5 parent: 2 type: Transform - uid: 6193 components: - - pos: -7.5,44.5 + - pos: 0.5,46.5 parent: 2 type: Transform - uid: 6194 components: - - pos: -8.5,44.5 + - pos: 0.5,47.5 parent: 2 type: Transform - uid: 6195 components: - - pos: -9.5,44.5 + - pos: -0.5,48.5 parent: 2 type: Transform - uid: 6196 components: - - pos: 0.5,46.5 + - pos: -0.5,49.5 parent: 2 type: Transform - uid: 6197 components: - - pos: 0.5,47.5 + - pos: -0.5,50.5 parent: 2 type: Transform - uid: 6198 components: - - pos: -0.5,48.5 + - pos: -0.5,51.5 parent: 2 type: Transform - uid: 6199 components: - - pos: -0.5,49.5 + - pos: -0.5,52.5 parent: 2 type: Transform - uid: 6200 components: - - pos: -0.5,50.5 + - pos: -0.5,53.5 parent: 2 type: Transform - uid: 6201 components: - - pos: -0.5,51.5 + - pos: -0.5,54.5 parent: 2 type: Transform - uid: 6202 components: - - pos: -0.5,52.5 + - pos: 0.5,48.5 parent: 2 type: Transform - uid: 6203 components: - - pos: -0.5,53.5 + - pos: 1.5,48.5 parent: 2 type: Transform - uid: 6204 components: - - pos: -0.5,54.5 + - pos: 1.5,50.5 parent: 2 type: Transform - uid: 6205 components: - - pos: 0.5,48.5 + - pos: 1.5,51.5 parent: 2 type: Transform - uid: 6206 components: - - pos: 1.5,48.5 + - pos: 1.5,52.5 parent: 2 type: Transform - uid: 6207 components: - - pos: 1.5,50.5 + - pos: 1.5,53.5 parent: 2 type: Transform - uid: 6208 components: - - pos: 1.5,51.5 + - pos: 1.5,54.5 parent: 2 type: Transform - uid: 6209 components: - - pos: 1.5,52.5 + - pos: -10.5,23.5 parent: 2 type: Transform - uid: 6210 components: - - pos: 1.5,53.5 + - pos: -10.5,22.5 parent: 2 type: Transform - uid: 6211 components: - - pos: 1.5,54.5 + - pos: -10.5,21.5 parent: 2 type: Transform - uid: 6212 components: - - pos: -10.5,23.5 + - pos: -10.5,20.5 parent: 2 type: Transform - uid: 6213 components: - - pos: -10.5,22.5 + - pos: -10.5,19.5 parent: 2 type: Transform - uid: 6214 components: - - pos: -10.5,21.5 + - pos: -10.5,18.5 parent: 2 type: Transform - uid: 6215 components: - - pos: -10.5,20.5 + - pos: -11.5,18.5 parent: 2 type: Transform - uid: 6216 components: - - pos: -10.5,19.5 + - pos: -12.5,18.5 parent: 2 type: Transform - uid: 6217 components: - - pos: -10.5,18.5 + - pos: -13.5,18.5 parent: 2 type: Transform - uid: 6218 components: - - pos: -11.5,18.5 + - pos: -13.5,19.5 parent: 2 type: Transform - uid: 6219 components: - - pos: -12.5,18.5 + - pos: -13.5,20.5 parent: 2 type: Transform - uid: 6220 components: - - pos: -13.5,18.5 + - pos: -13.5,21.5 parent: 2 type: Transform - uid: 6221 components: - - pos: -13.5,19.5 + - pos: -11.5,42.5 parent: 2 type: Transform - uid: 6222 components: - - pos: -13.5,20.5 + - pos: -10.5,42.5 parent: 2 type: Transform - uid: 6223 components: - - pos: -13.5,21.5 + - pos: -9.5,42.5 parent: 2 type: Transform - uid: 6224 components: - - pos: -11.5,42.5 + - pos: -9.5,43.5 parent: 2 type: Transform - uid: 6225 components: - - pos: -10.5,42.5 + - pos: 33.5,45.5 parent: 2 type: Transform - uid: 6226 components: - - pos: -9.5,42.5 + - pos: 32.5,45.5 parent: 2 type: Transform - uid: 6227 components: - - pos: -9.5,43.5 + - pos: 31.5,45.5 parent: 2 type: Transform - uid: 6228 components: - - pos: 33.5,45.5 + - pos: 30.5,45.5 parent: 2 type: Transform - uid: 6229 components: - - pos: 32.5,45.5 + - pos: 29.5,45.5 parent: 2 type: Transform - uid: 6230 components: - - pos: 31.5,45.5 + - pos: 29.5,44.5 parent: 2 type: Transform - uid: 6231 components: - - pos: 30.5,45.5 + - pos: 29.5,43.5 parent: 2 type: Transform - uid: 6232 components: - - pos: 29.5,45.5 + - pos: 29.5,42.5 parent: 2 type: Transform - uid: 6233 components: - - pos: 29.5,44.5 + - pos: 29.5,46.5 parent: 2 type: Transform - uid: 6234 components: - - pos: 29.5,43.5 + - pos: 29.5,47.5 parent: 2 type: Transform - uid: 6235 components: - - pos: 29.5,42.5 + - pos: -2.5,31.5 parent: 2 type: Transform - uid: 6236 components: - - pos: 29.5,46.5 + - pos: -2.5,30.5 parent: 2 type: Transform - uid: 6237 components: - - pos: 29.5,47.5 + - pos: -2.5,29.5 parent: 2 type: Transform - uid: 6238 components: - - pos: -2.5,31.5 + - pos: -2.5,28.5 parent: 2 type: Transform - uid: 6239 components: - - pos: -2.5,30.5 + - pos: -2.5,27.5 parent: 2 type: Transform - uid: 6240 components: - - pos: -2.5,29.5 + - pos: -2.5,26.5 parent: 2 type: Transform - uid: 6241 components: - - pos: -2.5,28.5 + - pos: -2.5,25.5 parent: 2 type: Transform - uid: 6242 components: - - pos: -2.5,27.5 + - pos: 3.5,32.5 parent: 2 type: Transform - uid: 6243 components: - - pos: -2.5,26.5 + - pos: -22.5,34.5 parent: 2 type: Transform - uid: 6244 components: - - pos: -2.5,25.5 + - pos: -23.5,34.5 parent: 2 type: Transform - uid: 6245 components: - - pos: 3.5,32.5 + - pos: -24.5,34.5 parent: 2 type: Transform - uid: 6246 components: - - pos: -22.5,34.5 + - pos: -24.5,35.5 parent: 2 type: Transform - uid: 6247 components: - - pos: -23.5,34.5 + - pos: -24.5,36.5 parent: 2 type: Transform - uid: 6248 components: - - pos: -24.5,34.5 + - pos: -24.5,37.5 parent: 2 type: Transform - uid: 6249 components: - - pos: -24.5,35.5 + - pos: -24.5,38.5 parent: 2 type: Transform - uid: 6250 components: - - pos: -24.5,36.5 + - pos: -23.5,38.5 parent: 2 type: Transform - uid: 6251 components: - - pos: -24.5,37.5 + - pos: -22.5,38.5 parent: 2 type: Transform - uid: 6252 components: - - pos: -24.5,38.5 + - pos: -21.5,38.5 parent: 2 type: Transform - uid: 6253 components: - - pos: -23.5,38.5 + - pos: -20.5,38.5 parent: 2 type: Transform - uid: 6254 components: - - pos: -22.5,38.5 + - pos: -24.5,39.5 parent: 2 type: Transform - uid: 6255 components: - - pos: -21.5,38.5 + - pos: -24.5,40.5 parent: 2 type: Transform - uid: 6256 components: - - pos: -20.5,38.5 + - pos: -24.5,41.5 parent: 2 type: Transform - uid: 6257 components: - - pos: -24.5,39.5 + - pos: -24.5,42.5 parent: 2 type: Transform - uid: 6258 components: - - pos: -24.5,40.5 + - pos: -24.5,43.5 parent: 2 type: Transform - uid: 6259 components: - - pos: -24.5,41.5 + - pos: -24.5,44.5 parent: 2 type: Transform - uid: 6260 components: - - pos: -24.5,42.5 + - pos: -24.5,45.5 parent: 2 type: Transform - uid: 6261 components: - - pos: -24.5,43.5 + - pos: -25.5,45.5 parent: 2 type: Transform - uid: 6262 components: - - pos: -24.5,44.5 + - pos: -26.5,45.5 parent: 2 type: Transform - uid: 6263 components: - - pos: -24.5,45.5 + - pos: -27.5,45.5 parent: 2 type: Transform - uid: 6264 components: - - pos: -25.5,45.5 + - pos: -27.5,44.5 parent: 2 type: Transform - uid: 6265 components: - - pos: -26.5,45.5 + - pos: -24.5,46.5 parent: 2 type: Transform - uid: 6266 components: - - pos: -27.5,45.5 + - pos: -24.5,47.5 parent: 2 type: Transform - uid: 6267 components: - - pos: -27.5,44.5 + - pos: -23.5,47.5 parent: 2 type: Transform - uid: 6268 components: - - pos: -24.5,46.5 + - pos: -22.5,47.5 parent: 2 type: Transform - uid: 6269 components: - - pos: -24.5,47.5 + - pos: -22.5,48.5 parent: 2 type: Transform - uid: 6270 components: - - pos: -23.5,47.5 + - pos: -21.5,48.5 parent: 2 type: Transform - uid: 6271 components: - - pos: -22.5,47.5 + - pos: -20.5,48.5 parent: 2 type: Transform - uid: 6272 components: - - pos: -22.5,48.5 + - pos: -20.5,50.5 parent: 2 type: Transform - uid: 6273 components: - - pos: -21.5,48.5 + - pos: -19.5,50.5 parent: 2 type: Transform - uid: 6274 components: - - pos: -20.5,48.5 + - pos: -20.5,49.5 parent: 2 type: Transform - uid: 6275 components: - - pos: -20.5,50.5 + - pos: -8.5,60.5 parent: 2 type: Transform - uid: 6276 components: - - pos: -19.5,50.5 + - pos: -8.5,59.5 parent: 2 type: Transform - uid: 6277 components: - - pos: -20.5,49.5 + - pos: -7.5,58.5 parent: 2 type: Transform - uid: 6278 components: - - pos: -8.5,60.5 + - pos: -6.5,58.5 parent: 2 type: Transform - uid: 6279 components: - - pos: -8.5,59.5 + - pos: -5.5,58.5 parent: 2 type: Transform - uid: 6280 components: - - pos: -7.5,58.5 + - pos: -4.5,58.5 parent: 2 type: Transform - uid: 6281 components: - - pos: -6.5,58.5 + - pos: -3.5,58.5 parent: 2 type: Transform - uid: 6282 components: - - pos: -5.5,58.5 + - pos: -2.5,58.5 parent: 2 type: Transform - uid: 6283 components: - - pos: -4.5,58.5 + - pos: -1.5,58.5 parent: 2 type: Transform - uid: 6284 components: - - pos: -3.5,58.5 + - pos: -0.5,58.5 parent: 2 type: Transform - uid: 6285 components: - - pos: -2.5,58.5 + - pos: 0.5,58.5 parent: 2 type: Transform - uid: 6286 components: - - pos: -1.5,58.5 + - pos: 0.5,57.5 parent: 2 type: Transform - uid: 6287 components: - - pos: -0.5,58.5 + - pos: 0.5,56.5 parent: 2 type: Transform - uid: 6288 components: - - pos: 0.5,58.5 + - pos: 0.5,55.5 parent: 2 type: Transform - uid: 6289 components: - - pos: 0.5,57.5 + - pos: -2.5,59.5 parent: 2 type: Transform - uid: 6290 components: - - pos: 0.5,56.5 + - pos: -2.5,60.5 parent: 2 type: Transform - uid: 6291 components: - - pos: 0.5,55.5 + - pos: -2.5,61.5 parent: 2 type: Transform - uid: 6292 components: - - pos: -2.5,59.5 + - pos: -2.5,62.5 parent: 2 type: Transform - uid: 6293 components: - - pos: -2.5,60.5 + - pos: -1.5,62.5 parent: 2 type: Transform - uid: 6294 components: - - pos: -2.5,61.5 + - pos: -1.5,63.5 parent: 2 type: Transform - uid: 6295 components: - - pos: -2.5,62.5 + - pos: -1.5,65.5 parent: 2 type: Transform - uid: 6296 components: - - pos: -1.5,62.5 + - pos: -1.5,64.5 parent: 2 type: Transform - uid: 6297 components: - - pos: -1.5,63.5 + - pos: -0.5,59.5 parent: 2 type: Transform - uid: 6298 components: - - pos: -1.5,65.5 + - pos: -0.5,60.5 parent: 2 type: Transform - uid: 6299 components: - - pos: -1.5,64.5 + - pos: -0.5,61.5 parent: 2 type: Transform - uid: 6300 components: - - pos: -0.5,59.5 + - pos: -0.5,62.5 parent: 2 type: Transform - uid: 6301 components: - - pos: -0.5,60.5 + - pos: -1.5,66.5 parent: 2 type: Transform - uid: 6302 components: - - pos: -0.5,61.5 + - pos: -2.5,66.5 parent: 2 type: Transform - uid: 6303 components: - - pos: -0.5,62.5 + - pos: -3.5,66.5 parent: 2 type: Transform - uid: 6304 components: - - pos: -1.5,66.5 + - pos: -4.5,66.5 parent: 2 type: Transform - uid: 6305 components: - - pos: -2.5,66.5 + - pos: -5.5,66.5 parent: 2 type: Transform - uid: 6306 components: - - pos: -3.5,66.5 + - pos: -5.5,67.5 parent: 2 type: Transform - uid: 6307 components: - - pos: -4.5,66.5 + - pos: -5.5,68.5 parent: 2 type: Transform - uid: 6308 components: - - pos: -5.5,66.5 + - pos: -5.5,69.5 parent: 2 type: Transform - uid: 6309 components: - - pos: -5.5,67.5 + - pos: -5.5,70.5 parent: 2 type: Transform - uid: 6310 components: - - pos: -5.5,68.5 + - pos: -5.5,71.5 parent: 2 type: Transform - uid: 6311 components: - - pos: -5.5,69.5 + - pos: -5.5,72.5 parent: 2 type: Transform - uid: 6312 components: - - pos: -5.5,70.5 + - pos: -4.5,72.5 parent: 2 type: Transform - uid: 6313 components: - - pos: -5.5,71.5 + - pos: -3.5,72.5 parent: 2 type: Transform - uid: 6314 components: - - pos: -5.5,72.5 + - pos: -2.5,72.5 parent: 2 type: Transform - uid: 6315 components: - - pos: -4.5,72.5 + - pos: -1.5,72.5 parent: 2 type: Transform - uid: 6316 components: - - pos: -3.5,72.5 + - pos: -0.5,72.5 parent: 2 type: Transform - uid: 6317 components: - - pos: -2.5,72.5 + - pos: 0.5,72.5 parent: 2 type: Transform - uid: 6318 components: - - pos: -1.5,72.5 + - pos: 1.5,72.5 parent: 2 type: Transform - uid: 6319 components: - - pos: -0.5,72.5 + - pos: 2.5,72.5 parent: 2 type: Transform - uid: 6320 components: - - pos: 0.5,72.5 + - pos: 2.5,71.5 parent: 2 type: Transform - uid: 6321 components: - - pos: 1.5,72.5 + - pos: 2.5,70.5 parent: 2 type: Transform - uid: 6322 components: - - pos: 2.5,72.5 + - pos: 2.5,69.5 parent: 2 type: Transform - uid: 6323 components: - - pos: 2.5,71.5 + - pos: 2.5,68.5 parent: 2 type: Transform - uid: 6324 components: - - pos: 2.5,70.5 + - pos: 2.5,67.5 parent: 2 type: Transform - uid: 6325 components: - - pos: 2.5,69.5 + - pos: 2.5,66.5 parent: 2 type: Transform - uid: 6326 components: - - pos: 2.5,68.5 + - pos: 1.5,66.5 parent: 2 type: Transform - uid: 6327 components: - - pos: 2.5,67.5 + - pos: 0.5,66.5 parent: 2 type: Transform - uid: 6328 components: - - pos: 2.5,66.5 + - pos: -0.5,66.5 parent: 2 type: Transform - uid: 6329 components: - - pos: 1.5,66.5 + - pos: -1.5,67.5 parent: 2 type: Transform - uid: 6330 components: - - pos: 0.5,66.5 + - pos: -1.5,68.5 parent: 2 type: Transform - uid: 6331 components: - - pos: -0.5,66.5 + - pos: -1.5,69.5 parent: 2 type: Transform - uid: 6332 components: - - pos: -1.5,67.5 + - pos: -7.5,59.5 parent: 2 type: Transform - uid: 6333 components: - - pos: -1.5,68.5 + - pos: -9.5,59.5 parent: 2 type: Transform - uid: 6334 components: - - pos: -1.5,69.5 + - pos: -10.5,59.5 parent: 2 type: Transform - uid: 6335 components: - - pos: -7.5,59.5 + - pos: -11.5,59.5 parent: 2 type: Transform - uid: 6336 components: - - pos: -9.5,59.5 + - pos: -12.5,59.5 parent: 2 type: Transform - uid: 6337 components: - - pos: -10.5,59.5 + - pos: -12.5,58.5 parent: 2 type: Transform - uid: 6338 components: - - pos: -11.5,59.5 + - pos: -12.5,57.5 parent: 2 type: Transform - uid: 6339 components: - - pos: -12.5,59.5 + - pos: -12.5,56.5 parent: 2 type: Transform - uid: 6340 components: - - pos: -12.5,58.5 + - pos: -12.5,55.5 parent: 2 type: Transform - uid: 6341 components: - - pos: -12.5,57.5 + - pos: -12.5,54.5 parent: 2 type: Transform - uid: 6342 components: - - pos: -12.5,56.5 + - pos: -12.5,53.5 parent: 2 type: Transform - uid: 6343 components: - - pos: -12.5,55.5 + - pos: -12.5,52.5 parent: 2 type: Transform - uid: 6344 components: - - pos: -12.5,54.5 + - pos: -12.5,51.5 parent: 2 type: Transform - uid: 6345 components: - - pos: -12.5,53.5 + - pos: -12.5,50.5 parent: 2 type: Transform - uid: 6346 components: - - pos: -12.5,52.5 + - pos: -12.5,49.5 parent: 2 type: Transform - uid: 6347 components: - - pos: -12.5,51.5 + - pos: -13.5,49.5 parent: 2 type: Transform - uid: 6348 components: - - pos: -12.5,50.5 + - pos: -14.5,49.5 parent: 2 type: Transform - uid: 6349 components: - - pos: -12.5,49.5 + - pos: -14.5,50.5 parent: 2 type: Transform - uid: 6350 components: - - pos: -13.5,49.5 + - pos: -14.5,51.5 parent: 2 type: Transform - uid: 6351 components: - - pos: -14.5,49.5 + - pos: -13.5,51.5 parent: 2 type: Transform - uid: 6352 components: - - pos: -14.5,50.5 + - pos: -12.5,60.5 parent: 2 type: Transform - uid: 6353 components: - - pos: -14.5,51.5 + - pos: -12.5,61.5 parent: 2 type: Transform - uid: 6354 components: - - pos: -13.5,51.5 + - pos: -12.5,62.5 parent: 2 type: Transform - uid: 6355 components: - - pos: -12.5,60.5 + - pos: -12.5,63.5 parent: 2 type: Transform - uid: 6356 components: - - pos: -12.5,61.5 + - pos: -12.5,64.5 parent: 2 type: Transform - uid: 6357 components: - - pos: -12.5,62.5 + - pos: -12.5,65.5 parent: 2 type: Transform - uid: 6358 components: - - pos: -12.5,63.5 + - pos: -12.5,66.5 parent: 2 type: Transform - uid: 6359 components: - - pos: -12.5,64.5 + - pos: -12.5,67.5 parent: 2 type: Transform - uid: 6360 components: - - pos: -12.5,65.5 + - pos: -12.5,68.5 parent: 2 type: Transform - uid: 6361 components: - - pos: -12.5,66.5 + - pos: -12.5,69.5 parent: 2 type: Transform - uid: 6362 components: - - pos: -12.5,67.5 + - pos: -12.5,70.5 parent: 2 type: Transform - uid: 6363 components: - - pos: -12.5,68.5 + - pos: -12.5,71.5 parent: 2 type: Transform - uid: 6364 components: - - pos: -12.5,69.5 + - pos: -12.5,72.5 parent: 2 type: Transform - uid: 6365 components: - - pos: -12.5,70.5 + - pos: -12.5,73.5 parent: 2 type: Transform - uid: 6366 components: - - pos: -12.5,71.5 + - pos: -12.5,74.5 parent: 2 type: Transform - uid: 6367 components: - - pos: -12.5,72.5 + - pos: -13.5,67.5 parent: 2 type: Transform - uid: 6368 components: - - pos: -12.5,73.5 + - pos: -14.5,67.5 parent: 2 type: Transform - uid: 6369 components: - - pos: -12.5,74.5 + - pos: -15.5,67.5 parent: 2 type: Transform - uid: 6370 components: - - pos: -13.5,67.5 + - pos: -16.5,67.5 parent: 2 type: Transform - uid: 6371 components: - - pos: -14.5,67.5 + - pos: -17.5,67.5 parent: 2 type: Transform - uid: 6372 components: - - pos: -15.5,67.5 + - pos: -17.5,66.5 parent: 2 type: Transform - uid: 6373 components: - - pos: -16.5,67.5 + - pos: -17.5,65.5 parent: 2 type: Transform - uid: 6374 components: - - pos: -17.5,67.5 + - pos: -17.5,64.5 parent: 2 type: Transform - uid: 6375 components: - - pos: -17.5,66.5 + - pos: -17.5,63.5 parent: 2 type: Transform - uid: 6376 components: - - pos: -17.5,65.5 + - pos: -17.5,62.5 parent: 2 type: Transform - uid: 6377 components: - - pos: -17.5,64.5 + - pos: -17.5,61.5 parent: 2 type: Transform - uid: 6378 components: - - pos: -17.5,63.5 + - pos: -17.5,60.5 parent: 2 type: Transform - uid: 6379 components: - - pos: -17.5,62.5 + - pos: -17.5,59.5 parent: 2 type: Transform - uid: 6380 components: - - pos: -17.5,61.5 + - pos: -17.5,58.5 parent: 2 type: Transform - uid: 6381 components: - - pos: -17.5,60.5 + - pos: -17.5,57.5 parent: 2 type: Transform - uid: 6382 components: - - pos: -17.5,59.5 + - pos: -17.5,56.5 parent: 2 type: Transform - uid: 6383 components: - - pos: -17.5,58.5 + - pos: -17.5,55.5 parent: 2 type: Transform - uid: 6384 components: - - pos: -17.5,57.5 + - pos: -18.5,55.5 parent: 2 type: Transform - uid: 6385 components: - - pos: -17.5,56.5 + - pos: -19.5,55.5 parent: 2 type: Transform - uid: 6386 components: - - pos: -17.5,55.5 + - pos: -20.5,55.5 parent: 2 type: Transform - uid: 6387 components: - - pos: -18.5,55.5 + - pos: -21.5,55.5 parent: 2 type: Transform - uid: 6388 components: - - pos: -19.5,55.5 + - pos: -22.5,55.5 parent: 2 type: Transform - uid: 6389 components: - - pos: -20.5,55.5 + - pos: -22.5,54.5 parent: 2 type: Transform - uid: 6390 components: - - pos: -21.5,55.5 + - pos: -22.5,53.5 parent: 2 type: Transform - uid: 6391 components: - - pos: -22.5,55.5 + - pos: -22.5,52.5 parent: 2 type: Transform - uid: 6392 components: - - pos: -22.5,54.5 + - pos: -22.5,51.5 parent: 2 type: Transform - uid: 6393 components: - - pos: -22.5,53.5 + - pos: -21.5,53.5 parent: 2 type: Transform - uid: 6394 components: - - pos: -22.5,52.5 + - pos: -21.5,56.5 parent: 2 type: Transform - uid: 6395 components: - - pos: -22.5,51.5 + - pos: -21.5,57.5 parent: 2 type: Transform - uid: 6396 components: - - pos: -21.5,53.5 + - pos: -21.5,58.5 parent: 2 type: Transform - uid: 6397 components: - - pos: -21.5,56.5 + - pos: -21.5,59.5 parent: 2 type: Transform - uid: 6398 components: - - pos: -21.5,57.5 + - pos: -21.5,60.5 parent: 2 type: Transform - uid: 6399 components: - - pos: -21.5,58.5 + - pos: -21.5,61.5 parent: 2 type: Transform - uid: 6400 components: - - pos: -21.5,59.5 + - pos: -21.5,62.5 parent: 2 type: Transform - uid: 6401 components: - - pos: -21.5,60.5 + - pos: -21.5,63.5 parent: 2 type: Transform - uid: 6402 components: - - pos: -21.5,61.5 + - pos: -21.5,64.5 parent: 2 type: Transform - uid: 6403 components: - - pos: -21.5,62.5 + - pos: -21.5,65.5 parent: 2 type: Transform - uid: 6404 components: - - pos: -21.5,63.5 + - pos: -21.5,66.5 parent: 2 type: Transform - uid: 6405 components: - - pos: -21.5,64.5 + - pos: -21.5,67.5 parent: 2 type: Transform - uid: 6406 components: - - pos: -21.5,65.5 + - pos: -21.5,68.5 parent: 2 type: Transform - uid: 6407 components: - - pos: -21.5,66.5 + - pos: -21.5,69.5 parent: 2 type: Transform - uid: 6408 components: - - pos: -21.5,67.5 + - pos: -21.5,70.5 parent: 2 type: Transform - uid: 6409 components: - - pos: -21.5,68.5 + - pos: -21.5,71.5 parent: 2 type: Transform - uid: 6410 components: - - pos: -21.5,69.5 + - pos: -21.5,72.5 parent: 2 type: Transform - uid: 6411 components: - - pos: -21.5,70.5 + - pos: -21.5,73.5 parent: 2 type: Transform - uid: 6412 components: - - pos: -21.5,71.5 + - pos: -21.5,74.5 parent: 2 type: Transform - uid: 6413 components: - - pos: -21.5,72.5 + - pos: -17.5,68.5 parent: 2 type: Transform - uid: 6414 components: - - pos: -21.5,73.5 + - pos: -17.5,69.5 parent: 2 type: Transform - uid: 6415 components: - - pos: -21.5,74.5 + - pos: -17.5,70.5 parent: 2 type: Transform - uid: 6416 components: - - pos: -17.5,68.5 + - pos: -17.5,54.5 parent: 2 type: Transform - uid: 6417 components: - - pos: -17.5,69.5 + - pos: -17.5,53.5 parent: 2 type: Transform - uid: 6418 components: - - pos: -17.5,70.5 + - pos: -25.5,41.5 parent: 2 type: Transform - uid: 6419 components: - - pos: -17.5,54.5 + - pos: -25.5,40.5 parent: 2 type: Transform - uid: 6420 components: - - pos: -17.5,53.5 + - pos: -26.5,41.5 parent: 2 type: Transform - uid: 6421 components: - - pos: -25.5,41.5 + - pos: -28.5,39.5 parent: 2 type: Transform - uid: 6422 components: - - pos: -25.5,40.5 + - pos: -27.5,41.5 parent: 2 type: Transform - uid: 6423 components: - - pos: -26.5,41.5 + - pos: -28.5,40.5 parent: 2 type: Transform - uid: 6424 components: - - pos: -28.5,39.5 + - pos: -28.5,41.5 parent: 2 type: Transform - uid: 6425 components: - - pos: -27.5,41.5 + - pos: -28.5,38.5 parent: 2 type: Transform - uid: 6426 components: - - pos: -28.5,40.5 + - pos: -29.5,38.5 parent: 2 type: Transform - uid: 6427 components: - - pos: -28.5,41.5 + - pos: -30.5,38.5 parent: 2 type: Transform - uid: 6428 components: - - pos: -28.5,38.5 + - pos: -31.5,38.5 parent: 2 type: Transform - uid: 6429 components: - - pos: -29.5,38.5 + - pos: -32.5,38.5 parent: 2 type: Transform - uid: 6430 components: - - pos: -30.5,38.5 + - pos: -32.5,39.5 parent: 2 type: Transform - uid: 6431 components: - - pos: -31.5,38.5 + - pos: -33.5,39.5 parent: 2 type: Transform - uid: 6432 components: - - pos: -32.5,38.5 + - pos: -34.5,39.5 parent: 2 type: Transform - uid: 6433 components: - - pos: -32.5,39.5 + - pos: -35.5,39.5 parent: 2 type: Transform - uid: 6434 components: - - pos: -33.5,39.5 + - pos: -36.5,39.5 parent: 2 type: Transform - uid: 6435 components: - - pos: -34.5,39.5 + - pos: -37.5,39.5 parent: 2 type: Transform - uid: 6436 components: - - pos: -35.5,39.5 + - pos: -37.5,40.5 parent: 2 type: Transform - uid: 6437 components: - - pos: -36.5,39.5 + - pos: -37.5,41.5 parent: 2 type: Transform - uid: 6438 components: - - pos: -37.5,39.5 + - pos: -37.5,42.5 parent: 2 type: Transform - uid: 6439 components: - - pos: -37.5,40.5 + - pos: -38.5,39.5 parent: 2 type: Transform - uid: 6440 components: - - pos: -37.5,41.5 + - pos: -39.5,39.5 parent: 2 type: Transform - uid: 6441 components: - - pos: -37.5,42.5 + - pos: -40.5,39.5 parent: 2 type: Transform - uid: 6442 components: - - pos: -38.5,39.5 + - pos: -41.5,39.5 parent: 2 type: Transform - uid: 6443 components: - - pos: -39.5,39.5 + - pos: -42.5,39.5 parent: 2 type: Transform - uid: 6444 components: - - pos: -40.5,39.5 + - pos: -43.5,39.5 parent: 2 type: Transform - uid: 6445 components: - - pos: -41.5,39.5 + - pos: -44.5,39.5 parent: 2 type: Transform - uid: 6446 components: - - pos: -42.5,39.5 + - pos: -45.5,39.5 parent: 2 type: Transform - uid: 6447 components: - - pos: -43.5,39.5 + - pos: -46.5,39.5 parent: 2 type: Transform - uid: 6448 components: - - pos: -44.5,39.5 + - pos: -41.5,38.5 parent: 2 type: Transform - uid: 6449 components: - - pos: -45.5,39.5 + - pos: -29.5,37.5 parent: 2 type: Transform - uid: 6450 components: - - pos: -46.5,39.5 + - pos: -29.5,36.5 parent: 2 type: Transform - uid: 6451 components: - - pos: -41.5,38.5 + - pos: -30.5,36.5 parent: 2 type: Transform - uid: 6452 components: - - pos: -29.5,37.5 + - pos: -31.5,36.5 parent: 2 type: Transform - uid: 6453 components: - - pos: -29.5,36.5 + - pos: -32.5,36.5 parent: 2 type: Transform - uid: 6454 components: - - pos: -30.5,36.5 + - pos: -33.5,36.5 parent: 2 type: Transform - uid: 6455 components: - - pos: -31.5,36.5 + - pos: -34.5,36.5 parent: 2 type: Transform - uid: 6456 components: - - pos: -32.5,36.5 + - pos: -34.5,37.5 parent: 2 type: Transform - uid: 6457 components: - - pos: -33.5,36.5 + - pos: -35.5,37.5 parent: 2 type: Transform - uid: 6458 components: - - pos: -34.5,36.5 + - pos: -36.5,37.5 parent: 2 type: Transform - uid: 6459 components: - - pos: -34.5,37.5 + - pos: -37.5,37.5 parent: 2 type: Transform - uid: 6460 components: - - pos: -35.5,37.5 + - pos: -37.5,36.5 parent: 2 type: Transform - uid: 6461 components: - - pos: -36.5,37.5 + - pos: -21.5,27.5 parent: 2 type: Transform - uid: 6462 components: - - pos: -37.5,37.5 + - pos: -22.5,27.5 parent: 2 type: Transform - uid: 6463 components: - - pos: -37.5,36.5 + - pos: -23.5,27.5 parent: 2 type: Transform - uid: 6464 components: - - pos: -21.5,27.5 + - pos: -24.5,27.5 parent: 2 type: Transform - uid: 6465 components: - - pos: -22.5,27.5 + - pos: -25.5,27.5 parent: 2 type: Transform - uid: 6466 components: - - pos: -23.5,27.5 + - pos: -26.5,27.5 parent: 2 type: Transform - uid: 6467 components: - - pos: -24.5,27.5 + - pos: -27.5,27.5 parent: 2 type: Transform - uid: 6468 components: - - pos: -25.5,27.5 + - pos: -28.5,27.5 parent: 2 type: Transform - uid: 6469 components: - - pos: -26.5,27.5 + - pos: -28.5,28.5 parent: 2 type: Transform - uid: 6470 components: - - pos: -27.5,27.5 + - pos: -28.5,29.5 parent: 2 type: Transform - uid: 6471 components: - - pos: -28.5,27.5 + - pos: -28.5,30.5 parent: 2 type: Transform - uid: 6472 components: - - pos: -28.5,28.5 + - pos: -28.5,31.5 parent: 2 type: Transform - uid: 6473 components: - - pos: -28.5,29.5 + - pos: -27.5,31.5 parent: 2 type: Transform - uid: 6474 components: - - pos: -28.5,30.5 + - pos: -27.5,33.5 parent: 2 type: Transform - uid: 6475 components: - - pos: -28.5,31.5 + - pos: -27.5,34.5 parent: 2 type: Transform - uid: 6476 components: - - pos: -27.5,31.5 + - pos: -27.5,35.5 parent: 2 type: Transform - uid: 6477 components: - - pos: -27.5,33.5 + - pos: -27.5,32.5 parent: 2 type: Transform - uid: 6478 components: - - pos: -27.5,34.5 + - pos: -16.5,62.5 parent: 2 type: Transform - uid: 6479 components: - - pos: -27.5,35.5 + - pos: -16.5,61.5 parent: 2 type: Transform - uid: 6480 components: - - pos: -27.5,32.5 + - pos: -18.5,62.5 parent: 2 type: Transform - uid: 6481 components: - - pos: -16.5,62.5 + - pos: -18.5,61.5 parent: 2 type: Transform - uid: 6482 components: - - pos: -16.5,61.5 + - pos: 56.5,36.5 parent: 2 type: Transform - uid: 6483 components: - - pos: -18.5,62.5 + - pos: 28.5,45.5 parent: 2 type: Transform - uid: 6484 components: - - pos: -18.5,61.5 + - pos: 27.5,45.5 parent: 2 type: Transform - uid: 6485 components: - - pos: 56.5,36.5 + - pos: 26.5,45.5 parent: 2 type: Transform - uid: 6486 components: - - pos: 28.5,45.5 + - pos: 25.5,45.5 parent: 2 type: Transform - uid: 6487 components: - - pos: 27.5,45.5 + - pos: 24.5,45.5 parent: 2 type: Transform - uid: 6488 components: - - pos: 26.5,45.5 + - pos: 23.5,45.5 parent: 2 type: Transform - uid: 6489 components: - - pos: 25.5,45.5 + - pos: 22.5,45.5 parent: 2 type: Transform - uid: 6490 components: - - pos: 24.5,45.5 + - pos: 21.5,45.5 parent: 2 type: Transform - uid: 6491 components: - - pos: 23.5,45.5 + - pos: -8.5,-76.5 parent: 2 type: Transform - uid: 6492 components: - - pos: 22.5,45.5 + - pos: -8.5,-77.5 parent: 2 type: Transform - uid: 6493 components: - - pos: 21.5,45.5 + - pos: -8.5,-78.5 parent: 2 type: Transform - uid: 6494 components: - - pos: -8.5,-76.5 + - pos: -8.5,-79.5 parent: 2 type: Transform - uid: 6495 components: - - pos: -8.5,-77.5 + - pos: -8.5,-80.5 parent: 2 type: Transform - uid: 6496 components: - - pos: -8.5,-78.5 + - pos: -8.5,-81.5 parent: 2 type: Transform - uid: 6497 components: - - pos: -8.5,-79.5 + - pos: -8.5,-82.5 parent: 2 type: Transform - uid: 6498 components: - - pos: -8.5,-80.5 + - pos: -8.5,-83.5 parent: 2 type: Transform - uid: 6499 components: - - pos: -8.5,-81.5 + - pos: -8.5,-84.5 parent: 2 type: Transform - uid: 6500 components: - - pos: -8.5,-82.5 + - pos: -8.5,-85.5 parent: 2 type: Transform - uid: 6501 components: - - pos: -8.5,-83.5 + - pos: -8.5,-86.5 parent: 2 type: Transform - uid: 6502 components: - - pos: -8.5,-84.5 + - pos: -7.5,-86.5 parent: 2 type: Transform - uid: 6503 components: - - pos: -8.5,-85.5 + - pos: -7.5,-87.5 parent: 2 type: Transform - uid: 6504 components: - - pos: -8.5,-86.5 + - pos: -7.5,-88.5 parent: 2 type: Transform - uid: 6505 components: - - pos: -7.5,-86.5 + - pos: -7.5,-89.5 parent: 2 type: Transform - uid: 6506 components: - - pos: -7.5,-87.5 + - pos: -7.5,-90.5 parent: 2 type: Transform - uid: 6507 components: - - pos: -7.5,-88.5 + - pos: -7.5,-91.5 parent: 2 type: Transform - uid: 6508 components: - - pos: -7.5,-89.5 + - pos: -7.5,-92.5 parent: 2 type: Transform - uid: 6509 components: - - pos: -7.5,-90.5 + - pos: -7.5,-93.5 parent: 2 type: Transform - uid: 6510 components: - - pos: -7.5,-91.5 + - pos: -7.5,-94.5 parent: 2 type: Transform - uid: 6511 components: - - pos: -7.5,-92.5 + - pos: -7.5,-95.5 parent: 2 type: Transform - uid: 6512 components: - - pos: -7.5,-93.5 + - pos: -7.5,-96.5 parent: 2 type: Transform - uid: 6513 components: - - pos: -7.5,-94.5 + - pos: -7.5,-97.5 parent: 2 type: Transform - uid: 6514 components: - - pos: -7.5,-95.5 + - pos: -8.5,-97.5 parent: 2 type: Transform - uid: 6515 components: - - pos: -7.5,-96.5 + - pos: -9.5,-97.5 parent: 2 type: Transform - uid: 6516 components: - - pos: -7.5,-97.5 + - pos: -10.5,-97.5 parent: 2 type: Transform - uid: 6517 components: - - pos: -8.5,-97.5 + - pos: -11.5,-97.5 parent: 2 type: Transform - uid: 6518 components: - - pos: -9.5,-97.5 + - pos: -12.5,-97.5 parent: 2 type: Transform - uid: 6519 components: - - pos: -10.5,-97.5 + - pos: -13.5,-97.5 parent: 2 type: Transform - uid: 6520 components: - - pos: -11.5,-97.5 + - pos: -14.5,-97.5 parent: 2 type: Transform - uid: 6521 components: - - pos: -12.5,-97.5 + - pos: -15.5,-97.5 parent: 2 type: Transform - uid: 6522 components: - - pos: -13.5,-97.5 + - pos: -16.5,-97.5 parent: 2 type: Transform - uid: 6523 components: - - pos: -14.5,-97.5 + - pos: -17.5,-97.5 parent: 2 type: Transform - uid: 6524 components: - - pos: -15.5,-97.5 + - pos: -18.5,-97.5 parent: 2 type: Transform - uid: 6525 components: - - pos: -16.5,-97.5 + - pos: -19.5,-97.5 parent: 2 type: Transform - uid: 6526 components: - - pos: -17.5,-97.5 + - pos: -20.5,-97.5 parent: 2 type: Transform - uid: 6527 components: - - pos: -18.5,-97.5 + - pos: -20.5,-96.5 parent: 2 type: Transform - uid: 6528 components: - - pos: -19.5,-97.5 + - pos: -20.5,-95.5 parent: 2 type: Transform - uid: 6529 components: - - pos: -20.5,-97.5 + - pos: -21.5,-95.5 parent: 2 type: Transform - uid: 6530 components: - - pos: -20.5,-96.5 + - pos: -22.5,-95.5 parent: 2 type: Transform - uid: 6531 components: - - pos: -20.5,-95.5 + - pos: -23.5,-95.5 parent: 2 type: Transform - uid: 6532 components: - - pos: -21.5,-95.5 + - pos: -24.5,-95.5 parent: 2 type: Transform - uid: 6533 components: - - pos: -22.5,-95.5 + - pos: -24.5,-96.5 parent: 2 type: Transform - uid: 6534 components: - - pos: -23.5,-95.5 + - pos: -24.5,-97.5 parent: 2 type: Transform - uid: 6535 components: - - pos: -24.5,-95.5 + - pos: -24.5,-98.5 parent: 2 type: Transform - uid: 6536 components: - - pos: -24.5,-96.5 + - pos: -24.5,-99.5 parent: 2 type: Transform - uid: 6537 components: - - pos: -24.5,-97.5 + - pos: -23.5,-99.5 parent: 2 type: Transform - uid: 6538 components: - - pos: -24.5,-98.5 + - pos: -22.5,-99.5 parent: 2 type: Transform - uid: 6539 components: - - pos: -24.5,-99.5 + - pos: -21.5,-99.5 parent: 2 type: Transform - uid: 6540 components: - - pos: -23.5,-99.5 + - pos: -20.5,-99.5 parent: 2 type: Transform - uid: 6541 components: - - pos: -22.5,-99.5 + - pos: -20.5,-98.5 parent: 2 type: Transform - uid: 6542 components: - - pos: -21.5,-99.5 + - pos: -15.5,-98.5 parent: 2 type: Transform - uid: 6543 components: - - pos: -20.5,-99.5 + - pos: -6.5,-97.5 parent: 2 type: Transform - uid: 6544 components: - - pos: -20.5,-98.5 + - pos: -5.5,-97.5 parent: 2 type: Transform - uid: 6545 components: - - pos: -15.5,-98.5 + - pos: -4.5,-97.5 parent: 2 type: Transform - uid: 6546 components: - - pos: -6.5,-97.5 + - pos: -7.5,-98.5 parent: 2 type: Transform - uid: 6547 components: - - pos: -5.5,-97.5 + - pos: -7.5,-99.5 parent: 2 type: Transform - uid: 6548 components: - - pos: -4.5,-97.5 + - pos: -7.5,-100.5 parent: 2 type: Transform - uid: 6549 components: - - pos: -7.5,-98.5 + - pos: -8.5,-95.5 parent: 2 type: Transform - uid: 6550 components: - - pos: -7.5,-99.5 + - pos: -43.5,-85.5 parent: 2 type: Transform - uid: 6551 components: - - pos: -7.5,-100.5 + - pos: -43.5,-86.5 parent: 2 type: Transform - uid: 6552 components: - - pos: -8.5,-95.5 + - pos: -43.5,-87.5 parent: 2 type: Transform - uid: 6553 components: - - pos: -43.5,-85.5 + - pos: -43.5,-88.5 parent: 2 type: Transform - uid: 6554 components: - - pos: -43.5,-86.5 + - pos: -43.5,-89.5 parent: 2 type: Transform - uid: 6555 components: - - pos: -43.5,-87.5 + - pos: -38.5,-85.5 parent: 2 type: Transform - uid: 6556 components: - - pos: -43.5,-88.5 + - pos: -39.5,-85.5 parent: 2 type: Transform - uid: 6557 components: - - pos: -43.5,-89.5 + - pos: -40.5,-85.5 parent: 2 type: Transform - uid: 6558 components: - - pos: -38.5,-85.5 + - pos: -40.5,-86.5 parent: 2 type: Transform - uid: 6559 components: - - pos: -39.5,-85.5 + - pos: -40.5,-87.5 parent: 2 type: Transform - uid: 6560 components: - - pos: -40.5,-85.5 + - pos: -40.5,-88.5 parent: 2 type: Transform - uid: 6561 components: - - pos: -40.5,-86.5 + - pos: -40.5,-89.5 parent: 2 type: Transform - uid: 6562 components: - - pos: -40.5,-87.5 + - pos: -40.5,-90.5 parent: 2 type: Transform - uid: 6563 components: - - pos: -40.5,-88.5 + - pos: -25.5,-97.5 parent: 2 type: Transform - uid: 6564 components: - - pos: -40.5,-89.5 + - pos: -26.5,-97.5 parent: 2 type: Transform - uid: 6565 components: - - pos: -40.5,-90.5 + - pos: -40.5,-91.5 parent: 2 type: Transform - uid: 6566 components: - - pos: -25.5,-97.5 + - pos: -43.5,-91.5 parent: 2 type: Transform - uid: 6567 components: - - pos: -26.5,-97.5 + - pos: -43.5,-92.5 parent: 2 type: Transform - uid: 6568 components: - - pos: -40.5,-91.5 + - pos: -42.5,-92.5 parent: 2 type: Transform - uid: 6569 components: - - pos: -43.5,-91.5 + - pos: -40.5,-92.5 parent: 2 type: Transform - uid: 6570 components: - - pos: -43.5,-92.5 + - pos: -41.5,-92.5 parent: 2 type: Transform - uid: 6571 components: - - pos: -42.5,-92.5 + - pos: -41.5,-93.5 parent: 2 type: Transform - uid: 6572 components: - - pos: -40.5,-92.5 + - pos: -41.5,-94.5 parent: 2 type: Transform - uid: 6573 components: - - pos: -41.5,-92.5 + - pos: -41.5,-95.5 parent: 2 type: Transform - uid: 6574 components: - - pos: -41.5,-93.5 + - pos: -42.5,-95.5 parent: 2 type: Transform - uid: 6575 components: - - pos: -41.5,-94.5 + - pos: -43.5,-95.5 parent: 2 type: Transform - uid: 6576 components: - - pos: -41.5,-95.5 + - pos: -43.5,-96.5 parent: 2 type: Transform - uid: 6577 components: - - pos: -42.5,-95.5 + - pos: -43.5,-97.5 parent: 2 type: Transform - uid: 6578 components: - - pos: -43.5,-95.5 + - pos: -42.5,-97.5 parent: 2 type: Transform - uid: 6579 components: - - pos: -43.5,-96.5 + - pos: -41.5,-97.5 parent: 2 type: Transform - uid: 6580 components: - - pos: -43.5,-97.5 + - pos: -40.5,-97.5 parent: 2 type: Transform - uid: 6581 components: - - pos: -42.5,-97.5 + - pos: -39.5,-97.5 parent: 2 type: Transform - uid: 6582 components: - - pos: -41.5,-97.5 + - pos: -38.5,-97.5 parent: 2 type: Transform - uid: 6583 components: - - pos: -40.5,-97.5 + - pos: -37.5,-97.5 parent: 2 type: Transform - uid: 6584 components: - - pos: -39.5,-97.5 + - pos: -36.5,-97.5 parent: 2 type: Transform - uid: 6585 components: - - pos: -38.5,-97.5 + - pos: -35.5,-97.5 parent: 2 type: Transform - uid: 6586 components: - - pos: -37.5,-97.5 + - pos: -40.5,-95.5 parent: 2 type: Transform - uid: 6587 components: - - pos: -36.5,-97.5 + - pos: -39.5,-95.5 parent: 2 type: Transform - uid: 6588 components: - - pos: -35.5,-97.5 + - pos: -38.5,-95.5 parent: 2 type: Transform - uid: 6589 components: - - pos: -40.5,-95.5 + - pos: -37.5,-95.5 parent: 2 type: Transform - uid: 6590 components: - - pos: -39.5,-95.5 + - pos: -36.5,-95.5 parent: 2 type: Transform - uid: 6591 components: - - pos: -38.5,-95.5 + - pos: -35.5,-95.5 parent: 2 type: Transform - uid: 6592 components: - - pos: -37.5,-95.5 + - pos: -35.5,-96.5 parent: 2 type: Transform - uid: 6593 components: - - pos: -36.5,-95.5 + - pos: -34.5,-97.5 parent: 2 type: Transform - uid: 6594 components: - - pos: -35.5,-95.5 + - pos: -33.5,-97.5 parent: 2 type: Transform - uid: 6595 components: - - pos: -35.5,-96.5 + - pos: -32.5,-97.5 parent: 2 type: Transform - uid: 6596 components: - - pos: -34.5,-97.5 + - pos: -31.5,-97.5 parent: 2 type: Transform - uid: 6597 components: - - pos: -33.5,-97.5 + - pos: -30.5,-97.5 parent: 2 type: Transform - uid: 6598 components: - - pos: -32.5,-97.5 + - pos: -29.5,-97.5 parent: 2 type: Transform - uid: 6599 components: - - pos: -31.5,-97.5 + - pos: -28.5,-97.5 parent: 2 type: Transform - uid: 6600 components: - - pos: -30.5,-97.5 + - pos: -43.5,-90.5 parent: 2 type: Transform - uid: 6601 components: - - pos: -29.5,-97.5 + - pos: -35.5,-98.5 parent: 2 type: Transform - uid: 6602 components: - - pos: -28.5,-97.5 + - pos: -35.5,-99.5 parent: 2 type: Transform - uid: 6603 components: - - pos: -43.5,-90.5 + - pos: -35.5,-100.5 parent: 2 type: Transform - uid: 6604 components: - - pos: -35.5,-98.5 + - pos: -35.5,-100.5 parent: 2 type: Transform - uid: 6605 @@ -45740,17370 +45778,17550 @@ entities: type: Transform - uid: 6606 components: - - pos: -35.5,-100.5 + - pos: -35.5,-102.5 parent: 2 type: Transform - uid: 6607 components: - - pos: -35.5,-100.5 + - pos: -35.5,-103.5 parent: 2 type: Transform - uid: 6608 components: - - pos: -35.5,-99.5 + - pos: -35.5,-104.5 parent: 2 type: Transform - uid: 6609 components: - - pos: -35.5,-102.5 + - pos: -35.5,-105.5 parent: 2 type: Transform - uid: 6610 components: - - pos: -35.5,-103.5 + - pos: -36.5,-104.5 parent: 2 type: Transform - uid: 6611 components: - - pos: -35.5,-104.5 + - pos: 37.5,-48.5 parent: 2 type: Transform - uid: 6612 components: - - pos: -35.5,-105.5 + - pos: 36.5,-48.5 parent: 2 type: Transform - uid: 6613 components: - - pos: -36.5,-104.5 + - pos: 36.5,-47.5 parent: 2 type: Transform - uid: 6614 components: - - pos: 37.5,-48.5 + - pos: 36.5,-46.5 parent: 2 type: Transform - uid: 6615 components: - - pos: 36.5,-48.5 + - pos: -71.5,-31.5 parent: 2 type: Transform - uid: 6616 components: - - pos: 36.5,-47.5 + - pos: -72.5,-26.5 parent: 2 type: Transform - uid: 6617 components: - - pos: 36.5,-46.5 + - pos: -72.5,-27.5 parent: 2 type: Transform - uid: 6618 components: - - pos: -71.5,-31.5 + - pos: -72.5,-28.5 parent: 2 type: Transform - uid: 6619 components: - - pos: -72.5,-26.5 + - pos: -72.5,-29.5 parent: 2 type: Transform - uid: 6620 components: - - pos: -72.5,-27.5 + - pos: -73.5,-31.5 parent: 2 type: Transform - uid: 6621 components: - - pos: -72.5,-28.5 + - pos: -72.5,-31.5 parent: 2 type: Transform - uid: 6622 components: - - pos: -72.5,-29.5 + - pos: -72.5,-32.5 parent: 2 type: Transform - uid: 6623 components: - - pos: -73.5,-31.5 + - pos: -72.5,-33.5 parent: 2 type: Transform - uid: 6624 components: - - pos: -72.5,-31.5 + - pos: -73.5,-30.5 parent: 2 type: Transform - uid: 6625 components: - - pos: -72.5,-32.5 + - pos: -73.5,-29.5 parent: 2 type: Transform - uid: 6626 components: - - pos: -72.5,-33.5 + - pos: 24.5,0.5 parent: 2 type: Transform - uid: 6627 components: - - pos: -73.5,-30.5 + - pos: 27.5,-1.5 parent: 2 type: Transform - uid: 6628 components: - - pos: -73.5,-29.5 + - pos: -12.5,-14.5 parent: 2 type: Transform - uid: 6629 components: - - pos: 24.5,0.5 + - pos: 62.5,-29.5 parent: 2 type: Transform - uid: 6630 components: - - pos: 27.5,-1.5 + - pos: 74.5,-45.5 parent: 2 type: Transform - uid: 6631 components: - - pos: -12.5,-14.5 + - pos: 75.5,-45.5 parent: 2 type: Transform - uid: 6632 components: - - pos: 62.5,-29.5 + - pos: 76.5,-45.5 parent: 2 type: Transform - uid: 6633 components: - - pos: 74.5,-45.5 + - pos: 74.5,-44.5 parent: 2 type: Transform - uid: 6634 components: - - pos: 75.5,-45.5 + - pos: 74.5,-43.5 parent: 2 type: Transform - uid: 6635 components: - - pos: 76.5,-45.5 + - pos: 74.5,-42.5 parent: 2 type: Transform - uid: 6636 components: - - pos: 74.5,-44.5 + - pos: 74.5,-41.5 parent: 2 type: Transform - uid: 6637 components: - - pos: 74.5,-43.5 + - pos: 74.5,-40.5 parent: 2 type: Transform - uid: 6638 components: - - pos: 74.5,-42.5 + - pos: 74.5,-39.5 parent: 2 type: Transform - uid: 6639 components: - - pos: 74.5,-41.5 + - pos: 74.5,-38.5 parent: 2 type: Transform - uid: 6640 components: - - pos: 74.5,-40.5 + - pos: 76.5,-46.5 parent: 2 type: Transform - uid: 6641 components: - - pos: 74.5,-39.5 + - pos: 76.5,-47.5 parent: 2 type: Transform - uid: 6642 components: - - pos: 74.5,-38.5 + - pos: 76.5,-48.5 parent: 2 type: Transform - uid: 6643 components: - - pos: 76.5,-46.5 + - pos: 76.5,-49.5 parent: 2 type: Transform - uid: 6644 components: - - pos: 76.5,-47.5 + - pos: 73.5,-48.5 parent: 2 type: Transform - uid: 6645 components: - - pos: 76.5,-48.5 + - pos: 74.5,-48.5 parent: 2 type: Transform - uid: 6646 components: - - pos: 76.5,-49.5 + - pos: 74.5,-47.5 parent: 2 type: Transform - uid: 6647 components: - - pos: 73.5,-48.5 + - pos: 75.5,-47.5 parent: 2 type: Transform - uid: 6648 components: - - pos: 74.5,-48.5 + - pos: 74.5,-37.5 parent: 2 type: Transform - uid: 6649 components: - - pos: 74.5,-47.5 + - pos: 75.5,-37.5 parent: 2 type: Transform - uid: 6650 components: - - pos: 75.5,-47.5 + - pos: 76.5,-37.5 parent: 2 type: Transform - uid: 6651 components: - - pos: 74.5,-37.5 + - pos: 77.5,-37.5 parent: 2 type: Transform - uid: 6652 components: - - pos: 75.5,-37.5 + - pos: 78.5,-37.5 parent: 2 type: Transform - uid: 6653 components: - - pos: 76.5,-37.5 + - pos: 78.5,-36.5 parent: 2 type: Transform - uid: 6654 components: - - pos: 77.5,-37.5 + - pos: 78.5,-35.5 parent: 2 type: Transform - uid: 6655 components: - - pos: 78.5,-37.5 + - pos: 78.5,-34.5 parent: 2 type: Transform - uid: 6656 components: - - pos: 78.5,-36.5 + - pos: 78.5,-33.5 parent: 2 type: Transform - uid: 6657 components: - - pos: 78.5,-35.5 + - pos: 77.5,-33.5 parent: 2 type: Transform - uid: 6658 components: - - pos: 78.5,-34.5 + - pos: 76.5,-33.5 parent: 2 type: Transform - uid: 6659 components: - - pos: 78.5,-33.5 + - pos: 75.5,-33.5 parent: 2 type: Transform - uid: 6660 components: - - pos: 77.5,-33.5 + - pos: 74.5,-33.5 parent: 2 type: Transform - uid: 6661 components: - - pos: 76.5,-33.5 + - pos: 74.5,-32.5 parent: 2 type: Transform - uid: 6662 components: - - pos: 75.5,-33.5 + - pos: 73.5,-32.5 parent: 2 type: Transform - uid: 6663 components: - - pos: 74.5,-33.5 + - pos: 72.5,-32.5 parent: 2 type: Transform - uid: 6664 components: - - pos: 74.5,-32.5 + - pos: 71.5,-32.5 parent: 2 type: Transform - uid: 6665 components: - - pos: 73.5,-32.5 + - pos: 70.5,-32.5 parent: 2 type: Transform - uid: 6666 components: - - pos: 72.5,-32.5 + - pos: 70.5,-33.5 parent: 2 type: Transform - uid: 6667 components: - - pos: 71.5,-32.5 + - pos: 70.5,-34.5 parent: 2 type: Transform - uid: 6668 components: - - pos: 70.5,-32.5 + - pos: 70.5,-35.5 parent: 2 type: Transform - uid: 6669 components: - - pos: 70.5,-33.5 + - pos: 70.5,-36.5 parent: 2 type: Transform - uid: 6670 components: - - pos: 70.5,-34.5 + - pos: 71.5,-36.5 parent: 2 type: Transform - uid: 6671 components: - - pos: 70.5,-35.5 + - pos: 72.5,-37.5 parent: 2 type: Transform - uid: 6672 components: - - pos: 70.5,-36.5 + - pos: 73.5,-37.5 parent: 2 type: Transform - uid: 6673 components: - - pos: 71.5,-36.5 + - pos: 73.5,-36.5 parent: 2 type: Transform - uid: 6674 components: - - pos: 72.5,-37.5 + - pos: 73.5,-35.5 parent: 2 type: Transform - uid: 6675 components: - - pos: 73.5,-37.5 + - pos: 69.5,-33.5 parent: 2 type: Transform - uid: 6676 components: - - pos: 73.5,-36.5 + - pos: 68.5,-33.5 parent: 2 type: Transform - uid: 6677 components: - - pos: 73.5,-35.5 + - pos: 67.5,-33.5 parent: 2 type: Transform - uid: 6678 components: - - pos: 69.5,-33.5 + - pos: 66.5,-33.5 parent: 2 type: Transform - uid: 6679 components: - - pos: 68.5,-33.5 + - pos: 65.5,-33.5 parent: 2 type: Transform - uid: 6680 components: - - pos: 67.5,-33.5 + - pos: 62.5,-30.5 parent: 2 type: Transform - uid: 6681 components: - - pos: 66.5,-33.5 + - pos: 65.5,-32.5 parent: 2 type: Transform - uid: 6682 components: - - pos: 65.5,-33.5 + - pos: -21.5,-61.5 parent: 2 type: Transform - uid: 6683 components: - - pos: 62.5,-30.5 + - pos: -16.5,-15.5 parent: 2 type: Transform - uid: 6684 components: - - pos: 65.5,-32.5 + - pos: 70.5,-37.5 parent: 2 type: Transform - uid: 6685 components: - - pos: -21.5,-61.5 + - pos: 69.5,-37.5 parent: 2 type: Transform - uid: 6686 components: - - pos: -16.5,-15.5 + - pos: 68.5,-37.5 parent: 2 type: Transform - uid: 6687 components: - - pos: 70.5,-37.5 + - pos: 67.5,-37.5 parent: 2 type: Transform - uid: 6688 components: - - pos: 69.5,-37.5 + - pos: 67.5,-38.5 parent: 2 type: Transform - uid: 6689 components: - - pos: 68.5,-37.5 + - pos: 54.5,10.5 parent: 2 type: Transform - uid: 6690 components: - - pos: 67.5,-37.5 + - pos: -71.5,-29.5 parent: 2 type: Transform - uid: 6691 components: - - pos: 67.5,-38.5 + - pos: -55.5,-62.5 parent: 2 type: Transform - uid: 6692 components: - - pos: 54.5,10.5 + - pos: -54.5,-62.5 parent: 2 type: Transform - uid: 6693 components: - - pos: -71.5,-29.5 + - pos: -53.5,-62.5 parent: 2 type: Transform - uid: 6694 components: - - pos: -55.5,-62.5 + - pos: -54.5,-58.5 parent: 2 type: Transform - uid: 6695 components: - - pos: -54.5,-62.5 + - pos: -53.5,-58.5 parent: 2 type: Transform - uid: 6696 components: - - pos: -53.5,-62.5 + - pos: -52.5,-58.5 parent: 2 type: Transform - uid: 6697 components: - - pos: -54.5,-58.5 + - pos: -51.5,-58.5 parent: 2 type: Transform - uid: 6698 components: - - pos: -53.5,-58.5 + - pos: -56.5,-61.5 parent: 2 type: Transform - uid: 6699 components: - - pos: -52.5,-58.5 + - pos: -54.5,-63.5 parent: 2 type: Transform - uid: 6700 components: - - pos: -51.5,-58.5 + - pos: 72.5,-31.5 parent: 2 type: Transform - uid: 6701 components: - - pos: -56.5,-61.5 + - pos: 72.5,-30.5 parent: 2 type: Transform - uid: 6702 components: - - pos: -54.5,-63.5 + - pos: 72.5,-29.5 parent: 2 type: Transform - uid: 6703 components: - - pos: 72.5,-31.5 + - pos: 72.5,-28.5 parent: 2 type: Transform - uid: 6704 components: - - pos: 72.5,-30.5 + - pos: -53.5,-63.5 parent: 2 type: Transform - uid: 6705 components: - - pos: 72.5,-29.5 + - pos: 56.5,34.5 parent: 2 type: Transform - uid: 6706 components: - - pos: 72.5,-28.5 + - pos: -71.5,-30.5 parent: 2 type: Transform - uid: 6707 components: - - pos: -53.5,-63.5 + - pos: 6.5,-42.5 parent: 2 type: Transform - uid: 6708 components: - - pos: 56.5,34.5 + - pos: 7.5,-42.5 parent: 2 type: Transform - uid: 6709 components: - - pos: -71.5,-30.5 + - pos: 9.5,-40.5 parent: 2 type: Transform - uid: 6710 components: - - pos: 6.5,-42.5 + - pos: 9.5,-39.5 parent: 2 type: Transform - uid: 6711 components: - - pos: 7.5,-42.5 + - pos: 8.5,-39.5 parent: 2 type: Transform - uid: 6712 components: - - pos: 9.5,-40.5 + - pos: 8.5,-38.5 parent: 2 type: Transform - uid: 6713 components: - - pos: 9.5,-39.5 + - pos: 8.5,-37.5 parent: 2 type: Transform - uid: 6714 components: - - pos: 8.5,-39.5 + - pos: 8.5,-36.5 parent: 2 type: Transform - uid: 6715 components: - - pos: 8.5,-38.5 + - pos: 8.5,-35.5 parent: 2 type: Transform - uid: 6716 components: - - pos: 8.5,-37.5 + - pos: 8.5,-34.5 parent: 2 type: Transform - uid: 6717 components: - - pos: 8.5,-36.5 + - pos: 8.5,-33.5 parent: 2 type: Transform - uid: 6718 components: - - pos: 8.5,-35.5 + - pos: 8.5,-32.5 parent: 2 type: Transform - uid: 6719 components: - - pos: 8.5,-34.5 + - pos: 8.5,-31.5 parent: 2 type: Transform - uid: 6720 components: - - pos: 8.5,-33.5 + - pos: 8.5,-30.5 parent: 2 type: Transform - uid: 6721 components: - - pos: 8.5,-32.5 + - pos: 8.5,-29.5 parent: 2 type: Transform - uid: 6722 components: - - pos: 8.5,-31.5 + - pos: 9.5,-29.5 parent: 2 type: Transform - uid: 6723 components: - - pos: 8.5,-30.5 + - pos: 10.5,-29.5 parent: 2 type: Transform - uid: 6724 components: - - pos: 8.5,-29.5 + - pos: 11.5,-29.5 parent: 2 type: Transform - uid: 6725 components: - - pos: 9.5,-29.5 + - pos: 7.5,-36.5 parent: 2 type: Transform - uid: 6726 components: - - pos: 10.5,-29.5 + - pos: 6.5,-36.5 parent: 2 type: Transform - uid: 6727 components: - - pos: 11.5,-29.5 + - pos: 6.5,-35.5 parent: 2 type: Transform - uid: 6728 components: - - pos: 7.5,-36.5 + - pos: 6.5,-34.5 parent: 2 type: Transform - uid: 6729 components: - - pos: 6.5,-36.5 + - pos: 6.5,-33.5 parent: 2 type: Transform - uid: 6730 components: - - pos: 6.5,-35.5 + - pos: 6.5,-32.5 parent: 2 type: Transform - uid: 6731 components: - - pos: 6.5,-34.5 + - pos: 6.5,-31.5 parent: 2 type: Transform - uid: 6732 components: - - pos: 6.5,-33.5 + - pos: 5.5,-31.5 parent: 2 type: Transform - uid: 6733 components: - - pos: 6.5,-32.5 + - pos: 4.5,-31.5 parent: 2 type: Transform - uid: 6734 components: - - pos: 6.5,-31.5 + - pos: 3.5,-31.5 parent: 2 type: Transform - uid: 6735 components: - - pos: 5.5,-31.5 + - pos: 2.5,-31.5 parent: 2 type: Transform - uid: 6736 components: - - pos: 4.5,-31.5 + - pos: 4.5,-32.5 parent: 2 type: Transform - uid: 6737 components: - - pos: 3.5,-31.5 + - pos: 4.5,-33.5 parent: 2 type: Transform - uid: 6738 components: - - pos: 2.5,-31.5 + - pos: 55.5,-62.5 parent: 2 type: Transform - uid: 6739 components: - - pos: 4.5,-32.5 + - pos: 6.5,-30.5 parent: 2 type: Transform - uid: 6740 components: - - pos: 4.5,-33.5 + - pos: 54.5,-32.5 parent: 2 type: Transform - uid: 6741 components: - - pos: 55.5,-62.5 + - pos: 53.5,-32.5 parent: 2 type: Transform - uid: 6742 components: - - pos: 6.5,-30.5 + - pos: 52.5,-32.5 parent: 2 type: Transform - uid: 6743 components: - - pos: 54.5,-32.5 + - pos: 55.5,-31.5 parent: 2 type: Transform - uid: 6744 components: - - pos: 53.5,-32.5 + - pos: 55.5,-30.5 parent: 2 type: Transform - uid: 6745 components: - - pos: 52.5,-32.5 + - pos: 55.5,-29.5 parent: 2 type: Transform - uid: 6746 components: - - pos: 55.5,-31.5 + - pos: 55.5,-28.5 parent: 2 type: Transform - uid: 6747 components: - - pos: 55.5,-30.5 + - pos: 55.5,-27.5 parent: 2 type: Transform - uid: 6748 components: - - pos: 55.5,-29.5 + - pos: 55.5,-26.5 parent: 2 type: Transform - uid: 6749 components: - - pos: 55.5,-28.5 + - pos: 61.5,-26.5 parent: 2 type: Transform - uid: 6750 components: - - pos: 55.5,-27.5 + - pos: 60.5,-26.5 parent: 2 type: Transform - uid: 6751 components: - - pos: 55.5,-26.5 + - pos: 59.5,-26.5 parent: 2 type: Transform - uid: 6752 components: - - pos: 61.5,-26.5 + - pos: 58.5,-26.5 parent: 2 type: Transform - uid: 6753 components: - - pos: 60.5,-26.5 + - pos: 57.5,-26.5 parent: 2 type: Transform - uid: 6754 components: - - pos: 59.5,-26.5 + - pos: 57.5,-27.5 parent: 2 type: Transform - uid: 6755 components: - - pos: 58.5,-26.5 + - pos: 57.5,-28.5 parent: 2 type: Transform - uid: 6756 components: - - pos: 57.5,-26.5 + - pos: 58.5,-28.5 parent: 2 type: Transform - uid: 6757 components: - - pos: 57.5,-27.5 + - pos: 58.5,-29.5 parent: 2 type: Transform - uid: 6758 components: - - pos: 57.5,-28.5 + - pos: 55.5,-35.5 parent: 2 type: Transform - uid: 6759 components: - - pos: 58.5,-28.5 + - pos: 54.5,-35.5 parent: 2 type: Transform - uid: 6760 components: - - pos: 58.5,-29.5 + - pos: 54.5,-36.5 parent: 2 type: Transform - uid: 6761 components: - - pos: 55.5,-35.5 + - pos: 54.5,-37.5 parent: 2 type: Transform - uid: 6762 components: - - pos: 54.5,-35.5 + - pos: 55.5,-37.5 parent: 2 type: Transform - uid: 6763 components: - - pos: 54.5,-36.5 + - pos: 55.5,-38.5 parent: 2 type: Transform - uid: 6764 components: - - pos: 54.5,-37.5 + - pos: 57.5,-38.5 parent: 2 type: Transform - uid: 6765 components: - - pos: 55.5,-37.5 + - pos: 58.5,-38.5 parent: 2 type: Transform - uid: 6766 components: - - pos: 55.5,-38.5 + - pos: 59.5,-38.5 parent: 2 type: Transform - uid: 6767 components: - - pos: 57.5,-38.5 + - pos: 59.5,-39.5 parent: 2 type: Transform - uid: 6768 components: - - pos: 58.5,-38.5 + - pos: 59.5,-40.5 parent: 2 type: Transform - uid: 6769 components: - - pos: 59.5,-38.5 + - pos: 59.5,-41.5 parent: 2 type: Transform - uid: 6770 components: - - pos: 59.5,-39.5 + - pos: 59.5,-42.5 parent: 2 type: Transform - uid: 6771 components: - - pos: 59.5,-40.5 + - pos: 59.5,-43.5 parent: 2 type: Transform - uid: 6772 components: - - pos: 59.5,-41.5 + - pos: 36.5,-33.5 parent: 2 type: Transform - uid: 6773 components: - - pos: 59.5,-42.5 + - pos: 37.5,-33.5 parent: 2 type: Transform - uid: 6774 components: - - pos: 59.5,-43.5 + - pos: 38.5,-33.5 parent: 2 type: Transform - uid: 6775 components: - - pos: 36.5,-33.5 + - pos: 39.5,-33.5 parent: 2 type: Transform - uid: 6776 components: - - pos: 37.5,-33.5 + - pos: 40.5,-33.5 parent: 2 type: Transform - uid: 6777 components: - - pos: 38.5,-33.5 + - pos: 41.5,-33.5 parent: 2 type: Transform - uid: 6778 components: - - pos: 39.5,-33.5 + - pos: 42.5,-33.5 parent: 2 type: Transform - uid: 6779 components: - - pos: 40.5,-33.5 + - pos: 43.5,-33.5 parent: 2 type: Transform - uid: 6780 components: - - pos: 41.5,-33.5 + - pos: 44.5,-33.5 parent: 2 type: Transform - uid: 6781 components: - - pos: 42.5,-33.5 + - pos: 45.5,-33.5 parent: 2 type: Transform - uid: 6782 components: - - pos: 43.5,-33.5 + - pos: 46.5,-33.5 parent: 2 type: Transform - uid: 6783 components: - - pos: 44.5,-33.5 + - pos: 47.5,-33.5 parent: 2 type: Transform - uid: 6784 components: - - pos: 45.5,-33.5 + - pos: 48.5,-33.5 parent: 2 type: Transform - uid: 6785 components: - - pos: 46.5,-33.5 + - pos: 49.5,-33.5 parent: 2 type: Transform - uid: 6786 components: - - pos: 47.5,-33.5 + - pos: 49.5,-34.5 parent: 2 type: Transform - uid: 6787 components: - - pos: 48.5,-33.5 + - pos: 50.5,-34.5 parent: 2 type: Transform - uid: 6788 components: - - pos: 49.5,-33.5 + - pos: 51.5,-34.5 parent: 2 type: Transform - uid: 6789 components: - - pos: 49.5,-34.5 + - pos: 55.5,-64.5 parent: 2 type: Transform - uid: 6790 components: - - pos: 50.5,-34.5 + - pos: 55.5,-65.5 parent: 2 type: Transform - uid: 6791 components: - - pos: 51.5,-34.5 + - pos: 54.5,-65.5 parent: 2 type: Transform - uid: 6792 components: - - pos: 55.5,-64.5 + - pos: 53.5,-65.5 parent: 2 type: Transform - uid: 6793 components: - - pos: 55.5,-65.5 + - pos: 52.5,-65.5 parent: 2 type: Transform - uid: 6794 components: - - pos: 54.5,-65.5 + - pos: 51.5,-65.5 parent: 2 type: Transform - uid: 6795 components: - - pos: 53.5,-65.5 + - pos: 50.5,-65.5 parent: 2 type: Transform - uid: 6796 components: - - pos: 52.5,-65.5 + - pos: 49.5,-65.5 parent: 2 type: Transform - uid: 6797 components: - - pos: 51.5,-65.5 + - pos: 48.5,-65.5 parent: 2 type: Transform - uid: 6798 components: - - pos: 50.5,-65.5 + - pos: 47.5,-65.5 parent: 2 type: Transform - uid: 6799 components: - - pos: 49.5,-65.5 + - pos: 46.5,-65.5 parent: 2 type: Transform - uid: 6800 components: - - pos: 48.5,-65.5 + - pos: 45.5,-65.5 parent: 2 type: Transform - uid: 6801 components: - - pos: 47.5,-65.5 + - pos: 45.5,-64.5 parent: 2 type: Transform - uid: 6802 components: - - pos: 46.5,-65.5 + - pos: 44.5,-64.5 parent: 2 type: Transform - uid: 6803 components: - - pos: 45.5,-65.5 + - pos: 43.5,-64.5 parent: 2 type: Transform - uid: 6804 components: - - pos: 45.5,-64.5 + - pos: 45.5,-63.5 parent: 2 type: Transform - uid: 6805 components: - - pos: 44.5,-64.5 + - pos: 43.5,-63.5 parent: 2 type: Transform - uid: 6806 components: - - pos: 43.5,-64.5 + - pos: 56.5,-65.5 parent: 2 type: Transform - uid: 6807 components: - - pos: 45.5,-63.5 + - pos: 57.5,-65.5 parent: 2 type: Transform - uid: 6808 components: - - pos: 43.5,-63.5 + - pos: 58.5,-65.5 parent: 2 type: Transform - uid: 6809 components: - - pos: 56.5,-65.5 + - pos: 59.5,-65.5 parent: 2 type: Transform - uid: 6810 components: - - pos: 57.5,-65.5 + - pos: 60.5,-65.5 parent: 2 type: Transform - uid: 6811 components: - - pos: 58.5,-65.5 + - pos: 61.5,-65.5 parent: 2 type: Transform - uid: 6812 components: - - pos: 59.5,-65.5 + - pos: 61.5,-66.5 parent: 2 type: Transform - uid: 6813 components: - - pos: 60.5,-65.5 + - pos: 61.5,-67.5 parent: 2 type: Transform - uid: 6814 components: - - pos: 61.5,-65.5 + - pos: 61.5,-68.5 parent: 2 type: Transform - uid: 6815 components: - - pos: 61.5,-66.5 + - pos: 62.5,-65.5 parent: 2 type: Transform - uid: 6816 components: - - pos: 61.5,-67.5 + - pos: 63.5,-65.5 parent: 2 type: Transform - uid: 6817 components: - - pos: 61.5,-68.5 + - pos: 64.5,-65.5 parent: 2 type: Transform - uid: 6818 components: - - pos: 62.5,-65.5 + - pos: 65.5,-65.5 parent: 2 type: Transform - uid: 6819 components: - - pos: 63.5,-65.5 + - pos: 66.5,-65.5 parent: 2 type: Transform - uid: 6820 components: - - pos: 64.5,-65.5 + - pos: 61.5,-64.5 parent: 2 type: Transform - uid: 6821 components: - - pos: 65.5,-65.5 + - pos: 61.5,-63.5 parent: 2 type: Transform - uid: 6822 components: - - pos: 66.5,-65.5 + - pos: 61.5,-62.5 parent: 2 type: Transform - uid: 6823 components: - - pos: 61.5,-64.5 + - pos: 62.5,-62.5 parent: 2 type: Transform - uid: 6824 components: - - pos: 61.5,-63.5 + - pos: 60.5,-63.5 parent: 2 type: Transform - uid: 6825 components: - - pos: 61.5,-62.5 + - pos: 59.5,-63.5 parent: 2 type: Transform - uid: 6826 components: - - pos: 62.5,-62.5 + - pos: 57.5,-34.5 parent: 2 type: Transform - uid: 6827 components: - - pos: 60.5,-63.5 + - pos: 67.5,-65.5 parent: 2 type: Transform - uid: 6828 components: - - pos: 59.5,-63.5 + - pos: 68.5,-65.5 parent: 2 type: Transform - uid: 6829 components: - - pos: 57.5,-34.5 + - pos: 68.5,-66.5 parent: 2 type: Transform - uid: 6830 components: - - pos: 67.5,-65.5 + - pos: 68.5,-67.5 parent: 2 type: Transform - uid: 6831 components: - - pos: 68.5,-65.5 + - pos: 68.5,-68.5 parent: 2 type: Transform - uid: 6832 components: - - pos: 68.5,-66.5 + - pos: 68.5,-69.5 parent: 2 type: Transform - uid: 6833 components: - - pos: 68.5,-67.5 + - pos: 68.5,-70.5 parent: 2 type: Transform - uid: 6834 components: - - pos: 68.5,-68.5 + - pos: 68.5,-71.5 parent: 2 type: Transform - uid: 6835 components: - - pos: 68.5,-69.5 + - pos: 69.5,-71.5 parent: 2 type: Transform - uid: 6836 components: - - pos: 68.5,-70.5 + - pos: 70.5,-71.5 parent: 2 type: Transform - uid: 6837 components: - - pos: 68.5,-71.5 + - pos: 71.5,-71.5 parent: 2 type: Transform - uid: 6838 components: - - pos: 69.5,-71.5 + - pos: 72.5,-71.5 parent: 2 type: Transform - uid: 6839 components: - - pos: 70.5,-71.5 + - pos: 72.5,-70.5 parent: 2 type: Transform - uid: 6840 components: - - pos: 71.5,-71.5 + - pos: 72.5,-69.5 parent: 2 type: Transform - uid: 6841 components: - - pos: 72.5,-71.5 + - pos: 73.5,-69.5 parent: 2 type: Transform - uid: 6842 components: - - pos: 72.5,-70.5 + - pos: 74.5,-69.5 parent: 2 type: Transform - uid: 6843 components: - - pos: 72.5,-69.5 + - pos: 74.5,-68.5 parent: 2 type: Transform - uid: 6844 components: - - pos: 73.5,-69.5 + - pos: 74.5,-67.5 parent: 2 type: Transform - uid: 6845 components: - - pos: 74.5,-69.5 + - pos: 74.5,-66.5 parent: 2 type: Transform - uid: 6846 components: - - pos: 74.5,-68.5 + - pos: 74.5,-65.5 parent: 2 type: Transform - uid: 6847 components: - - pos: 74.5,-67.5 + - pos: 74.5,-64.5 parent: 2 type: Transform - uid: 6848 components: - - pos: 74.5,-66.5 + - pos: 74.5,-63.5 parent: 2 type: Transform - uid: 6849 components: - - pos: 74.5,-65.5 + - pos: 68.5,-64.5 parent: 2 type: Transform - uid: 6850 components: - - pos: 74.5,-64.5 + - pos: 68.5,-63.5 parent: 2 type: Transform - uid: 6851 components: - - pos: 74.5,-63.5 + - pos: 68.5,-62.5 parent: 2 type: Transform - uid: 6852 components: - - pos: 68.5,-64.5 + - pos: 68.5,-61.5 parent: 2 type: Transform - uid: 6853 components: - - pos: 68.5,-63.5 + - pos: 69.5,-61.5 parent: 2 type: Transform - uid: 6854 components: - - pos: 68.5,-62.5 + - pos: 70.5,-61.5 parent: 2 type: Transform - uid: 6855 components: - - pos: 68.5,-61.5 + - pos: 71.5,-61.5 parent: 2 type: Transform - uid: 6856 components: - - pos: 69.5,-61.5 + - pos: 71.5,-60.5 parent: 2 type: Transform - uid: 6857 components: - - pos: 70.5,-61.5 + - pos: 71.5,-59.5 parent: 2 type: Transform - uid: 6858 components: - - pos: 71.5,-61.5 + - pos: 71.5,-58.5 parent: 2 type: Transform - uid: 6859 components: - - pos: 71.5,-60.5 + - pos: 71.5,-57.5 parent: 2 type: Transform - uid: 6860 components: - - pos: 71.5,-59.5 + - pos: 72.5,-57.5 parent: 2 type: Transform - uid: 6861 components: - - pos: 71.5,-58.5 + - pos: 73.5,-57.5 parent: 2 type: Transform - uid: 6862 components: - - pos: 71.5,-57.5 + - pos: 74.5,-57.5 parent: 2 type: Transform - uid: 6863 components: - - pos: 72.5,-57.5 + - pos: 74.5,-56.5 parent: 2 type: Transform - uid: 6864 components: - - pos: 73.5,-57.5 + - pos: 74.5,-55.5 parent: 2 type: Transform - uid: 6865 components: - - pos: 74.5,-57.5 + - pos: 75.5,-55.5 parent: 2 type: Transform - uid: 6866 components: - - pos: 74.5,-56.5 + - pos: 75.5,-54.5 parent: 2 type: Transform - uid: 6867 components: - - pos: 74.5,-55.5 + - pos: 75.5,-53.5 parent: 2 type: Transform - uid: 6868 components: - - pos: 75.5,-55.5 + - pos: 75.5,-52.5 parent: 2 type: Transform - uid: 6869 components: - - pos: 75.5,-54.5 + - pos: 56.5,-38.5 parent: 2 type: Transform - uid: 6870 components: - - pos: 75.5,-53.5 + - pos: 55.5,-66.5 parent: 2 type: Transform - uid: 6871 components: - - pos: 75.5,-52.5 + - pos: 71.5,-44.5 parent: 2 type: Transform - uid: 6872 components: - - pos: 56.5,-38.5 + - pos: 71.5,-43.5 parent: 2 type: Transform - uid: 6873 components: - - pos: 55.5,-66.5 + - pos: 71.5,-42.5 parent: 2 type: Transform - uid: 6874 components: - - pos: 71.5,-44.5 + - pos: 61.5,-48.5 parent: 2 type: Transform - uid: 6875 components: - - pos: 71.5,-43.5 + - pos: 60.5,-48.5 parent: 2 type: Transform - uid: 6876 components: - - pos: 71.5,-42.5 + - pos: 59.5,-48.5 parent: 2 type: Transform - uid: 6877 components: - - pos: 61.5,-48.5 + - pos: 58.5,-48.5 parent: 2 type: Transform - uid: 6878 components: - - pos: 60.5,-48.5 + - pos: 57.5,-48.5 parent: 2 type: Transform - uid: 6879 components: - - pos: 59.5,-48.5 + - pos: 56.5,-48.5 parent: 2 type: Transform - uid: 6880 components: - - pos: 58.5,-48.5 + - pos: 55.5,-48.5 parent: 2 type: Transform - uid: 6881 components: - - pos: 57.5,-48.5 + - pos: 54.5,-48.5 parent: 2 type: Transform - uid: 6882 components: - - pos: 56.5,-48.5 + - pos: 43.5,-39.5 parent: 2 type: Transform - uid: 6883 components: - - pos: 55.5,-48.5 + - pos: 43.5,-40.5 parent: 2 type: Transform - uid: 6884 components: - - pos: 54.5,-48.5 + - pos: 43.5,-41.5 parent: 2 type: Transform - uid: 6885 components: - - pos: 43.5,-39.5 + - pos: 19.5,-51.5 parent: 2 type: Transform - uid: 6886 components: - - pos: 43.5,-40.5 + - pos: 16.5,10.5 parent: 2 type: Transform - uid: 6887 components: - - pos: 43.5,-41.5 + - pos: 16.5,9.5 parent: 2 type: Transform - uid: 6888 components: - - pos: 19.5,-51.5 + - pos: 43.5,10.5 parent: 2 type: Transform - uid: 6889 components: - - pos: 16.5,10.5 + - pos: 47.5,5.5 parent: 2 type: Transform - uid: 6890 components: - - pos: 16.5,9.5 + - pos: 58.5,6.5 parent: 2 type: Transform - uid: 6891 components: - - pos: 43.5,10.5 + - pos: 59.5,6.5 parent: 2 type: Transform - uid: 6892 components: - - pos: 47.5,5.5 + - pos: 12.5,-84.5 parent: 2 type: Transform - uid: 6893 components: - - pos: 58.5,6.5 + - pos: 12.5,-82.5 parent: 2 type: Transform - uid: 6894 components: - - pos: 59.5,6.5 + - pos: -15.5,24.5 parent: 2 type: Transform - uid: 6895 components: - - pos: 12.5,-84.5 + - pos: 48.5,-92.5 parent: 2 type: Transform - uid: 6896 components: - - pos: 12.5,-82.5 + - pos: 48.5,-93.5 parent: 2 type: Transform - uid: 6897 components: - - pos: -15.5,24.5 + - pos: 48.5,-76.5 parent: 2 type: Transform - uid: 6898 components: - - pos: 48.5,-92.5 + - pos: 46.5,-89.5 parent: 2 type: Transform - uid: 6899 components: - - pos: 48.5,-93.5 + - pos: 47.5,-89.5 parent: 2 type: Transform - uid: 6900 components: - - pos: 48.5,-76.5 + - pos: 43.5,9.5 parent: 2 type: Transform - uid: 6901 components: - - pos: 46.5,-89.5 + - pos: 43.5,8.5 parent: 2 type: Transform - uid: 6902 components: - - pos: 47.5,-89.5 + - pos: 43.5,7.5 parent: 2 type: Transform - uid: 6903 components: - - pos: 43.5,9.5 + - pos: -11.5,-18.5 parent: 2 type: Transform - uid: 6904 components: - - pos: 43.5,8.5 + - pos: -11.5,-17.5 parent: 2 type: Transform - uid: 6905 components: - - pos: 43.5,7.5 + - pos: -11.5,-16.5 parent: 2 type: Transform - uid: 6906 components: - - pos: -11.5,-18.5 + - pos: -11.5,-15.5 parent: 2 type: Transform - uid: 6907 components: - - pos: -11.5,-17.5 + - pos: -11.5,-14.5 parent: 2 type: Transform - uid: 6908 components: - - pos: -11.5,-16.5 + - pos: -11.5,-13.5 parent: 2 type: Transform - uid: 6909 components: - - pos: -11.5,-15.5 + - pos: -11.5,-12.5 parent: 2 type: Transform - uid: 6910 components: - - pos: -11.5,-14.5 + - pos: -11.5,-11.5 parent: 2 type: Transform - uid: 6911 components: - - pos: -11.5,-13.5 + - pos: -11.5,-10.5 parent: 2 type: Transform - uid: 6912 components: - - pos: -11.5,-12.5 + - pos: -12.5,-10.5 parent: 2 type: Transform - uid: 6913 components: - - pos: -11.5,-11.5 + - pos: -13.5,-10.5 parent: 2 type: Transform - uid: 6914 components: - - pos: -11.5,-10.5 + - pos: -14.5,-10.5 parent: 2 type: Transform - uid: 6915 components: - - pos: -12.5,-10.5 + - pos: -13.5,-14.5 parent: 2 type: Transform - uid: 6916 components: - - pos: -13.5,-10.5 + - pos: -14.5,-14.5 parent: 2 type: Transform - uid: 6917 components: - - pos: -14.5,-10.5 + - pos: -15.5,-14.5 parent: 2 type: Transform - uid: 6918 components: - - pos: -13.5,-14.5 + - pos: -16.5,-14.5 parent: 2 type: Transform - uid: 6919 components: - - pos: -14.5,-14.5 + - pos: -10.5,-14.5 parent: 2 type: Transform - uid: 6920 components: - - pos: -15.5,-14.5 + - pos: -9.5,-14.5 parent: 2 type: Transform - uid: 6921 components: - - pos: -16.5,-14.5 + - pos: -8.5,-14.5 parent: 2 type: Transform - uid: 6922 components: - - pos: -10.5,-14.5 + - pos: -8.5,-13.5 parent: 2 type: Transform - uid: 6923 components: - - pos: -9.5,-14.5 + - pos: -7.5,-13.5 parent: 2 type: Transform - uid: 6924 components: - - pos: -8.5,-14.5 + - pos: -7.5,-12.5 parent: 2 type: Transform - uid: 6925 components: - - pos: -8.5,-13.5 + - pos: -7.5,-11.5 parent: 2 type: Transform - uid: 6926 components: - - pos: -7.5,-13.5 + - pos: -7.5,-10.5 parent: 2 type: Transform - uid: 6927 components: - - pos: -7.5,-12.5 + - pos: -8.5,-9.5 parent: 2 type: Transform - uid: 6928 components: - - pos: -7.5,-11.5 + - pos: -7.5,-9.5 parent: 2 type: Transform - uid: 6929 components: - - pos: -7.5,-10.5 + - pos: -9.5,-9.5 parent: 2 type: Transform - uid: 6930 components: - - pos: -8.5,-9.5 + - pos: -10.5,-9.5 parent: 2 type: Transform - uid: 6931 components: - - pos: -7.5,-9.5 + - pos: -11.5,-9.5 parent: 2 type: Transform - uid: 6932 components: - - pos: -9.5,-9.5 + - pos: -12.5,-9.5 parent: 2 type: Transform - uid: 6933 components: - - pos: -10.5,-9.5 + - pos: -13.5,-9.5 parent: 2 type: Transform - uid: 6934 components: - - pos: -11.5,-9.5 + - pos: -14.5,-9.5 parent: 2 type: Transform - uid: 6935 components: - - pos: -12.5,-9.5 + - pos: -15.5,-9.5 parent: 2 type: Transform - uid: 6936 components: - - pos: -13.5,-9.5 + - pos: -42.5,17.5 parent: 2 type: Transform - uid: 6937 components: - - pos: -14.5,-9.5 + - pos: -5.5,-19.5 parent: 2 type: Transform - uid: 6938 components: - - pos: -15.5,-9.5 + - pos: -6.5,-19.5 parent: 2 type: Transform - uid: 6939 components: - - pos: -42.5,17.5 + - pos: -7.5,-19.5 parent: 2 type: Transform - uid: 6940 components: - - pos: -5.5,-19.5 + - pos: 18.5,-82.5 parent: 2 type: Transform - uid: 6941 components: - - pos: -6.5,-19.5 + - pos: 18.5,-84.5 parent: 2 type: Transform - uid: 6942 components: - - pos: -7.5,-19.5 + - pos: 18.5,-85.5 parent: 2 type: Transform - uid: 6943 components: - - pos: 18.5,-82.5 + - pos: 12.5,-83.5 parent: 2 type: Transform - uid: 6944 components: - - pos: 18.5,-84.5 + - pos: 4.5,-49.5 parent: 2 type: Transform - uid: 6945 components: - - pos: 18.5,-85.5 + - pos: 6.5,-49.5 parent: 2 type: Transform - uid: 6946 components: - - pos: 12.5,-83.5 + - pos: -8.5,-67.5 parent: 2 type: Transform - uid: 6947 components: - - pos: 4.5,-49.5 + - pos: -8.5,-68.5 parent: 2 type: Transform - uid: 6948 components: - - pos: 6.5,-49.5 + - pos: -8.5,-69.5 parent: 2 type: Transform - uid: 6949 components: - - pos: -8.5,-67.5 + - pos: -19.5,-60.5 parent: 2 type: Transform - uid: 6950 components: - - pos: -8.5,-68.5 + - pos: -20.5,-60.5 parent: 2 type: Transform - uid: 6951 components: - - pos: -8.5,-69.5 + - pos: -21.5,-60.5 parent: 2 type: Transform - uid: 6952 components: - - pos: -19.5,-60.5 + - pos: -22.5,-60.5 parent: 2 type: Transform - uid: 6953 components: - - pos: -20.5,-60.5 + - pos: -23.5,-60.5 parent: 2 type: Transform - uid: 6954 components: - - pos: -21.5,-60.5 + - pos: -24.5,-60.5 parent: 2 type: Transform - uid: 6955 components: - - pos: -22.5,-60.5 + - pos: -25.5,-60.5 parent: 2 type: Transform - uid: 6956 components: - - pos: -23.5,-60.5 + - pos: -24.5,-59.5 parent: 2 type: Transform - uid: 6957 components: - - pos: -24.5,-60.5 + - pos: -24.5,-58.5 parent: 2 type: Transform - uid: 6958 components: - - pos: -25.5,-60.5 + - pos: -24.5,-57.5 parent: 2 type: Transform - uid: 6959 components: - - pos: -24.5,-59.5 + - pos: -24.5,-61.5 parent: 2 type: Transform - uid: 6960 components: - - pos: -24.5,-58.5 + - pos: -24.5,-62.5 parent: 2 type: Transform - uid: 6961 components: - - pos: -24.5,-57.5 + - pos: 30.5,-22.5 parent: 2 type: Transform - uid: 6962 components: - - pos: -24.5,-61.5 + - pos: 31.5,-22.5 parent: 2 type: Transform - uid: 6963 components: - - pos: -24.5,-62.5 + - pos: 31.5,-21.5 parent: 2 type: Transform - uid: 6964 components: - - pos: 30.5,-22.5 + - pos: 19.5,-22.5 parent: 2 type: Transform - uid: 6965 components: - - pos: 31.5,-22.5 + - pos: 19.5,-21.5 parent: 2 type: Transform - uid: 6966 components: - - pos: 31.5,-21.5 + - pos: -31.5,-10.5 parent: 2 type: Transform - uid: 6967 components: - - pos: 19.5,-22.5 + - pos: -49.5,-33.5 parent: 2 type: Transform - uid: 6968 components: - - pos: 19.5,-21.5 + - pos: -47.5,-33.5 parent: 2 type: Transform - uid: 6969 components: - - pos: -31.5,-10.5 + - pos: -48.5,-33.5 parent: 2 type: Transform - uid: 6970 components: - - pos: -49.5,-33.5 + - pos: -47.5,-34.5 parent: 2 type: Transform - uid: 6971 components: - - pos: -47.5,-33.5 + - pos: -47.5,-38.5 parent: 2 type: Transform - uid: 6972 components: - - pos: -48.5,-33.5 + - pos: -47.5,-35.5 parent: 2 type: Transform - uid: 6973 components: - - pos: -47.5,-34.5 + - pos: -47.5,-36.5 parent: 2 type: Transform - uid: 6974 components: - - pos: -47.5,-38.5 + - pos: -47.5,-37.5 parent: 2 type: Transform - uid: 6975 components: - - pos: -47.5,-35.5 + - pos: -50.5,-33.5 parent: 2 type: Transform - uid: 6976 components: - - pos: -47.5,-36.5 + - pos: -51.5,-33.5 parent: 2 type: Transform - uid: 6977 components: - - pos: -47.5,-37.5 + - pos: -51.5,-34.5 parent: 2 type: Transform - uid: 6978 components: - - pos: -50.5,-33.5 + - pos: -51.5,-35.5 parent: 2 type: Transform - uid: 6979 components: - - pos: -51.5,-33.5 + - pos: -51.5,-36.5 parent: 2 type: Transform - uid: 6980 components: - - pos: -51.5,-34.5 + - pos: -51.5,-37.5 parent: 2 type: Transform - uid: 6981 components: - - pos: -51.5,-35.5 + - pos: -51.5,-38.5 parent: 2 type: Transform - uid: 6982 components: - - pos: -51.5,-36.5 + - pos: -51.5,-39.5 parent: 2 type: Transform - uid: 6983 components: - - pos: -51.5,-37.5 + - pos: 54.5,-34.5 parent: 2 type: Transform - uid: 6984 components: - - pos: -51.5,-38.5 + - pos: 30.5,-88.5 parent: 2 type: Transform - uid: 6985 components: - - pos: -51.5,-39.5 + - pos: 30.5,-77.5 parent: 2 type: Transform - uid: 6986 components: - - pos: 54.5,-34.5 + - pos: 30.5,-80.5 parent: 2 type: Transform - uid: 6987 components: - - pos: 30.5,-88.5 + - pos: 30.5,-81.5 parent: 2 type: Transform - uid: 6988 components: - - pos: 30.5,-77.5 + - pos: 30.5,-84.5 parent: 2 type: Transform - uid: 6989 components: - - pos: 30.5,-80.5 + - pos: 30.5,-85.5 parent: 2 type: Transform - uid: 6990 components: - - pos: 30.5,-81.5 + - pos: 48.5,-90.5 parent: 2 type: Transform - uid: 6991 components: - - pos: 30.5,-84.5 + - pos: 31.5,-82.5 parent: 2 type: Transform - uid: 6992 components: - - pos: 30.5,-85.5 + - pos: 48.5,-74.5 parent: 2 type: Transform - uid: 6993 components: - - pos: 48.5,-90.5 + - pos: 48.5,-75.5 parent: 2 type: Transform - uid: 6994 components: - - pos: 31.5,-82.5 + - pos: 30.5,-91.5 parent: 2 type: Transform - uid: 6995 components: - - pos: 48.5,-74.5 + - pos: 27.5,-81.5 parent: 2 type: Transform - uid: 6996 components: - - pos: 48.5,-75.5 + - pos: 32.5,-82.5 parent: 2 type: Transform - uid: 6997 components: - - pos: 30.5,-91.5 + - pos: 30.5,-79.5 parent: 2 type: Transform - uid: 6998 components: - - pos: 27.5,-81.5 + - pos: 30.5,-92.5 parent: 2 type: Transform - uid: 6999 components: - - pos: 32.5,-82.5 + - pos: 16.5,-81.5 parent: 2 type: Transform - uid: 7000 components: - - pos: 30.5,-79.5 + - pos: 15.5,-81.5 parent: 2 type: Transform - uid: 7001 components: - - pos: 30.5,-92.5 + - pos: 18.5,-86.5 parent: 2 type: Transform - uid: 7002 components: - - pos: 16.5,-81.5 + - pos: 13.5,-81.5 parent: 2 type: Transform - uid: 7003 components: - - pos: 15.5,-81.5 + - pos: 30.5,-86.5 parent: 2 type: Transform - uid: 7004 components: - - pos: 18.5,-86.5 + - pos: 30.5,-87.5 parent: 2 type: Transform - uid: 7005 components: - - pos: 13.5,-81.5 + - pos: 30.5,-82.5 parent: 2 type: Transform - uid: 7006 components: - - pos: 30.5,-86.5 + - pos: 30.5,-83.5 parent: 2 type: Transform - uid: 7007 components: - - pos: 30.5,-87.5 + - pos: 27.5,-82.5 parent: 2 type: Transform - uid: 7008 components: - - pos: 30.5,-82.5 + - pos: 30.5,-93.5 parent: 2 type: Transform - uid: 7009 components: - - pos: 30.5,-83.5 + - pos: 31.5,-89.5 parent: 2 type: Transform - uid: 7010 components: - - pos: 27.5,-82.5 + - pos: 32.5,-89.5 parent: 2 type: Transform - uid: 7011 components: - - pos: 30.5,-93.5 + - pos: 26.5,-83.5 parent: 2 type: Transform - uid: 7012 components: - - pos: 31.5,-89.5 + - pos: 25.5,-83.5 parent: 2 type: Transform - uid: 7013 components: - - pos: 32.5,-89.5 + - pos: 24.5,-83.5 parent: 2 type: Transform - uid: 7014 components: - - pos: 26.5,-83.5 + - pos: 29.5,-83.5 parent: 2 type: Transform - uid: 7015 components: - - pos: 25.5,-83.5 + - pos: 12.5,-85.5 parent: 2 type: Transform - uid: 7016 components: - - pos: 24.5,-83.5 + - pos: 28.5,-83.5 parent: 2 type: Transform - uid: 7017 components: - - pos: 29.5,-83.5 + - pos: 27.5,-83.5 parent: 2 type: Transform - uid: 7018 components: - - pos: 12.5,-85.5 + - pos: 49.5,-72.5 parent: 2 type: Transform - uid: 7019 components: - - pos: 28.5,-83.5 + - pos: 46.5,-72.5 parent: 2 type: Transform - uid: 7020 components: - - pos: 27.5,-83.5 + - pos: 47.5,-72.5 parent: 2 type: Transform - uid: 7021 components: - - pos: 49.5,-72.5 + - pos: 48.5,-88.5 parent: 2 type: Transform - uid: 7022 components: - - pos: 46.5,-72.5 + - pos: 48.5,-87.5 parent: 2 type: Transform - uid: 7023 components: - - pos: 47.5,-72.5 + - pos: 48.5,-86.5 parent: 2 type: Transform - uid: 7024 components: - - pos: 48.5,-88.5 + - pos: 48.5,-85.5 parent: 2 type: Transform - uid: 7025 components: - - pos: 48.5,-87.5 + - pos: 48.5,-84.5 parent: 2 type: Transform - uid: 7026 components: - - pos: 48.5,-86.5 + - pos: 48.5,-83.5 parent: 2 type: Transform - uid: 7027 components: - - pos: 48.5,-85.5 + - pos: 48.5,-82.5 parent: 2 type: Transform - uid: 7028 components: - - pos: 48.5,-84.5 + - pos: 48.5,-81.5 parent: 2 type: Transform - uid: 7029 components: - - pos: 48.5,-83.5 + - pos: 48.5,-80.5 parent: 2 type: Transform - uid: 7030 components: - - pos: 48.5,-82.5 + - pos: 48.5,-79.5 parent: 2 type: Transform - uid: 7031 components: - - pos: 48.5,-81.5 + - pos: 48.5,-78.5 parent: 2 type: Transform - uid: 7032 components: - - pos: 48.5,-80.5 + - pos: 48.5,-77.5 parent: 2 type: Transform - uid: 7033 components: - - pos: 48.5,-79.5 + - pos: 43.5,-74.5 parent: 2 type: Transform - uid: 7034 components: - - pos: 48.5,-78.5 + - pos: 43.5,-75.5 parent: 2 type: Transform - uid: 7035 components: - - pos: 48.5,-77.5 + - pos: 26.5,-84.5 parent: 2 type: Transform - uid: 7036 components: - - pos: 43.5,-74.5 + - pos: 26.5,-85.5 parent: 2 type: Transform - uid: 7037 components: - - pos: 43.5,-75.5 + - pos: 11.5,-18.5 parent: 2 type: Transform - uid: 7038 components: - - pos: 26.5,-84.5 + - pos: 11.5,-19.5 parent: 2 type: Transform - uid: 7039 components: - - pos: 26.5,-85.5 + - pos: 11.5,-20.5 parent: 2 type: Transform - uid: 7040 components: - - pos: 11.5,-18.5 + - pos: 11.5,-21.5 parent: 2 type: Transform - uid: 7041 components: - - pos: 11.5,-19.5 + - pos: 10.5,-21.5 parent: 2 type: Transform - uid: 7042 components: - - pos: 11.5,-20.5 + - pos: 9.5,-21.5 parent: 2 type: Transform - uid: 7043 components: - - pos: 11.5,-21.5 + - pos: 8.5,-21.5 parent: 2 type: Transform - uid: 7044 components: - - pos: 10.5,-21.5 + - pos: 7.5,-21.5 parent: 2 type: Transform - uid: 7045 components: - - pos: 9.5,-21.5 + - pos: 7.5,-22.5 parent: 2 type: Transform - uid: 7046 components: - - pos: 8.5,-21.5 + - pos: 7.5,-23.5 parent: 2 type: Transform - uid: 7047 components: - - pos: 7.5,-21.5 + - pos: 8.5,-23.5 parent: 2 type: Transform - uid: 7048 components: - - pos: 7.5,-22.5 + - pos: 9.5,-23.5 parent: 2 type: Transform - uid: 7049 components: - - pos: 7.5,-23.5 + - pos: 10.5,-23.5 parent: 2 type: Transform - uid: 7050 components: - - pos: 8.5,-23.5 + - pos: 11.5,-23.5 parent: 2 type: Transform - uid: 7051 components: - - pos: 9.5,-23.5 + - pos: 11.5,-22.5 parent: 2 type: Transform - uid: 7052 components: - - pos: 10.5,-23.5 + - pos: 8.5,-20.5 parent: 2 type: Transform - uid: 7053 components: - - pos: 11.5,-23.5 + - pos: 9.5,-20.5 parent: 2 type: Transform - uid: 7054 components: - - pos: 11.5,-22.5 + - pos: 39.5,11.5 parent: 2 type: Transform - uid: 7055 components: - - pos: 8.5,-20.5 + - pos: 38.5,11.5 parent: 2 type: Transform - uid: 7056 components: - - pos: 9.5,-20.5 + - pos: 39.5,7.5 parent: 2 type: Transform - uid: 7057 components: - - pos: 39.5,11.5 + - pos: 44.5,6.5 parent: 2 type: Transform - uid: 7058 components: - - pos: 38.5,11.5 + - pos: 46.5,7.5 parent: 2 type: Transform - uid: 7059 components: - - pos: 39.5,7.5 + - pos: 3.5,-51.5 parent: 2 type: Transform - uid: 7060 components: - - pos: 44.5,6.5 + - pos: 3.5,-52.5 parent: 2 type: Transform - uid: 7061 components: - - pos: 46.5,7.5 + - pos: 3.5,-53.5 parent: 2 type: Transform - uid: 7062 components: - - pos: 3.5,-51.5 + - pos: 6.5,-73.5 parent: 2 type: Transform - uid: 7063 components: - - pos: 3.5,-52.5 + - pos: 6.5,-74.5 parent: 2 type: Transform - uid: 7064 components: - - pos: 3.5,-53.5 + - pos: 6.5,-75.5 parent: 2 type: Transform - uid: 7065 components: - - pos: 6.5,-73.5 + - pos: 6.5,-76.5 parent: 2 type: Transform - uid: 7066 components: - - pos: 6.5,-74.5 + - pos: 6.5,-77.5 parent: 2 type: Transform - uid: 7067 components: - - pos: 6.5,-75.5 + - pos: 6.5,-78.5 parent: 2 type: Transform - uid: 7068 components: - - pos: 6.5,-76.5 + - pos: 6.5,-79.5 parent: 2 type: Transform - uid: 7069 components: - - pos: 6.5,-77.5 + - pos: 6.5,-80.5 parent: 2 type: Transform - uid: 7070 components: - - pos: 6.5,-78.5 + - pos: 6.5,-81.5 parent: 2 type: Transform - uid: 7071 components: - - pos: 6.5,-79.5 + - pos: 6.5,-82.5 parent: 2 type: Transform - uid: 7072 components: - - pos: 6.5,-80.5 + - pos: 6.5,-83.5 parent: 2 type: Transform - uid: 7073 components: - - pos: 6.5,-81.5 + - pos: 6.5,-84.5 parent: 2 type: Transform - uid: 7074 components: - - pos: 6.5,-82.5 + - pos: 7.5,-83.5 parent: 2 type: Transform - uid: 7075 components: - - pos: 6.5,-83.5 + - pos: 8.5,-83.5 parent: 2 type: Transform - uid: 7076 components: - - pos: 6.5,-84.5 + - pos: 5.5,-74.5 parent: 2 type: Transform - uid: 7077 components: - - pos: 7.5,-83.5 + - pos: 4.5,-74.5 parent: 2 type: Transform - uid: 7078 components: - - pos: 8.5,-83.5 + - pos: 3.5,-74.5 parent: 2 type: Transform - uid: 7079 components: - - pos: 5.5,-74.5 + - pos: 9.5,-83.5 parent: 2 type: Transform - uid: 7080 components: - - pos: 4.5,-74.5 + - pos: 2.5,-74.5 parent: 2 type: Transform - uid: 7081 components: - - pos: 3.5,-74.5 + - pos: 1.5,-74.5 parent: 2 type: Transform - uid: 7082 components: - - pos: 9.5,-83.5 + - pos: -46.5,-53.5 parent: 2 type: Transform - uid: 7083 components: - - pos: 2.5,-74.5 + - pos: -46.5,-51.5 parent: 2 type: Transform - uid: 7084 components: - - pos: 1.5,-74.5 + - pos: -46.5,-46.5 parent: 2 type: Transform - uid: 7085 components: - - pos: -46.5,-53.5 + - pos: -46.5,-48.5 parent: 2 type: Transform - uid: 7086 components: - - pos: -46.5,-51.5 + - pos: -46.5,-47.5 parent: 2 type: Transform - uid: 7087 components: - - pos: -46.5,-46.5 + - pos: -46.5,-49.5 parent: 2 type: Transform - uid: 7088 components: - - pos: -46.5,-48.5 + - pos: -46.5,-50.5 parent: 2 type: Transform - uid: 7089 components: - - pos: -46.5,-47.5 + - pos: -46.5,-52.5 parent: 2 type: Transform - uid: 7090 components: - - pos: -46.5,-49.5 + - pos: -46.5,-54.5 parent: 2 type: Transform - uid: 7091 components: - - pos: -46.5,-50.5 + - pos: -46.5,-55.5 parent: 2 type: Transform - uid: 7092 components: - - pos: -46.5,-52.5 + - pos: -46.5,-56.5 parent: 2 type: Transform - uid: 7093 components: - - pos: -46.5,-54.5 + - pos: -46.5,-57.5 parent: 2 type: Transform - uid: 7094 components: - - pos: -46.5,-55.5 + - pos: -46.5,-58.5 parent: 2 type: Transform - uid: 7095 components: - - pos: -46.5,-56.5 + - pos: -45.5,-58.5 parent: 2 type: Transform - uid: 7096 components: - - pos: -46.5,-57.5 + - pos: -44.5,-58.5 parent: 2 type: Transform - uid: 7097 components: - - pos: -46.5,-58.5 + - pos: -43.5,-58.5 parent: 2 type: Transform - uid: 7098 components: - - pos: -45.5,-58.5 + - pos: -42.5,-58.5 parent: 2 type: Transform - uid: 7099 components: - - pos: -44.5,-58.5 + - pos: -41.5,-58.5 parent: 2 type: Transform - uid: 7100 components: - - pos: -43.5,-58.5 + - pos: -40.5,-58.5 parent: 2 type: Transform - uid: 7101 components: - - pos: -42.5,-58.5 + - pos: -40.5,-59.5 parent: 2 type: Transform - uid: 7102 components: - - pos: -41.5,-58.5 + - pos: -39.5,-59.5 parent: 2 type: Transform - uid: 7103 components: - - pos: -40.5,-58.5 + - pos: -38.5,-59.5 parent: 2 type: Transform - uid: 7104 components: - - pos: -40.5,-59.5 + - pos: -37.5,-59.5 parent: 2 type: Transform - uid: 7105 components: - - pos: -39.5,-59.5 + - pos: -36.5,-59.5 parent: 2 type: Transform - uid: 7106 components: - - pos: -38.5,-59.5 + - pos: -36.5,-58.5 parent: 2 type: Transform - uid: 7107 components: - - pos: -37.5,-59.5 + - pos: -35.5,-58.5 parent: 2 type: Transform - uid: 7108 components: - - pos: -36.5,-59.5 + - pos: -35.5,-56.5 parent: 2 type: Transform - uid: 7109 components: - - pos: -36.5,-58.5 + - pos: -35.5,-57.5 parent: 2 type: Transform - uid: 7110 components: - - pos: -35.5,-58.5 + - pos: -48.5,42.5 parent: 2 type: Transform - uid: 7111 components: - - pos: -35.5,-56.5 + - pos: -49.5,42.5 parent: 2 type: Transform - uid: 7112 components: - - pos: -35.5,-57.5 + - pos: -49.5,43.5 parent: 2 type: Transform - uid: 7113 components: - - pos: -48.5,42.5 + - pos: -50.5,43.5 parent: 2 type: Transform - uid: 7114 components: - - pos: -49.5,42.5 + - pos: -52.5,43.5 parent: 2 type: Transform - uid: 7115 components: - - pos: -49.5,43.5 + - pos: -51.5,43.5 parent: 2 type: Transform - uid: 7116 components: - - pos: -50.5,43.5 + - pos: -49.5,44.5 parent: 2 type: Transform - uid: 7117 components: - - pos: -52.5,43.5 + - pos: -49.5,45.5 parent: 2 type: Transform - uid: 7118 components: - - pos: -51.5,43.5 + - pos: -49.5,46.5 parent: 2 type: Transform - uid: 7119 components: - - pos: -49.5,44.5 + - pos: -49.5,47.5 parent: 2 type: Transform - uid: 7120 components: - - pos: -49.5,45.5 + - pos: -49.5,48.5 parent: 2 type: Transform - uid: 7121 components: - - pos: -49.5,46.5 + - pos: -49.5,49.5 parent: 2 type: Transform - uid: 7122 components: - - pos: -49.5,47.5 + - pos: -48.5,49.5 parent: 2 type: Transform - uid: 7123 components: - - pos: -49.5,48.5 + - pos: -47.5,49.5 parent: 2 type: Transform - uid: 7124 components: - - pos: -49.5,49.5 + - pos: -47.5,42.5 parent: 2 type: Transform - uid: 7125 components: - - pos: -48.5,49.5 + - pos: 8.5,-59.5 parent: 2 type: Transform - uid: 7126 components: - - pos: -47.5,49.5 + - pos: 8.5,-58.5 parent: 2 type: Transform - uid: 7127 components: - - pos: -47.5,42.5 + - pos: 68.5,-32.5 parent: 2 type: Transform - uid: 7128 components: - - pos: 8.5,-59.5 + - pos: 68.5,-31.5 parent: 2 type: Transform - uid: 7129 components: - - pos: 8.5,-58.5 + - pos: 68.5,-30.5 parent: 2 type: Transform - uid: 7130 components: - - pos: 68.5,-32.5 + - pos: 67.5,-30.5 parent: 2 type: Transform - uid: 7131 components: - - pos: 68.5,-31.5 + - pos: 66.5,-30.5 parent: 2 type: Transform - uid: 7132 components: - - pos: 68.5,-30.5 + - pos: -13.5,-33.5 parent: 2 type: Transform - uid: 7133 components: - - pos: 67.5,-30.5 + - pos: -15.5,-33.5 parent: 2 type: Transform - uid: 7134 components: - - pos: 66.5,-30.5 + - pos: -16.5,-33.5 parent: 2 type: Transform - uid: 7135 components: - - pos: -13.5,-33.5 + - pos: 49.5,-89.5 parent: 2 type: Transform - uid: 7136 components: - - pos: -15.5,-33.5 + - pos: 50.5,-89.5 parent: 2 type: Transform - uid: 7137 components: - - pos: -16.5,-33.5 + - pos: 51.5,-89.5 parent: 2 type: Transform - uid: 7138 components: - - pos: 49.5,-89.5 + - pos: 49.5,-82.5 parent: 2 type: Transform - uid: 7139 components: - - pos: 50.5,-89.5 + - pos: 50.5,-82.5 parent: 2 type: Transform - uid: 7140 components: - - pos: 51.5,-89.5 + - pos: 51.5,-82.5 parent: 2 type: Transform - uid: 7141 components: - - pos: 49.5,-82.5 + - pos: -8.5,18.5 parent: 2 type: Transform - uid: 7142 components: - - pos: 50.5,-82.5 + - pos: -4.5,15.5 parent: 2 type: Transform - uid: 7143 components: - - pos: 51.5,-82.5 + - pos: -6.5,12.5 parent: 2 type: Transform - uid: 7144 components: - - pos: -8.5,18.5 + - pos: -7.5,11.5 parent: 2 type: Transform - uid: 7145 components: - - pos: -4.5,15.5 + - pos: -6.5,11.5 parent: 2 type: Transform - uid: 7146 components: - - pos: -6.5,12.5 + - pos: -9.5,11.5 parent: 2 type: Transform - uid: 7147 components: - - pos: -7.5,11.5 + - pos: -9.5,8.5 parent: 2 type: Transform - uid: 7148 components: - - pos: -6.5,11.5 + - pos: -8.5,17.5 parent: 2 type: Transform - uid: 7149 components: - - pos: -9.5,11.5 + - pos: -7.5,23.5 parent: 2 type: Transform - uid: 7150 components: - - pos: -9.5,8.5 + - pos: -6.5,23.5 parent: 2 type: Transform - uid: 7151 components: - - pos: -8.5,17.5 + - pos: -5.5,23.5 parent: 2 type: Transform - uid: 7152 components: - - pos: -7.5,23.5 + - pos: -5.5,21.5 parent: 2 type: Transform - uid: 7153 components: - - pos: -6.5,23.5 + - pos: -6.5,21.5 parent: 2 type: Transform - uid: 7154 components: - - pos: -5.5,23.5 + - pos: -7.5,21.5 parent: 2 type: Transform - uid: 7155 components: - - pos: -5.5,21.5 + - pos: -74.5,-51.5 parent: 2 type: Transform - uid: 7156 components: - - pos: -6.5,21.5 + - pos: -74.5,-50.5 parent: 2 type: Transform - uid: 7157 components: - - pos: -7.5,21.5 + - pos: -74.5,-52.5 parent: 2 type: Transform - uid: 7158 components: - - pos: -74.5,-51.5 + - pos: -74.5,-53.5 parent: 2 type: Transform - uid: 7159 components: - - pos: -74.5,-50.5 + - pos: -75.5,-53.5 parent: 2 type: Transform - uid: 7160 components: - - pos: -74.5,-52.5 + - pos: -76.5,-53.5 parent: 2 type: Transform - uid: 7161 components: - - pos: -74.5,-53.5 + - pos: -73.5,-53.5 parent: 2 type: Transform - uid: 7162 components: - - pos: -75.5,-53.5 + - pos: -72.5,-53.5 parent: 2 type: Transform - uid: 7163 components: - - pos: -76.5,-53.5 + - pos: -71.5,-53.5 parent: 2 type: Transform - uid: 7164 components: - - pos: -73.5,-53.5 + - pos: -70.5,-53.5 parent: 2 type: Transform - uid: 7165 components: - - pos: -72.5,-53.5 + - pos: -69.5,-53.5 parent: 2 type: Transform - uid: 7166 components: - - pos: -71.5,-53.5 + - pos: -68.5,-53.5 parent: 2 type: Transform - uid: 7167 components: - - pos: -70.5,-53.5 + - pos: -67.5,-53.5 parent: 2 type: Transform - uid: 7168 components: - - pos: -69.5,-53.5 + - pos: -66.5,-53.5 parent: 2 type: Transform - uid: 7169 components: - - pos: -68.5,-53.5 + - pos: -71.5,-54.5 parent: 2 type: Transform - uid: 7170 components: - - pos: -67.5,-53.5 + - pos: -71.5,-55.5 parent: 2 type: Transform - uid: 7171 components: - - pos: -66.5,-53.5 + - pos: -73.5,-54.5 parent: 2 type: Transform - uid: 7172 components: - - pos: -71.5,-54.5 + - pos: -73.5,-55.5 parent: 2 type: Transform - uid: 7173 components: - - pos: -71.5,-55.5 + - pos: -73.5,-51.5 parent: 2 type: Transform - uid: 7174 components: - - pos: -73.5,-54.5 + - pos: -71.5,-51.5 parent: 2 type: Transform - uid: 7175 components: - - pos: -73.5,-55.5 + - pos: -71.5,-52.5 parent: 2 type: Transform - uid: 7176 components: - - pos: -73.5,-51.5 + - pos: -65.5,-56.5 parent: 2 type: Transform - uid: 7177 components: - - pos: -71.5,-51.5 + - pos: -66.5,-56.5 parent: 2 type: Transform - uid: 7178 components: - - pos: -71.5,-52.5 + - pos: -66.5,-52.5 parent: 2 type: Transform - uid: 7179 components: - - pos: -65.5,-56.5 + - pos: -66.5,-54.5 parent: 2 type: Transform - uid: 7180 components: - - pos: -66.5,-56.5 + - pos: -66.5,-55.5 parent: 2 type: Transform - uid: 7181 components: - - pos: -66.5,-52.5 + - pos: -64.5,-56.5 parent: 2 type: Transform - uid: 7182 components: - - pos: -66.5,-54.5 + - pos: -64.5,-55.5 parent: 2 type: Transform - uid: 7183 components: - - pos: -66.5,-55.5 + - pos: -64.5,-54.5 parent: 2 type: Transform - uid: 7184 components: - - pos: -64.5,-56.5 + - pos: -67.5,-41.5 parent: 2 type: Transform - uid: 7185 components: - - pos: -64.5,-55.5 + - pos: -69.5,-42.5 parent: 2 type: Transform - uid: 7186 components: - - pos: -64.5,-54.5 + - pos: -68.5,-41.5 parent: 2 type: Transform - uid: 7187 components: - - pos: -67.5,-41.5 + - pos: -69.5,-41.5 parent: 2 type: Transform - uid: 7188 components: - - pos: -69.5,-42.5 + - pos: -69.5,-40.5 parent: 2 type: Transform - uid: 7189 components: - - pos: -68.5,-41.5 + - pos: -69.5,-43.5 parent: 2 type: Transform - uid: 7190 components: - - pos: -69.5,-41.5 + - pos: -70.5,-40.5 parent: 2 type: Transform - uid: 7191 components: - - pos: -69.5,-40.5 + - pos: -71.5,-40.5 parent: 2 type: Transform - uid: 7192 components: - - pos: -69.5,-43.5 + - pos: -71.5,-39.5 parent: 2 type: Transform - uid: 7193 components: - - pos: -70.5,-40.5 + - pos: -65.5,-42.5 parent: 2 type: Transform - uid: 7194 components: - - pos: -71.5,-40.5 + - pos: -72.5,-39.5 parent: 2 type: Transform - uid: 7195 components: - - pos: -71.5,-39.5 + - pos: -73.5,-44.5 parent: 2 type: Transform - uid: 7196 components: - - pos: -65.5,-42.5 + - pos: -73.5,-43.5 parent: 2 type: Transform - uid: 7197 components: - - pos: -72.5,-39.5 + - pos: -73.5,-42.5 parent: 2 type: Transform - uid: 7198 components: - - pos: -73.5,-44.5 + - pos: -73.5,-41.5 parent: 2 type: Transform - uid: 7199 components: - - pos: -73.5,-43.5 + - pos: -73.5,-40.5 parent: 2 type: Transform - uid: 7200 components: - - pos: -73.5,-42.5 + - pos: -73.5,-39.5 parent: 2 type: Transform - uid: 7201 components: - - pos: -73.5,-41.5 + - pos: -68.5,-37.5 parent: 2 type: Transform - uid: 7202 components: - - pos: -73.5,-40.5 + - pos: -70.5,-37.5 parent: 2 type: Transform - uid: 7203 components: - - pos: -73.5,-39.5 + - pos: -69.5,-37.5 parent: 2 type: Transform - uid: 7204 components: - - pos: -68.5,-37.5 + - pos: -73.5,-37.5 parent: 2 type: Transform - uid: 7205 components: - - pos: -70.5,-37.5 + - pos: -72.5,-37.5 parent: 2 type: Transform - uid: 7206 components: - - pos: -69.5,-37.5 + - pos: -66.5,-36.5 parent: 2 type: Transform - uid: 7207 components: - - pos: -73.5,-37.5 + - pos: -65.5,-41.5 parent: 2 type: Transform - uid: 7208 components: - - pos: -72.5,-37.5 + - pos: -65.5,-43.5 parent: 2 type: Transform - uid: 7209 components: - - pos: -66.5,-36.5 + - pos: -65.5,-44.5 parent: 2 type: Transform - uid: 7210 components: - - pos: -65.5,-41.5 + - pos: -67.5,-37.5 parent: 2 type: Transform - uid: 7211 components: - - pos: -65.5,-43.5 + - pos: -73.5,-35.5 parent: 2 type: Transform - uid: 7212 components: - - pos: -65.5,-44.5 + - pos: -73.5,-38.5 parent: 2 type: Transform - uid: 7213 components: - - pos: -67.5,-37.5 + - pos: -73.5,-36.5 parent: 2 type: Transform - uid: 7214 components: - - pos: -73.5,-35.5 + - pos: -66.5,-37.5 parent: 2 type: Transform - uid: 7215 components: - - pos: -73.5,-38.5 + - pos: -65.5,-37.5 parent: 2 type: Transform - uid: 7216 components: - - pos: -73.5,-36.5 + - pos: -65.5,-39.5 parent: 2 type: Transform - uid: 7217 components: - - pos: -66.5,-37.5 + - pos: -65.5,-40.5 parent: 2 type: Transform - uid: 7218 components: - - pos: -65.5,-37.5 + - pos: -66.5,-41.5 parent: 2 type: Transform - uid: 7219 components: - - pos: -65.5,-39.5 + - pos: -65.5,-45.5 parent: 2 type: Transform - uid: 7220 components: - - pos: -65.5,-40.5 + - pos: -66.5,-45.5 parent: 2 type: Transform - uid: 7221 components: - - pos: -66.5,-41.5 + - pos: -73.5,-45.5 parent: 2 type: Transform - uid: 7222 components: - - pos: -65.5,-45.5 + - pos: -72.5,-45.5 parent: 2 type: Transform - uid: 7223 components: - - pos: -66.5,-45.5 + - pos: -74.5,-41.5 parent: 2 type: Transform - uid: 7224 components: - - pos: -73.5,-45.5 + - pos: -75.5,-41.5 parent: 2 type: Transform - uid: 7225 components: - - pos: -72.5,-45.5 + - pos: -76.5,-41.5 parent: 2 type: Transform - uid: 7226 components: - - pos: -74.5,-41.5 + - pos: -41.5,-17.5 parent: 2 type: Transform - uid: 7227 components: - - pos: -75.5,-41.5 + - pos: -41.5,-18.5 parent: 2 type: Transform - uid: 7228 components: - - pos: -76.5,-41.5 + - pos: -74.5,-45.5 parent: 2 type: Transform - uid: 7229 components: - - pos: -41.5,-17.5 + - pos: -75.5,-45.5 parent: 2 type: Transform - uid: 7230 components: - - pos: -41.5,-18.5 + - pos: -76.5,-45.5 parent: 2 type: Transform - uid: 7231 components: - - pos: -74.5,-45.5 + - pos: -72.5,-38.5 parent: 2 type: Transform - uid: 7232 components: - - pos: -75.5,-45.5 + - pos: -71.5,-38.5 parent: 2 type: Transform - uid: 7233 components: - - pos: -76.5,-45.5 + - pos: -70.5,-38.5 parent: 2 type: Transform - uid: 7234 components: - - pos: -72.5,-38.5 + - pos: -65.5,-33.5 parent: 2 type: Transform - uid: 7235 components: - - pos: -71.5,-38.5 + - pos: -56.5,-37.5 parent: 2 type: Transform - uid: 7236 components: - - pos: -70.5,-38.5 + - pos: -59.5,-37.5 parent: 2 type: Transform - uid: 7237 components: - - pos: -65.5,-33.5 + - pos: -57.5,-37.5 parent: 2 type: Transform - uid: 7238 components: - - pos: -56.5,-37.5 + - pos: -62.5,-37.5 parent: 2 type: Transform - uid: 7239 components: - - pos: -59.5,-37.5 + - pos: -61.5,-37.5 parent: 2 type: Transform - uid: 7240 components: - - pos: -57.5,-37.5 + - pos: -60.5,-37.5 parent: 2 type: Transform - uid: 7241 components: - - pos: -62.5,-37.5 + - pos: -17.5,11.5 parent: 2 type: Transform - uid: 7242 components: - - pos: -61.5,-37.5 + - pos: -58.5,-37.5 parent: 2 type: Transform - uid: 7243 components: - - pos: -60.5,-37.5 + - pos: -54.5,-36.5 parent: 2 type: Transform - uid: 7244 components: - - pos: -17.5,11.5 + - pos: -53.5,-36.5 parent: 2 type: Transform - uid: 7245 components: - - pos: -58.5,-37.5 + - pos: -52.5,-36.5 parent: 2 type: Transform - uid: 7246 components: - - pos: -54.5,-36.5 + - pos: -42.5,-28.5 parent: 2 type: Transform - uid: 7247 components: - - pos: -53.5,-36.5 + - pos: -43.5,-28.5 parent: 2 type: Transform - uid: 7248 components: - - pos: -52.5,-36.5 + - pos: -43.5,-30.5 parent: 2 type: Transform - uid: 7249 components: - - pos: -42.5,-28.5 + - pos: -43.5,-29.5 parent: 2 type: Transform - uid: 7250 components: - - pos: -43.5,-28.5 + - pos: -41.5,-28.5 parent: 2 type: Transform - uid: 7251 components: - - pos: -43.5,-30.5 + - pos: -38.5,-29.5 parent: 2 type: Transform - uid: 7252 components: - - pos: -43.5,-29.5 + - pos: -55.5,-31.5 parent: 2 type: Transform - uid: 7253 components: - - pos: -41.5,-28.5 + - pos: 24.5,-38.5 parent: 2 type: Transform - uid: 7254 components: - - pos: -38.5,-29.5 + - pos: 22.5,-38.5 parent: 2 type: Transform - uid: 7255 components: - - pos: -55.5,-31.5 + - pos: 24.5,-34.5 parent: 2 type: Transform - uid: 7256 components: - - pos: 24.5,-38.5 + - pos: 24.5,-35.5 parent: 2 type: Transform - uid: 7257 components: - - pos: 22.5,-38.5 + - pos: 24.5,-37.5 parent: 2 type: Transform - uid: 7258 components: - - pos: 24.5,-34.5 + - pos: 24.5,-36.5 parent: 2 type: Transform - uid: 7259 components: - - pos: 24.5,-35.5 + - pos: 23.5,-38.5 parent: 2 type: Transform - uid: 7260 components: - - pos: 24.5,-37.5 + - pos: 2.5,-5.5 parent: 2 type: Transform - uid: 7261 components: - - pos: 24.5,-36.5 + - pos: -0.5,-4.5 parent: 2 type: Transform - uid: 7262 components: - - pos: 23.5,-38.5 + - pos: 1.5,-4.5 parent: 2 type: Transform - uid: 7263 components: - - pos: 2.5,-5.5 + - pos: -0.5,-6.5 parent: 2 type: Transform - uid: 7264 components: - - pos: -0.5,-4.5 + - pos: -0.5,-5.5 parent: 2 type: Transform - uid: 7265 components: - - pos: 1.5,-4.5 + - pos: 1.5,-5.5 parent: 2 type: Transform - uid: 7266 components: - - pos: -0.5,-6.5 + - pos: 3.5,-5.5 parent: 2 type: Transform - uid: 7267 components: - - pos: -0.5,-5.5 + - pos: 3.5,-6.5 parent: 2 type: Transform - uid: 7268 components: - - pos: 1.5,-5.5 + - pos: 1.5,-6.5 parent: 2 type: Transform - uid: 7269 components: - - pos: 3.5,-5.5 + - pos: 1.5,-3.5 parent: 2 type: Transform - uid: 7270 components: - - pos: 3.5,-6.5 + - pos: 2.5,-3.5 parent: 2 type: Transform - uid: 7271 components: - - pos: 1.5,-6.5 + - pos: 3.5,-3.5 parent: 2 type: Transform - uid: 7272 components: - - pos: 1.5,-3.5 + - pos: 18.5,-30.5 parent: 2 type: Transform - uid: 7273 components: - - pos: 2.5,-3.5 + - pos: 1.5,-7.5 parent: 2 type: Transform - uid: 7274 components: - - pos: 3.5,-3.5 + - pos: 1.5,-8.5 parent: 2 type: Transform - uid: 7275 components: - - pos: 18.5,-30.5 + - pos: 0.5,-5.5 parent: 2 type: Transform - uid: 7276 components: - - pos: 1.5,-7.5 + - pos: 0.5,-6.5 parent: 2 type: Transform - uid: 7277 components: - - pos: 1.5,-8.5 + - pos: 3.5,-7.5 parent: 2 type: Transform - uid: 7278 components: - - pos: 0.5,-5.5 + - pos: 2.5,-7.5 parent: 2 type: Transform - uid: 7279 components: - - pos: 0.5,-6.5 + - pos: 5.5,-7.5 parent: 2 type: Transform - uid: 7280 components: - - pos: 3.5,-7.5 + - pos: 22.5,-39.5 parent: 2 type: Transform - uid: 7281 components: - - pos: 2.5,-7.5 + - pos: 0.5,-17.5 parent: 2 type: Transform - uid: 7282 components: - - pos: 5.5,-7.5 + - pos: 0.5,-18.5 parent: 2 type: Transform - uid: 7283 components: - - pos: 22.5,-39.5 + - pos: 0.5,-19.5 parent: 2 type: Transform - uid: 7284 components: - - pos: 0.5,-17.5 + - pos: 0.5,-20.5 parent: 2 type: Transform - uid: 7285 components: - - pos: 0.5,-18.5 + - pos: 0.5,-21.5 parent: 2 type: Transform - uid: 7286 components: - - pos: 0.5,-19.5 + - pos: 0.5,-23.5 parent: 2 type: Transform - uid: 7287 components: - - pos: 0.5,-20.5 + - pos: 0.5,-22.5 parent: 2 type: Transform - uid: 7288 components: - - pos: 0.5,-21.5 + - pos: 1.5,-22.5 parent: 2 type: Transform - uid: 7289 components: - - pos: 0.5,-23.5 + - pos: -0.5,-21.5 parent: 2 type: Transform - uid: 7290 components: - - pos: 0.5,-22.5 + - pos: -0.5,-19.5 parent: 2 type: Transform - uid: 7291 components: - - pos: 1.5,-22.5 + - pos: -0.5,-23.5 parent: 2 type: Transform - uid: 7292 components: - - pos: -0.5,-21.5 + - pos: -1.5,-23.5 parent: 2 type: Transform - uid: 7293 components: - - pos: -0.5,-19.5 + - pos: 4.5,-12.5 parent: 2 type: Transform - uid: 7294 components: - - pos: -0.5,-23.5 + - pos: 25.5,-38.5 parent: 2 type: Transform - uid: 7295 components: - - pos: -1.5,-23.5 + - pos: 26.5,-38.5 parent: 2 type: Transform - uid: 7296 components: - - pos: 4.5,-12.5 + - pos: 27.5,-38.5 parent: 2 type: Transform - uid: 7297 components: - - pos: 25.5,-38.5 + - pos: 28.5,-38.5 parent: 2 type: Transform - uid: 7298 components: - - pos: 26.5,-38.5 + - pos: 28.5,-37.5 parent: 2 type: Transform - uid: 7299 components: - - pos: 27.5,-38.5 + - pos: 28.5,-36.5 parent: 2 type: Transform - uid: 7300 components: - - pos: 28.5,-38.5 + - pos: 28.5,-33.5 parent: 2 type: Transform - uid: 7301 components: - - pos: 28.5,-37.5 + - pos: -53.5,-23.5 parent: 2 type: Transform - uid: 7302 components: - - pos: 28.5,-36.5 + - pos: 59.5,56.5 parent: 2 type: Transform - uid: 7303 components: - - pos: 28.5,-33.5 + - pos: 59.5,57.5 parent: 2 type: Transform - uid: 7304 components: - - pos: -53.5,-23.5 + - pos: 59.5,58.5 parent: 2 type: Transform -- proto: CableApcStack - entities: - uid: 7305 components: - - pos: -22.574043,-20.541626 + - pos: 59.5,59.5 parent: 2 type: Transform - uid: 7306 components: - - pos: -11.530048,37.577045 + - pos: 59.5,55.5 parent: 2 type: Transform - uid: 7307 components: - - pos: 77.47492,-43.4493 + - pos: 55.5,62.5 parent: 2 type: Transform - uid: 7308 components: - - pos: -66.46611,-34.373695 + - pos: 54.5,62.5 parent: 2 type: Transform -- proto: CableApcStack1 - entities: - uid: 7309 components: - - rot: 3.141592653589793 rad - pos: 55.427982,45.52066 + - pos: 53.5,62.5 parent: 2 type: Transform - uid: 7310 components: - - rot: 3.141592653589793 rad - pos: 38.439327,47.51809 + - pos: 56.5,62.5 parent: 2 type: Transform - uid: 7311 components: - - pos: -14.8449135,-96.398895 + - pos: 52.5,62.5 parent: 2 type: Transform - uid: 7312 components: - - pos: 57.114487,42.493305 + - pos: 49.5,59.5 parent: 2 type: Transform - uid: 7313 components: - - pos: -14.677503,-33.453545 + - pos: 49.5,57.5 parent: 2 type: Transform -- proto: CableHV - entities: - uid: 7314 components: - - pos: -79.5,-38.5 + - pos: 49.5,56.5 parent: 2 type: Transform - uid: 7315 components: - - pos: 15.5,-28.5 + - pos: 49.5,55.5 parent: 2 type: Transform - uid: 7316 components: - - pos: 7.5,-26.5 + - pos: 49.5,58.5 parent: 2 type: Transform - uid: 7317 components: - - pos: 27.5,-42.5 + - pos: 48.5,55.5 parent: 2 type: Transform - uid: 7318 components: - - pos: 8.5,-95.5 + - pos: 47.5,55.5 parent: 2 type: Transform - uid: 7319 components: - - pos: -1.5,-66.5 + - pos: 46.5,55.5 parent: 2 type: Transform - uid: 7320 components: - - pos: 15.5,-33.5 + - pos: 45.5,55.5 parent: 2 type: Transform - uid: 7321 components: - - pos: 12.5,-26.5 + - pos: 44.5,55.5 parent: 2 type: Transform - uid: 7322 components: - - pos: -11.5,-26.5 + - pos: 43.5,55.5 parent: 2 type: Transform - uid: 7323 components: - - pos: 2.5,-42.5 + - pos: 42.5,55.5 parent: 2 type: Transform - uid: 7324 components: - - pos: 6.5,-42.5 + - pos: 41.5,55.5 parent: 2 type: Transform - uid: 7325 components: - - pos: 0.5,-42.5 + - pos: 40.5,55.5 parent: 2 type: Transform - uid: 7326 components: - - pos: 4.5,-42.5 + - pos: 39.5,55.5 parent: 2 type: Transform - uid: 7327 components: - - pos: -5.5,-39.5 + - pos: 39.5,56.5 parent: 2 type: Transform - uid: 7328 components: - - pos: 8.5,-55.5 + - pos: 39.5,57.5 parent: 2 type: Transform - uid: 7329 components: - - pos: -1.5,-42.5 + - pos: 39.5,58.5 parent: 2 type: Transform - uid: 7330 components: - - pos: -1.5,-26.5 + - pos: 39.5,59.5 parent: 2 type: Transform - uid: 7331 components: - - pos: 15.5,-26.5 + - pos: 39.5,60.5 parent: 2 type: Transform - uid: 7332 components: - - pos: -1.5,-64.5 + - pos: 39.5,61.5 parent: 2 type: Transform - uid: 7333 components: - - pos: -12.5,-75.5 + - pos: 39.5,62.5 parent: 2 type: Transform - uid: 7334 components: - - pos: 32.5,-42.5 + - pos: 39.5,63.5 parent: 2 type: Transform - uid: 7335 components: - - pos: 14.5,-46.5 + - pos: 40.5,62.5 parent: 2 type: Transform - uid: 7336 components: - - pos: 21.5,-42.5 + - pos: 41.5,62.5 parent: 2 type: Transform - uid: 7337 components: - - pos: 38.5,-30.5 + - pos: 41.5,63.5 parent: 2 type: Transform - uid: 7338 components: - - pos: -12.5,-71.5 + - pos: 38.5,62.5 parent: 2 type: Transform - uid: 7339 components: - - pos: 4.5,-16.5 + - pos: 37.5,62.5 parent: 2 type: Transform - uid: 7340 components: - - pos: 3.5,-16.5 + - pos: 37.5,63.5 parent: 2 type: Transform - uid: 7341 components: - - pos: 2.5,-16.5 + - pos: 37.5,64.5 parent: 2 type: Transform - uid: 7342 components: - - pos: 1.5,-16.5 + - pos: 38.5,64.5 parent: 2 type: Transform - uid: 7343 components: - - pos: 1.5,-17.5 + - pos: 38.5,65.5 parent: 2 type: Transform - uid: 7344 components: - - pos: 0.5,-17.5 + - pos: 41.5,64.5 parent: 2 type: Transform - uid: 7345 components: - - pos: 39.5,-28.5 + - pos: 40.5,64.5 parent: 2 type: Transform - uid: 7346 components: - - pos: 25.5,-42.5 + - pos: 40.5,65.5 parent: 2 type: Transform - uid: 7347 components: - - pos: 24.5,-42.5 + - pos: -37.5,17.5 parent: 2 type: Transform - uid: 7348 components: - - pos: 23.5,-42.5 + - pos: -38.5,17.5 parent: 2 type: Transform +- proto: CableApcStack + entities: - uid: 7349 components: - - pos: 22.5,-42.5 + - pos: -22.574043,-20.541626 parent: 2 type: Transform - uid: 7350 components: - - pos: 25.5,-10.5 + - pos: -11.530048,37.577045 parent: 2 type: Transform - uid: 7351 components: - - pos: 24.5,-5.5 + - pos: 77.47492,-43.4493 parent: 2 type: Transform - uid: 7352 components: - - pos: 12.5,-42.5 + - pos: -66.46611,-34.373695 parent: 2 type: Transform +- proto: CableApcStack1 + entities: - uid: 7353 components: - - pos: -14.5,34.5 + - rot: 3.141592653589793 rad + pos: 55.427982,45.52066 parent: 2 type: Transform - uid: 7354 components: - - pos: 8.5,-16.5 + - rot: 3.141592653589793 rad + pos: 38.439327,47.51809 parent: 2 type: Transform - uid: 7355 components: - - pos: 4.5,-14.5 + - pos: -14.8449135,-96.398895 parent: 2 type: Transform - uid: 7356 components: - - pos: -4.5,-18.5 + - pos: 57.114487,42.493305 parent: 2 type: Transform - uid: 7357 components: - - pos: 5.5,-92.5 + - pos: -14.677503,-33.453545 parent: 2 type: Transform +- proto: CableHV + entities: - uid: 7358 components: - - pos: 4.5,-92.5 + - pos: -79.5,-38.5 parent: 2 type: Transform - uid: 7359 components: - - pos: 2.5,-92.5 + - pos: 15.5,-28.5 parent: 2 type: Transform - uid: 7360 components: - - pos: 12.5,-49.5 + - pos: 7.5,-26.5 parent: 2 type: Transform - uid: 7361 components: - - pos: 10.5,-49.5 + - pos: 27.5,-42.5 parent: 2 type: Transform - uid: 7362 components: - - pos: 9.5,-52.5 + - pos: 8.5,-95.5 parent: 2 type: Transform - uid: 7363 components: - - pos: 8.5,-54.5 + - pos: -1.5,-66.5 parent: 2 type: Transform - uid: 7364 components: - - pos: 8.5,-53.5 + - pos: 15.5,-33.5 parent: 2 type: Transform - uid: 7365 components: - - pos: 10.5,-55.5 + - pos: 12.5,-26.5 parent: 2 type: Transform - uid: 7366 components: - - pos: 11.5,-55.5 + - pos: -11.5,-26.5 parent: 2 type: Transform - uid: 7367 components: - - pos: 12.5,-56.5 + - pos: 2.5,-42.5 parent: 2 type: Transform - uid: 7368 components: - - pos: 14.5,-57.5 + - pos: 6.5,-42.5 parent: 2 type: Transform - uid: 7369 components: - - pos: 14.5,-58.5 + - pos: 0.5,-42.5 parent: 2 type: Transform - uid: 7370 components: - - pos: 39.5,-29.5 + - pos: 4.5,-42.5 parent: 2 type: Transform - uid: 7371 components: - - pos: 36.5,-30.5 + - pos: -5.5,-39.5 parent: 2 type: Transform - uid: 7372 components: - - pos: 10.5,-92.5 + - pos: 8.5,-55.5 parent: 2 type: Transform - uid: 7373 components: - - pos: -11.5,-75.5 + - pos: -1.5,-42.5 parent: 2 type: Transform - uid: 7374 components: - - pos: 6.5,-92.5 + - pos: -1.5,-26.5 parent: 2 type: Transform - uid: 7375 components: - - pos: -7.5,-75.5 + - pos: 15.5,-26.5 parent: 2 type: Transform - uid: 7376 components: - - pos: -5.5,-75.5 + - pos: -1.5,-64.5 parent: 2 type: Transform - uid: 7377 components: - - pos: 25.5,-49.5 + - pos: -12.5,-75.5 parent: 2 type: Transform - uid: 7378 components: - - pos: 0.5,-89.5 + - pos: 32.5,-42.5 parent: 2 type: Transform - uid: 7379 components: - - pos: -0.5,-89.5 + - pos: 14.5,-46.5 parent: 2 type: Transform - uid: 7380 components: - - pos: -1.5,-89.5 + - pos: 21.5,-42.5 parent: 2 type: Transform - uid: 7381 components: - - pos: -1.5,-88.5 + - pos: 38.5,-30.5 parent: 2 type: Transform - uid: 7382 components: - - pos: -1.5,-87.5 + - pos: -12.5,-71.5 parent: 2 type: Transform - uid: 7383 components: - - pos: 14.5,-98.5 + - pos: 4.5,-16.5 parent: 2 type: Transform - uid: 7384 components: - - pos: 12.5,-95.5 + - pos: 3.5,-16.5 parent: 2 type: Transform - uid: 7385 components: - - pos: -4.5,-22.5 + - pos: 2.5,-16.5 parent: 2 type: Transform - uid: 7386 components: - - pos: 10.5,-95.5 + - pos: 1.5,-16.5 parent: 2 type: Transform - uid: 7387 components: - - pos: 15.5,-37.5 + - pos: 1.5,-17.5 parent: 2 type: Transform - uid: 7388 components: - - pos: -15.5,-71.5 + - pos: 0.5,-17.5 parent: 2 type: Transform - uid: 7389 components: - - pos: 35.5,-40.5 + - pos: 39.5,-28.5 parent: 2 type: Transform - uid: 7390 components: - - pos: 13.5,-45.5 + - pos: 25.5,-42.5 parent: 2 type: Transform - uid: 7391 components: - - pos: -4.5,-25.5 + - pos: 24.5,-42.5 parent: 2 type: Transform - uid: 7392 components: - - pos: -5.5,-30.5 + - pos: 23.5,-42.5 parent: 2 type: Transform - uid: 7393 components: - - pos: 6.5,-26.5 + - pos: 22.5,-42.5 parent: 2 type: Transform - uid: 7394 components: - - pos: 5.5,-26.5 + - pos: 25.5,-10.5 parent: 2 type: Transform - uid: 7395 components: - - pos: 3.5,-26.5 + - pos: 24.5,-5.5 parent: 2 type: Transform - uid: 7396 components: - - pos: 2.5,-26.5 + - pos: 12.5,-42.5 parent: 2 type: Transform - uid: 7397 components: - - pos: 1.5,-26.5 + - pos: -14.5,34.5 parent: 2 type: Transform - uid: 7398 components: - - pos: -17.5,-26.5 + - pos: 8.5,-16.5 parent: 2 type: Transform - uid: 7399 components: - - pos: 12.5,-45.5 + - pos: 4.5,-14.5 parent: 2 type: Transform - uid: 7400 components: - - pos: 15.5,-41.5 + - pos: -4.5,-18.5 parent: 2 type: Transform - uid: 7401 components: - - pos: 13.5,-42.5 + - pos: 5.5,-92.5 parent: 2 type: Transform - uid: 7402 components: - - pos: 10.5,-42.5 + - pos: 4.5,-92.5 parent: 2 type: Transform - uid: 7403 components: - - pos: 7.5,-42.5 + - pos: 2.5,-92.5 parent: 2 type: Transform - uid: 7404 components: - - pos: 8.5,-42.5 + - pos: 12.5,-49.5 parent: 2 type: Transform - uid: 7405 components: - - pos: 25.5,-6.5 + - pos: 10.5,-49.5 parent: 2 type: Transform - uid: 7406 components: - - pos: 25.5,-12.5 + - pos: 9.5,-52.5 parent: 2 type: Transform - uid: 7407 components: - - pos: 25.5,-13.5 + - pos: 8.5,-54.5 parent: 2 type: Transform - uid: 7408 components: - - pos: 25.5,-14.5 + - pos: 8.5,-53.5 parent: 2 type: Transform - uid: 7409 components: - - pos: 2.5,-71.5 + - pos: 10.5,-55.5 parent: 2 type: Transform - uid: 7410 components: - - pos: -12.5,-73.5 + - pos: 11.5,-55.5 parent: 2 type: Transform - uid: 7411 components: - - pos: 35.5,-34.5 + - pos: 12.5,-56.5 parent: 2 type: Transform - uid: 7412 components: - - pos: 25.5,-44.5 + - pos: 14.5,-57.5 parent: 2 type: Transform - uid: 7413 components: - - pos: 25.5,-43.5 + - pos: 14.5,-58.5 parent: 2 type: Transform - uid: 7414 components: - - pos: 33.5,-42.5 + - pos: 39.5,-29.5 parent: 2 type: Transform - uid: 7415 components: - - pos: -67.5,-25.5 + - pos: 36.5,-30.5 parent: 2 type: Transform - uid: 7416 components: - - pos: -2.5,-61.5 + - pos: 10.5,-92.5 parent: 2 type: Transform - uid: 7417 components: - - pos: -2.5,-59.5 + - pos: -11.5,-75.5 parent: 2 type: Transform - uid: 7418 components: - - pos: -6.5,-69.5 + - pos: 6.5,-92.5 parent: 2 type: Transform - uid: 7419 components: - - pos: -8.5,-19.5 + - pos: -7.5,-75.5 parent: 2 type: Transform - uid: 7420 components: - - pos: -15.5,-72.5 + - pos: -5.5,-75.5 parent: 2 type: Transform - uid: 7421 components: - - pos: 11.5,-92.5 + - pos: 25.5,-49.5 parent: 2 type: Transform - uid: 7422 components: - - pos: 18.5,-95.5 + - pos: 0.5,-89.5 parent: 2 type: Transform - uid: 7423 components: - - pos: 12.5,-98.5 + - pos: -0.5,-89.5 parent: 2 type: Transform - uid: 7424 components: - - pos: -1.5,-77.5 + - pos: -1.5,-89.5 parent: 2 type: Transform - uid: 7425 components: - - pos: -1.5,-80.5 + - pos: -1.5,-88.5 parent: 2 type: Transform - uid: 7426 components: - - pos: -1.5,-68.5 + - pos: -1.5,-87.5 parent: 2 type: Transform - uid: 7427 components: - - pos: 12.5,-47.5 + - pos: 14.5,-98.5 parent: 2 type: Transform - uid: 7428 components: - - pos: -12.5,-69.5 + - pos: 12.5,-95.5 parent: 2 type: Transform - uid: 7429 components: - - pos: 8.5,-92.5 + - pos: -4.5,-22.5 parent: 2 type: Transform - uid: 7430 components: - - pos: 23.5,-17.5 + - pos: 10.5,-95.5 parent: 2 type: Transform - uid: 7431 components: - - pos: -14.5,-71.5 + - pos: 15.5,-37.5 parent: 2 type: Transform - uid: 7432 components: - - pos: -15.5,-73.5 + - pos: -15.5,-71.5 parent: 2 type: Transform - uid: 7433 components: - - pos: 15.5,-43.5 + - pos: 35.5,-40.5 parent: 2 type: Transform - uid: 7434 components: - - pos: -2.5,-63.5 + - pos: 13.5,-45.5 parent: 2 type: Transform - uid: 7435 components: - - pos: 12.5,-57.5 + - pos: -4.5,-25.5 parent: 2 type: Transform - uid: 7436 components: - - pos: 9.5,-55.5 + - pos: -5.5,-30.5 parent: 2 type: Transform - uid: 7437 components: - - pos: 15.5,-40.5 + - pos: 6.5,-26.5 parent: 2 type: Transform - uid: 7438 components: - - pos: -4.5,-69.5 + - pos: 5.5,-26.5 parent: 2 type: Transform - uid: 7439 components: - - pos: -1.5,-65.5 + - pos: 3.5,-26.5 parent: 2 type: Transform - uid: 7440 components: - - pos: 14.5,-47.5 + - pos: 2.5,-26.5 parent: 2 type: Transform - uid: 7441 components: - - pos: 14.5,-45.5 + - pos: 1.5,-26.5 parent: 2 type: Transform - uid: 7442 components: - - pos: -0.5,-42.5 + - pos: -17.5,-26.5 parent: 2 type: Transform - uid: 7443 components: - - pos: 1.5,-42.5 + - pos: 12.5,-45.5 parent: 2 type: Transform - uid: 7444 components: - - pos: 3.5,-42.5 + - pos: 15.5,-41.5 parent: 2 type: Transform - uid: 7445 components: - - pos: 5.5,-42.5 + - pos: 13.5,-42.5 parent: 2 type: Transform - uid: 7446 components: - - pos: 31.5,-5.5 + - pos: 10.5,-42.5 parent: 2 type: Transform - uid: 7447 components: - - pos: 25.5,-5.5 + - pos: 7.5,-42.5 parent: 2 type: Transform - uid: 7448 components: - - pos: -4.5,-24.5 + - pos: 8.5,-42.5 parent: 2 type: Transform - uid: 7449 components: - - pos: -5.5,-40.5 + - pos: 25.5,-6.5 parent: 2 type: Transform - uid: 7450 components: - - pos: -5.5,-38.5 + - pos: 25.5,-12.5 parent: 2 type: Transform - uid: 7451 components: - - pos: -5.5,-26.5 + - pos: 25.5,-13.5 parent: 2 type: Transform - uid: 7452 components: - - pos: 18.5,-29.5 + - pos: 25.5,-14.5 parent: 2 type: Transform - uid: 7453 components: - - pos: -0.5,-17.5 + - pos: 2.5,-71.5 parent: 2 type: Transform - uid: 7454 components: - - pos: 30.5,-3.5 + - pos: -12.5,-73.5 parent: 2 type: Transform - uid: 7455 components: - - pos: 30.5,7.5 + - pos: 35.5,-34.5 parent: 2 type: Transform - uid: 7456 components: - - pos: -24.5,-14.5 + - pos: 25.5,-44.5 parent: 2 type: Transform - uid: 7457 components: - - pos: -6.5,-19.5 + - pos: 25.5,-43.5 parent: 2 type: Transform - uid: 7458 components: - - pos: -5.5,-19.5 + - pos: 33.5,-42.5 parent: 2 type: Transform - uid: 7459 components: - - pos: -4.5,-19.5 + - pos: -67.5,-25.5 parent: 2 type: Transform - uid: 7460 components: - - pos: -4.5,-21.5 + - pos: -2.5,-61.5 parent: 2 type: Transform - uid: 7461 components: - - pos: -7.5,-19.5 + - pos: -2.5,-59.5 parent: 2 type: Transform - uid: 7462 components: - - pos: 2.5,-91.5 + - pos: -6.5,-69.5 parent: 2 type: Transform - uid: 7463 components: - - pos: 11.5,-45.5 + - pos: -8.5,-19.5 parent: 2 type: Transform - uid: 7464 components: - - pos: 13.5,-47.5 + - pos: -15.5,-72.5 parent: 2 type: Transform - uid: 7465 components: - - pos: 11.5,-47.5 + - pos: 11.5,-92.5 parent: 2 type: Transform - uid: 7466 components: - - pos: 7.5,-92.5 + - pos: 18.5,-95.5 parent: 2 type: Transform - uid: 7467 components: - - pos: -3.5,-75.5 + - pos: 12.5,-98.5 parent: 2 type: Transform - uid: 7468 components: - - pos: 20.5,-42.5 + - pos: -1.5,-77.5 parent: 2 type: Transform - uid: 7469 components: - - pos: -65.5,-25.5 + - pos: -1.5,-80.5 parent: 2 type: Transform - uid: 7470 components: - - pos: -24.5,-13.5 + - pos: -1.5,-68.5 parent: 2 type: Transform - uid: 7471 components: - - pos: 2.5,-89.5 + - pos: 12.5,-47.5 parent: 2 type: Transform - uid: 7472 components: - - pos: -1.5,-84.5 + - pos: -12.5,-69.5 parent: 2 type: Transform - uid: 7473 components: - - pos: -1.5,-85.5 + - pos: 8.5,-92.5 parent: 2 type: Transform - uid: 7474 components: - - pos: 17.5,-95.5 + - pos: 23.5,-17.5 parent: 2 type: Transform - uid: 7475 components: - - pos: 4.5,-95.5 + - pos: -14.5,-71.5 parent: 2 type: Transform - uid: 7476 components: - - pos: 25.5,-11.5 + - pos: -15.5,-73.5 parent: 2 type: Transform - uid: 7477 components: - - pos: 25.5,-9.5 + - pos: 15.5,-43.5 parent: 2 type: Transform - uid: 7478 components: - - pos: 25.5,-8.5 + - pos: -2.5,-63.5 parent: 2 type: Transform - uid: 7479 components: - - pos: 25.5,-7.5 + - pos: 12.5,-57.5 parent: 2 type: Transform - uid: 7480 components: - - pos: 9.5,-42.5 + - pos: 9.5,-55.5 parent: 2 type: Transform - uid: 7481 components: - - pos: 14.5,-42.5 + - pos: 15.5,-40.5 parent: 2 type: Transform - uid: 7482 components: - - pos: 11.5,-42.5 + - pos: -4.5,-69.5 parent: 2 type: Transform - uid: 7483 components: - - pos: 4.5,-26.5 + - pos: -1.5,-65.5 parent: 2 type: Transform - uid: 7484 components: - - pos: -3.5,-17.5 + - pos: 14.5,-47.5 parent: 2 type: Transform - uid: 7485 components: - - pos: 10.5,-98.5 + - pos: 14.5,-45.5 parent: 2 type: Transform - uid: 7486 components: - - pos: 7.5,-95.5 + - pos: -0.5,-42.5 parent: 2 type: Transform - uid: 7487 components: - - pos: 15.5,-42.5 + - pos: 1.5,-42.5 parent: 2 type: Transform - uid: 7488 components: - - pos: 15.5,-44.5 + - pos: 3.5,-42.5 parent: 2 type: Transform - uid: 7489 components: - - pos: 15.5,-36.5 + - pos: 5.5,-42.5 parent: 2 type: Transform - uid: 7490 components: - - pos: 15.5,-34.5 + - pos: 31.5,-5.5 parent: 2 type: Transform - uid: 7491 components: - - pos: 15.5,-32.5 + - pos: 25.5,-5.5 parent: 2 type: Transform - uid: 7492 components: - - pos: -3.5,-69.5 + - pos: -4.5,-24.5 parent: 2 type: Transform - uid: 7493 components: - - pos: -5.5,-69.5 + - pos: -5.5,-40.5 parent: 2 type: Transform - uid: 7494 components: - - pos: 14.5,-48.5 + - pos: -5.5,-38.5 parent: 2 type: Transform - uid: 7495 components: - - pos: -6.5,-71.5 + - pos: -5.5,-26.5 parent: 2 type: Transform - uid: 7496 components: - - pos: -6.5,-70.5 + - pos: 18.5,-29.5 parent: 2 type: Transform - uid: 7497 components: - - pos: -8.5,-71.5 + - pos: -0.5,-17.5 parent: 2 type: Transform - uid: 7498 components: - - pos: -10.5,-71.5 + - pos: 30.5,-3.5 parent: 2 type: Transform - uid: 7499 components: - - pos: 14.5,-49.5 + - pos: 30.5,7.5 parent: 2 type: Transform - uid: 7500 components: - - pos: 13.5,-49.5 + - pos: -24.5,-14.5 parent: 2 type: Transform - uid: 7501 components: - - pos: 11.5,-49.5 + - pos: -6.5,-19.5 parent: 2 type: Transform - uid: 7502 components: - - pos: -11.5,-71.5 + - pos: -5.5,-19.5 parent: 2 type: Transform - uid: 7503 components: - - pos: 25.5,-17.5 + - pos: -4.5,-19.5 parent: 2 type: Transform - uid: 7504 components: - - pos: 38.5,-28.5 + - pos: -4.5,-21.5 parent: 2 type: Transform - uid: 7505 components: - - pos: 37.5,-30.5 + - pos: -7.5,-19.5 parent: 2 type: Transform - uid: 7506 components: - - pos: 35.5,-30.5 + - pos: 2.5,-91.5 parent: 2 type: Transform - uid: 7507 components: - - pos: 35.5,-29.5 + - pos: 11.5,-45.5 parent: 2 type: Transform - uid: 7508 components: - - pos: 9.5,-101.5 + - pos: 13.5,-47.5 parent: 2 type: Transform - uid: 7509 components: - - pos: -11.5,58.5 + - pos: 11.5,-47.5 parent: 2 type: Transform - uid: 7510 components: - - pos: -12.5,58.5 + - pos: 7.5,-92.5 parent: 2 type: Transform - uid: 7511 components: - - pos: -15.5,44.5 + - pos: -3.5,-75.5 parent: 2 type: Transform - uid: 7512 components: - - pos: -16.5,44.5 + - pos: 20.5,-42.5 parent: 2 type: Transform - uid: 7513 components: - - pos: -17.5,44.5 + - pos: -65.5,-25.5 parent: 2 type: Transform - uid: 7514 components: - - pos: -17.5,45.5 + - pos: -24.5,-13.5 parent: 2 type: Transform - uid: 7515 components: - - pos: -17.5,46.5 + - pos: 2.5,-89.5 parent: 2 type: Transform - uid: 7516 components: - - pos: -17.5,47.5 + - pos: -1.5,-84.5 parent: 2 type: Transform - uid: 7517 components: - - pos: -17.5,48.5 + - pos: -1.5,-85.5 parent: 2 type: Transform - uid: 7518 components: - - pos: -17.5,49.5 + - pos: 17.5,-95.5 parent: 2 type: Transform - uid: 7519 components: - - pos: -17.5,50.5 + - pos: 4.5,-95.5 parent: 2 type: Transform - uid: 7520 components: - - pos: -16.5,50.5 + - pos: 25.5,-11.5 parent: 2 type: Transform - uid: 7521 components: - - pos: -13.5,50.5 + - pos: 25.5,-9.5 parent: 2 type: Transform - uid: 7522 components: - - pos: -15.5,50.5 + - pos: 25.5,-8.5 parent: 2 type: Transform - uid: 7523 components: - - pos: -14.5,50.5 + - pos: 25.5,-7.5 parent: 2 type: Transform - uid: 7524 components: - - pos: -13.5,58.5 + - pos: 9.5,-42.5 parent: 2 type: Transform - uid: 7525 components: - - pos: -13.5,57.5 + - pos: 14.5,-42.5 parent: 2 type: Transform - uid: 7526 components: - - pos: -13.5,51.5 + - pos: 11.5,-42.5 parent: 2 type: Transform - uid: 7527 components: - - pos: -13.5,52.5 + - pos: 4.5,-26.5 parent: 2 type: Transform - uid: 7528 components: - - pos: -13.5,53.5 + - pos: -3.5,-17.5 parent: 2 type: Transform - uid: 7529 components: - - pos: -13.5,54.5 + - pos: 10.5,-98.5 parent: 2 type: Transform - uid: 7530 components: - - pos: -13.5,55.5 + - pos: 7.5,-95.5 parent: 2 type: Transform - uid: 7531 components: - - pos: -13.5,56.5 + - pos: 15.5,-42.5 parent: 2 type: Transform - uid: 7532 components: - - pos: 15.5,-39.5 + - pos: 15.5,-44.5 parent: 2 type: Transform - uid: 7533 components: - - pos: -6.5,-75.5 + - pos: 15.5,-36.5 parent: 2 type: Transform - uid: 7534 components: - - pos: 18.5,-42.5 + - pos: 15.5,-34.5 parent: 2 type: Transform - uid: 7535 components: - - pos: -24.5,-15.5 + - pos: 15.5,-32.5 parent: 2 type: Transform - uid: 7536 components: - - pos: 17.5,-29.5 + - pos: -3.5,-69.5 parent: 2 type: Transform - uid: 7537 components: - - pos: 35.5,-38.5 + - pos: -5.5,-69.5 parent: 2 type: Transform - uid: 7538 components: - - pos: 26.5,-42.5 + - pos: 14.5,-48.5 parent: 2 type: Transform - uid: 7539 components: - - pos: -13.5,-26.5 + - pos: -6.5,-71.5 parent: 2 type: Transform - uid: 7540 components: - - pos: -10.5,-26.5 + - pos: -6.5,-70.5 parent: 2 type: Transform - uid: 7541 components: - - pos: -5.5,-34.5 + - pos: -8.5,-71.5 parent: 2 type: Transform - uid: 7542 components: - - pos: -5.5,-41.5 + - pos: -10.5,-71.5 parent: 2 type: Transform - uid: 7543 components: - - pos: 13.5,-57.5 + - pos: 14.5,-49.5 parent: 2 type: Transform - uid: 7544 components: - - pos: 12.5,-55.5 + - pos: 13.5,-49.5 parent: 2 type: Transform - uid: 7545 components: - - pos: 8.5,-52.5 + - pos: 11.5,-49.5 parent: 2 type: Transform - uid: 7546 components: - - pos: -11.5,-42.5 + - pos: -11.5,-71.5 parent: 2 type: Transform - uid: 7547 components: - - pos: -8.5,-26.5 + - pos: 25.5,-17.5 parent: 2 type: Transform - uid: 7548 components: - - pos: -13.5,-73.5 + - pos: 38.5,-28.5 parent: 2 type: Transform - uid: 7549 components: - - pos: 25.5,-47.5 + - pos: 37.5,-30.5 parent: 2 type: Transform - uid: 7550 components: - - pos: -5.5,-31.5 + - pos: 35.5,-30.5 parent: 2 type: Transform - uid: 7551 components: - - pos: -5.5,-33.5 + - pos: 35.5,-29.5 parent: 2 type: Transform - uid: 7552 components: - - pos: -14.5,-26.5 + - pos: 9.5,-101.5 parent: 2 type: Transform - uid: 7553 components: - - pos: -15.5,-26.5 + - pos: -11.5,58.5 parent: 2 type: Transform - uid: 7554 components: - - pos: -3.5,-26.5 + - pos: -12.5,58.5 parent: 2 type: Transform - uid: 7555 components: - - pos: -2.5,-26.5 + - pos: -15.5,44.5 parent: 2 type: Transform - uid: 7556 components: - - pos: -0.5,-26.5 + - pos: -16.5,44.5 parent: 2 type: Transform - uid: 7557 components: - - pos: 9.5,-26.5 + - pos: -17.5,44.5 parent: 2 type: Transform - uid: 7558 components: - - pos: 13.5,-26.5 + - pos: -17.5,45.5 parent: 2 type: Transform - uid: 7559 components: - - pos: 15.5,-29.5 + - pos: -17.5,46.5 parent: 2 type: Transform - uid: 7560 components: - - pos: -4.5,-42.5 + - pos: -17.5,47.5 parent: 2 type: Transform - uid: 7561 components: - - pos: -7.5,-42.5 + - pos: -17.5,48.5 parent: 2 type: Transform - uid: 7562 components: - - pos: -8.5,-42.5 + - pos: -17.5,49.5 parent: 2 type: Transform - uid: 7563 components: - - pos: -10.5,-42.5 + - pos: -17.5,50.5 parent: 2 type: Transform - uid: 7564 components: - - pos: -12.5,-42.5 + - pos: -16.5,50.5 parent: 2 type: Transform - uid: 7565 components: - - pos: -13.5,-42.5 + - pos: -13.5,50.5 parent: 2 type: Transform - uid: 7566 components: - - pos: 10.5,-51.5 + - pos: -15.5,50.5 parent: 2 type: Transform - uid: 7567 components: - - pos: -15.5,-42.5 + - pos: -14.5,50.5 parent: 2 type: Transform - uid: 7568 components: - - pos: -12.5,-70.5 + - pos: -13.5,58.5 parent: 2 type: Transform - uid: 7569 components: - - pos: -8.5,-75.5 + - pos: -13.5,57.5 parent: 2 type: Transform - uid: 7570 components: - - pos: -18.5,-42.5 + - pos: -13.5,51.5 parent: 2 type: Transform - uid: 7571 components: - - pos: 15.5,-95.5 + - pos: -13.5,52.5 parent: 2 type: Transform - uid: 7572 components: - - pos: 25.5,-50.5 + - pos: -13.5,53.5 parent: 2 type: Transform - uid: 7573 components: - - pos: 9.5,-92.5 + - pos: -13.5,54.5 parent: 2 type: Transform - uid: 7574 components: - - pos: 13.5,-95.5 + - pos: -13.5,55.5 parent: 2 type: Transform - uid: 7575 components: - - pos: 34.5,-42.5 + - pos: -13.5,56.5 parent: 2 type: Transform - uid: 7576 components: - - pos: 35.5,-42.5 + - pos: 15.5,-39.5 parent: 2 type: Transform - uid: 7577 components: - - pos: 25.5,-45.5 + - pos: -6.5,-75.5 parent: 2 type: Transform - uid: 7578 components: - - pos: 35.5,-32.5 + - pos: 18.5,-42.5 parent: 2 type: Transform - uid: 7579 components: - - pos: 35.5,-36.5 + - pos: -24.5,-15.5 parent: 2 type: Transform - uid: 7580 components: - - pos: 70.5,-46.5 + - pos: 17.5,-29.5 parent: 2 type: Transform - uid: 7581 components: - - pos: -12.5,-74.5 + - pos: 35.5,-38.5 parent: 2 type: Transform - uid: 7582 components: - - pos: -0.5,-72.5 + - pos: 26.5,-42.5 parent: 2 type: Transform - uid: 7583 components: - - pos: 11.5,-105.5 + - pos: -13.5,-26.5 parent: 2 type: Transform - uid: 7584 components: - - pos: -1.5,-86.5 + - pos: -10.5,-26.5 parent: 2 type: Transform - uid: 7585 components: - - pos: -16.5,-26.5 + - pos: -5.5,-34.5 parent: 2 type: Transform - uid: 7586 components: - - pos: 11.5,-26.5 + - pos: -5.5,-41.5 parent: 2 type: Transform - uid: 7587 components: - - pos: -17.5,-42.5 + - pos: 13.5,-57.5 parent: 2 type: Transform - uid: 7588 components: - - pos: -9.5,-71.5 + - pos: 12.5,-55.5 parent: 2 type: Transform - uid: 7589 components: - - pos: 6.5,-14.5 + - pos: 8.5,-52.5 parent: 2 type: Transform - uid: 7590 components: - - pos: -4.5,-19.5 + - pos: -11.5,-42.5 parent: 2 type: Transform - uid: 7591 components: - - pos: -5.5,-32.5 + - pos: -8.5,-26.5 parent: 2 type: Transform - uid: 7592 components: - - pos: 25.5,-48.5 + - pos: -13.5,-73.5 parent: 2 type: Transform - uid: 7593 components: - - pos: -9.5,-26.5 + - pos: 25.5,-47.5 parent: 2 type: Transform - uid: 7594 components: - - pos: 25.5,-46.5 + - pos: -5.5,-31.5 parent: 2 type: Transform - uid: 7595 components: - - pos: -5.5,-42.5 + - pos: -5.5,-33.5 parent: 2 type: Transform - uid: 7596 components: - - pos: 15.5,-38.5 + - pos: -14.5,-26.5 parent: 2 type: Transform - uid: 7597 components: - - pos: -5.5,-36.5 + - pos: -15.5,-26.5 parent: 2 type: Transform - uid: 7598 components: - - pos: 25.5,-51.5 + - pos: -3.5,-26.5 parent: 2 type: Transform - uid: 7599 components: - - pos: 15.5,-45.5 + - pos: -2.5,-26.5 parent: 2 type: Transform - uid: 7600 components: - - pos: 15.5,-31.5 + - pos: -0.5,-26.5 parent: 2 type: Transform - uid: 7601 components: - - pos: 6.5,-95.5 + - pos: 9.5,-26.5 parent: 2 type: Transform - uid: 7602 components: - - pos: 15.5,-35.5 + - pos: 13.5,-26.5 parent: 2 type: Transform - uid: 7603 components: - - pos: -16.5,-42.5 + - pos: 15.5,-29.5 parent: 2 type: Transform - uid: 7604 components: - - pos: 15.5,-30.5 + - pos: -4.5,-42.5 parent: 2 type: Transform - uid: 7605 components: - - pos: 10.5,-50.5 + - pos: -7.5,-42.5 parent: 2 type: Transform - uid: 7606 components: - - pos: -1.5,-63.5 + - pos: -8.5,-42.5 parent: 2 type: Transform - uid: 7607 components: - - pos: -12.5,-26.5 + - pos: -10.5,-42.5 parent: 2 type: Transform - uid: 7608 components: - - pos: 0.5,-26.5 + - pos: -12.5,-42.5 parent: 2 type: Transform - uid: 7609 components: - - pos: 14.5,-26.5 + - pos: -13.5,-42.5 parent: 2 type: Transform - uid: 7610 components: - - pos: 15.5,-27.5 + - pos: 10.5,-51.5 parent: 2 type: Transform - uid: 7611 components: - - pos: -6.5,-42.5 + - pos: -15.5,-42.5 parent: 2 type: Transform - uid: 7612 components: - - pos: -3.5,-42.5 + - pos: -12.5,-70.5 parent: 2 type: Transform - uid: 7613 components: - - pos: -2.5,-17.5 + - pos: -8.5,-75.5 parent: 2 type: Transform - uid: 7614 components: - - pos: -1.5,-17.5 + - pos: -18.5,-42.5 parent: 2 type: Transform - uid: 7615 components: - - pos: 30.5,-2.5 + - pos: 15.5,-95.5 parent: 2 type: Transform - uid: 7616 components: - - pos: 30.5,-4.5 + - pos: 25.5,-50.5 parent: 2 type: Transform - uid: 7617 components: - - pos: -4.5,-75.5 + - pos: 9.5,-92.5 parent: 2 type: Transform - uid: 7618 components: - - pos: 24.5,-17.5 + - pos: 13.5,-95.5 parent: 2 type: Transform - uid: 7619 components: - - pos: 25.5,-16.5 + - pos: 34.5,-42.5 parent: 2 type: Transform - uid: 7620 components: - - pos: 25.5,-15.5 + - pos: 35.5,-42.5 parent: 2 type: Transform - uid: 7621 components: - - pos: 17.5,-5.5 + - pos: 25.5,-45.5 parent: 2 type: Transform - uid: 7622 components: - - pos: 32.5,-17.5 + - pos: 35.5,-32.5 parent: 2 type: Transform - uid: 7623 components: - - pos: 35.5,-21.5 + - pos: 35.5,-36.5 parent: 2 type: Transform - uid: 7624 components: - - pos: -13.5,-71.5 + - pos: 70.5,-46.5 parent: 2 type: Transform - uid: 7625 components: - - pos: 9.5,-95.5 + - pos: -12.5,-74.5 parent: 2 type: Transform - uid: 7626 components: - - pos: 13.5,-98.5 + - pos: -0.5,-72.5 parent: 2 type: Transform - uid: 7627 components: - - pos: -2.5,-77.5 + - pos: 11.5,-105.5 parent: 2 type: Transform - uid: 7628 components: - - pos: -2.5,-78.5 + - pos: -1.5,-86.5 parent: 2 type: Transform - uid: 7629 components: - - pos: -1.5,-82.5 + - pos: -16.5,-26.5 parent: 2 type: Transform - uid: 7630 components: - - pos: -9.5,-75.5 + - pos: 11.5,-26.5 parent: 2 type: Transform - uid: 7631 components: - - pos: 28.5,-42.5 + - pos: -17.5,-42.5 parent: 2 type: Transform - uid: 7632 components: - - pos: -4.5,-23.5 + - pos: -9.5,-71.5 parent: 2 type: Transform - uid: 7633 components: - - pos: -5.5,-28.5 + - pos: 6.5,-14.5 parent: 2 type: Transform - uid: 7634 components: - - pos: -5.5,-35.5 + - pos: -4.5,-19.5 parent: 2 type: Transform - uid: 7635 components: - - pos: 10.5,-26.5 + - pos: -5.5,-32.5 parent: 2 type: Transform - uid: 7636 components: - - pos: 8.5,-26.5 + - pos: 25.5,-48.5 parent: 2 type: Transform - uid: 7637 components: - - pos: -7.5,-71.5 + - pos: -9.5,-26.5 parent: 2 type: Transform - uid: 7638 components: - - pos: -7.5,-26.5 + - pos: 25.5,-46.5 parent: 2 type: Transform - uid: 7639 components: - - pos: -6.5,-26.5 + - pos: -5.5,-42.5 parent: 2 type: Transform - uid: 7640 components: - - pos: -9.5,-42.5 + - pos: 15.5,-38.5 parent: 2 type: Transform - uid: 7641 components: - - pos: 8.5,-98.5 + - pos: -5.5,-36.5 parent: 2 type: Transform - uid: 7642 components: - - pos: 2.5,-90.5 + - pos: 25.5,-51.5 parent: 2 type: Transform - uid: 7643 components: - - pos: 15.5,-31.5 + - pos: 15.5,-45.5 parent: 2 type: Transform - uid: 7644 components: - - pos: 14.5,-95.5 + - pos: 15.5,-31.5 parent: 2 type: Transform - uid: 7645 components: - - pos: -5.5,-37.5 + - pos: 6.5,-95.5 parent: 2 type: Transform - uid: 7646 components: - - pos: -14.5,-73.5 + - pos: 15.5,-35.5 parent: 2 type: Transform - uid: 7647 components: - - pos: 35.5,-28.5 + - pos: -16.5,-42.5 parent: 2 type: Transform - uid: 7648 components: - - pos: -14.5,-42.5 + - pos: 15.5,-30.5 parent: 2 type: Transform - uid: 7649 components: - - pos: 1.5,-89.5 + - pos: 10.5,-50.5 parent: 2 type: Transform - uid: 7650 components: - - pos: 3.5,-92.5 + - pos: -1.5,-63.5 parent: 2 type: Transform - uid: 7651 components: - - pos: 5.5,-95.5 + - pos: -12.5,-26.5 parent: 2 type: Transform - uid: 7652 components: - - pos: 13.5,-101.5 + - pos: 0.5,-26.5 parent: 2 type: Transform - uid: 7653 components: - - pos: 9.5,-14.5 + - pos: 14.5,-26.5 parent: 2 type: Transform - uid: 7654 components: - - pos: -4.5,-20.5 + - pos: 15.5,-27.5 parent: 2 type: Transform - uid: 7655 components: - - pos: 16.5,-29.5 + - pos: -6.5,-42.5 parent: 2 type: Transform - uid: 7656 components: - - pos: -4.5,-26.5 + - pos: -3.5,-42.5 parent: 2 type: Transform - uid: 7657 components: - - pos: 16.5,-95.5 + - pos: -2.5,-17.5 parent: 2 type: Transform - uid: 7658 components: - - pos: -2.5,-42.5 + - pos: -1.5,-17.5 parent: 2 type: Transform - uid: 7659 components: - - pos: 16.5,-42.5 + - pos: 30.5,-2.5 parent: 2 type: Transform - uid: 7660 components: - - pos: 7.5,-14.5 + - pos: 30.5,-4.5 parent: 2 type: Transform - uid: 7661 components: - - pos: 12.5,-101.5 + - pos: -4.5,-75.5 parent: 2 type: Transform - uid: 7662 components: - - pos: 10.5,-101.5 + - pos: 24.5,-17.5 parent: 2 type: Transform - uid: 7663 components: - - pos: 8.5,-101.5 + - pos: 25.5,-16.5 parent: 2 type: Transform - uid: 7664 components: - - pos: 14.5,-101.5 + - pos: 25.5,-15.5 parent: 2 type: Transform - uid: 7665 components: - - pos: 9.5,-104.5 + - pos: 17.5,-5.5 parent: 2 type: Transform - uid: 7666 components: - - pos: 13.5,-104.5 + - pos: 32.5,-17.5 parent: 2 type: Transform - uid: 7667 components: - - pos: 9.5,-98.5 + - pos: 35.5,-21.5 parent: 2 type: Transform - uid: 7668 components: - - pos: -1.5,-83.5 + - pos: -13.5,-71.5 parent: 2 type: Transform - uid: 7669 components: - - pos: -1.5,-81.5 + - pos: 9.5,-95.5 parent: 2 type: Transform - uid: 7670 components: - - pos: -1.5,-79.5 + - pos: 13.5,-98.5 parent: 2 type: Transform - uid: 7671 components: - - pos: -2.5,-79.5 + - pos: -2.5,-77.5 parent: 2 type: Transform - uid: 7672 components: - - pos: -2.5,-75.5 + - pos: -2.5,-78.5 parent: 2 type: Transform - uid: 7673 components: - - pos: -2.5,-76.5 + - pos: -1.5,-82.5 parent: 2 type: Transform - uid: 7674 components: - - pos: -10.5,-75.5 + - pos: -9.5,-75.5 parent: 2 type: Transform - uid: 7675 components: - - pos: 15.5,-58.5 + - pos: 28.5,-42.5 parent: 2 type: Transform - uid: 7676 components: - - pos: -5.5,-27.5 + - pos: -4.5,-23.5 parent: 2 type: Transform - uid: 7677 components: - - pos: -5.5,-29.5 + - pos: -5.5,-28.5 parent: 2 type: Transform - uid: 7678 components: - - pos: 21.5,-17.5 + - pos: -5.5,-35.5 parent: 2 type: Transform - uid: 7679 components: - - pos: 22.5,-17.5 + - pos: 10.5,-26.5 parent: 2 type: Transform - uid: 7680 components: - - pos: 20.5,-17.5 + - pos: 8.5,-26.5 parent: 2 type: Transform - uid: 7681 components: - - pos: 19.5,-17.5 + - pos: -7.5,-71.5 parent: 2 type: Transform - uid: 7682 components: - - pos: 18.5,-17.5 + - pos: -7.5,-26.5 parent: 2 type: Transform - uid: 7683 components: - - pos: 17.5,-17.5 + - pos: -6.5,-26.5 parent: 2 type: Transform - uid: 7684 components: - - pos: 16.5,-17.5 + - pos: -9.5,-42.5 parent: 2 type: Transform - uid: 7685 components: - - pos: 15.5,-22.5 + - pos: 8.5,-98.5 parent: 2 type: Transform - uid: 7686 components: - - pos: 15.5,-17.5 + - pos: 2.5,-90.5 parent: 2 type: Transform - uid: 7687 components: - - pos: 15.5,-18.5 + - pos: 15.5,-31.5 parent: 2 type: Transform - uid: 7688 components: - - pos: 15.5,-19.5 + - pos: 14.5,-95.5 parent: 2 type: Transform - uid: 7689 components: - - pos: 15.5,-20.5 + - pos: -5.5,-37.5 parent: 2 type: Transform - uid: 7690 components: - - pos: 15.5,-21.5 + - pos: -14.5,-73.5 parent: 2 type: Transform - uid: 7691 components: - - pos: 15.5,-23.5 + - pos: 35.5,-28.5 parent: 2 type: Transform - uid: 7692 components: - - pos: 15.5,-24.5 + - pos: -14.5,-42.5 parent: 2 type: Transform - uid: 7693 components: - - pos: 15.5,-25.5 + - pos: 1.5,-89.5 parent: 2 type: Transform - uid: 7694 components: - - pos: 18.5,-5.5 + - pos: 3.5,-92.5 parent: 2 type: Transform - uid: 7695 components: - - pos: 19.5,-5.5 + - pos: 5.5,-95.5 parent: 2 type: Transform - uid: 7696 components: - - pos: 20.5,-5.5 + - pos: 13.5,-101.5 parent: 2 type: Transform - uid: 7697 components: - - pos: 21.5,-5.5 + - pos: 9.5,-14.5 parent: 2 type: Transform - uid: 7698 components: - - pos: 22.5,-5.5 + - pos: -4.5,-20.5 parent: 2 type: Transform - uid: 7699 components: - - pos: 23.5,-5.5 + - pos: 16.5,-29.5 parent: 2 type: Transform - uid: 7700 components: - - pos: 31.5,-17.5 + - pos: -4.5,-26.5 parent: 2 type: Transform - uid: 7701 components: - - pos: 30.5,-17.5 + - pos: 16.5,-95.5 parent: 2 type: Transform - uid: 7702 components: - - pos: 29.5,-17.5 + - pos: -2.5,-42.5 parent: 2 type: Transform - uid: 7703 components: - - pos: 28.5,-17.5 + - pos: 16.5,-42.5 parent: 2 type: Transform - uid: 7704 components: - - pos: 27.5,-17.5 + - pos: 7.5,-14.5 parent: 2 type: Transform - uid: 7705 components: - - pos: 26.5,-17.5 + - pos: 12.5,-101.5 parent: 2 type: Transform - uid: 7706 components: - - pos: 35.5,-20.5 + - pos: 10.5,-101.5 parent: 2 type: Transform - uid: 7707 components: - - pos: 35.5,-19.5 + - pos: 8.5,-101.5 parent: 2 type: Transform - uid: 7708 components: - - pos: 35.5,-18.5 + - pos: 14.5,-101.5 parent: 2 type: Transform - uid: 7709 components: - - pos: 35.5,-17.5 + - pos: 9.5,-104.5 parent: 2 type: Transform - uid: 7710 components: - - pos: 34.5,-17.5 + - pos: 13.5,-104.5 parent: 2 type: Transform - uid: 7711 components: - - pos: 33.5,-17.5 + - pos: 9.5,-98.5 parent: 2 type: Transform - uid: 7712 components: - - pos: 35.5,-27.5 + - pos: -1.5,-83.5 parent: 2 type: Transform - uid: 7713 components: - - pos: 35.5,-26.5 + - pos: -1.5,-81.5 parent: 2 type: Transform - uid: 7714 components: - - pos: 35.5,-25.5 + - pos: -1.5,-79.5 parent: 2 type: Transform - uid: 7715 components: - - pos: 35.5,-24.5 + - pos: -2.5,-79.5 parent: 2 type: Transform - uid: 7716 components: - - pos: 35.5,-23.5 + - pos: -2.5,-75.5 parent: 2 type: Transform - uid: 7717 components: - - pos: 35.5,-22.5 + - pos: -2.5,-76.5 parent: 2 type: Transform - uid: 7718 components: - - pos: 30.5,-5.5 + - pos: -10.5,-75.5 parent: 2 type: Transform - uid: 7719 components: - - pos: 29.5,-5.5 + - pos: 15.5,-58.5 parent: 2 type: Transform - uid: 7720 components: - - pos: 28.5,-5.5 + - pos: -5.5,-27.5 parent: 2 type: Transform - uid: 7721 components: - - pos: 27.5,-5.5 + - pos: -5.5,-29.5 parent: 2 type: Transform - uid: 7722 components: - - pos: 26.5,-5.5 + - pos: 21.5,-17.5 parent: 2 type: Transform - uid: 7723 components: - - pos: 33.5,-2.5 + - pos: 22.5,-17.5 parent: 2 type: Transform - uid: 7724 components: - - pos: 33.5,-3.5 + - pos: 20.5,-17.5 parent: 2 type: Transform - uid: 7725 components: - - pos: 33.5,-4.5 + - pos: 19.5,-17.5 parent: 2 type: Transform - uid: 7726 components: - - pos: 33.5,-5.5 + - pos: 18.5,-17.5 parent: 2 type: Transform - uid: 7727 components: - - pos: 32.5,-5.5 + - pos: 17.5,-17.5 parent: 2 type: Transform - uid: 7728 components: - - pos: 39.5,-30.5 + - pos: 16.5,-17.5 parent: 2 type: Transform - uid: 7729 components: - - pos: 35.5,-31.5 + - pos: 15.5,-22.5 parent: 2 type: Transform - uid: 7730 components: - - pos: 35.5,-33.5 + - pos: 15.5,-17.5 parent: 2 type: Transform - uid: 7731 components: - - pos: 35.5,-35.5 + - pos: 15.5,-18.5 parent: 2 type: Transform - uid: 7732 components: - - pos: 35.5,-37.5 + - pos: 15.5,-19.5 parent: 2 type: Transform - uid: 7733 components: - - pos: 35.5,-39.5 + - pos: 15.5,-20.5 parent: 2 type: Transform - uid: 7734 components: - - pos: 35.5,-41.5 + - pos: 15.5,-21.5 parent: 2 type: Transform - uid: 7735 components: - - pos: 17.5,-42.5 + - pos: 15.5,-23.5 parent: 2 type: Transform - uid: 7736 components: - - pos: 19.5,-42.5 + - pos: 15.5,-24.5 parent: 2 type: Transform - uid: 7737 components: - - pos: 10.5,-52.5 + - pos: 15.5,-25.5 parent: 2 type: Transform - uid: 7738 components: - - pos: 33.5,-1.5 + - pos: 18.5,-5.5 parent: 2 type: Transform - uid: 7739 components: - - pos: 33.5,-0.5 + - pos: 19.5,-5.5 parent: 2 type: Transform - uid: 7740 components: - - pos: 33.5,0.5 + - pos: 20.5,-5.5 parent: 2 type: Transform - uid: 7741 components: - - pos: 33.5,1.5 + - pos: 21.5,-5.5 parent: 2 type: Transform - uid: 7742 components: - - pos: 33.5,2.5 + - pos: 22.5,-5.5 parent: 2 type: Transform - uid: 7743 components: - - pos: 33.5,3.5 + - pos: 23.5,-5.5 parent: 2 type: Transform - uid: 7744 components: - - pos: 33.5,4.5 + - pos: 31.5,-17.5 parent: 2 type: Transform - uid: 7745 components: - - pos: 33.5,5.5 + - pos: 30.5,-17.5 parent: 2 type: Transform - uid: 7746 components: - - pos: 33.5,6.5 + - pos: 29.5,-17.5 parent: 2 type: Transform - uid: 7747 components: - - pos: 33.5,7.5 + - pos: 28.5,-17.5 parent: 2 type: Transform - uid: 7748 components: - - pos: 32.5,7.5 + - pos: 27.5,-17.5 parent: 2 type: Transform - uid: 7749 components: - - pos: 31.5,7.5 + - pos: 26.5,-17.5 parent: 2 type: Transform - uid: 7750 components: - - pos: 29.5,7.5 + - pos: 35.5,-20.5 parent: 2 type: Transform - uid: 7751 components: - - pos: 28.5,7.5 + - pos: 35.5,-19.5 parent: 2 type: Transform - uid: 7752 components: - - pos: 27.5,7.5 + - pos: 35.5,-18.5 parent: 2 type: Transform - uid: 7753 components: - - pos: 26.5,7.5 + - pos: 35.5,-17.5 parent: 2 type: Transform - uid: 7754 components: - - pos: 25.5,7.5 + - pos: 34.5,-17.5 parent: 2 type: Transform - uid: 7755 components: - - pos: 24.5,7.5 + - pos: 33.5,-17.5 parent: 2 type: Transform - uid: 7756 components: - - pos: 23.5,7.5 + - pos: 35.5,-27.5 parent: 2 type: Transform - uid: 7757 components: - - pos: 22.5,7.5 + - pos: 35.5,-26.5 parent: 2 type: Transform - uid: 7758 components: - - pos: 21.5,7.5 + - pos: 35.5,-25.5 parent: 2 type: Transform - uid: 7759 components: - - pos: 20.5,7.5 + - pos: 35.5,-24.5 parent: 2 type: Transform - uid: 7760 components: - - pos: 19.5,7.5 + - pos: 35.5,-23.5 parent: 2 type: Transform - uid: 7761 components: - - pos: 18.5,7.5 + - pos: 35.5,-22.5 parent: 2 type: Transform - uid: 7762 components: - - pos: 17.5,7.5 + - pos: 30.5,-5.5 parent: 2 type: Transform - uid: 7763 components: - - pos: 17.5,6.5 + - pos: 29.5,-5.5 parent: 2 type: Transform - uid: 7764 components: - - pos: 17.5,5.5 + - pos: 28.5,-5.5 parent: 2 type: Transform - uid: 7765 components: - - pos: 17.5,4.5 + - pos: 27.5,-5.5 parent: 2 type: Transform - uid: 7766 components: - - pos: 17.5,3.5 + - pos: 26.5,-5.5 parent: 2 type: Transform - uid: 7767 components: - - pos: 17.5,2.5 + - pos: 33.5,-2.5 parent: 2 type: Transform - uid: 7768 components: - - pos: 17.5,1.5 + - pos: 33.5,-3.5 parent: 2 type: Transform - uid: 7769 components: - - pos: 17.5,0.5 + - pos: 33.5,-4.5 parent: 2 type: Transform - uid: 7770 components: - - pos: 17.5,-0.5 + - pos: 33.5,-5.5 parent: 2 type: Transform - uid: 7771 components: - - pos: 17.5,-1.5 + - pos: 32.5,-5.5 parent: 2 type: Transform - uid: 7772 components: - - pos: 17.5,-2.5 + - pos: 39.5,-30.5 parent: 2 type: Transform - uid: 7773 components: - - pos: 17.5,-3.5 + - pos: 35.5,-31.5 parent: 2 type: Transform - uid: 7774 components: - - pos: 17.5,-4.5 + - pos: 35.5,-33.5 parent: 2 type: Transform - uid: 7775 components: - - pos: -4.5,-17.5 + - pos: 35.5,-35.5 parent: 2 type: Transform - uid: 7776 components: - - pos: -4.5,-16.5 + - pos: 35.5,-37.5 parent: 2 type: Transform - uid: 7777 components: - - pos: -4.5,-15.5 + - pos: 35.5,-39.5 parent: 2 type: Transform - uid: 7778 components: - - pos: -4.5,-14.5 + - pos: 35.5,-41.5 parent: 2 type: Transform - uid: 7779 components: - - pos: -4.5,-13.5 + - pos: 17.5,-42.5 parent: 2 type: Transform - uid: 7780 components: - - pos: -4.5,-12.5 + - pos: 19.5,-42.5 parent: 2 type: Transform - uid: 7781 components: - - pos: -4.5,-11.5 + - pos: 10.5,-52.5 parent: 2 type: Transform - uid: 7782 components: - - pos: -4.5,-10.5 + - pos: 33.5,-1.5 parent: 2 type: Transform - uid: 7783 components: - - pos: -4.5,-9.5 + - pos: 33.5,-0.5 parent: 2 type: Transform - uid: 7784 components: - - pos: -4.5,-8.5 + - pos: 33.5,0.5 parent: 2 type: Transform - uid: 7785 components: - - pos: -4.5,-7.5 + - pos: 33.5,1.5 parent: 2 type: Transform - uid: 7786 components: - - pos: -4.5,-6.5 + - pos: 33.5,2.5 parent: 2 type: Transform - uid: 7787 components: - - pos: -4.5,-5.5 + - pos: 33.5,3.5 parent: 2 type: Transform - uid: 7788 components: - - pos: -4.5,-4.5 + - pos: 33.5,4.5 parent: 2 type: Transform - uid: 7789 components: - - pos: -4.5,-3.5 + - pos: 33.5,5.5 parent: 2 type: Transform - uid: 7790 components: - - pos: -4.5,-2.5 + - pos: 33.5,6.5 parent: 2 type: Transform - uid: 7791 components: - - pos: -4.5,-1.5 + - pos: 33.5,7.5 parent: 2 type: Transform - uid: 7792 components: - - pos: -4.5,-0.5 + - pos: 32.5,7.5 parent: 2 type: Transform - uid: 7793 components: - - pos: -4.5,0.5 + - pos: 31.5,7.5 parent: 2 type: Transform - uid: 7794 components: - - pos: -4.5,1.5 + - pos: 29.5,7.5 parent: 2 type: Transform - uid: 7795 components: - - pos: 25.5,8.5 + - pos: 28.5,7.5 parent: 2 type: Transform - uid: 7796 components: - - pos: 25.5,9.5 + - pos: 27.5,7.5 parent: 2 type: Transform - uid: 7797 components: - - pos: 24.5,9.5 + - pos: 26.5,7.5 parent: 2 type: Transform - uid: 7798 components: - - pos: 24.5,10.5 + - pos: 25.5,7.5 parent: 2 type: Transform - uid: 7799 components: - - pos: 24.5,11.5 + - pos: 24.5,7.5 parent: 2 type: Transform - uid: 7800 components: - - pos: 24.5,12.5 + - pos: 23.5,7.5 parent: 2 type: Transform - uid: 7801 components: - - pos: 24.5,13.5 + - pos: 22.5,7.5 parent: 2 type: Transform - uid: 7802 components: - - pos: 24.5,14.5 + - pos: 21.5,7.5 parent: 2 type: Transform - uid: 7803 components: - - pos: 24.5,15.5 + - pos: 20.5,7.5 parent: 2 type: Transform - uid: 7804 components: - - pos: 24.5,16.5 + - pos: 19.5,7.5 parent: 2 type: Transform - uid: 7805 components: - - pos: 23.5,16.5 + - pos: 18.5,7.5 parent: 2 type: Transform - uid: 7806 components: - - pos: 22.5,16.5 + - pos: 17.5,7.5 parent: 2 type: Transform - uid: 7807 components: - - pos: 24.5,17.5 + - pos: 17.5,6.5 parent: 2 type: Transform - uid: 7808 components: - - pos: 24.5,18.5 + - pos: 17.5,5.5 parent: 2 type: Transform - uid: 7809 components: - - pos: 25.5,18.5 + - pos: 17.5,4.5 parent: 2 type: Transform - uid: 7810 components: - - pos: 26.5,18.5 + - pos: 17.5,3.5 parent: 2 type: Transform - uid: 7811 components: - - pos: 27.5,18.5 + - pos: 17.5,2.5 parent: 2 type: Transform - uid: 7812 components: - - pos: 28.5,18.5 + - pos: 17.5,1.5 parent: 2 type: Transform - uid: 7813 components: - - pos: 29.5,18.5 + - pos: 17.5,0.5 parent: 2 type: Transform - uid: 7814 components: - - pos: 29.5,20.5 + - pos: 17.5,-0.5 parent: 2 type: Transform - uid: 7815 components: - - pos: 29.5,19.5 + - pos: 17.5,-1.5 parent: 2 type: Transform - uid: 7816 components: - - pos: 29.5,21.5 + - pos: 17.5,-2.5 parent: 2 type: Transform - uid: 7817 components: - - pos: 30.5,21.5 + - pos: 17.5,-3.5 parent: 2 type: Transform - uid: 7818 components: - - pos: 31.5,21.5 + - pos: 17.5,-4.5 parent: 2 type: Transform - uid: 7819 components: - - pos: 32.5,21.5 + - pos: -4.5,-17.5 parent: 2 type: Transform - uid: 7820 components: - - pos: 32.5,22.5 + - pos: -4.5,-16.5 parent: 2 type: Transform - uid: 7821 components: - - pos: 32.5,23.5 + - pos: -4.5,-15.5 parent: 2 type: Transform - uid: 7822 components: - - pos: 32.5,24.5 + - pos: -4.5,-14.5 parent: 2 type: Transform - uid: 7823 components: - - pos: 32.5,25.5 + - pos: -4.5,-13.5 parent: 2 type: Transform - uid: 7824 components: - - pos: 22.5,17.5 + - pos: -4.5,-12.5 parent: 2 type: Transform - uid: 7825 components: - - pos: 22.5,18.5 + - pos: -4.5,-11.5 parent: 2 type: Transform - uid: 7826 components: - - pos: 22.5,19.5 + - pos: -4.5,-10.5 parent: 2 type: Transform - uid: 7827 components: - - pos: 22.5,20.5 + - pos: -4.5,-9.5 parent: 2 type: Transform - uid: 7828 components: - - pos: 22.5,21.5 + - pos: -4.5,-8.5 parent: 2 type: Transform - uid: 7829 components: - - pos: 22.5,22.5 + - pos: -4.5,-7.5 parent: 2 type: Transform - uid: 7830 components: - - pos: 21.5,22.5 + - pos: -4.5,-6.5 parent: 2 type: Transform - uid: 7831 components: - - pos: 21.5,23.5 + - pos: -4.5,-5.5 parent: 2 type: Transform - uid: 7832 components: - - pos: 21.5,24.5 + - pos: -4.5,-4.5 parent: 2 type: Transform - uid: 7833 components: - - pos: 21.5,25.5 + - pos: -4.5,-3.5 parent: 2 type: Transform - uid: 7834 components: - - pos: 20.5,25.5 + - pos: -4.5,-2.5 parent: 2 type: Transform - uid: 7835 components: - - pos: 18.5,25.5 + - pos: -4.5,-1.5 parent: 2 type: Transform - uid: 7836 components: - - pos: 19.5,25.5 + - pos: -4.5,-0.5 parent: 2 type: Transform - uid: 7837 components: - - pos: 33.5,25.5 + - pos: -4.5,0.5 parent: 2 type: Transform - uid: 7838 components: - - pos: -4.5,2.5 + - pos: -4.5,1.5 parent: 2 type: Transform - uid: 7839 components: - - pos: -5.5,2.5 + - pos: 25.5,8.5 parent: 2 type: Transform - uid: 7840 components: - - pos: -6.5,2.5 + - pos: 25.5,9.5 parent: 2 type: Transform - uid: 7841 components: - - pos: -7.5,2.5 + - pos: 24.5,9.5 parent: 2 type: Transform - uid: 7842 components: - - pos: -8.5,2.5 + - pos: 24.5,10.5 parent: 2 type: Transform - uid: 7843 components: - - pos: -9.5,2.5 + - pos: 24.5,11.5 parent: 2 type: Transform - uid: 7844 components: - - pos: -10.5,2.5 + - pos: 24.5,12.5 parent: 2 type: Transform - uid: 7845 components: - - pos: -11.5,2.5 + - pos: 24.5,13.5 parent: 2 type: Transform - uid: 7846 components: - - pos: -12.5,2.5 + - pos: 24.5,14.5 parent: 2 type: Transform - uid: 7847 components: - - pos: -13.5,2.5 + - pos: 24.5,15.5 parent: 2 type: Transform - uid: 7848 components: - - pos: -2.5,-62.5 + - pos: 24.5,16.5 parent: 2 type: Transform - uid: 7849 components: - - pos: 34.5,1.5 + - pos: 23.5,16.5 parent: 2 type: Transform - uid: 7850 components: - - pos: 35.5,1.5 + - pos: 22.5,16.5 parent: 2 type: Transform - uid: 7851 components: - - pos: 36.5,1.5 + - pos: 24.5,17.5 parent: 2 type: Transform - uid: 7852 components: - - pos: 36.5,2.5 + - pos: 24.5,18.5 parent: 2 type: Transform - uid: 7853 components: - - pos: 37.5,2.5 + - pos: 25.5,18.5 parent: 2 type: Transform - uid: 7854 components: - - pos: 38.5,2.5 + - pos: 26.5,18.5 parent: 2 type: Transform - uid: 7855 components: - - pos: 39.5,2.5 + - pos: 27.5,18.5 parent: 2 type: Transform - uid: 7856 components: - - pos: 40.5,2.5 + - pos: 28.5,18.5 parent: 2 type: Transform - uid: 7857 components: - - pos: 41.5,2.5 + - pos: 29.5,18.5 parent: 2 type: Transform - uid: 7858 components: - - pos: 42.5,2.5 + - pos: 29.5,20.5 parent: 2 type: Transform - uid: 7859 components: - - pos: 44.5,2.5 + - pos: 29.5,19.5 parent: 2 type: Transform - uid: 7860 components: - - pos: 43.5,2.5 + - pos: 29.5,21.5 parent: 2 type: Transform - uid: 7861 components: - - pos: -10.5,26.5 + - pos: 30.5,21.5 parent: 2 type: Transform - uid: 7862 components: - - pos: -14.5,35.5 + - pos: 31.5,21.5 parent: 2 type: Transform - uid: 7863 components: - - pos: -9.5,26.5 + - pos: 32.5,21.5 parent: 2 type: Transform - uid: 7864 components: - - pos: -20.5,29.5 + - pos: 32.5,22.5 parent: 2 type: Transform - uid: 7865 components: - - pos: -18.5,29.5 + - pos: 32.5,23.5 parent: 2 type: Transform - uid: 7866 components: - - pos: -20.5,28.5 + - pos: 32.5,24.5 parent: 2 type: Transform - uid: 7867 components: - - pos: -14.5,31.5 + - pos: 32.5,25.5 parent: 2 type: Transform - uid: 7868 components: - - pos: -19.5,29.5 + - pos: 22.5,17.5 parent: 2 type: Transform - uid: 7869 components: - - pos: -14.5,33.5 + - pos: 22.5,18.5 parent: 2 type: Transform - uid: 7870 components: - - pos: -20.5,26.5 + - pos: 22.5,19.5 parent: 2 type: Transform - uid: 7871 components: - - pos: -20.5,27.5 + - pos: 22.5,20.5 parent: 2 type: Transform - uid: 7872 components: - - pos: -14.5,39.5 + - pos: 22.5,21.5 parent: 2 type: Transform - uid: 7873 components: - - pos: -14.5,40.5 + - pos: 22.5,22.5 parent: 2 type: Transform - uid: 7874 components: - - pos: -9.5,27.5 + - pos: 21.5,22.5 parent: 2 type: Transform - uid: 7875 components: - - pos: -9.5,29.5 + - pos: 21.5,23.5 parent: 2 type: Transform - uid: 7876 components: - - pos: -8.5,29.5 + - pos: 21.5,24.5 parent: 2 type: Transform - uid: 7877 components: - - pos: -8.5,30.5 + - pos: 21.5,25.5 parent: 2 type: Transform - uid: 7878 components: - - pos: -8.5,31.5 + - pos: 20.5,25.5 parent: 2 type: Transform - uid: 7879 components: - - pos: 16.5,27.5 + - pos: 18.5,25.5 parent: 2 type: Transform - uid: 7880 components: - - pos: 16.5,26.5 + - pos: 19.5,25.5 parent: 2 type: Transform - uid: 7881 components: - - pos: 16.5,25.5 + - pos: 33.5,25.5 parent: 2 type: Transform - uid: 7882 components: - - pos: 17.5,25.5 + - pos: -4.5,2.5 parent: 2 type: Transform - uid: 7883 components: - - pos: 45.5,2.5 + - pos: -5.5,2.5 parent: 2 type: Transform - uid: 7884 components: - - pos: 46.5,2.5 + - pos: -6.5,2.5 parent: 2 type: Transform - uid: 7885 components: - - pos: 47.5,2.5 + - pos: -7.5,2.5 parent: 2 type: Transform - uid: 7886 components: - - pos: 48.5,2.5 + - pos: -8.5,2.5 parent: 2 type: Transform - uid: 7887 components: - - pos: 49.5,2.5 + - pos: -9.5,2.5 parent: 2 type: Transform - uid: 7888 components: - - pos: 50.5,2.5 + - pos: -10.5,2.5 parent: 2 type: Transform - uid: 7889 components: - - pos: 51.5,2.5 + - pos: -11.5,2.5 parent: 2 type: Transform - uid: 7890 components: - - pos: 52.5,2.5 + - pos: -12.5,2.5 parent: 2 type: Transform - uid: 7891 components: - - pos: 52.5,1.5 + - pos: -13.5,2.5 parent: 2 type: Transform - uid: 7892 components: - - pos: 52.5,0.5 + - pos: -2.5,-62.5 parent: 2 type: Transform - uid: 7893 components: - - pos: 52.5,-0.5 + - pos: 34.5,1.5 parent: 2 type: Transform - uid: 7894 components: - - pos: 53.5,1.5 + - pos: 35.5,1.5 parent: 2 type: Transform - uid: 7895 components: - - pos: 54.5,1.5 + - pos: 36.5,1.5 parent: 2 type: Transform - uid: 7896 components: - - pos: 55.5,1.5 + - pos: 36.5,2.5 parent: 2 type: Transform - uid: 7897 components: - - pos: 56.5,1.5 + - pos: 37.5,2.5 parent: 2 type: Transform - uid: 7898 components: - - pos: 57.5,1.5 + - pos: 38.5,2.5 parent: 2 type: Transform - uid: 7899 components: - - pos: 58.5,1.5 + - pos: 39.5,2.5 parent: 2 type: Transform - uid: 7900 components: - - pos: 59.5,1.5 + - pos: 40.5,2.5 parent: 2 type: Transform - uid: 7901 components: - - pos: 60.5,1.5 + - pos: 41.5,2.5 parent: 2 type: Transform - uid: 7902 components: - - pos: 61.5,1.5 + - pos: 42.5,2.5 parent: 2 type: Transform - uid: 7903 components: - - pos: 62.5,1.5 + - pos: 44.5,2.5 parent: 2 type: Transform - uid: 7904 components: - - pos: 62.5,2.5 + - pos: 43.5,2.5 parent: 2 type: Transform - uid: 7905 components: - - pos: 62.5,3.5 + - pos: -10.5,26.5 parent: 2 type: Transform - uid: 7906 components: - - pos: 62.5,4.5 + - pos: -14.5,35.5 parent: 2 type: Transform - uid: 7907 components: - - pos: 62.5,5.5 + - pos: -9.5,26.5 parent: 2 type: Transform - uid: 7908 components: - - pos: 62.5,6.5 + - pos: -20.5,29.5 parent: 2 type: Transform - uid: 7909 components: - - pos: 62.5,7.5 + - pos: -18.5,29.5 parent: 2 type: Transform - uid: 7910 components: - - pos: 63.5,7.5 + - pos: -20.5,28.5 parent: 2 type: Transform - uid: 7911 components: - - pos: 25.5,-52.5 + - pos: -14.5,31.5 parent: 2 type: Transform - uid: 7912 components: - - pos: 25.5,-53.5 + - pos: -19.5,29.5 parent: 2 type: Transform - uid: 7913 components: - - pos: 25.5,-54.5 + - pos: -14.5,33.5 parent: 2 type: Transform - uid: 7914 components: - - pos: 25.5,-55.5 + - pos: -20.5,26.5 parent: 2 type: Transform - uid: 7915 components: - - pos: 25.5,-56.5 + - pos: -20.5,27.5 parent: 2 type: Transform - uid: 7916 components: - - pos: 25.5,-57.5 + - pos: -14.5,39.5 parent: 2 type: Transform - uid: 7917 components: - - pos: 25.5,-58.5 + - pos: -14.5,40.5 parent: 2 type: Transform - uid: 7918 components: - - pos: 25.5,-59.5 + - pos: -9.5,27.5 parent: 2 type: Transform - uid: 7919 components: - - pos: 26.5,-59.5 + - pos: -9.5,29.5 parent: 2 type: Transform - uid: 7920 components: - - pos: 27.5,-59.5 + - pos: -8.5,29.5 parent: 2 type: Transform - uid: 7921 components: - - pos: 28.5,-59.5 + - pos: -8.5,30.5 parent: 2 type: Transform - uid: 7922 components: - - pos: 29.5,-59.5 + - pos: -8.5,31.5 parent: 2 type: Transform - uid: 7923 components: - - pos: 30.5,-59.5 + - pos: 16.5,27.5 parent: 2 type: Transform - uid: 7924 components: - - pos: 31.5,-59.5 + - pos: 16.5,26.5 parent: 2 type: Transform - uid: 7925 components: - - pos: 32.5,-59.5 + - pos: 16.5,25.5 parent: 2 type: Transform - uid: 7926 components: - - pos: 33.5,-59.5 + - pos: 17.5,25.5 parent: 2 type: Transform - uid: 7927 components: - - pos: 34.5,-59.5 + - pos: 45.5,2.5 parent: 2 type: Transform - uid: 7928 components: - - pos: -13.5,1.5 + - pos: 46.5,2.5 parent: 2 type: Transform - uid: 7929 components: - - pos: -13.5,0.5 + - pos: 47.5,2.5 parent: 2 type: Transform - uid: 7930 components: - - pos: -13.5,-0.5 + - pos: 48.5,2.5 parent: 2 type: Transform - uid: 7931 components: - - pos: -13.5,-1.5 + - pos: 49.5,2.5 parent: 2 type: Transform - uid: 7932 components: - - pos: -13.5,-2.5 + - pos: 50.5,2.5 parent: 2 type: Transform - uid: 7933 components: - - pos: -13.5,-3.5 + - pos: 51.5,2.5 parent: 2 type: Transform - uid: 7934 components: - - pos: -13.5,-4.5 + - pos: 52.5,2.5 parent: 2 type: Transform - uid: 7935 components: - - pos: -13.5,-5.5 + - pos: 52.5,1.5 parent: 2 type: Transform - uid: 7936 components: - - pos: -14.5,-5.5 + - pos: 52.5,0.5 parent: 2 type: Transform - uid: 7937 components: - - pos: -15.5,-5.5 + - pos: 52.5,-0.5 parent: 2 type: Transform - uid: 7938 components: - - pos: -16.5,-5.5 + - pos: 53.5,1.5 parent: 2 type: Transform - uid: 7939 components: - - pos: -17.5,-5.5 + - pos: 54.5,1.5 parent: 2 type: Transform - uid: 7940 components: - - pos: -18.5,-5.5 + - pos: 55.5,1.5 parent: 2 type: Transform - uid: 7941 components: - - pos: -19.5,-5.5 + - pos: 56.5,1.5 parent: 2 type: Transform - uid: 7942 components: - - pos: -19.5,-6.5 + - pos: 57.5,1.5 parent: 2 type: Transform - uid: 7943 components: - - pos: -19.5,-7.5 + - pos: 58.5,1.5 parent: 2 type: Transform - uid: 7944 components: - - pos: -19.5,-8.5 + - pos: 59.5,1.5 parent: 2 type: Transform - uid: 7945 components: - - pos: -19.5,-9.5 + - pos: 60.5,1.5 parent: 2 type: Transform - uid: 7946 components: - - pos: -19.5,-10.5 + - pos: 61.5,1.5 parent: 2 type: Transform - uid: 7947 components: - - pos: -19.5,-11.5 + - pos: 62.5,1.5 parent: 2 type: Transform - uid: 7948 components: - - pos: -19.5,-12.5 + - pos: 62.5,2.5 parent: 2 type: Transform - uid: 7949 components: - - pos: -19.5,-13.5 + - pos: 62.5,3.5 parent: 2 type: Transform - uid: 7950 components: - - pos: -19.5,-14.5 + - pos: 62.5,4.5 parent: 2 type: Transform - uid: 7951 components: - - pos: -19.5,-15.5 + - pos: 62.5,5.5 parent: 2 type: Transform - uid: 7952 components: - - pos: -19.5,-16.5 + - pos: 62.5,6.5 parent: 2 type: Transform - uid: 7953 components: - - pos: -19.5,-17.5 + - pos: 62.5,7.5 parent: 2 type: Transform - uid: 7954 components: - - pos: -19.5,-18.5 + - pos: 63.5,7.5 parent: 2 type: Transform - uid: 7955 components: - - pos: -19.5,-19.5 + - pos: 25.5,-52.5 parent: 2 type: Transform - uid: 7956 components: - - pos: -19.5,-20.5 + - pos: 25.5,-53.5 parent: 2 type: Transform - uid: 7957 components: - - pos: -19.5,-21.5 + - pos: 25.5,-54.5 parent: 2 type: Transform - uid: 7958 components: - - pos: -19.5,-22.5 + - pos: 25.5,-55.5 parent: 2 type: Transform - uid: 7959 components: - - pos: -19.5,-23.5 + - pos: 25.5,-56.5 parent: 2 type: Transform - uid: 7960 components: - - pos: -19.5,-24.5 + - pos: 25.5,-57.5 parent: 2 type: Transform - uid: 7961 components: - - pos: -19.5,-25.5 + - pos: 25.5,-58.5 parent: 2 type: Transform - uid: 7962 components: - - pos: -19.5,-26.5 + - pos: 25.5,-59.5 parent: 2 type: Transform - uid: 7963 components: - - pos: -19.5,-27.5 + - pos: 26.5,-59.5 parent: 2 type: Transform - uid: 7964 components: - - pos: -18.5,-26.5 + - pos: 27.5,-59.5 parent: 2 type: Transform - uid: 7965 components: - - pos: 4.5,-15.5 + - pos: 28.5,-59.5 parent: 2 type: Transform - uid: 7966 components: - - pos: 52.5,-1.5 + - pos: 29.5,-59.5 parent: 2 type: Transform - uid: 7967 components: - - pos: 52.5,-2.5 + - pos: 30.5,-59.5 parent: 2 type: Transform - uid: 7968 components: - - pos: 52.5,-3.5 + - pos: 31.5,-59.5 parent: 2 type: Transform - uid: 7969 components: - - pos: 52.5,-4.5 + - pos: 32.5,-59.5 parent: 2 type: Transform - uid: 7970 components: - - pos: 52.5,-5.5 + - pos: 33.5,-59.5 parent: 2 type: Transform - uid: 7971 components: - - pos: 52.5,-6.5 + - pos: 34.5,-59.5 parent: 2 type: Transform - uid: 7972 components: - - pos: 52.5,-7.5 + - pos: -13.5,1.5 parent: 2 type: Transform - uid: 7973 components: - - pos: 51.5,-7.5 + - pos: -13.5,0.5 parent: 2 type: Transform - uid: 7974 components: - - pos: 50.5,-7.5 + - pos: -13.5,-0.5 parent: 2 type: Transform - uid: 7975 components: - - pos: 51.5,-1.5 + - pos: -13.5,-1.5 parent: 2 type: Transform - uid: 7976 components: - - pos: 50.5,-1.5 + - pos: -13.5,-2.5 parent: 2 type: Transform - uid: 7977 components: - - pos: 49.5,-1.5 + - pos: -13.5,-3.5 parent: 2 type: Transform - uid: 7978 components: - - pos: 48.5,-1.5 + - pos: -13.5,-4.5 parent: 2 type: Transform - uid: 7979 components: - - pos: 48.5,-2.5 + - pos: -13.5,-5.5 parent: 2 type: Transform - uid: 7980 components: - - pos: 48.5,-3.5 + - pos: -14.5,-5.5 parent: 2 type: Transform - uid: 7981 components: - - pos: 47.5,-3.5 + - pos: -15.5,-5.5 parent: 2 type: Transform - uid: 7982 components: - - pos: 71.5,-46.5 + - pos: -16.5,-5.5 parent: 2 type: Transform - uid: 7983 components: - - pos: 49.5,-7.5 + - pos: -17.5,-5.5 parent: 2 type: Transform - uid: 7984 components: - - pos: 49.5,-6.5 + - pos: -18.5,-5.5 parent: 2 type: Transform - uid: 7985 components: - - pos: 49.5,-5.5 + - pos: -19.5,-5.5 parent: 2 type: Transform - uid: 7986 components: - - pos: 48.5,-5.5 + - pos: -19.5,-6.5 parent: 2 type: Transform - uid: 7987 components: - - pos: 38.5,-44.5 + - pos: -19.5,-7.5 parent: 2 type: Transform - uid: 7988 components: - - pos: -24.5,-16.5 + - pos: -19.5,-8.5 parent: 2 type: Transform - uid: 7989 components: - - pos: 36.5,-42.5 + - pos: -19.5,-9.5 parent: 2 type: Transform - uid: 7990 components: - - pos: 37.5,-42.5 + - pos: -19.5,-10.5 parent: 2 type: Transform - uid: 7991 components: - - pos: 38.5,-42.5 + - pos: -19.5,-11.5 parent: 2 type: Transform - uid: 7992 components: - - pos: 39.5,-42.5 + - pos: -19.5,-12.5 parent: 2 type: Transform - uid: 7993 components: - - pos: 40.5,-42.5 + - pos: -19.5,-13.5 parent: 2 type: Transform - uid: 7994 components: - - pos: 41.5,-42.5 + - pos: -19.5,-14.5 parent: 2 type: Transform - uid: 7995 components: - - pos: 42.5,-42.5 + - pos: -19.5,-15.5 parent: 2 type: Transform - uid: 7996 components: - - pos: 43.5,-42.5 + - pos: -19.5,-16.5 parent: 2 type: Transform - uid: 7997 components: - - pos: 44.5,-42.5 + - pos: -19.5,-17.5 parent: 2 type: Transform - uid: 7998 components: - - pos: 45.5,-42.5 + - pos: -19.5,-18.5 parent: 2 type: Transform - uid: 7999 components: - - pos: 46.5,-42.5 + - pos: -19.5,-19.5 parent: 2 type: Transform - uid: 8000 components: - - pos: 47.5,-42.5 + - pos: -19.5,-20.5 parent: 2 type: Transform - uid: 8001 components: - - pos: 48.5,-42.5 + - pos: -19.5,-21.5 parent: 2 type: Transform - uid: 8002 components: - - pos: 49.5,-42.5 + - pos: -19.5,-22.5 parent: 2 type: Transform - uid: 8003 components: - - pos: 49.5,-43.5 + - pos: -19.5,-23.5 parent: 2 type: Transform - uid: 8004 components: - - pos: 49.5,-44.5 + - pos: -19.5,-24.5 parent: 2 type: Transform - uid: 8005 components: - - pos: 38.5,-45.5 + - pos: -19.5,-25.5 parent: 2 type: Transform - uid: 8006 components: - - pos: 38.5,-43.5 + - pos: -19.5,-26.5 parent: 2 type: Transform - uid: 8007 components: - - pos: 38.5,-46.5 + - pos: -19.5,-27.5 parent: 2 type: Transform - uid: 8008 components: - - pos: -19.5,-4.5 + - pos: -18.5,-26.5 parent: 2 type: Transform - uid: 8009 components: - - pos: -19.5,-3.5 + - pos: 4.5,-15.5 parent: 2 type: Transform - uid: 8010 components: - - pos: -19.5,-2.5 + - pos: 52.5,-1.5 parent: 2 type: Transform - uid: 8011 components: - - pos: -19.5,-1.5 + - pos: 52.5,-2.5 parent: 2 type: Transform - uid: 8012 components: - - pos: -19.5,-0.5 + - pos: 52.5,-3.5 parent: 2 type: Transform - uid: 8013 components: - - pos: -18.5,-0.5 + - pos: 52.5,-4.5 parent: 2 type: Transform - uid: 8014 components: - - pos: -17.5,-0.5 + - pos: 52.5,-5.5 parent: 2 type: Transform - uid: 8015 components: - - pos: -16.5,-0.5 + - pos: 52.5,-6.5 parent: 2 type: Transform - uid: 8016 components: - - pos: -20.5,-12.5 + - pos: 52.5,-7.5 parent: 2 type: Transform - uid: 8017 components: - - pos: -21.5,-12.5 + - pos: 51.5,-7.5 parent: 2 type: Transform - uid: 8018 components: - - pos: -23.5,-12.5 + - pos: 50.5,-7.5 parent: 2 type: Transform - uid: 8019 components: - - pos: -22.5,-12.5 + - pos: 51.5,-1.5 parent: 2 type: Transform - uid: 8020 components: - - pos: -24.5,-17.5 + - pos: 50.5,-1.5 parent: 2 type: Transform - uid: 8021 components: - - pos: -25.5,-17.5 + - pos: 49.5,-1.5 parent: 2 type: Transform - uid: 8022 components: - - pos: -26.5,-17.5 + - pos: 48.5,-1.5 parent: 2 type: Transform - uid: 8023 components: - - pos: -27.5,-17.5 + - pos: 48.5,-2.5 parent: 2 type: Transform - uid: 8024 components: - - pos: -28.5,-17.5 + - pos: 48.5,-3.5 parent: 2 type: Transform - uid: 8025 components: - - pos: -29.5,-17.5 + - pos: 47.5,-3.5 parent: 2 type: Transform - uid: 8026 components: - - pos: -30.5,-17.5 + - pos: 71.5,-46.5 parent: 2 type: Transform - uid: 8027 components: - - pos: -31.5,-17.5 + - pos: 49.5,-7.5 parent: 2 type: Transform - uid: 8028 components: - - pos: -20.5,-22.5 + - pos: 49.5,-6.5 parent: 2 type: Transform - uid: 8029 components: - - pos: -21.5,-22.5 + - pos: 49.5,-5.5 parent: 2 type: Transform - uid: 8030 components: - - pos: -22.5,-22.5 + - pos: 48.5,-5.5 parent: 2 type: Transform - uid: 8031 components: - - pos: -23.5,-22.5 + - pos: 38.5,-44.5 parent: 2 type: Transform - uid: 8032 components: - - pos: -24.5,-22.5 + - pos: -24.5,-16.5 parent: 2 type: Transform - uid: 8033 components: - - pos: -25.5,-22.5 + - pos: 36.5,-42.5 parent: 2 type: Transform - uid: 8034 components: - - pos: -26.5,-22.5 + - pos: 37.5,-42.5 parent: 2 type: Transform - uid: 8035 components: - - pos: -27.5,-22.5 + - pos: 38.5,-42.5 parent: 2 type: Transform - uid: 8036 components: - - pos: -28.5,-22.5 + - pos: 39.5,-42.5 parent: 2 type: Transform - uid: 8037 components: - - pos: -28.5,-23.5 + - pos: 40.5,-42.5 parent: 2 type: Transform - uid: 8038 components: - - pos: -24.5,-12.5 + - pos: 41.5,-42.5 parent: 2 type: Transform - uid: 8039 components: - - pos: 35.5,-59.5 + - pos: 42.5,-42.5 parent: 2 type: Transform - uid: 8040 components: - - pos: 36.5,-59.5 + - pos: 43.5,-42.5 parent: 2 type: Transform - uid: 8041 components: - - pos: 37.5,-59.5 + - pos: 44.5,-42.5 parent: 2 type: Transform - uid: 8042 components: - - pos: -18.5,-41.5 + - pos: 45.5,-42.5 parent: 2 type: Transform - uid: 8043 components: - - pos: -18.5,-40.5 + - pos: 46.5,-42.5 parent: 2 type: Transform - uid: 8044 components: - - pos: -18.5,-39.5 + - pos: 47.5,-42.5 parent: 2 type: Transform - uid: 8045 components: - - pos: -18.5,-38.5 + - pos: 48.5,-42.5 parent: 2 type: Transform - uid: 8046 components: - - pos: -18.5,-37.5 + - pos: 49.5,-42.5 parent: 2 type: Transform - uid: 8047 components: - - pos: -18.5,-36.5 + - pos: 49.5,-43.5 parent: 2 type: Transform - uid: 8048 components: - - pos: -18.5,-35.5 + - pos: 49.5,-44.5 parent: 2 type: Transform - uid: 8049 components: - - pos: -18.5,-34.5 + - pos: 38.5,-45.5 parent: 2 type: Transform - uid: 8050 components: - - pos: -18.5,-33.5 + - pos: 38.5,-43.5 parent: 2 type: Transform - uid: 8051 components: - - pos: -18.5,-32.5 + - pos: 38.5,-46.5 parent: 2 type: Transform - uid: 8052 components: - - pos: -18.5,-31.5 + - pos: -19.5,-4.5 parent: 2 type: Transform - uid: 8053 components: - - pos: -18.5,-30.5 + - pos: -19.5,-3.5 parent: 2 type: Transform - uid: 8054 components: - - pos: -19.5,-30.5 + - pos: -19.5,-2.5 parent: 2 type: Transform - uid: 8055 components: - - pos: -19.5,-29.5 + - pos: -19.5,-1.5 parent: 2 type: Transform - uid: 8056 components: - - pos: -19.5,-28.5 + - pos: -19.5,-0.5 parent: 2 type: Transform - uid: 8057 components: - - pos: 38.5,-59.5 + - pos: -18.5,-0.5 parent: 2 type: Transform - uid: 8058 components: - - pos: 39.5,-59.5 + - pos: -17.5,-0.5 parent: 2 type: Transform - uid: 8059 components: - - pos: 40.5,-59.5 + - pos: -16.5,-0.5 parent: 2 type: Transform - uid: 8060 components: - - pos: 40.5,-60.5 + - pos: -20.5,-12.5 parent: 2 type: Transform - uid: 8061 components: - - pos: 40.5,-61.5 + - pos: -21.5,-12.5 parent: 2 type: Transform - uid: 8062 components: - - pos: 40.5,-62.5 + - pos: -23.5,-12.5 parent: 2 type: Transform - uid: 8063 components: - - pos: 40.5,-63.5 + - pos: -22.5,-12.5 parent: 2 type: Transform - uid: 8064 components: - - pos: 40.5,-64.5 + - pos: -24.5,-17.5 parent: 2 type: Transform - uid: 8065 components: - - pos: 40.5,-65.5 + - pos: -25.5,-17.5 parent: 2 type: Transform - uid: 8066 components: - - pos: 40.5,-66.5 + - pos: -26.5,-17.5 parent: 2 type: Transform - uid: 8067 components: - - pos: 40.5,-67.5 + - pos: -27.5,-17.5 parent: 2 type: Transform - uid: 8068 components: - - pos: 40.5,-68.5 + - pos: -28.5,-17.5 parent: 2 type: Transform - uid: 8069 components: - - pos: 41.5,-59.5 + - pos: -29.5,-17.5 parent: 2 type: Transform - uid: 8070 components: - - pos: 42.5,-59.5 + - pos: -30.5,-17.5 parent: 2 type: Transform - uid: 8071 components: - - pos: 43.5,-59.5 + - pos: -31.5,-17.5 parent: 2 type: Transform - uid: 8072 components: - - pos: 43.5,-58.5 + - pos: -20.5,-22.5 parent: 2 type: Transform - uid: 8073 components: - - pos: -31.5,-16.5 + - pos: -21.5,-22.5 parent: 2 type: Transform - uid: 8074 components: - - pos: -31.5,-15.5 + - pos: -22.5,-22.5 parent: 2 type: Transform - uid: 8075 components: - - pos: -31.5,-14.5 + - pos: -23.5,-22.5 parent: 2 type: Transform - uid: 8076 components: - - pos: -31.5,-13.5 + - pos: -24.5,-22.5 parent: 2 type: Transform - uid: 8077 components: - - pos: -31.5,-12.5 + - pos: -25.5,-22.5 parent: 2 type: Transform - uid: 8078 components: - - pos: -31.5,-11.5 + - pos: -26.5,-22.5 parent: 2 type: Transform - uid: 8079 components: - - pos: -32.5,-11.5 + - pos: -27.5,-22.5 parent: 2 type: Transform - uid: 8080 components: - - pos: -33.5,-11.5 + - pos: -28.5,-22.5 parent: 2 type: Transform - uid: 8081 components: - - pos: -34.5,-11.5 + - pos: -28.5,-23.5 parent: 2 type: Transform - uid: 8082 components: - - pos: -35.5,-11.5 + - pos: -24.5,-12.5 parent: 2 type: Transform - uid: 8083 components: - - pos: -36.5,-11.5 + - pos: 35.5,-59.5 parent: 2 type: Transform - uid: 8084 components: - - pos: -37.5,-11.5 + - pos: 36.5,-59.5 parent: 2 type: Transform - uid: 8085 components: - - pos: -38.5,-11.5 + - pos: 37.5,-59.5 parent: 2 type: Transform - uid: 8086 components: - - pos: -39.5,-11.5 + - pos: -18.5,-41.5 parent: 2 type: Transform - uid: 8087 components: - - pos: -40.5,-11.5 + - pos: -18.5,-40.5 parent: 2 type: Transform - uid: 8088 components: - - pos: -41.5,-11.5 + - pos: -18.5,-39.5 parent: 2 type: Transform - uid: 8089 components: - - pos: -42.5,-11.5 + - pos: -18.5,-38.5 parent: 2 type: Transform - uid: 8090 components: - - pos: -2.5,-69.5 + - pos: -18.5,-37.5 parent: 2 type: Transform - uid: 8091 components: - - pos: -1.5,-69.5 + - pos: -18.5,-36.5 parent: 2 type: Transform - uid: 8092 components: - - pos: -1.5,-67.5 + - pos: -18.5,-35.5 parent: 2 type: Transform - uid: 8093 components: - - pos: -2.5,-60.5 + - pos: -18.5,-34.5 parent: 2 type: Transform - uid: 8094 components: - - pos: -2.5,-58.5 + - pos: -18.5,-33.5 parent: 2 type: Transform - uid: 8095 components: - - pos: -42.5,-6.5 + - pos: -18.5,-32.5 parent: 2 type: Transform - uid: 8096 components: - - pos: -42.5,-10.5 + - pos: -18.5,-31.5 parent: 2 type: Transform - uid: 8097 components: - - pos: -42.5,-7.5 + - pos: -18.5,-30.5 parent: 2 type: Transform - uid: 8098 components: - - pos: -42.5,-8.5 + - pos: -19.5,-30.5 parent: 2 type: Transform - uid: 8099 components: - - pos: -46.5,-11.5 + - pos: -19.5,-29.5 parent: 2 type: Transform - uid: 8100 components: - - pos: -46.5,-12.5 + - pos: -19.5,-28.5 parent: 2 type: Transform - uid: 8101 components: - - pos: -46.5,-13.5 + - pos: 38.5,-59.5 parent: 2 type: Transform - uid: 8102 components: - - pos: -46.5,-14.5 + - pos: 39.5,-59.5 parent: 2 type: Transform - uid: 8103 components: - - pos: -46.5,-10.5 + - pos: 40.5,-59.5 parent: 2 type: Transform - uid: 8104 components: - - pos: -46.5,-9.5 + - pos: 40.5,-60.5 parent: 2 type: Transform - uid: 8105 components: - - pos: -46.5,-15.5 + - pos: 40.5,-61.5 parent: 2 type: Transform - uid: 8106 components: - - pos: -46.5,-16.5 + - pos: 40.5,-62.5 parent: 2 type: Transform - uid: 8107 components: - - pos: -42.5,-9.5 + - pos: 40.5,-63.5 parent: 2 type: Transform - uid: 8108 components: - - pos: -46.5,-17.5 + - pos: 40.5,-64.5 parent: 2 type: Transform - uid: 8109 components: - - pos: -46.5,-18.5 + - pos: 40.5,-65.5 parent: 2 type: Transform - uid: 8110 components: - - pos: -46.5,-19.5 + - pos: 40.5,-66.5 parent: 2 type: Transform - uid: 8111 components: - - pos: -47.5,-19.5 + - pos: 40.5,-67.5 parent: 2 type: Transform - uid: 8112 components: - - pos: -48.5,-19.5 + - pos: 40.5,-68.5 parent: 2 type: Transform - uid: 8113 components: - - pos: -48.5,-20.5 + - pos: 41.5,-59.5 parent: 2 type: Transform - uid: 8114 components: - - pos: -46.5,-20.5 + - pos: 42.5,-59.5 parent: 2 type: Transform - uid: 8115 components: - - pos: -45.5,-19.5 + - pos: 43.5,-59.5 parent: 2 type: Transform - uid: 8116 components: - - pos: -44.5,-19.5 + - pos: 43.5,-58.5 parent: 2 type: Transform - uid: 8117 components: - - pos: -44.5,-20.5 + - pos: -31.5,-16.5 parent: 2 type: Transform - uid: 8118 components: - - pos: -46.5,-21.5 + - pos: -31.5,-15.5 parent: 2 type: Transform - uid: 8119 components: - - pos: -48.5,-21.5 + - pos: -31.5,-14.5 parent: 2 type: Transform - uid: 8120 components: - - pos: -44.5,-21.5 + - pos: -31.5,-13.5 parent: 2 type: Transform - uid: 8121 components: - - pos: -46.5,-22.5 + - pos: -31.5,-12.5 parent: 2 type: Transform - uid: 8122 components: - - pos: -48.5,-22.5 + - pos: -31.5,-11.5 parent: 2 type: Transform - uid: 8123 components: - - pos: -44.5,-22.5 + - pos: -32.5,-11.5 parent: 2 type: Transform - uid: 8124 components: - - pos: -48.5,-23.5 + - pos: -33.5,-11.5 parent: 2 type: Transform - uid: 8125 components: - - pos: -47.5,-23.5 + - pos: -34.5,-11.5 parent: 2 type: Transform - uid: 8126 components: - - pos: -46.5,-23.5 + - pos: -35.5,-11.5 parent: 2 type: Transform - uid: 8127 components: - - pos: -44.5,-23.5 + - pos: -36.5,-11.5 parent: 2 type: Transform - uid: 8128 components: - - pos: -45.5,-23.5 + - pos: -37.5,-11.5 parent: 2 type: Transform - uid: 8129 components: - - pos: -49.5,-23.5 + - pos: -38.5,-11.5 parent: 2 type: Transform - uid: 8130 components: - - pos: -50.5,-23.5 + - pos: -39.5,-11.5 parent: 2 type: Transform - uid: 8131 components: - - pos: -51.5,-24.5 + - pos: -40.5,-11.5 parent: 2 type: Transform - uid: 8132 components: - - pos: -51.5,-23.5 + - pos: -41.5,-11.5 parent: 2 type: Transform - uid: 8133 components: - - pos: -43.5,-22.5 + - pos: -42.5,-11.5 parent: 2 type: Transform - uid: 8134 components: - - pos: -42.5,-22.5 + - pos: -2.5,-69.5 parent: 2 type: Transform - uid: 8135 components: - - pos: -41.5,-22.5 + - pos: -1.5,-69.5 parent: 2 type: Transform - uid: 8136 components: - - pos: -41.5,-21.5 + - pos: -1.5,-67.5 parent: 2 type: Transform - uid: 8137 components: - - pos: -41.5,-20.5 + - pos: -2.5,-60.5 parent: 2 type: Transform - uid: 8138 components: - - pos: -43.5,-6.5 + - pos: -2.5,-58.5 parent: 2 type: Transform - uid: 8139 components: - - pos: -44.5,-6.5 + - pos: -42.5,-6.5 parent: 2 type: Transform - uid: 8140 components: - - pos: -45.5,-6.5 + - pos: -42.5,-10.5 parent: 2 type: Transform - uid: 8141 components: - - pos: -46.5,-6.5 + - pos: -42.5,-7.5 parent: 2 type: Transform - uid: 8142 components: - - pos: -47.5,-6.5 + - pos: -42.5,-8.5 parent: 2 type: Transform - uid: 8143 components: - - pos: -48.5,-6.5 + - pos: -46.5,-11.5 parent: 2 type: Transform - uid: 8144 components: - - pos: -49.5,-6.5 + - pos: -46.5,-12.5 parent: 2 type: Transform - uid: 8145 components: - - pos: -50.5,-6.5 + - pos: -46.5,-13.5 parent: 2 type: Transform - uid: 8146 components: - - pos: -51.5,-6.5 + - pos: -46.5,-14.5 parent: 2 type: Transform - uid: 8147 components: - - pos: -52.5,-6.5 + - pos: -46.5,-10.5 parent: 2 type: Transform - uid: 8148 components: - - pos: -52.5,-7.5 + - pos: -46.5,-9.5 parent: 2 type: Transform - uid: 8149 components: - - pos: -52.5,-8.5 + - pos: -46.5,-15.5 parent: 2 type: Transform - uid: 8150 components: - - pos: -52.5,-9.5 + - pos: -46.5,-16.5 parent: 2 type: Transform - uid: 8151 components: - - pos: -41.5,-12.5 + - pos: -42.5,-9.5 parent: 2 type: Transform - uid: 8152 components: - - pos: -41.5,-13.5 + - pos: -46.5,-17.5 parent: 2 type: Transform - uid: 8153 components: - - pos: -41.5,-14.5 + - pos: -46.5,-18.5 parent: 2 type: Transform - uid: 8154 components: - - pos: -41.5,-15.5 + - pos: -46.5,-19.5 parent: 2 type: Transform - uid: 8155 components: - - pos: -41.5,-18.5 + - pos: -47.5,-19.5 parent: 2 type: Transform - uid: 8156 components: - - pos: -41.5,-17.5 + - pos: -48.5,-19.5 parent: 2 type: Transform - uid: 8157 components: - - pos: -41.5,-19.5 + - pos: -48.5,-20.5 parent: 2 type: Transform - uid: 8158 components: - - pos: -41.5,-16.5 + - pos: -46.5,-20.5 parent: 2 type: Transform - uid: 8159 components: - - pos: -51.5,-9.5 + - pos: -45.5,-19.5 parent: 2 type: Transform - uid: 8160 components: - - pos: -50.5,-9.5 + - pos: -44.5,-19.5 parent: 2 type: Transform - uid: 8161 components: - - pos: -50.5,-8.5 + - pos: -44.5,-20.5 parent: 2 type: Transform - uid: 8162 components: - - pos: -57.5,-20.5 + - pos: -46.5,-21.5 parent: 2 type: Transform - uid: 8163 components: - - pos: -14.5,45.5 + - pos: -48.5,-21.5 parent: 2 type: Transform - uid: 8164 components: - - pos: -14.5,44.5 + - pos: -44.5,-21.5 parent: 2 type: Transform - uid: 8165 components: - - pos: -56.5,-24.5 + - pos: -46.5,-22.5 parent: 2 type: Transform - uid: 8166 components: - - pos: -65.5,-25.5 + - pos: -48.5,-22.5 parent: 2 type: Transform - uid: 8167 components: - - pos: -53.5,-19.5 + - pos: -44.5,-22.5 parent: 2 type: Transform - uid: 8168 components: - - pos: -66.5,-25.5 + - pos: -48.5,-23.5 parent: 2 type: Transform - uid: 8169 components: - - pos: -53.5,-21.5 + - pos: -47.5,-23.5 parent: 2 type: Transform - uid: 8170 components: - - pos: -57.5,-13.5 + - pos: -46.5,-23.5 parent: 2 type: Transform - uid: 8171 components: - - pos: -64.5,-28.5 + - pos: -44.5,-23.5 parent: 2 type: Transform - uid: 8172 components: - - pos: -65.5,-28.5 + - pos: -45.5,-23.5 parent: 2 type: Transform - uid: 8173 components: - - pos: -66.5,-28.5 + - pos: -49.5,-23.5 parent: 2 type: Transform - uid: 8174 components: - - pos: -66.5,-27.5 + - pos: -50.5,-23.5 parent: 2 type: Transform - uid: 8175 components: - - pos: -66.5,-26.5 + - pos: -51.5,-24.5 parent: 2 type: Transform - uid: 8176 components: - - pos: -64.5,-25.5 + - pos: -51.5,-23.5 parent: 2 type: Transform - uid: 8177 components: - - pos: -14.5,36.5 + - pos: -43.5,-22.5 parent: 2 type: Transform - uid: 8178 components: - - pos: -56.5,-23.5 + - pos: -42.5,-22.5 parent: 2 type: Transform - uid: 8179 components: - - pos: -56.5,-22.5 + - pos: -41.5,-22.5 parent: 2 type: Transform - uid: 8180 components: - - pos: -56.5,-21.5 + - pos: -41.5,-21.5 parent: 2 type: Transform - uid: 8181 components: - - pos: -56.5,-20.5 + - pos: -41.5,-20.5 parent: 2 type: Transform - uid: 8182 components: - - pos: -64.5,-29.5 + - pos: -43.5,-6.5 parent: 2 type: Transform - uid: 8183 components: - - pos: -64.5,-30.5 + - pos: -44.5,-6.5 parent: 2 type: Transform - uid: 8184 components: - - pos: -63.5,-30.5 + - pos: -45.5,-6.5 parent: 2 type: Transform - uid: 8185 components: - - pos: -62.5,-30.5 + - pos: -46.5,-6.5 parent: 2 type: Transform - uid: 8186 components: - - pos: -61.5,-30.5 + - pos: -47.5,-6.5 parent: 2 type: Transform - uid: 8187 components: - - pos: -60.5,-30.5 + - pos: -48.5,-6.5 parent: 2 type: Transform - uid: 8188 components: - - pos: -64.5,-31.5 + - pos: -49.5,-6.5 parent: 2 type: Transform - uid: 8189 components: - - pos: -68.5,-31.5 + - pos: -50.5,-6.5 parent: 2 type: Transform - uid: 8190 components: - - pos: -65.5,-31.5 + - pos: -51.5,-6.5 parent: 2 type: Transform - uid: 8191 components: - - pos: -14.5,42.5 + - pos: -52.5,-6.5 parent: 2 type: Transform - uid: 8192 components: - - pos: -60.5,-29.5 + - pos: -52.5,-7.5 parent: 2 type: Transform - uid: 8193 components: - - pos: -60.5,-26.5 + - pos: -52.5,-8.5 parent: 2 type: Transform - uid: 8194 components: - - pos: -60.5,-25.5 + - pos: -52.5,-9.5 parent: 2 type: Transform - uid: 8195 components: - - pos: -59.5,-25.5 + - pos: -41.5,-12.5 parent: 2 type: Transform - uid: 8196 components: - - pos: -58.5,-25.5 + - pos: -41.5,-13.5 parent: 2 type: Transform - uid: 8197 components: - - pos: -56.5,-13.5 + - pos: -41.5,-14.5 parent: 2 type: Transform - uid: 8198 components: - - pos: -58.5,-13.5 + - pos: -41.5,-15.5 parent: 2 type: Transform - uid: 8199 components: - - pos: -52.5,-19.5 + - pos: -41.5,-18.5 parent: 2 type: Transform - uid: 8200 components: - - pos: -51.5,-19.5 + - pos: -41.5,-17.5 parent: 2 type: Transform - uid: 8201 components: - - pos: -50.5,-19.5 + - pos: -41.5,-19.5 parent: 2 type: Transform - uid: 8202 components: - - pos: -49.5,-19.5 + - pos: -41.5,-16.5 parent: 2 type: Transform - uid: 8203 components: - - pos: -31.5,-18.5 + - pos: -51.5,-9.5 parent: 2 type: Transform - uid: 8204 components: - - pos: -31.5,-19.5 + - pos: -50.5,-9.5 parent: 2 type: Transform - uid: 8205 components: - - pos: -31.5,-20.5 + - pos: -50.5,-8.5 parent: 2 type: Transform - uid: 8206 components: - - pos: -31.5,-21.5 + - pos: -57.5,-20.5 parent: 2 type: Transform - uid: 8207 components: - - pos: -31.5,-22.5 + - pos: -14.5,45.5 parent: 2 type: Transform - uid: 8208 components: - - pos: -31.5,-23.5 + - pos: -14.5,44.5 parent: 2 type: Transform - uid: 8209 components: - - pos: -31.5,-24.5 + - pos: -56.5,-24.5 parent: 2 type: Transform - uid: 8210 components: - - pos: -31.5,-25.5 + - pos: -65.5,-25.5 parent: 2 type: Transform - uid: 8211 components: - - pos: -31.5,-26.5 + - pos: -53.5,-19.5 parent: 2 type: Transform - uid: 8212 components: - - pos: -31.5,-27.5 + - pos: -66.5,-25.5 parent: 2 type: Transform - uid: 8213 components: - - pos: -31.5,-28.5 + - pos: -53.5,-21.5 parent: 2 type: Transform - uid: 8214 components: - - pos: -31.5,-29.5 + - pos: -57.5,-13.5 parent: 2 type: Transform - uid: 8215 components: - - pos: -31.5,-30.5 + - pos: -64.5,-28.5 parent: 2 type: Transform - uid: 8216 components: - - pos: -31.5,-31.5 + - pos: -65.5,-28.5 parent: 2 type: Transform - uid: 8217 components: - - pos: -31.5,-32.5 + - pos: -66.5,-28.5 parent: 2 type: Transform - uid: 8218 components: - - pos: -31.5,-33.5 + - pos: -66.5,-27.5 parent: 2 type: Transform - uid: 8219 components: - - pos: -31.5,-34.5 + - pos: -66.5,-26.5 parent: 2 type: Transform - uid: 8220 components: - - pos: -30.5,-34.5 + - pos: -64.5,-25.5 parent: 2 type: Transform - uid: 8221 components: - - pos: -29.5,-34.5 + - pos: -14.5,36.5 parent: 2 type: Transform - uid: 8222 components: - - pos: -28.5,-34.5 + - pos: -56.5,-23.5 parent: 2 type: Transform - uid: 8223 components: - - pos: -28.5,-35.5 + - pos: -56.5,-22.5 parent: 2 type: Transform - uid: 8224 components: - - pos: -28.5,-36.5 + - pos: -56.5,-21.5 parent: 2 type: Transform - uid: 8225 components: - - pos: -28.5,-37.5 + - pos: -56.5,-20.5 parent: 2 type: Transform - uid: 8226 components: - - pos: -27.5,-37.5 + - pos: -64.5,-29.5 parent: 2 type: Transform - uid: 8227 components: - - pos: -60.5,-28.5 + - pos: -64.5,-30.5 parent: 2 type: Transform - uid: 8228 components: - - pos: -71.5,-22.5 + - pos: -63.5,-30.5 parent: 2 type: Transform - uid: 8229 components: - - pos: -72.5,-22.5 + - pos: -62.5,-30.5 parent: 2 type: Transform - uid: 8230 components: - - pos: -73.5,-22.5 + - pos: -61.5,-30.5 parent: 2 type: Transform - uid: 8231 components: - - pos: -74.5,-22.5 + - pos: -60.5,-30.5 parent: 2 type: Transform - uid: 8232 components: - - pos: -75.5,-22.5 + - pos: -64.5,-31.5 parent: 2 type: Transform - uid: 8233 components: - - pos: -76.5,-22.5 + - pos: -68.5,-31.5 parent: 2 type: Transform - uid: 8234 components: - - pos: -76.5,-21.5 + - pos: -65.5,-31.5 parent: 2 type: Transform - uid: 8235 components: - - pos: -76.5,-20.5 + - pos: -14.5,42.5 parent: 2 type: Transform - uid: 8236 components: - - pos: -76.5,-19.5 + - pos: -60.5,-29.5 parent: 2 type: Transform - uid: 8237 components: - - pos: -76.5,-18.5 + - pos: -60.5,-26.5 parent: 2 type: Transform - uid: 8238 components: - - pos: -76.5,-17.5 + - pos: -60.5,-25.5 parent: 2 type: Transform - uid: 8239 components: - - pos: -76.5,-16.5 + - pos: -59.5,-25.5 parent: 2 type: Transform - uid: 8240 components: - - pos: -76.5,-15.5 + - pos: -58.5,-25.5 parent: 2 type: Transform - uid: 8241 components: - - pos: -76.5,-14.5 + - pos: -56.5,-13.5 parent: 2 type: Transform - uid: 8242 components: - - pos: -76.5,-13.5 + - pos: -58.5,-13.5 parent: 2 type: Transform - uid: 8243 components: - - pos: -76.5,-12.5 + - pos: -52.5,-19.5 parent: 2 type: Transform - uid: 8244 components: - - pos: -76.5,-11.5 + - pos: -51.5,-19.5 parent: 2 type: Transform - uid: 8245 components: - - pos: -76.5,-10.5 + - pos: -50.5,-19.5 parent: 2 type: Transform - uid: 8246 components: - - pos: -76.5,-9.5 + - pos: -49.5,-19.5 parent: 2 type: Transform - uid: 8247 components: - - pos: -76.5,-8.5 + - pos: -31.5,-18.5 parent: 2 type: Transform - uid: 8248 components: - - pos: -76.5,-7.5 + - pos: -31.5,-19.5 parent: 2 type: Transform - uid: 8249 components: - - pos: -76.5,-6.5 + - pos: -31.5,-20.5 parent: 2 type: Transform - uid: 8250 components: - - pos: -76.5,-5.5 + - pos: -31.5,-21.5 parent: 2 type: Transform - uid: 8251 components: - - pos: -76.5,-4.5 + - pos: -31.5,-22.5 parent: 2 type: Transform - uid: 8252 components: - - pos: -76.5,-3.5 + - pos: -31.5,-23.5 parent: 2 type: Transform - uid: 8253 components: - - pos: -75.5,-3.5 + - pos: -31.5,-24.5 parent: 2 type: Transform - uid: 8254 components: - - pos: -74.5,-3.5 + - pos: -31.5,-25.5 parent: 2 type: Transform - uid: 8255 components: - - pos: -73.5,-3.5 + - pos: -31.5,-26.5 parent: 2 type: Transform - uid: 8256 components: - - pos: -72.5,-3.5 + - pos: -31.5,-27.5 parent: 2 type: Transform - uid: 8257 components: - - pos: -71.5,-3.5 + - pos: -31.5,-28.5 parent: 2 type: Transform - uid: 8258 components: - - pos: -70.5,-3.5 + - pos: -31.5,-29.5 parent: 2 type: Transform - uid: 8259 components: - - pos: -69.5,-3.5 + - pos: -31.5,-30.5 parent: 2 type: Transform - uid: 8260 components: - - pos: -68.5,-3.5 + - pos: -31.5,-31.5 parent: 2 type: Transform - uid: 8261 components: - - pos: -67.5,-3.5 + - pos: -31.5,-32.5 parent: 2 type: Transform - uid: 8262 components: - - pos: -66.5,-3.5 + - pos: -31.5,-33.5 parent: 2 type: Transform - uid: 8263 components: - - pos: -65.5,-3.5 + - pos: -31.5,-34.5 parent: 2 type: Transform - uid: 8264 components: - - pos: -64.5,-3.5 + - pos: -30.5,-34.5 parent: 2 type: Transform - uid: 8265 components: - - pos: -63.5,-3.5 + - pos: -29.5,-34.5 parent: 2 type: Transform - uid: 8266 components: - - pos: -62.5,-3.5 + - pos: -28.5,-34.5 parent: 2 type: Transform - uid: 8267 components: - - pos: -61.5,-3.5 + - pos: -28.5,-35.5 parent: 2 type: Transform - uid: 8268 components: - - pos: -60.5,-3.5 + - pos: -28.5,-36.5 parent: 2 type: Transform - uid: 8269 components: - - pos: -59.5,-3.5 + - pos: -28.5,-37.5 parent: 2 type: Transform - uid: 8270 components: - - pos: -58.5,-3.5 + - pos: -27.5,-37.5 parent: 2 type: Transform - uid: 8271 components: - - pos: -57.5,-3.5 + - pos: -60.5,-28.5 parent: 2 type: Transform - uid: 8272 components: - - pos: -56.5,-3.5 + - pos: -71.5,-22.5 parent: 2 type: Transform - uid: 8273 components: - - pos: -56.5,-4.5 + - pos: -72.5,-22.5 parent: 2 type: Transform - uid: 8274 components: - - pos: -56.5,-6.5 + - pos: -73.5,-22.5 parent: 2 type: Transform - uid: 8275 components: - - pos: -56.5,-5.5 + - pos: -74.5,-22.5 parent: 2 type: Transform - uid: 8276 components: - - pos: -76.5,-23.5 + - pos: -75.5,-22.5 parent: 2 type: Transform - uid: 8277 components: - - pos: -76.5,-24.5 + - pos: -76.5,-22.5 parent: 2 type: Transform - uid: 8278 components: - - pos: -76.5,-25.5 + - pos: -76.5,-21.5 parent: 2 type: Transform - uid: 8279 components: - - pos: -53.5,-25.5 + - pos: -76.5,-20.5 parent: 2 type: Transform - uid: 8280 components: - - pos: -51.5,-25.5 + - pos: -76.5,-19.5 parent: 2 type: Transform - uid: 8281 components: - - pos: -71.5,-21.5 + - pos: -76.5,-18.5 parent: 2 type: Transform - uid: 8282 components: - - pos: -19.5,-42.5 + - pos: -76.5,-17.5 parent: 2 type: Transform - uid: 8283 components: - - pos: -20.5,-42.5 + - pos: -76.5,-16.5 parent: 2 type: Transform - uid: 8284 components: - - pos: -21.5,-42.5 + - pos: -76.5,-15.5 parent: 2 type: Transform - uid: 8285 components: - - pos: -22.5,-42.5 + - pos: -76.5,-14.5 parent: 2 type: Transform - uid: 8286 components: - - pos: -23.5,-42.5 + - pos: -76.5,-13.5 parent: 2 type: Transform - uid: 8287 components: - - pos: -23.5,-43.5 + - pos: -76.5,-12.5 parent: 2 type: Transform - uid: 8288 components: - - pos: -23.5,-44.5 + - pos: -76.5,-11.5 parent: 2 type: Transform - uid: 8289 components: - - pos: -23.5,-45.5 + - pos: -76.5,-10.5 parent: 2 type: Transform - uid: 8290 components: - - pos: -23.5,-46.5 + - pos: -76.5,-9.5 parent: 2 type: Transform - uid: 8291 components: - - pos: -23.5,-47.5 + - pos: -76.5,-8.5 parent: 2 type: Transform - uid: 8292 components: - - pos: -23.5,-48.5 + - pos: -76.5,-7.5 parent: 2 type: Transform - uid: 8293 components: - - pos: -23.5,-49.5 + - pos: -76.5,-6.5 parent: 2 type: Transform - uid: 8294 components: - - pos: -24.5,-49.5 + - pos: -76.5,-5.5 parent: 2 type: Transform - uid: 8295 components: - - pos: -25.5,-49.5 + - pos: -76.5,-4.5 parent: 2 type: Transform - uid: 8296 components: - - pos: -26.5,-49.5 + - pos: -76.5,-3.5 parent: 2 type: Transform - uid: 8297 components: - - pos: -27.5,-49.5 + - pos: -75.5,-3.5 parent: 2 type: Transform - uid: 8298 components: - - pos: -27.5,-48.5 + - pos: -74.5,-3.5 parent: 2 type: Transform - uid: 8299 components: - - pos: -27.5,-47.5 + - pos: -73.5,-3.5 parent: 2 type: Transform - uid: 8300 components: - - pos: -27.5,-46.5 + - pos: -72.5,-3.5 parent: 2 type: Transform - uid: 8301 components: - - pos: -27.5,-45.5 + - pos: -71.5,-3.5 parent: 2 type: Transform - uid: 8302 components: - - pos: -27.5,-44.5 + - pos: -70.5,-3.5 parent: 2 type: Transform - uid: 8303 components: - - pos: -28.5,-44.5 + - pos: -69.5,-3.5 parent: 2 type: Transform - uid: 8304 components: - - pos: -29.5,-44.5 + - pos: -68.5,-3.5 parent: 2 type: Transform - uid: 8305 components: - - pos: -30.5,-44.5 + - pos: -67.5,-3.5 parent: 2 type: Transform - uid: 8306 components: - - pos: -31.5,-44.5 + - pos: -66.5,-3.5 parent: 2 type: Transform - uid: 8307 components: - - pos: -31.5,-45.5 + - pos: -65.5,-3.5 parent: 2 type: Transform - uid: 8308 components: - - pos: -31.5,-46.5 + - pos: -64.5,-3.5 parent: 2 type: Transform - uid: 8309 components: - - pos: -31.5,-47.5 + - pos: -63.5,-3.5 parent: 2 type: Transform - uid: 8310 components: - - pos: -30.5,-47.5 + - pos: -62.5,-3.5 parent: 2 type: Transform - uid: 8311 components: - - pos: -30.5,-48.5 + - pos: -61.5,-3.5 parent: 2 type: Transform - uid: 8312 components: - - pos: -30.5,-49.5 + - pos: -60.5,-3.5 parent: 2 type: Transform - uid: 8313 components: - - pos: -30.5,-50.5 + - pos: -59.5,-3.5 parent: 2 type: Transform - uid: 8314 components: - - pos: -30.5,-51.5 + - pos: -58.5,-3.5 parent: 2 type: Transform - uid: 8315 components: - - pos: -30.5,-52.5 + - pos: -57.5,-3.5 parent: 2 type: Transform - uid: 8316 components: - - pos: -30.5,-53.5 + - pos: -56.5,-3.5 parent: 2 type: Transform - uid: 8317 components: - - pos: -31.5,-53.5 + - pos: -56.5,-4.5 parent: 2 type: Transform - uid: 8318 components: - - pos: -31.5,-54.5 + - pos: -56.5,-6.5 parent: 2 type: Transform - uid: 8319 components: - - pos: -58.5,-88.5 + - pos: -56.5,-5.5 parent: 2 type: Transform - uid: 8320 components: - - pos: -57.5,-88.5 + - pos: -76.5,-23.5 parent: 2 type: Transform - uid: 8321 components: - - pos: -58.5,-86.5 + - pos: -76.5,-24.5 parent: 2 type: Transform - uid: 8322 components: - - pos: -57.5,-86.5 + - pos: -76.5,-25.5 parent: 2 type: Transform - uid: 8323 components: - - pos: -56.5,-88.5 + - pos: -53.5,-25.5 parent: 2 type: Transform - uid: 8324 components: - - pos: -57.5,-87.5 + - pos: -51.5,-25.5 parent: 2 type: Transform - uid: 8325 components: - - pos: -55.5,-88.5 + - pos: -71.5,-21.5 parent: 2 type: Transform - uid: 8326 components: - - pos: -55.5,-89.5 + - pos: -19.5,-42.5 parent: 2 type: Transform - uid: 8327 components: - - pos: -9.5,28.5 + - pos: -20.5,-42.5 parent: 2 type: Transform - uid: 8328 components: - - pos: 14.5,32.5 + - pos: -21.5,-42.5 parent: 2 type: Transform - uid: 8329 components: - - pos: 13.5,32.5 + - pos: -22.5,-42.5 parent: 2 type: Transform - uid: 8330 components: - - pos: 2.5,32.5 + - pos: -23.5,-42.5 parent: 2 type: Transform - uid: 8331 components: - - pos: 1.5,32.5 + - pos: -23.5,-43.5 parent: 2 type: Transform - uid: 8332 components: - - pos: 0.5,32.5 + - pos: -23.5,-44.5 parent: 2 type: Transform - uid: 8333 components: - - pos: -0.5,32.5 + - pos: -23.5,-45.5 parent: 2 type: Transform - uid: 8334 components: - - pos: -1.5,32.5 + - pos: -23.5,-46.5 parent: 2 type: Transform - uid: 8335 components: - - pos: -2.5,32.5 + - pos: -23.5,-47.5 parent: 2 type: Transform - uid: 8336 components: - - pos: -3.5,32.5 + - pos: -23.5,-48.5 parent: 2 type: Transform - uid: 8337 components: - - pos: -4.5,32.5 + - pos: -23.5,-49.5 parent: 2 type: Transform - uid: 8338 components: - - pos: -5.5,32.5 + - pos: -24.5,-49.5 parent: 2 type: Transform - uid: 8339 components: - - pos: -6.5,32.5 + - pos: -25.5,-49.5 parent: 2 type: Transform - uid: 8340 components: - - pos: -7.5,32.5 + - pos: -26.5,-49.5 parent: 2 type: Transform - uid: 8341 components: - - pos: -8.5,32.5 + - pos: -27.5,-49.5 parent: 2 type: Transform - uid: 8342 components: - - pos: -8.5,33.5 + - pos: -27.5,-48.5 parent: 2 type: Transform - uid: 8343 components: - - pos: -8.5,34.5 + - pos: -27.5,-47.5 parent: 2 type: Transform - uid: 8344 components: - - pos: -8.5,35.5 + - pos: -27.5,-46.5 parent: 2 type: Transform - uid: 8345 components: - - pos: -14.5,32.5 + - pos: -27.5,-45.5 parent: 2 type: Transform - uid: 8346 components: - - pos: -14.5,30.5 + - pos: -27.5,-44.5 parent: 2 type: Transform - uid: 8347 components: - - pos: -14.5,29.5 + - pos: -28.5,-44.5 parent: 2 type: Transform - uid: 8348 components: - - pos: -16.5,29.5 + - pos: -29.5,-44.5 parent: 2 type: Transform - uid: 8349 components: - - pos: -22.5,17.5 + - pos: -30.5,-44.5 parent: 2 type: Transform - uid: 8350 components: - - pos: -21.5,17.5 + - pos: -31.5,-44.5 parent: 2 type: Transform - uid: 8351 components: - - pos: -20.5,17.5 + - pos: -31.5,-45.5 parent: 2 type: Transform - uid: 8352 components: - - pos: -22.5,16.5 + - pos: -31.5,-46.5 parent: 2 type: Transform - uid: 8353 components: - - pos: -23.5,16.5 + - pos: -31.5,-47.5 parent: 2 type: Transform - uid: 8354 components: - - pos: -23.5,15.5 + - pos: -30.5,-47.5 parent: 2 type: Transform - uid: 8355 components: - - pos: -13.5,3.5 + - pos: -30.5,-48.5 parent: 2 type: Transform - uid: 8356 components: - - pos: -13.5,4.5 + - pos: -30.5,-49.5 parent: 2 type: Transform - uid: 8357 components: - - pos: -13.5,5.5 + - pos: -30.5,-50.5 parent: 2 type: Transform - uid: 8358 components: - - pos: -13.5,6.5 + - pos: -30.5,-51.5 parent: 2 type: Transform - uid: 8359 components: - - pos: -13.5,7.5 + - pos: -30.5,-52.5 parent: 2 type: Transform - uid: 8360 components: - - pos: -14.5,7.5 + - pos: -30.5,-53.5 parent: 2 type: Transform - uid: 8361 components: - - pos: -15.5,7.5 + - pos: -31.5,-53.5 parent: 2 type: Transform - uid: 8362 components: - - pos: -16.5,7.5 + - pos: -31.5,-54.5 parent: 2 type: Transform - uid: 8363 components: - - pos: -17.5,7.5 + - pos: -58.5,-88.5 parent: 2 type: Transform - uid: 8364 components: - - pos: -18.5,7.5 + - pos: -57.5,-88.5 parent: 2 type: Transform - uid: 8365 components: - - pos: -19.5,7.5 + - pos: -58.5,-87.5 parent: 2 type: Transform - uid: 8366 components: - - pos: -20.5,7.5 + - pos: -56.5,-88.5 parent: 2 type: Transform - uid: 8367 components: - - pos: -20.5,8.5 + - pos: -9.5,28.5 parent: 2 type: Transform - uid: 8368 components: - - pos: -20.5,9.5 + - pos: 14.5,32.5 parent: 2 type: Transform - uid: 8369 components: - - pos: -20.5,10.5 + - pos: 13.5,32.5 parent: 2 type: Transform - uid: 8370 components: - - pos: -20.5,11.5 + - pos: 2.5,32.5 parent: 2 type: Transform - uid: 8371 components: - - pos: -20.5,12.5 + - pos: 1.5,32.5 parent: 2 type: Transform - uid: 8372 components: - - pos: -20.5,13.5 + - pos: 0.5,32.5 parent: 2 type: Transform - uid: 8373 components: - - pos: -20.5,14.5 + - pos: -0.5,32.5 parent: 2 type: Transform - uid: 8374 components: - - pos: -20.5,15.5 + - pos: -1.5,32.5 parent: 2 type: Transform - uid: 8375 components: - - pos: -20.5,16.5 + - pos: -2.5,32.5 parent: 2 type: Transform - uid: 8376 components: - - pos: -71.5,-20.5 + - pos: -3.5,32.5 parent: 2 type: Transform - uid: 8377 components: - - pos: -72.5,-20.5 + - pos: -4.5,32.5 parent: 2 type: Transform - uid: 8378 components: - - pos: -73.5,-20.5 + - pos: -5.5,32.5 parent: 2 type: Transform - uid: 8379 components: - - pos: -73.5,-19.5 + - pos: -6.5,32.5 parent: 2 type: Transform - uid: 8380 components: - - pos: -73.5,-18.5 + - pos: -7.5,32.5 parent: 2 type: Transform - uid: 8381 components: - - pos: -73.5,-17.5 + - pos: -8.5,32.5 parent: 2 type: Transform - uid: 8382 components: - - pos: -73.5,-16.5 + - pos: -8.5,33.5 parent: 2 type: Transform - uid: 8383 components: - - pos: -73.5,-15.5 + - pos: -8.5,34.5 parent: 2 type: Transform - uid: 8384 components: - - pos: -73.5,-14.5 + - pos: -8.5,35.5 parent: 2 type: Transform - uid: 8385 components: - - pos: -73.5,-13.5 + - pos: -14.5,32.5 parent: 2 type: Transform - uid: 8386 components: - - pos: -73.5,-12.5 + - pos: -14.5,30.5 parent: 2 type: Transform - uid: 8387 components: - - pos: -73.5,-11.5 + - pos: -14.5,29.5 parent: 2 type: Transform - uid: 8388 components: - - pos: -73.5,-10.5 + - pos: -16.5,29.5 parent: 2 type: Transform - uid: 8389 components: - - pos: -73.5,-9.5 + - pos: -22.5,17.5 parent: 2 type: Transform - uid: 8390 components: - - pos: -73.5,-8.5 + - pos: -21.5,17.5 parent: 2 type: Transform - uid: 8391 components: - - pos: -73.5,-7.5 + - pos: -20.5,17.5 parent: 2 type: Transform - uid: 8392 components: - - pos: -73.5,-6.5 + - pos: -22.5,16.5 parent: 2 type: Transform - uid: 8393 components: - - pos: -72.5,-6.5 + - pos: -23.5,16.5 parent: 2 type: Transform - uid: 8394 components: - - pos: -71.5,-6.5 + - pos: -23.5,15.5 parent: 2 type: Transform - uid: 8395 components: - - pos: -70.5,-6.5 + - pos: -13.5,3.5 parent: 2 type: Transform - uid: 8396 components: - - pos: -69.5,-6.5 + - pos: -13.5,4.5 parent: 2 type: Transform - uid: 8397 components: - - pos: -68.5,-6.5 + - pos: -13.5,5.5 parent: 2 type: Transform - uid: 8398 components: - - pos: -67.5,-6.5 + - pos: -13.5,6.5 parent: 2 type: Transform - uid: 8399 components: - - pos: -66.5,-6.5 + - pos: -13.5,7.5 parent: 2 type: Transform - uid: 8400 components: - - pos: -65.5,-6.5 + - pos: -14.5,7.5 parent: 2 type: Transform - uid: 8401 components: - - pos: -64.5,-6.5 + - pos: -15.5,7.5 parent: 2 type: Transform - uid: 8402 components: - - pos: -63.5,-6.5 + - pos: -16.5,7.5 parent: 2 type: Transform - uid: 8403 components: - - pos: -62.5,-6.5 + - pos: -17.5,7.5 parent: 2 type: Transform - uid: 8404 components: - - pos: -61.5,-6.5 + - pos: -18.5,7.5 parent: 2 type: Transform - uid: 8405 components: - - pos: -60.5,-6.5 + - pos: -19.5,7.5 parent: 2 type: Transform - uid: 8406 components: - - pos: -59.5,-6.5 + - pos: -20.5,7.5 parent: 2 type: Transform - uid: 8407 components: - - pos: -59.5,-7.5 + - pos: -20.5,8.5 parent: 2 type: Transform - uid: 8408 components: - - pos: -59.5,-8.5 + - pos: -20.5,9.5 parent: 2 type: Transform - uid: 8409 components: - - pos: -59.5,-9.5 + - pos: -20.5,10.5 parent: 2 type: Transform - uid: 8410 components: - - pos: -59.5,-10.5 + - pos: -20.5,11.5 parent: 2 type: Transform - uid: 8411 components: - - pos: -59.5,-11.5 + - pos: -20.5,12.5 parent: 2 type: Transform - uid: 8412 components: - - pos: -59.5,-12.5 + - pos: -20.5,13.5 parent: 2 type: Transform - uid: 8413 components: - - pos: -59.5,-13.5 + - pos: -20.5,14.5 parent: 2 type: Transform - uid: 8414 components: - - pos: -59.5,-14.5 + - pos: -20.5,15.5 parent: 2 type: Transform - uid: 8415 components: - - pos: -59.5,-15.5 + - pos: -20.5,16.5 parent: 2 type: Transform - uid: 8416 components: - - pos: -59.5,-16.5 + - pos: -71.5,-20.5 parent: 2 type: Transform - uid: 8417 components: - - pos: -59.5,-17.5 + - pos: -72.5,-20.5 parent: 2 type: Transform - uid: 8418 components: - - pos: -59.5,-18.5 + - pos: -73.5,-20.5 parent: 2 type: Transform - uid: 8419 components: - - pos: -59.5,-19.5 + - pos: -73.5,-19.5 parent: 2 type: Transform - uid: 8420 components: - - pos: -59.5,-20.5 + - pos: -73.5,-18.5 parent: 2 type: Transform - uid: 8421 components: - - pos: -60.5,-20.5 + - pos: -73.5,-17.5 parent: 2 type: Transform - uid: 8422 components: - - pos: -61.5,-20.5 + - pos: -73.5,-16.5 parent: 2 type: Transform - uid: 8423 components: - - pos: -62.5,-20.5 + - pos: -73.5,-15.5 parent: 2 type: Transform - uid: 8424 components: - - pos: -63.5,-20.5 + - pos: -73.5,-14.5 parent: 2 type: Transform - uid: 8425 components: - - pos: -64.5,-20.5 + - pos: -73.5,-13.5 parent: 2 type: Transform - uid: 8426 components: - - pos: -65.5,-20.5 + - pos: -73.5,-12.5 parent: 2 type: Transform - uid: 8427 components: - - pos: -66.5,-20.5 + - pos: -73.5,-11.5 parent: 2 type: Transform - uid: 8428 components: - - pos: -67.5,-20.5 + - pos: -73.5,-10.5 parent: 2 type: Transform - uid: 8429 components: - - pos: -68.5,-20.5 + - pos: -73.5,-9.5 parent: 2 type: Transform - uid: 8430 components: - - pos: -69.5,-20.5 + - pos: -73.5,-8.5 parent: 2 type: Transform - uid: 8431 components: - - pos: -70.5,-20.5 + - pos: -73.5,-7.5 parent: 2 type: Transform - uid: 8432 components: - - pos: -20.5,-5.5 + - pos: -73.5,-6.5 parent: 2 type: Transform - uid: 8433 components: - - pos: -21.5,-5.5 + - pos: -72.5,-6.5 parent: 2 type: Transform - uid: 8434 components: - - pos: -22.5,-5.5 + - pos: -71.5,-6.5 parent: 2 type: Transform - uid: 8435 components: - - pos: -23.5,-5.5 + - pos: -70.5,-6.5 parent: 2 type: Transform - uid: 8436 components: - - pos: -24.5,-5.5 + - pos: -69.5,-6.5 parent: 2 type: Transform - uid: 8437 components: - - pos: -25.5,-5.5 + - pos: -68.5,-6.5 parent: 2 type: Transform - uid: 8438 components: - - pos: -25.5,-4.5 + - pos: -67.5,-6.5 parent: 2 type: Transform - uid: 8439 components: - - pos: -25.5,-3.5 + - pos: -66.5,-6.5 parent: 2 type: Transform - uid: 8440 components: - - pos: -25.5,-2.5 + - pos: -65.5,-6.5 parent: 2 type: Transform - uid: 8441 components: - - pos: -25.5,-1.5 + - pos: -64.5,-6.5 parent: 2 type: Transform - uid: 8442 components: - - pos: -25.5,-0.5 + - pos: -63.5,-6.5 parent: 2 type: Transform - uid: 8443 components: - - pos: -26.5,-0.5 + - pos: -62.5,-6.5 parent: 2 type: Transform - uid: 8444 components: - - pos: -27.5,-0.5 + - pos: -61.5,-6.5 parent: 2 type: Transform - uid: 8445 components: - - pos: -28.5,-0.5 + - pos: -60.5,-6.5 parent: 2 type: Transform - uid: 8446 components: - - pos: -29.5,-0.5 + - pos: -59.5,-6.5 parent: 2 type: Transform - uid: 8447 components: - - pos: -30.5,-0.5 + - pos: -59.5,-7.5 parent: 2 type: Transform - uid: 8448 components: - - pos: -31.5,-0.5 + - pos: -59.5,-8.5 parent: 2 type: Transform - uid: 8449 components: - - pos: -32.5,-0.5 + - pos: -59.5,-9.5 parent: 2 type: Transform - uid: 8450 components: - - pos: -33.5,-0.5 + - pos: -59.5,-10.5 parent: 2 type: Transform - uid: 8451 components: - - pos: -34.5,-0.5 + - pos: -59.5,-11.5 parent: 2 type: Transform - uid: 8452 components: - - pos: -35.5,-0.5 + - pos: -59.5,-12.5 parent: 2 type: Transform - uid: 8453 components: - - pos: -36.5,-0.5 + - pos: -59.5,-13.5 parent: 2 type: Transform - uid: 8454 components: - - pos: -37.5,-0.5 + - pos: -59.5,-14.5 parent: 2 type: Transform - uid: 8455 components: - - pos: -37.5,-1.5 + - pos: -59.5,-15.5 parent: 2 type: Transform - uid: 8456 components: - - pos: -37.5,-2.5 + - pos: -59.5,-16.5 parent: 2 type: Transform - uid: 8457 components: - - pos: -36.5,-2.5 + - pos: -59.5,-17.5 parent: 2 type: Transform - uid: 8458 components: - - pos: -35.5,-2.5 + - pos: -59.5,-18.5 parent: 2 type: Transform - uid: 8459 components: - - pos: -34.5,-2.5 + - pos: -59.5,-19.5 parent: 2 type: Transform - uid: 8460 components: - - pos: -34.5,-3.5 + - pos: -59.5,-20.5 parent: 2 type: Transform - uid: 8461 components: - - pos: -20.5,18.5 + - pos: -60.5,-20.5 parent: 2 type: Transform - uid: 8462 components: - - pos: -20.5,19.5 + - pos: -61.5,-20.5 parent: 2 type: Transform - uid: 8463 components: - - pos: -20.5,20.5 + - pos: -62.5,-20.5 parent: 2 type: Transform - uid: 8464 components: - - pos: -20.5,21.5 + - pos: -63.5,-20.5 parent: 2 type: Transform - uid: 8465 components: - - pos: -20.5,22.5 + - pos: -64.5,-20.5 parent: 2 type: Transform - uid: 8466 components: - - pos: -20.5,23.5 + - pos: -65.5,-20.5 parent: 2 type: Transform - uid: 8467 components: - - pos: -20.5,24.5 + - pos: -66.5,-20.5 parent: 2 type: Transform - uid: 8468 components: - - pos: -20.5,25.5 + - pos: -67.5,-20.5 parent: 2 type: Transform - uid: 8469 components: - - pos: 8.5,-104.5 + - pos: -68.5,-20.5 parent: 2 type: Transform - uid: 8470 components: - - pos: 7.5,-104.5 + - pos: -69.5,-20.5 parent: 2 type: Transform - uid: 8471 components: - - pos: 6.5,-104.5 + - pos: -70.5,-20.5 parent: 2 type: Transform - uid: 8472 components: - - pos: 5.5,-104.5 + - pos: -20.5,-5.5 parent: 2 type: Transform - uid: 8473 components: - - pos: 4.5,-104.5 + - pos: -21.5,-5.5 parent: 2 type: Transform - uid: 8474 components: - - pos: 14.5,-104.5 + - pos: -22.5,-5.5 parent: 2 type: Transform - uid: 8475 components: - - pos: 15.5,-104.5 + - pos: -23.5,-5.5 parent: 2 type: Transform - uid: 8476 components: - - pos: 16.5,-104.5 + - pos: -24.5,-5.5 parent: 2 type: Transform - uid: 8477 components: - - pos: 17.5,-104.5 + - pos: -25.5,-5.5 parent: 2 type: Transform - uid: 8478 components: - - pos: 18.5,-104.5 + - pos: -25.5,-4.5 parent: 2 type: Transform - uid: 8479 components: - - pos: 15.5,-101.5 + - pos: -25.5,-3.5 parent: 2 type: Transform - uid: 8480 components: - - pos: 16.5,-101.5 + - pos: -25.5,-2.5 parent: 2 type: Transform - uid: 8481 components: - - pos: 17.5,-101.5 + - pos: -25.5,-1.5 parent: 2 type: Transform - uid: 8482 components: - - pos: 18.5,-101.5 + - pos: -25.5,-0.5 parent: 2 type: Transform - uid: 8483 components: - - pos: 7.5,-101.5 + - pos: -26.5,-0.5 parent: 2 type: Transform - uid: 8484 components: - - pos: 6.5,-101.5 + - pos: -27.5,-0.5 parent: 2 type: Transform - uid: 8485 components: - - pos: 5.5,-101.5 + - pos: -28.5,-0.5 parent: 2 type: Transform - uid: 8486 components: - - pos: 4.5,-101.5 + - pos: -29.5,-0.5 parent: 2 type: Transform - uid: 8487 components: - - pos: 4.5,-98.5 + - pos: -30.5,-0.5 parent: 2 type: Transform - uid: 8488 components: - - pos: 5.5,-98.5 + - pos: -31.5,-0.5 parent: 2 type: Transform - uid: 8489 components: - - pos: 6.5,-98.5 + - pos: -32.5,-0.5 parent: 2 type: Transform - uid: 8490 components: - - pos: 7.5,-98.5 + - pos: -33.5,-0.5 parent: 2 type: Transform - uid: 8491 components: - - pos: 18.5,-98.5 + - pos: -34.5,-0.5 parent: 2 type: Transform - uid: 8492 components: - - pos: 17.5,-98.5 + - pos: -35.5,-0.5 parent: 2 type: Transform - uid: 8493 components: - - pos: 16.5,-98.5 + - pos: -36.5,-0.5 parent: 2 type: Transform - uid: 8494 components: - - pos: 15.5,-98.5 + - pos: -37.5,-0.5 parent: 2 type: Transform - uid: 8495 components: - - pos: -2.5,-57.5 + - pos: -37.5,-1.5 parent: 2 type: Transform - uid: 8496 components: - - pos: -2.5,-56.5 + - pos: -37.5,-2.5 parent: 2 type: Transform - uid: 8497 components: - - pos: -2.5,-55.5 + - pos: -36.5,-2.5 parent: 2 type: Transform - uid: 8498 components: - - pos: -2.5,-54.5 + - pos: -35.5,-2.5 parent: 2 type: Transform - uid: 8499 components: - - pos: -2.5,-53.5 + - pos: -34.5,-2.5 parent: 2 type: Transform - uid: 8500 components: - - pos: -1.5,-53.5 + - pos: -34.5,-3.5 parent: 2 type: Transform - uid: 8501 components: - - pos: -0.5,-53.5 + - pos: -20.5,18.5 parent: 2 type: Transform - uid: 8502 components: - - pos: -0.5,-52.5 + - pos: -20.5,19.5 parent: 2 type: Transform - uid: 8503 components: - - pos: -0.5,-51.5 + - pos: -20.5,20.5 parent: 2 type: Transform - uid: 8504 components: - - pos: -0.5,-50.5 + - pos: -20.5,21.5 parent: 2 type: Transform - uid: 8505 components: - - pos: -0.5,-49.5 + - pos: -20.5,22.5 parent: 2 type: Transform - uid: 8506 components: - - pos: -0.5,-48.5 + - pos: -20.5,23.5 parent: 2 type: Transform - uid: 8507 components: - - pos: -0.5,-47.5 + - pos: -20.5,24.5 parent: 2 type: Transform - uid: 8508 components: - - pos: -0.5,-46.5 + - pos: -20.5,25.5 parent: 2 type: Transform - uid: 8509 components: - - pos: -0.5,-45.5 + - pos: 8.5,-104.5 parent: 2 type: Transform - uid: 8510 components: - - pos: -0.5,-44.5 + - pos: 7.5,-104.5 parent: 2 type: Transform - uid: 8511 components: - - pos: -0.5,-43.5 + - pos: 6.5,-104.5 parent: 2 type: Transform - uid: 8512 components: - - pos: -53.5,-18.5 + - pos: 5.5,-104.5 parent: 2 type: Transform - uid: 8513 components: - - pos: -53.5,-17.5 + - pos: 4.5,-104.5 parent: 2 type: Transform - uid: 8514 components: - - pos: -53.5,-16.5 + - pos: 14.5,-104.5 parent: 2 type: Transform - uid: 8515 components: - - pos: -53.5,-15.5 + - pos: 15.5,-104.5 parent: 2 type: Transform - uid: 8516 components: - - pos: -53.5,-14.5 + - pos: 16.5,-104.5 parent: 2 type: Transform - uid: 8517 components: - - pos: -53.5,-13.5 + - pos: 17.5,-104.5 parent: 2 type: Transform - uid: 8518 components: - - pos: -54.5,-13.5 + - pos: 18.5,-104.5 parent: 2 type: Transform - uid: 8519 components: - - pos: -55.5,-13.5 + - pos: 15.5,-101.5 parent: 2 type: Transform - uid: 8520 components: - - pos: -55.5,-25.5 + - pos: 16.5,-101.5 parent: 2 type: Transform - uid: 8521 components: - - pos: -56.5,-25.5 + - pos: 17.5,-101.5 parent: 2 type: Transform - uid: 8522 components: - - pos: -57.5,-25.5 + - pos: 18.5,-101.5 parent: 2 type: Transform - uid: 8523 components: - - pos: -60.5,-27.5 + - pos: 7.5,-101.5 parent: 2 type: Transform - uid: 8524 components: - - pos: -54.5,-25.5 + - pos: 6.5,-101.5 parent: 2 type: Transform - uid: 8525 components: - - pos: -52.5,-25.5 + - pos: 5.5,-101.5 parent: 2 type: Transform - uid: 8526 components: - - pos: -0.5,-79.5 + - pos: 4.5,-101.5 parent: 2 type: Transform - uid: 8527 components: - - pos: -14.5,38.5 + - pos: 4.5,-98.5 parent: 2 type: Transform - uid: 8528 components: - - pos: -14.5,43.5 + - pos: 5.5,-98.5 parent: 2 type: Transform - uid: 8529 components: - - pos: -14.5,41.5 + - pos: 6.5,-98.5 parent: 2 type: Transform - uid: 8530 components: - - pos: -17.5,29.5 + - pos: 7.5,-98.5 parent: 2 type: Transform - uid: 8531 components: - - pos: -14.5,37.5 + - pos: 18.5,-98.5 parent: 2 type: Transform - uid: 8532 components: - - pos: -15.5,29.5 + - pos: 17.5,-98.5 parent: 2 type: Transform - uid: 8533 components: - - pos: -0.5,-78.5 + - pos: 16.5,-98.5 parent: 2 type: Transform - uid: 8534 components: - - pos: -0.5,-77.5 + - pos: 15.5,-98.5 parent: 2 type: Transform - uid: 8535 components: - - pos: 12.5,-104.5 + - pos: -2.5,-57.5 parent: 2 type: Transform - uid: 8536 components: - - pos: 10.5,-104.5 + - pos: -2.5,-56.5 parent: 2 type: Transform - uid: 8537 components: - - pos: -74.5,-38.5 + - pos: -2.5,-55.5 parent: 2 type: Transform - uid: 8538 components: - - pos: -75.5,-38.5 + - pos: -2.5,-54.5 parent: 2 type: Transform - uid: 8539 components: - - pos: -79.5,-37.5 + - pos: -2.5,-53.5 parent: 2 type: Transform - uid: 8540 components: - - pos: 5.5,-14.5 + - pos: -1.5,-53.5 parent: 2 type: Transform - uid: 8541 components: - - pos: 8.5,-14.5 + - pos: -0.5,-53.5 parent: 2 type: Transform - uid: 8542 components: - - pos: 33.5,22.5 + - pos: -0.5,-52.5 parent: 2 type: Transform - uid: 8543 components: - - pos: 34.5,22.5 + - pos: -0.5,-51.5 parent: 2 type: Transform - uid: 8544 components: - - pos: 35.5,22.5 + - pos: -0.5,-50.5 parent: 2 type: Transform - uid: 8545 components: - - pos: 36.5,22.5 + - pos: -0.5,-49.5 parent: 2 type: Transform - uid: 8546 components: - - pos: 36.5,23.5 + - pos: -0.5,-48.5 parent: 2 type: Transform - uid: 8547 components: - - pos: 37.5,23.5 + - pos: -0.5,-47.5 parent: 2 type: Transform - uid: 8548 components: - - pos: 38.5,23.5 + - pos: -0.5,-46.5 parent: 2 type: Transform - uid: 8549 components: - - pos: 39.5,23.5 + - pos: -0.5,-45.5 parent: 2 type: Transform - uid: 8550 components: - - pos: 40.5,23.5 + - pos: -0.5,-44.5 parent: 2 type: Transform - uid: 8551 components: - - pos: 41.5,23.5 + - pos: -0.5,-43.5 parent: 2 type: Transform - uid: 8552 components: - - pos: 42.5,23.5 + - pos: -53.5,-18.5 parent: 2 type: Transform - uid: 8553 components: - - pos: 43.5,23.5 + - pos: -53.5,-17.5 parent: 2 type: Transform - uid: 8554 components: - - pos: 44.5,23.5 + - pos: -53.5,-16.5 parent: 2 type: Transform - uid: 8555 components: - - pos: 44.5,24.5 + - pos: -53.5,-15.5 parent: 2 type: Transform - uid: 8556 components: - - pos: 44.5,25.5 + - pos: -53.5,-14.5 parent: 2 type: Transform - uid: 8557 components: - - pos: 44.5,26.5 + - pos: -53.5,-13.5 parent: 2 type: Transform - uid: 8558 components: - - pos: 45.5,26.5 + - pos: -54.5,-13.5 parent: 2 type: Transform - uid: 8559 components: - - pos: 46.5,26.5 + - pos: -55.5,-13.5 parent: 2 type: Transform - uid: 8560 components: - - pos: 47.5,26.5 + - pos: -55.5,-25.5 parent: 2 type: Transform - uid: 8561 components: - - pos: 48.5,26.5 + - pos: -56.5,-25.5 parent: 2 type: Transform - uid: 8562 components: - - pos: 48.5,27.5 + - pos: -57.5,-25.5 parent: 2 type: Transform - uid: 8563 components: - - pos: 48.5,28.5 + - pos: -60.5,-27.5 parent: 2 type: Transform - uid: 8564 components: - - pos: 49.5,28.5 + - pos: -54.5,-25.5 parent: 2 type: Transform - uid: 8565 components: - - pos: 50.5,28.5 + - pos: -52.5,-25.5 parent: 2 type: Transform - uid: 8566 components: - - pos: 50.5,29.5 + - pos: -0.5,-79.5 parent: 2 type: Transform - uid: 8567 components: - - pos: 91.5,36.5 + - pos: -14.5,38.5 parent: 2 type: Transform - uid: 8568 components: - - pos: 77.5,36.5 + - pos: -14.5,43.5 parent: 2 type: Transform - uid: 8569 components: - - pos: 76.5,36.5 + - pos: -14.5,41.5 parent: 2 type: Transform - uid: 8570 components: - - pos: 75.5,36.5 + - pos: -17.5,29.5 parent: 2 type: Transform - uid: 8571 components: - - pos: 74.5,36.5 + - pos: -14.5,37.5 parent: 2 type: Transform - uid: 8572 components: - - pos: 78.5,44.5 + - pos: -15.5,29.5 parent: 2 type: Transform - uid: 8573 components: - - pos: 78.5,43.5 + - pos: -0.5,-78.5 parent: 2 type: Transform - uid: 8574 components: - - pos: 78.5,42.5 + - pos: -0.5,-77.5 parent: 2 type: Transform - uid: 8575 components: - - pos: 78.5,41.5 + - pos: 12.5,-104.5 parent: 2 type: Transform - uid: 8576 components: - - pos: 78.5,40.5 + - pos: 10.5,-104.5 parent: 2 type: Transform - uid: 8577 components: - - pos: 78.5,39.5 + - pos: -74.5,-38.5 parent: 2 type: Transform - uid: 8578 components: - - pos: 78.5,38.5 + - pos: -75.5,-38.5 parent: 2 type: Transform - uid: 8579 components: - - pos: 78.5,37.5 + - pos: -79.5,-37.5 parent: 2 type: Transform - uid: 8580 components: - - pos: 78.5,35.5 + - pos: 5.5,-14.5 parent: 2 type: Transform - uid: 8581 components: - - pos: 78.5,34.5 + - pos: 8.5,-14.5 parent: 2 type: Transform - uid: 8582 components: - - pos: 78.5,33.5 + - pos: 33.5,22.5 parent: 2 type: Transform - uid: 8583 components: - - pos: 78.5,32.5 + - pos: 34.5,22.5 parent: 2 type: Transform - uid: 8584 components: - - pos: 78.5,31.5 + - pos: 35.5,22.5 parent: 2 type: Transform - uid: 8585 components: - - pos: 78.5,30.5 + - pos: 36.5,22.5 parent: 2 type: Transform - uid: 8586 components: - - pos: 78.5,29.5 + - pos: 36.5,23.5 parent: 2 type: Transform - uid: 8587 components: - - pos: 78.5,28.5 + - pos: 37.5,23.5 parent: 2 type: Transform - uid: 8588 components: - - pos: 81.5,28.5 + - pos: 38.5,23.5 parent: 2 type: Transform - uid: 8589 components: - - pos: 81.5,29.5 + - pos: 39.5,23.5 parent: 2 type: Transform - uid: 8590 components: - - pos: 81.5,30.5 + - pos: 40.5,23.5 parent: 2 type: Transform - uid: 8591 components: - - pos: 81.5,31.5 + - pos: 41.5,23.5 parent: 2 type: Transform - uid: 8592 components: - - pos: 81.5,32.5 + - pos: 42.5,23.5 parent: 2 type: Transform - uid: 8593 components: - - pos: 81.5,33.5 + - pos: 43.5,23.5 parent: 2 type: Transform - uid: 8594 components: - - pos: 81.5,34.5 + - pos: 44.5,23.5 parent: 2 type: Transform - uid: 8595 components: - - pos: 81.5,35.5 + - pos: 44.5,24.5 parent: 2 type: Transform - uid: 8596 components: - - pos: 81.5,37.5 + - pos: 44.5,25.5 parent: 2 type: Transform - uid: 8597 components: - - pos: 81.5,38.5 + - pos: 44.5,26.5 parent: 2 type: Transform - uid: 8598 components: - - pos: 81.5,39.5 + - pos: 45.5,26.5 parent: 2 type: Transform - uid: 8599 components: - - pos: 81.5,40.5 + - pos: 46.5,26.5 parent: 2 type: Transform - uid: 8600 components: - - pos: 81.5,41.5 + - pos: 47.5,26.5 parent: 2 type: Transform - uid: 8601 components: - - pos: 81.5,42.5 + - pos: 48.5,26.5 parent: 2 type: Transform - uid: 8602 components: - - pos: 81.5,43.5 + - pos: 48.5,27.5 parent: 2 type: Transform - uid: 8603 components: - - pos: 81.5,44.5 + - pos: 48.5,28.5 parent: 2 type: Transform - uid: 8604 components: - - pos: 84.5,44.5 + - pos: 49.5,28.5 parent: 2 type: Transform - uid: 8605 components: - - pos: 84.5,43.5 + - pos: 50.5,28.5 parent: 2 type: Transform - uid: 8606 components: - - pos: 84.5,42.5 + - pos: 50.5,29.5 parent: 2 type: Transform - uid: 8607 components: - - pos: 84.5,41.5 + - pos: 91.5,36.5 parent: 2 type: Transform - uid: 8608 components: - - pos: 84.5,40.5 + - pos: 77.5,36.5 parent: 2 type: Transform - uid: 8609 components: - - pos: 84.5,39.5 + - pos: 76.5,36.5 parent: 2 type: Transform - uid: 8610 components: - - pos: 84.5,38.5 + - pos: 75.5,36.5 parent: 2 type: Transform - uid: 8611 components: - - pos: 84.5,37.5 + - pos: 74.5,36.5 parent: 2 type: Transform - uid: 8612 components: - - pos: 84.5,35.5 + - pos: 78.5,44.5 parent: 2 type: Transform - uid: 8613 components: - - pos: 84.5,34.5 + - pos: 78.5,43.5 parent: 2 type: Transform - uid: 8614 components: - - pos: 84.5,33.5 + - pos: 78.5,42.5 parent: 2 type: Transform - uid: 8615 components: - - pos: 84.5,32.5 + - pos: 78.5,41.5 parent: 2 type: Transform - uid: 8616 components: - - pos: 84.5,31.5 + - pos: 78.5,40.5 parent: 2 type: Transform - uid: 8617 components: - - pos: 84.5,30.5 + - pos: 78.5,39.5 parent: 2 type: Transform - uid: 8618 components: - - pos: 84.5,29.5 + - pos: 78.5,38.5 parent: 2 type: Transform - uid: 8619 components: - - pos: 84.5,28.5 + - pos: 78.5,37.5 parent: 2 type: Transform - uid: 8620 components: - - pos: 87.5,28.5 + - pos: 78.5,35.5 parent: 2 type: Transform - uid: 8621 components: - - pos: 87.5,29.5 + - pos: 78.5,34.5 parent: 2 type: Transform - uid: 8622 components: - - pos: 87.5,30.5 + - pos: 78.5,33.5 parent: 2 type: Transform - uid: 8623 components: - - pos: 87.5,31.5 + - pos: 78.5,32.5 parent: 2 type: Transform - uid: 8624 components: - - pos: 87.5,32.5 + - pos: 78.5,31.5 parent: 2 type: Transform - uid: 8625 components: - - pos: 87.5,33.5 + - pos: 78.5,30.5 parent: 2 type: Transform - uid: 8626 components: - - pos: 87.5,34.5 + - pos: 78.5,29.5 parent: 2 type: Transform - uid: 8627 components: - - pos: 87.5,35.5 + - pos: 78.5,28.5 parent: 2 type: Transform - uid: 8628 components: - - pos: 87.5,37.5 + - pos: 81.5,28.5 parent: 2 type: Transform - uid: 8629 components: - - pos: 87.5,38.5 + - pos: 81.5,29.5 parent: 2 type: Transform - uid: 8630 components: - - pos: 87.5,39.5 + - pos: 81.5,30.5 parent: 2 type: Transform - uid: 8631 components: - - pos: 87.5,40.5 + - pos: 81.5,31.5 parent: 2 type: Transform - uid: 8632 components: - - pos: 87.5,41.5 + - pos: 81.5,32.5 parent: 2 type: Transform - uid: 8633 components: - - pos: 87.5,42.5 + - pos: 81.5,33.5 parent: 2 type: Transform - uid: 8634 components: - - pos: 87.5,43.5 + - pos: 81.5,34.5 parent: 2 type: Transform - uid: 8635 components: - - pos: 87.5,44.5 + - pos: 81.5,35.5 parent: 2 type: Transform - uid: 8636 components: - - pos: 90.5,44.5 + - pos: 81.5,37.5 parent: 2 type: Transform - uid: 8637 components: - - pos: 90.5,43.5 + - pos: 81.5,38.5 parent: 2 type: Transform - uid: 8638 components: - - pos: 90.5,42.5 + - pos: 81.5,39.5 parent: 2 type: Transform - uid: 8639 components: - - pos: 90.5,41.5 + - pos: 81.5,40.5 parent: 2 type: Transform - uid: 8640 components: - - pos: 90.5,40.5 + - pos: 81.5,41.5 parent: 2 type: Transform - uid: 8641 components: - - pos: 90.5,39.5 + - pos: 81.5,42.5 parent: 2 type: Transform - uid: 8642 components: - - pos: 90.5,38.5 + - pos: 81.5,43.5 parent: 2 type: Transform - uid: 8643 components: - - pos: 90.5,37.5 + - pos: 81.5,44.5 parent: 2 type: Transform - uid: 8644 components: - - pos: 90.5,35.5 + - pos: 84.5,44.5 parent: 2 type: Transform - uid: 8645 components: - - pos: 90.5,34.5 + - pos: 84.5,43.5 parent: 2 type: Transform - uid: 8646 components: - - pos: 90.5,33.5 + - pos: 84.5,42.5 parent: 2 type: Transform - uid: 8647 components: - - pos: 90.5,32.5 + - pos: 84.5,41.5 parent: 2 type: Transform - uid: 8648 components: - - pos: 90.5,31.5 + - pos: 84.5,40.5 parent: 2 type: Transform - uid: 8649 components: - - pos: 90.5,30.5 + - pos: 84.5,39.5 parent: 2 type: Transform - uid: 8650 components: - - pos: 90.5,29.5 + - pos: 84.5,38.5 parent: 2 type: Transform - uid: 8651 components: - - pos: 90.5,28.5 + - pos: 84.5,37.5 parent: 2 type: Transform - uid: 8652 components: - - pos: 74.5,37.5 + - pos: 84.5,35.5 parent: 2 type: Transform - uid: 8653 components: - - pos: 74.5,38.5 + - pos: 84.5,34.5 parent: 2 type: Transform - uid: 8654 components: - - pos: 73.5,38.5 + - pos: 84.5,33.5 parent: 2 type: Transform - uid: 8655 components: - - pos: 72.5,38.5 + - pos: 84.5,32.5 parent: 2 type: Transform - uid: 8656 components: - - pos: 74.5,35.5 + - pos: 84.5,31.5 parent: 2 type: Transform - uid: 8657 components: - - pos: 74.5,34.5 + - pos: 84.5,30.5 parent: 2 type: Transform - uid: 8658 components: - - pos: 73.5,34.5 + - pos: 84.5,29.5 parent: 2 type: Transform - uid: 8659 components: - - pos: 72.5,34.5 + - pos: 84.5,28.5 parent: 2 type: Transform - uid: 8660 components: - - pos: 71.5,34.5 + - pos: 87.5,28.5 parent: 2 type: Transform - uid: 8661 components: - - pos: 70.5,34.5 + - pos: 87.5,29.5 parent: 2 type: Transform - uid: 8662 components: - - pos: 70.5,35.5 + - pos: 87.5,30.5 parent: 2 type: Transform - uid: 8663 components: - - pos: 70.5,36.5 + - pos: 87.5,31.5 parent: 2 type: Transform - uid: 8664 components: - - pos: 69.5,36.5 + - pos: 87.5,32.5 parent: 2 type: Transform - uid: 8665 components: - - pos: 71.5,38.5 + - pos: 87.5,33.5 parent: 2 type: Transform - uid: 8666 components: - - pos: 70.5,38.5 + - pos: 87.5,34.5 parent: 2 type: Transform - uid: 8667 components: - - pos: 70.5,37.5 + - pos: 87.5,35.5 parent: 2 type: Transform - uid: 8668 components: - - pos: 68.5,36.5 + - pos: 87.5,37.5 parent: 2 type: Transform - uid: 8669 components: - - pos: 67.5,36.5 + - pos: 87.5,38.5 parent: 2 type: Transform - uid: 8670 components: - - pos: 66.5,36.5 + - pos: 87.5,39.5 parent: 2 type: Transform - uid: 8671 components: - - pos: 65.5,36.5 + - pos: 87.5,40.5 parent: 2 type: Transform - uid: 8672 components: - - pos: 64.5,36.5 + - pos: 87.5,41.5 parent: 2 type: Transform - uid: 8673 components: - - pos: 63.5,36.5 + - pos: 87.5,42.5 parent: 2 type: Transform - uid: 8674 components: - - pos: 63.5,35.5 + - pos: 87.5,43.5 parent: 2 type: Transform - uid: 8675 components: - - pos: 63.5,34.5 + - pos: 87.5,44.5 parent: 2 type: Transform - uid: 8676 components: - - pos: 63.5,33.5 + - pos: 90.5,44.5 parent: 2 type: Transform - uid: 8677 components: - - pos: 63.5,32.5 + - pos: 90.5,43.5 parent: 2 type: Transform - uid: 8678 components: - - pos: 63.5,31.5 + - pos: 90.5,42.5 parent: 2 type: Transform - uid: 8679 components: - - pos: 63.5,30.5 + - pos: 90.5,41.5 parent: 2 type: Transform - uid: 8680 components: - - pos: 63.5,29.5 + - pos: 90.5,40.5 parent: 2 type: Transform - uid: 8681 components: - - pos: 63.5,28.5 + - pos: 90.5,39.5 parent: 2 type: Transform - uid: 8682 components: - - pos: 63.5,27.5 + - pos: 90.5,38.5 parent: 2 type: Transform - uid: 8683 components: - - pos: 63.5,26.5 + - pos: 90.5,37.5 parent: 2 type: Transform - uid: 8684 components: - - pos: 62.5,26.5 + - pos: 90.5,35.5 parent: 2 type: Transform - uid: 8685 components: - - pos: 61.5,26.5 + - pos: 90.5,34.5 parent: 2 type: Transform - uid: 8686 components: - - pos: 60.5,26.5 + - pos: 90.5,33.5 parent: 2 type: Transform - uid: 8687 components: - - pos: 59.5,26.5 + - pos: 90.5,32.5 parent: 2 type: Transform - uid: 8688 components: - - pos: 58.5,26.5 + - pos: 90.5,31.5 parent: 2 type: Transform - uid: 8689 components: - - pos: 57.5,26.5 + - pos: 90.5,30.5 parent: 2 type: Transform - uid: 8690 components: - - pos: 56.5,26.5 + - pos: 90.5,29.5 parent: 2 type: Transform - uid: 8691 components: - - pos: 55.5,26.5 + - pos: 90.5,28.5 parent: 2 type: Transform - uid: 8692 components: - - pos: 54.5,26.5 + - pos: 74.5,37.5 parent: 2 type: Transform - uid: 8693 components: - - pos: 53.5,26.5 + - pos: 74.5,38.5 parent: 2 type: Transform - uid: 8694 components: - - pos: 52.5,26.5 + - pos: 73.5,38.5 parent: 2 type: Transform - uid: 8695 components: - - pos: 51.5,26.5 + - pos: 72.5,38.5 parent: 2 type: Transform - uid: 8696 components: - - pos: 50.5,26.5 + - pos: 74.5,35.5 parent: 2 type: Transform - uid: 8697 components: - - pos: 49.5,26.5 + - pos: 74.5,34.5 parent: 2 type: Transform - uid: 8698 components: - - pos: -11.5,26.5 + - pos: 73.5,34.5 parent: 2 type: Transform - uid: 8699 components: - - pos: -12.5,26.5 + - pos: 72.5,34.5 parent: 2 type: Transform - uid: 8700 components: - - pos: -13.5,26.5 + - pos: 71.5,34.5 parent: 2 type: Transform - uid: 8701 components: - - pos: -14.5,26.5 + - pos: 70.5,34.5 parent: 2 type: Transform - uid: 8702 components: - - pos: -15.5,26.5 + - pos: 70.5,35.5 parent: 2 type: Transform - uid: 8703 components: - - pos: -15.5,27.5 + - pos: 70.5,36.5 parent: 2 type: Transform - uid: 8704 components: - - pos: -15.5,28.5 + - pos: 69.5,36.5 parent: 2 type: Transform - uid: 8705 components: - - pos: -1.5,69.5 + - pos: 71.5,38.5 parent: 2 type: Transform - uid: 8706 components: - - pos: -1.5,68.5 + - pos: 70.5,38.5 parent: 2 type: Transform - uid: 8707 components: - - pos: -1.5,67.5 + - pos: 70.5,37.5 parent: 2 type: Transform - uid: 8708 components: - - pos: -1.5,66.5 + - pos: 68.5,36.5 parent: 2 type: Transform - uid: 8709 components: - - pos: -1.5,65.5 + - pos: 67.5,36.5 parent: 2 type: Transform - uid: 8710 components: - - pos: -1.5,64.5 + - pos: 66.5,36.5 parent: 2 type: Transform - uid: 8711 components: - - pos: -1.5,63.5 + - pos: 65.5,36.5 parent: 2 type: Transform - uid: 8712 components: - - pos: -1.5,62.5 + - pos: 64.5,36.5 parent: 2 type: Transform - uid: 8713 components: - - pos: -1.5,61.5 + - pos: 63.5,36.5 parent: 2 type: Transform - uid: 8714 components: - - pos: -1.5,60.5 + - pos: 63.5,35.5 parent: 2 type: Transform - uid: 8715 components: - - pos: -1.5,59.5 + - pos: 63.5,34.5 parent: 2 type: Transform - uid: 8716 components: - - pos: -1.5,58.5 + - pos: 63.5,33.5 parent: 2 type: Transform - uid: 8717 components: - - pos: -2.5,58.5 + - pos: 63.5,32.5 parent: 2 type: Transform - uid: 8718 components: - - pos: -3.5,58.5 + - pos: 63.5,31.5 parent: 2 type: Transform - uid: 8719 components: - - pos: -4.5,58.5 + - pos: 63.5,30.5 parent: 2 type: Transform - uid: 8720 components: - - pos: -5.5,58.5 + - pos: 63.5,29.5 parent: 2 type: Transform - uid: 8721 components: - - pos: -6.5,58.5 + - pos: 63.5,28.5 parent: 2 type: Transform - uid: 8722 components: - - pos: -7.5,58.5 + - pos: 63.5,27.5 parent: 2 type: Transform - uid: 8723 components: - - pos: -8.5,58.5 + - pos: 63.5,26.5 parent: 2 type: Transform - uid: 8724 components: - - pos: -9.5,58.5 + - pos: 62.5,26.5 parent: 2 type: Transform - uid: 8725 components: - - pos: -10.5,58.5 + - pos: 61.5,26.5 parent: 2 type: Transform - uid: 8726 components: - - pos: -10.5,59.5 + - pos: 60.5,26.5 parent: 2 type: Transform - uid: 8727 components: - - pos: -10.5,60.5 + - pos: 59.5,26.5 parent: 2 type: Transform - uid: 8728 components: - - pos: -10.5,61.5 + - pos: 58.5,26.5 parent: 2 type: Transform - uid: 8729 components: - - pos: -10.5,62.5 + - pos: 57.5,26.5 parent: 2 type: Transform - uid: 8730 components: - - pos: -71.5,-23.5 + - pos: 56.5,26.5 parent: 2 type: Transform - uid: 8731 components: - - pos: -71.5,-24.5 + - pos: 55.5,26.5 parent: 2 type: Transform - uid: 8732 components: - - pos: -71.5,-25.5 + - pos: 54.5,26.5 parent: 2 type: Transform - uid: 8733 components: - - pos: -72.5,-25.5 + - pos: 53.5,26.5 parent: 2 type: Transform - uid: 8734 components: - - pos: -72.5,-26.5 + - pos: 52.5,26.5 parent: 2 type: Transform - uid: 8735 components: - - pos: -72.5,-27.5 + - pos: 51.5,26.5 parent: 2 type: Transform - uid: 8736 components: - - pos: -72.5,-28.5 + - pos: 50.5,26.5 parent: 2 type: Transform - uid: 8737 components: - - pos: -71.5,-28.5 + - pos: 49.5,26.5 parent: 2 type: Transform - uid: 8738 components: - - pos: -70.5,-28.5 + - pos: -11.5,26.5 parent: 2 type: Transform - uid: 8739 components: - - pos: -70.5,-29.5 + - pos: -12.5,26.5 parent: 2 type: Transform - uid: 8740 components: - - pos: -72.5,-29.5 + - pos: -13.5,26.5 parent: 2 type: Transform - uid: 8741 components: - - pos: -73.5,-28.5 + - pos: -14.5,26.5 parent: 2 type: Transform - uid: 8742 components: - - pos: -74.5,-28.5 + - pos: -15.5,26.5 parent: 2 type: Transform - uid: 8743 components: - - pos: -74.5,-29.5 + - pos: -15.5,27.5 parent: 2 type: Transform - uid: 8744 components: - - pos: -74.5,-30.5 + - pos: -15.5,28.5 parent: 2 type: Transform - uid: 8745 components: - - pos: -72.5,-30.5 + - pos: -1.5,69.5 parent: 2 type: Transform - uid: 8746 components: - - pos: -70.5,-30.5 + - pos: -1.5,68.5 parent: 2 type: Transform - uid: 8747 components: - - pos: -70.5,-31.5 + - pos: -1.5,67.5 parent: 2 type: Transform - uid: 8748 components: - - pos: -72.5,-38.5 + - pos: -1.5,66.5 parent: 2 type: Transform - uid: 8749 components: - - pos: -72.5,-32.5 + - pos: -1.5,65.5 parent: 2 type: Transform - uid: 8750 components: - - pos: -74.5,-31.5 + - pos: -1.5,64.5 parent: 2 type: Transform - uid: 8751 components: - - pos: -74.5,-32.5 + - pos: -1.5,63.5 parent: 2 type: Transform - uid: 8752 components: - - pos: -72.5,-31.5 + - pos: -1.5,62.5 parent: 2 type: Transform - uid: 8753 components: - - pos: -72.5,-33.5 + - pos: -1.5,61.5 parent: 2 type: Transform - uid: 8754 components: - - pos: -69.5,-34.5 + - pos: -1.5,60.5 parent: 2 type: Transform - uid: 8755 components: - - pos: -69.5,-35.5 + - pos: -1.5,59.5 parent: 2 type: Transform - uid: 8756 components: - - pos: -76.5,-38.5 + - pos: -1.5,58.5 parent: 2 type: Transform - uid: 8757 components: - - pos: -73.5,-38.5 + - pos: -2.5,58.5 parent: 2 type: Transform - uid: 8758 components: - - pos: -79.5,-35.5 + - pos: -3.5,58.5 parent: 2 type: Transform - uid: 8759 components: - - pos: 68.5,-46.5 + - pos: -4.5,58.5 parent: 2 type: Transform - uid: 8760 components: - - pos: 67.5,-46.5 + - pos: -5.5,58.5 parent: 2 type: Transform - uid: 8761 components: - - pos: 66.5,-46.5 + - pos: -6.5,58.5 parent: 2 type: Transform - uid: 8762 components: - - pos: 65.5,-46.5 + - pos: -7.5,58.5 parent: 2 type: Transform - uid: 8763 components: - - pos: 64.5,-46.5 + - pos: -8.5,58.5 parent: 2 type: Transform - uid: 8764 components: - - pos: 64.5,-45.5 + - pos: -9.5,58.5 parent: 2 type: Transform - uid: 8765 components: - - pos: 64.5,-44.5 + - pos: -10.5,58.5 parent: 2 type: Transform - uid: 8766 components: - - pos: 63.5,-44.5 + - pos: -10.5,59.5 parent: 2 type: Transform - uid: 8767 components: - - pos: 62.5,-44.5 + - pos: -10.5,60.5 parent: 2 type: Transform - uid: 8768 components: - - pos: 61.5,-44.5 + - pos: -10.5,61.5 parent: 2 type: Transform - uid: 8769 components: - - pos: 60.5,-44.5 + - pos: -10.5,62.5 parent: 2 type: Transform - uid: 8770 components: - - pos: 59.5,-44.5 + - pos: -71.5,-23.5 parent: 2 type: Transform - uid: 8771 components: - - pos: 58.5,-44.5 + - pos: -71.5,-24.5 parent: 2 type: Transform - uid: 8772 components: - - pos: 57.5,-44.5 + - pos: -71.5,-25.5 parent: 2 type: Transform - uid: 8773 components: - - pos: 56.5,-44.5 + - pos: -72.5,-25.5 parent: 2 type: Transform - uid: 8774 components: - - pos: 55.5,-44.5 + - pos: -72.5,-26.5 parent: 2 type: Transform - uid: 8775 components: - - pos: 54.5,-44.5 + - pos: -72.5,-27.5 parent: 2 type: Transform - uid: 8776 components: - - pos: 53.5,-44.5 + - pos: -72.5,-28.5 parent: 2 type: Transform - uid: 8777 components: - - pos: 52.5,-44.5 + - pos: -71.5,-28.5 parent: 2 type: Transform - uid: 8778 components: - - pos: 51.5,-44.5 + - pos: -70.5,-28.5 parent: 2 type: Transform - uid: 8779 components: - - pos: 50.5,-44.5 + - pos: -70.5,-29.5 parent: 2 type: Transform - uid: 8780 components: - - pos: 69.5,-46.5 + - pos: -72.5,-29.5 parent: 2 type: Transform - uid: 8781 components: - - pos: 72.5,-46.5 + - pos: -73.5,-28.5 parent: 2 type: Transform - uid: 8782 components: - - pos: 73.5,-46.5 + - pos: -74.5,-28.5 parent: 2 type: Transform - uid: 8783 components: - - pos: 74.5,-46.5 + - pos: -74.5,-29.5 parent: 2 type: Transform - uid: 8784 components: - - pos: 75.5,-46.5 + - pos: -74.5,-30.5 parent: 2 type: Transform - uid: 8785 components: - - pos: 75.5,-47.5 + - pos: -72.5,-30.5 parent: 2 type: Transform - uid: 8786 components: - - pos: 75.5,-48.5 + - pos: -70.5,-30.5 parent: 2 type: Transform - uid: 8787 components: - - pos: 75.5,-49.5 + - pos: -70.5,-31.5 parent: 2 type: Transform - uid: 8788 components: - - pos: 75.5,-50.5 + - pos: -72.5,-38.5 parent: 2 type: Transform - uid: 8789 components: - - pos: 75.5,-51.5 + - pos: -72.5,-32.5 parent: 2 type: Transform - uid: 8790 components: - - pos: 75.5,-52.5 + - pos: -74.5,-31.5 parent: 2 type: Transform - uid: 8791 components: - - pos: 75.5,-53.5 + - pos: -74.5,-32.5 parent: 2 type: Transform - uid: 8792 components: - - pos: 75.5,-54.5 + - pos: -72.5,-31.5 parent: 2 type: Transform - uid: 8793 components: - - pos: 75.5,-55.5 + - pos: -72.5,-33.5 parent: 2 type: Transform - uid: 8794 components: - - pos: 75.5,-56.5 + - pos: -69.5,-34.5 parent: 2 type: Transform - uid: 8795 components: - - pos: 74.5,-56.5 + - pos: -69.5,-35.5 parent: 2 type: Transform - uid: 8796 components: - - pos: 74.5,-57.5 + - pos: -76.5,-38.5 parent: 2 type: Transform - uid: 8797 components: - - pos: 73.5,-57.5 + - pos: -73.5,-38.5 parent: 2 type: Transform - uid: 8798 components: - - pos: 72.5,-57.5 + - pos: -79.5,-35.5 parent: 2 type: Transform - uid: 8799 components: - - pos: 71.5,-57.5 + - pos: 68.5,-46.5 parent: 2 type: Transform - uid: 8800 components: - - pos: 71.5,-58.5 + - pos: 67.5,-46.5 parent: 2 type: Transform - uid: 8801 components: - - pos: 71.5,-59.5 + - pos: 66.5,-46.5 parent: 2 type: Transform - uid: 8802 components: - - pos: 71.5,-60.5 + - pos: 65.5,-46.5 parent: 2 type: Transform - uid: 8803 components: - - pos: 71.5,-61.5 + - pos: 64.5,-46.5 parent: 2 type: Transform - uid: 8804 components: - - pos: 70.5,-61.5 + - pos: 64.5,-45.5 parent: 2 type: Transform - uid: 8805 components: - - pos: 69.5,-61.5 + - pos: 64.5,-44.5 parent: 2 type: Transform - uid: 8806 components: - - pos: 68.5,-61.5 + - pos: 63.5,-44.5 parent: 2 type: Transform - uid: 8807 components: - - pos: 68.5,-60.5 + - pos: 62.5,-44.5 parent: 2 type: Transform - uid: 8808 components: - - pos: 68.5,-59.5 + - pos: 61.5,-44.5 parent: 2 type: Transform - uid: 8809 components: - - pos: 69.5,-59.5 + - pos: 60.5,-44.5 parent: 2 type: Transform - uid: 8810 components: - - pos: 12.5,-92.5 + - pos: 59.5,-44.5 parent: 2 type: Transform - uid: 8811 components: - - pos: 12.5,-91.5 + - pos: 58.5,-44.5 parent: 2 type: Transform - uid: 8812 components: - - pos: 12.5,-90.5 + - pos: 57.5,-44.5 parent: 2 type: Transform - uid: 8813 components: - - pos: 12.5,-89.5 + - pos: 56.5,-44.5 parent: 2 type: Transform - uid: 8814 components: - - pos: 11.5,-89.5 + - pos: 55.5,-44.5 parent: 2 type: Transform - uid: 8815 components: - - pos: 10.5,-89.5 + - pos: 54.5,-44.5 parent: 2 type: Transform - uid: 8816 components: - - pos: 9.5,-89.5 + - pos: 53.5,-44.5 parent: 2 type: Transform - uid: 8817 components: - - pos: 8.5,-89.5 + - pos: 52.5,-44.5 parent: 2 type: Transform - uid: 8818 components: - - pos: 7.5,-89.5 + - pos: 51.5,-44.5 parent: 2 type: Transform - uid: 8819 components: - - pos: 6.5,-89.5 + - pos: 50.5,-44.5 parent: 2 type: Transform - uid: 8820 components: - - pos: 5.5,-89.5 + - pos: 69.5,-46.5 parent: 2 type: Transform - uid: 8821 components: - - pos: 4.5,-89.5 + - pos: 72.5,-46.5 parent: 2 type: Transform - uid: 8822 components: - - pos: 3.5,-89.5 + - pos: 73.5,-46.5 parent: 2 type: Transform - uid: 8823 components: - - pos: 16.5,-24.5 + - pos: 74.5,-46.5 parent: 2 type: Transform - uid: 8824 components: - - pos: 17.5,-24.5 + - pos: 75.5,-46.5 parent: 2 type: Transform - uid: 8825 components: - - pos: 18.5,-24.5 + - pos: 75.5,-47.5 parent: 2 type: Transform - uid: 8826 components: - - pos: 19.5,-24.5 + - pos: 75.5,-48.5 parent: 2 type: Transform - uid: 8827 components: - - pos: 20.5,-24.5 + - pos: 75.5,-49.5 parent: 2 type: Transform - uid: 8828 components: - - pos: 21.5,-24.5 + - pos: 75.5,-50.5 parent: 2 type: Transform - uid: 8829 components: - - pos: 21.5,-23.5 + - pos: 75.5,-51.5 parent: 2 type: Transform - uid: 8830 components: - - pos: 21.5,-22.5 + - pos: 75.5,-52.5 parent: 2 type: Transform - uid: 8831 components: - - pos: 21.5,-21.5 + - pos: 75.5,-53.5 parent: 2 type: Transform - uid: 8832 components: - - pos: -30.5,-13.5 + - pos: 75.5,-54.5 parent: 2 type: Transform - uid: 8833 components: - - pos: -29.5,-13.5 + - pos: 75.5,-55.5 parent: 2 type: Transform - uid: 8834 components: - - pos: -28.5,-13.5 + - pos: 75.5,-56.5 parent: 2 type: Transform - uid: 8835 components: - - pos: -27.5,-13.5 + - pos: 74.5,-56.5 parent: 2 type: Transform - uid: 8836 components: - - pos: 4.5,-21.5 + - pos: 74.5,-57.5 parent: 2 type: Transform - uid: 8837 components: - - pos: 4.5,-22.5 + - pos: 73.5,-57.5 parent: 2 type: Transform - uid: 8838 components: - - pos: 4.5,-19.5 + - pos: 72.5,-57.5 parent: 2 type: Transform - uid: 8839 components: - - pos: 4.5,-20.5 + - pos: 71.5,-57.5 parent: 2 type: Transform - uid: 8840 components: - - pos: 10.5,-14.5 + - pos: 71.5,-58.5 parent: 2 type: Transform - uid: 8841 components: - - pos: 11.5,-14.5 + - pos: 71.5,-59.5 parent: 2 type: Transform - uid: 8842 components: - - pos: 12.5,-14.5 + - pos: 71.5,-60.5 parent: 2 type: Transform - uid: 8843 components: - - pos: 12.5,-15.5 + - pos: 71.5,-61.5 parent: 2 type: Transform - uid: 8844 components: - - pos: 12.5,-16.5 + - pos: 70.5,-61.5 parent: 2 type: Transform - uid: 8845 components: - - pos: 11.5,-16.5 + - pos: 69.5,-61.5 parent: 2 type: Transform - uid: 8846 components: - - pos: 10.5,-16.5 + - pos: 68.5,-61.5 parent: 2 type: Transform - uid: 8847 components: - - pos: 9.5,-16.5 + - pos: 68.5,-60.5 parent: 2 type: Transform - uid: 8848 components: - - pos: -76.5,-26.5 + - pos: 68.5,-59.5 parent: 2 type: Transform - uid: 8849 components: - - pos: 4.5,-23.5 + - pos: 69.5,-59.5 parent: 2 type: Transform - uid: 8850 components: - - pos: 31.5,-16.5 + - pos: 12.5,-92.5 parent: 2 type: Transform - uid: 8851 components: - - pos: 31.5,-15.5 + - pos: 12.5,-91.5 parent: 2 type: Transform - uid: 8852 components: - - pos: 33.5,-16.5 + - pos: 12.5,-90.5 parent: 2 type: Transform - uid: 8853 components: - - pos: 33.5,-15.5 + - pos: 12.5,-89.5 parent: 2 type: Transform - uid: 8854 components: - - pos: -65.5,-51.5 + - pos: 11.5,-89.5 parent: 2 type: Transform - uid: 8855 components: - - pos: -65.5,-52.5 + - pos: 10.5,-89.5 parent: 2 type: Transform - uid: 8856 components: - - pos: -65.5,-53.5 + - pos: 9.5,-89.5 parent: 2 type: Transform - uid: 8857 components: - - pos: -65.5,-54.5 + - pos: 8.5,-89.5 parent: 2 type: Transform - uid: 8858 components: - - pos: -71.5,-35.5 + - pos: 7.5,-89.5 parent: 2 type: Transform - uid: 8859 components: - - pos: -69.5,-44.5 + - pos: 6.5,-89.5 parent: 2 type: Transform - uid: 8860 components: - - pos: -69.5,-43.5 + - pos: 5.5,-89.5 parent: 2 type: Transform - uid: 8861 components: - - pos: -69.5,-42.5 + - pos: 4.5,-89.5 parent: 2 type: Transform - uid: 8862 components: - - pos: -69.5,-41.5 + - pos: 3.5,-89.5 parent: 2 type: Transform - uid: 8863 components: - - pos: -69.5,-40.5 + - pos: 16.5,-24.5 parent: 2 type: Transform - uid: 8864 components: - - pos: -70.5,-40.5 + - pos: 17.5,-24.5 parent: 2 type: Transform - uid: 8865 components: - - pos: -71.5,-40.5 + - pos: 18.5,-24.5 parent: 2 type: Transform - uid: 8866 components: - - pos: -71.5,-39.5 + - pos: 19.5,-24.5 parent: 2 type: Transform - uid: 8867 components: - - pos: -71.5,-38.5 + - pos: 20.5,-24.5 parent: 2 type: Transform - uid: 8868 components: - - pos: -78.5,-38.5 + - pos: 21.5,-24.5 parent: 2 type: Transform - uid: 8869 components: - - pos: -77.5,-38.5 + - pos: 21.5,-23.5 parent: 2 type: Transform - uid: 8870 components: - - pos: -69.5,-31.5 + - pos: 21.5,-22.5 parent: 2 type: Transform - uid: 8871 components: - - pos: -72.5,-34.5 + - pos: 21.5,-21.5 parent: 2 type: Transform - uid: 8872 components: - - pos: -72.5,-35.5 + - pos: -30.5,-13.5 parent: 2 type: Transform - uid: 8873 components: - - pos: -79.5,-36.5 + - pos: -29.5,-13.5 parent: 2 type: Transform - uid: 8874 components: - - pos: -79.5,-34.5 + - pos: -28.5,-13.5 parent: 2 type: Transform - uid: 8875 components: - - pos: -79.5,-33.5 + - pos: -27.5,-13.5 parent: 2 type: Transform - uid: 8876 components: - - pos: -79.5,-32.5 + - pos: 4.5,-21.5 parent: 2 type: Transform - uid: 8877 components: - - pos: -79.5,-31.5 + - pos: 4.5,-22.5 parent: 2 type: Transform - uid: 8878 components: - - pos: -79.5,-30.5 + - pos: 4.5,-19.5 parent: 2 type: Transform - uid: 8879 components: - - pos: -79.5,-29.5 + - pos: 4.5,-20.5 parent: 2 type: Transform - uid: 8880 components: - - pos: -79.5,-28.5 + - pos: 10.5,-14.5 parent: 2 type: Transform - uid: 8881 components: - - pos: -78.5,-28.5 + - pos: 11.5,-14.5 parent: 2 type: Transform - uid: 8882 components: - - pos: -77.5,-28.5 + - pos: 12.5,-14.5 parent: 2 type: Transform - uid: 8883 components: - - pos: -76.5,-28.5 + - pos: 12.5,-15.5 parent: 2 type: Transform - uid: 8884 components: - - pos: -75.5,-28.5 + - pos: 12.5,-16.5 parent: 2 type: Transform - uid: 8885 components: - - pos: -73.5,-31.5 + - pos: 11.5,-16.5 parent: 2 type: Transform - uid: 8886 components: - - pos: -71.5,-31.5 + - pos: 10.5,-16.5 parent: 2 type: Transform - uid: 8887 components: - - pos: -67.5,-31.5 + - pos: 9.5,-16.5 parent: 2 type: Transform - uid: 8888 components: - - pos: -66.5,-31.5 + - pos: -76.5,-26.5 parent: 2 type: Transform - uid: 8889 components: - - pos: 18.5,-28.5 + - pos: 4.5,-23.5 parent: 2 type: Transform - uid: 8890 components: - - pos: 18.5,-27.5 + - pos: 31.5,-16.5 parent: 2 type: Transform - uid: 8891 components: - - pos: 5.5,-23.5 + - pos: 31.5,-15.5 parent: 2 type: Transform - uid: 8892 components: - - pos: 7.5,-23.5 + - pos: 33.5,-16.5 parent: 2 type: Transform - uid: 8893 components: - - pos: 6.5,-23.5 + - pos: 33.5,-15.5 parent: 2 type: Transform - uid: 8894 components: - - pos: 8.5,-23.5 + - pos: -65.5,-51.5 parent: 2 type: Transform - uid: 8895 components: - - pos: 9.5,-23.5 + - pos: -65.5,-52.5 parent: 2 type: Transform - uid: 8896 components: - - pos: 10.5,-23.5 + - pos: -65.5,-53.5 parent: 2 type: Transform - uid: 8897 components: - - pos: 11.5,-23.5 + - pos: -65.5,-54.5 parent: 2 type: Transform - uid: 8898 components: - - pos: 12.5,-23.5 + - pos: -71.5,-35.5 parent: 2 type: Transform - uid: 8899 components: - - pos: 12.5,-22.5 + - pos: -69.5,-44.5 parent: 2 type: Transform - uid: 8900 components: - - pos: 12.5,-21.5 + - pos: -69.5,-43.5 parent: 2 type: Transform - uid: 8901 components: - - pos: 13.5,-21.5 + - pos: -69.5,-42.5 parent: 2 type: Transform - uid: 8902 components: - - pos: 14.5,-21.5 + - pos: -69.5,-41.5 parent: 2 type: Transform - uid: 8903 components: - - pos: -71.5,-35.5 + - pos: -69.5,-40.5 parent: 2 type: Transform -- proto: CableHVStack - entities: - uid: 8904 components: - - pos: -39.402794,-17.87967 + - pos: -70.5,-40.5 parent: 2 type: Transform - uid: 8905 components: - - pos: 71.74222,36.65267 + - pos: -71.5,-40.5 parent: 2 type: Transform - uid: 8906 components: - - pos: -0.5088408,-77.44958 + - pos: -71.5,-39.5 parent: 2 type: Transform -- proto: CableMV - entities: - uid: 8907 components: - - pos: -57.5,-21.5 + - pos: -71.5,-38.5 parent: 2 type: Transform - uid: 8908 components: - - pos: 22.5,-39.5 + - pos: -78.5,-38.5 parent: 2 type: Transform - uid: 8909 components: - - pos: 18.5,-31.5 + - pos: -77.5,-38.5 parent: 2 type: Transform - uid: 8910 components: - - pos: 1.5,-5.5 + - pos: -69.5,-31.5 parent: 2 type: Transform - uid: 8911 components: - - pos: 18.5,-27.5 + - pos: -72.5,-34.5 parent: 2 type: Transform - uid: 8912 components: - - pos: 18.5,-29.5 + - pos: -72.5,-35.5 parent: 2 type: Transform - uid: 8913 components: - - pos: 18.5,-30.5 + - pos: -79.5,-36.5 parent: 2 type: Transform - uid: 8914 components: - - pos: 3.5,-3.5 + - pos: -79.5,-34.5 parent: 2 type: Transform - uid: 8915 components: - - pos: 20.5,-32.5 + - pos: -79.5,-33.5 parent: 2 type: Transform - uid: 8916 components: - - pos: 9.5,-4.5 + - pos: -79.5,-32.5 parent: 2 type: Transform - uid: 8917 components: - - pos: 10.5,-2.5 + - pos: -79.5,-31.5 parent: 2 type: Transform - uid: 8918 components: - - pos: 18.5,-32.5 + - pos: -79.5,-30.5 parent: 2 type: Transform - uid: 8919 components: - - pos: 19.5,-32.5 + - pos: -79.5,-29.5 parent: 2 type: Transform - uid: 8920 components: - - pos: 10.5,-1.5 + - pos: -79.5,-28.5 parent: 2 type: Transform - uid: 8921 components: - - pos: 8.5,-1.5 + - pos: -78.5,-28.5 parent: 2 type: Transform - uid: 8922 components: - - pos: 22.5,-36.5 + - pos: -77.5,-28.5 parent: 2 type: Transform - uid: 8923 components: - - pos: 22.5,-32.5 + - pos: -76.5,-28.5 parent: 2 type: Transform - uid: 8924 components: - - pos: 22.5,-34.5 + - pos: -75.5,-28.5 parent: 2 type: Transform - uid: 8925 components: - - pos: 9.5,-1.5 + - pos: -73.5,-31.5 parent: 2 type: Transform - uid: 8926 components: - - pos: 22.5,-37.5 + - pos: -71.5,-31.5 parent: 2 type: Transform - uid: 8927 components: - - pos: 22.5,-33.5 + - pos: -67.5,-31.5 parent: 2 type: Transform - uid: 8928 components: - - pos: 22.5,-35.5 + - pos: -66.5,-31.5 parent: 2 type: Transform - uid: 8929 components: - - pos: 21.5,-32.5 + - pos: 18.5,-28.5 parent: 2 type: Transform - uid: 8930 components: - - pos: 7.5,-1.5 + - pos: 18.5,-27.5 parent: 2 type: Transform - uid: 8931 components: - - pos: 22.5,-38.5 + - pos: 5.5,-23.5 parent: 2 type: Transform - uid: 8932 components: - - pos: 6.5,-1.5 + - pos: 7.5,-23.5 parent: 2 type: Transform - uid: 8933 components: - - pos: 5.5,-1.5 + - pos: 6.5,-23.5 parent: 2 type: Transform - uid: 8934 components: - - pos: -72.5,-38.5 + - pos: 8.5,-23.5 parent: 2 type: Transform - uid: 8935 components: - - pos: -10.5,15.5 + - pos: 9.5,-23.5 parent: 2 type: Transform - uid: 8936 components: - - pos: -6.5,-70.5 + - pos: 10.5,-23.5 parent: 2 type: Transform - uid: 8937 components: - - pos: 18.5,-52.5 + - pos: 11.5,-23.5 parent: 2 type: Transform - uid: 8938 components: - - pos: 10.5,-55.5 + - pos: 12.5,-23.5 parent: 2 type: Transform - uid: 8939 components: - - pos: 37.5,21.5 + - pos: 12.5,-22.5 parent: 2 type: Transform - uid: 8940 components: - - pos: 3.5,-49.5 + - pos: 12.5,-21.5 parent: 2 type: Transform - uid: 8941 components: - - pos: 9.5,-44.5 + - pos: 13.5,-21.5 parent: 2 type: Transform - uid: 8942 components: - - pos: 32.5,0.5 + - pos: 14.5,-21.5 parent: 2 type: Transform - uid: 8943 components: - - pos: 32.5,1.5 + - pos: -71.5,-35.5 parent: 2 type: Transform - uid: 8944 components: - - pos: -2.5,-51.5 + - pos: -56.5,-86.5 parent: 2 type: Transform - uid: 8945 components: - - pos: -2.5,-52.5 + - pos: -56.5,-87.5 parent: 2 type: Transform +- proto: CableHVStack + entities: - uid: 8946 components: - - pos: -2.5,-53.5 + - pos: -39.402794,-17.87967 parent: 2 type: Transform - uid: 8947 components: - - pos: 40.5,-26.5 + - pos: 71.74222,36.65267 parent: 2 type: Transform - uid: 8948 components: - - pos: 31.5,2.5 + - pos: -0.5088408,-77.44958 parent: 2 type: Transform +- proto: CableMV + entities: - uid: 8949 components: - - pos: -6.5,-71.5 + - pos: -57.5,-21.5 parent: 2 type: Transform - uid: 8950 components: - - pos: -6.5,-69.5 + - pos: 22.5,-39.5 parent: 2 type: Transform - uid: 8951 components: - - pos: 27.5,-28.5 + - pos: 18.5,-31.5 parent: 2 type: Transform - uid: 8952 components: - - pos: 4.5,-49.5 + - pos: 1.5,-5.5 parent: 2 type: Transform - uid: 8953 components: - - pos: 3.5,-52.5 + - pos: 18.5,-27.5 parent: 2 type: Transform - uid: 8954 components: - - pos: -0.5,-53.5 + - pos: 18.5,-29.5 parent: 2 type: Transform - uid: 8955 components: - - pos: 8.5,-43.5 + - pos: 18.5,-30.5 parent: 2 type: Transform - uid: 8956 components: - - pos: -14.5,-69.5 + - pos: 3.5,-3.5 parent: 2 type: Transform - uid: 8957 components: - - pos: 9.5,-43.5 + - pos: 20.5,-32.5 parent: 2 type: Transform - uid: 8958 components: - - pos: 24.5,-28.5 + - pos: 9.5,-4.5 parent: 2 type: Transform - uid: 8959 components: - - pos: 45.5,-64.5 + - pos: 10.5,-2.5 parent: 2 type: Transform - uid: 8960 components: - - pos: 5.5,-45.5 + - pos: 18.5,-32.5 parent: 2 type: Transform - uid: 8961 components: - - pos: 5.5,-44.5 + - pos: 19.5,-32.5 parent: 2 type: Transform - uid: 8962 components: - - pos: 4.5,-43.5 + - pos: 10.5,-1.5 parent: 2 type: Transform - uid: 8963 components: - - pos: 3.5,-43.5 + - pos: 8.5,-1.5 parent: 2 type: Transform - uid: 8964 components: - - pos: 3.5,-42.5 + - pos: 22.5,-36.5 parent: 2 type: Transform - uid: 8965 components: - - pos: 2.5,-42.5 + - pos: 22.5,-32.5 parent: 2 type: Transform - uid: 8966 components: - - pos: 1.5,-42.5 + - pos: 22.5,-34.5 parent: 2 type: Transform - uid: 8967 components: - - pos: 0.5,-42.5 + - pos: 9.5,-1.5 parent: 2 type: Transform - uid: 8968 components: - - pos: 0.5,-41.5 + - pos: 22.5,-37.5 parent: 2 type: Transform - uid: 8969 components: - - pos: 0.5,-40.5 + - pos: 22.5,-33.5 parent: 2 type: Transform - uid: 8970 components: - - pos: 15.5,-58.5 + - pos: 22.5,-35.5 parent: 2 type: Transform - uid: 8971 components: - - pos: 15.5,-57.5 + - pos: 21.5,-32.5 parent: 2 type: Transform - uid: 8972 components: - - pos: 14.5,-57.5 + - pos: 7.5,-1.5 parent: 2 type: Transform - uid: 8973 components: - - pos: 12.5,-57.5 + - pos: 22.5,-38.5 parent: 2 type: Transform - uid: 8974 components: - - pos: 12.5,-56.5 + - pos: 6.5,-1.5 parent: 2 type: Transform - uid: 8975 components: - - pos: 11.5,-55.5 + - pos: 5.5,-1.5 parent: 2 type: Transform - uid: 8976 components: - - pos: 12.5,-55.5 + - pos: -72.5,-38.5 parent: 2 type: Transform - uid: 8977 components: - - pos: 8.5,-55.5 + - pos: -10.5,15.5 parent: 2 type: Transform - uid: 8978 components: - - pos: 8.5,-54.5 + - pos: -6.5,-70.5 parent: 2 type: Transform - uid: 8979 components: - - pos: 8.5,-53.5 + - pos: 18.5,-52.5 parent: 2 type: Transform - uid: 8980 components: - - pos: 7.5,-53.5 + - pos: 10.5,-55.5 parent: 2 type: Transform - uid: 8981 components: - - pos: 16.5,-52.5 + - pos: 37.5,21.5 parent: 2 type: Transform - uid: 8982 components: - - pos: 43.5,-26.5 + - pos: 3.5,-49.5 parent: 2 type: Transform - uid: 8983 components: - - pos: 0.5,14.5 + - pos: 9.5,-44.5 parent: 2 type: Transform - uid: 8984 components: - - pos: 37.5,13.5 + - pos: 32.5,0.5 parent: 2 type: Transform - uid: 8985 components: - - pos: 38.5,14.5 + - pos: 32.5,1.5 parent: 2 type: Transform - uid: 8986 components: - - pos: -5.5,-69.5 + - pos: -2.5,-51.5 parent: 2 type: Transform - uid: 8987 components: - - pos: 38.5,-28.5 + - pos: -2.5,-52.5 parent: 2 type: Transform - uid: 8988 components: - - pos: 35.5,-29.5 + - pos: -2.5,-53.5 parent: 2 type: Transform - uid: 8989 components: - - pos: 37.5,-30.5 + - pos: 40.5,-26.5 parent: 2 type: Transform - uid: 8990 components: - - pos: -11.5,-70.5 + - pos: 31.5,2.5 parent: 2 type: Transform - uid: 8991 components: - - pos: 21.5,15.5 + - pos: -6.5,-71.5 parent: 2 type: Transform - uid: 8992 components: - - pos: 5.5,-48.5 + - pos: -6.5,-69.5 parent: 2 type: Transform - uid: 8993 components: - - pos: 7.5,-47.5 + - pos: 27.5,-28.5 parent: 2 type: Transform - uid: 8994 components: - - pos: 29.5,-26.5 + - pos: 4.5,-49.5 parent: 2 type: Transform - uid: 8995 components: - - pos: 0.5,11.5 + - pos: 3.5,-52.5 parent: 2 type: Transform - uid: 8996 components: - - pos: 28.5,18.5 + - pos: -0.5,-53.5 parent: 2 type: Transform - uid: 8997 components: - - pos: -11.5,-71.5 + - pos: 8.5,-43.5 parent: 2 type: Transform - uid: 8998 components: - - pos: -7.5,-71.5 + - pos: -14.5,-69.5 parent: 2 type: Transform - uid: 8999 components: - - pos: -3.5,-68.5 + - pos: 9.5,-43.5 parent: 2 type: Transform - uid: 9000 components: - - pos: -1.5,-53.5 + - pos: 24.5,-28.5 parent: 2 type: Transform - uid: 9001 components: - - pos: 9.5,-45.5 + - pos: 45.5,-64.5 parent: 2 type: Transform - uid: 9002 components: - - pos: -19.5,25.5 + - pos: 5.5,-45.5 parent: 2 type: Transform - uid: 9003 components: - - pos: 1.5,9.5 + - pos: 5.5,-44.5 parent: 2 type: Transform - uid: 9004 components: - - pos: -11.5,-69.5 + - pos: 4.5,-43.5 parent: 2 type: Transform - uid: 9005 components: - - pos: -8.5,-71.5 + - pos: 3.5,-43.5 parent: 2 type: Transform - uid: 9006 components: - - pos: -10.5,-71.5 + - pos: 3.5,-42.5 parent: 2 type: Transform - uid: 9007 components: - - pos: 21.5,-9.5 + - pos: 2.5,-42.5 parent: 2 type: Transform - uid: 9008 components: - - pos: 29.5,18.5 + - pos: 1.5,-42.5 parent: 2 type: Transform - uid: 9009 components: - - pos: 29.5,19.5 + - pos: 0.5,-42.5 parent: 2 type: Transform - uid: 9010 components: - - pos: 21.5,17.5 + - pos: 0.5,-41.5 parent: 2 type: Transform - uid: 9011 components: - - pos: 32.5,2.5 + - pos: 0.5,-40.5 parent: 2 type: Transform - uid: 9012 components: - - pos: 32.5,-0.5 + - pos: 15.5,-58.5 parent: 2 type: Transform - uid: 9013 components: - - pos: 32.5,-1.5 + - pos: 15.5,-57.5 parent: 2 type: Transform - uid: 9014 components: - - pos: 9.5,-47.5 + - pos: 14.5,-57.5 parent: 2 type: Transform - uid: 9015 components: - - pos: 8.5,-45.5 + - pos: 12.5,-57.5 parent: 2 type: Transform - uid: 9016 components: - - pos: 5.5,-46.5 + - pos: 12.5,-56.5 parent: 2 type: Transform - uid: 9017 components: - - pos: 3.5,-50.5 + - pos: 11.5,-55.5 parent: 2 type: Transform - uid: 9018 components: - - pos: 13.5,-14.5 + - pos: 12.5,-55.5 parent: 2 type: Transform - uid: 9019 components: - - pos: 5.5,-49.5 + - pos: 8.5,-55.5 parent: 2 type: Transform - uid: 9020 components: - - pos: 9.5,-55.5 + - pos: 8.5,-54.5 parent: 2 type: Transform - uid: 9021 components: - - pos: -3.5,14.5 + - pos: 8.5,-53.5 parent: 2 type: Transform - uid: 9022 components: - - pos: -2.5,14.5 + - pos: 7.5,-53.5 parent: 2 type: Transform - uid: 9023 components: - - pos: -1.5,14.5 + - pos: 16.5,-52.5 parent: 2 type: Transform - uid: 9024 components: - - pos: -0.5,14.5 + - pos: 43.5,-26.5 parent: 2 type: Transform - uid: 9025 components: - - pos: -5.5,14.5 + - pos: 0.5,14.5 parent: 2 type: Transform - uid: 9026 components: - - pos: -6.5,14.5 + - pos: 37.5,13.5 parent: 2 type: Transform - uid: 9027 components: - - pos: 1.5,10.5 + - pos: 38.5,14.5 parent: 2 type: Transform - uid: 9028 components: - - pos: 0.5,10.5 + - pos: -5.5,-69.5 parent: 2 type: Transform - uid: 9029 components: - - pos: 18.5,-28.5 + - pos: 38.5,-28.5 parent: 2 type: Transform - uid: 9030 components: - - pos: 21.5,16.5 + - pos: 35.5,-29.5 parent: 2 type: Transform - uid: 9031 components: - - pos: -19.5,24.5 + - pos: 37.5,-30.5 parent: 2 type: Transform - uid: 9032 components: - - pos: 12.5,-15.5 + - pos: -11.5,-70.5 parent: 2 type: Transform - uid: 9033 components: - - pos: 31.5,-4.5 + - pos: 21.5,15.5 parent: 2 type: Transform - uid: 9034 components: - - pos: 30.5,-4.5 + - pos: 5.5,-48.5 parent: 2 type: Transform - uid: 9035 components: - - pos: 30.5,-3.5 + - pos: 7.5,-47.5 parent: 2 type: Transform - uid: 9036 components: - - pos: 30.5,-2.5 + - pos: 29.5,-26.5 parent: 2 type: Transform - uid: 9037 components: - - pos: -9.5,-21.5 + - pos: 0.5,11.5 parent: 2 type: Transform - uid: 9038 components: - - pos: -8.5,-19.5 + - pos: 28.5,18.5 parent: 2 type: Transform - uid: 9039 components: - - pos: -8.5,-20.5 + - pos: -11.5,-71.5 parent: 2 type: Transform - uid: 9040 components: - - pos: -8.5,-21.5 + - pos: -7.5,-71.5 parent: 2 type: Transform - uid: 9041 components: - - pos: -10.5,-21.5 + - pos: -3.5,-68.5 parent: 2 type: Transform - uid: 9042 components: - - pos: -10.5,-20.5 + - pos: -1.5,-53.5 parent: 2 type: Transform - uid: 9043 components: - - pos: 10.5,-47.5 + - pos: 9.5,-45.5 parent: 2 type: Transform - uid: 9044 components: - - pos: 11.5,-47.5 + - pos: -19.5,25.5 parent: 2 type: Transform - uid: 9045 components: - - pos: 10.5,-45.5 + - pos: 1.5,9.5 parent: 2 type: Transform - uid: 9046 components: - - pos: 3.5,-51.5 + - pos: -11.5,-69.5 parent: 2 type: Transform - uid: 9047 components: - - pos: 3.5,-53.5 + - pos: -8.5,-71.5 parent: 2 type: Transform - uid: 9048 components: - - pos: 1.5,-53.5 + - pos: -10.5,-71.5 parent: 2 type: Transform - uid: 9049 components: - - pos: 0.5,-53.5 + - pos: 21.5,-9.5 parent: 2 type: Transform - uid: 9050 components: - - pos: 7.5,-43.5 + - pos: 29.5,18.5 parent: 2 type: Transform - uid: 9051 components: - - pos: -20.5,-69.5 + - pos: 29.5,19.5 parent: 2 type: Transform - uid: 9052 components: - - pos: -21.5,-68.5 + - pos: 21.5,17.5 parent: 2 type: Transform - uid: 9053 components: - - pos: -9.5,-71.5 + - pos: 32.5,2.5 parent: 2 type: Transform - uid: 9054 components: - - pos: -3.5,-69.5 + - pos: 32.5,-0.5 parent: 2 type: Transform - uid: 9055 components: - - pos: 2.5,-53.5 + - pos: 32.5,-1.5 parent: 2 type: Transform - uid: 9056 components: - - pos: 18.5,-11.5 + - pos: 9.5,-47.5 parent: 2 type: Transform - uid: 9057 components: - - pos: 17.5,-11.5 + - pos: 8.5,-45.5 parent: 2 type: Transform - uid: 9058 components: - - pos: 44.5,-64.5 + - pos: 5.5,-46.5 parent: 2 type: Transform - uid: 9059 components: - - pos: 46.5,-65.5 + - pos: 3.5,-50.5 parent: 2 type: Transform - uid: 9060 components: - - pos: 38.5,-30.5 + - pos: 13.5,-14.5 parent: 2 type: Transform - uid: 9061 components: - - pos: 36.5,-30.5 + - pos: 5.5,-49.5 parent: 2 type: Transform - uid: 9062 components: - - pos: 28.5,-28.5 + - pos: 9.5,-55.5 parent: 2 type: Transform - uid: 9063 components: - - pos: 35.5,-27.5 + - pos: -3.5,14.5 parent: 2 type: Transform - uid: 9064 components: - - pos: 35.5,-26.5 + - pos: -2.5,14.5 parent: 2 type: Transform - uid: 9065 components: - - pos: 36.5,-26.5 + - pos: -1.5,14.5 parent: 2 type: Transform - uid: 9066 components: - - pos: 37.5,-26.5 + - pos: -0.5,14.5 parent: 2 type: Transform - uid: 9067 components: - - pos: 38.5,-26.5 + - pos: -5.5,14.5 parent: 2 type: Transform - uid: 9068 components: - - pos: 39.5,-26.5 + - pos: -6.5,14.5 parent: 2 type: Transform - uid: 9069 components: - - pos: 41.5,-26.5 + - pos: 1.5,10.5 parent: 2 type: Transform - uid: 9070 components: - - pos: 42.5,-26.5 + - pos: 0.5,10.5 parent: 2 type: Transform - uid: 9071 components: - - pos: 0.5,12.5 + - pos: 18.5,-28.5 parent: 2 type: Transform - uid: 9072 components: - - pos: 0.5,13.5 + - pos: 21.5,16.5 parent: 2 type: Transform - uid: 9073 components: - - pos: 38.5,-29.5 + - pos: -19.5,24.5 parent: 2 type: Transform - uid: 9074 components: - - pos: 8.5,-47.5 + - pos: 12.5,-15.5 parent: 2 type: Transform - uid: 9075 components: - - pos: 6.5,-19.5 + - pos: 31.5,-4.5 parent: 2 type: Transform - uid: 9076 components: - - pos: 6.5,-11.5 + - pos: 30.5,-4.5 parent: 2 type: Transform - uid: 9077 components: - - pos: 7.5,-11.5 + - pos: 30.5,-3.5 parent: 2 type: Transform - uid: 9078 components: - - pos: 8.5,-11.5 + - pos: 30.5,-2.5 parent: 2 type: Transform - uid: 9079 components: - - pos: 8.5,-10.5 + - pos: -9.5,-21.5 parent: 2 type: Transform - uid: 9080 components: - - pos: 8.5,-9.5 + - pos: -8.5,-19.5 parent: 2 type: Transform - uid: 9081 components: - - pos: 8.5,-7.5 + - pos: -8.5,-20.5 parent: 2 type: Transform - uid: 9082 components: - - pos: 8.5,-5.5 + - pos: -8.5,-21.5 parent: 2 type: Transform - uid: 9083 components: - - pos: 8.5,-4.5 + - pos: -10.5,-21.5 parent: 2 type: Transform - uid: 9084 components: - - pos: 8.5,-3.5 + - pos: -10.5,-20.5 parent: 2 type: Transform - uid: 9085 components: - - pos: -21.5,-69.5 + - pos: 10.5,-47.5 parent: 2 type: Transform - uid: 9086 components: - - pos: 10.5,-14.5 + - pos: 11.5,-47.5 parent: 2 type: Transform - uid: 9087 components: - - pos: -19.5,-69.5 + - pos: 10.5,-45.5 parent: 2 type: Transform - uid: 9088 components: - - pos: 9.5,-14.5 + - pos: 3.5,-51.5 parent: 2 type: Transform - uid: 9089 components: - - pos: 15.5,-14.5 + - pos: 3.5,-53.5 parent: 2 type: Transform - uid: 9090 components: - - pos: 12.5,-14.5 + - pos: 1.5,-53.5 parent: 2 type: Transform - uid: 9091 components: - - pos: -16.5,-69.5 + - pos: 0.5,-53.5 parent: 2 type: Transform - uid: 9092 components: - - pos: 8.5,-6.5 + - pos: 7.5,-43.5 parent: 2 type: Transform - uid: 9093 components: - - pos: 8.5,-8.5 + - pos: -20.5,-69.5 parent: 2 type: Transform - uid: 9094 components: - - pos: -4.5,14.5 + - pos: -21.5,-68.5 parent: 2 type: Transform - uid: 9095 components: - - pos: 10.5,-49.5 + - pos: -9.5,-71.5 parent: 2 type: Transform - uid: 9096 components: - - pos: 19.5,-51.5 + - pos: -3.5,-69.5 parent: 2 type: Transform - uid: 9097 components: - - pos: 17.5,-52.5 + - pos: 2.5,-53.5 parent: 2 type: Transform - uid: 9098 components: - - pos: 15.5,-52.5 + - pos: 18.5,-11.5 parent: 2 type: Transform - uid: 9099 components: - - pos: 14.5,-51.5 + - pos: 17.5,-11.5 parent: 2 type: Transform - uid: 9100 components: - - pos: 14.5,-50.5 + - pos: 44.5,-64.5 parent: 2 type: Transform - uid: 9101 components: - - pos: 14.5,-49.5 + - pos: 46.5,-65.5 parent: 2 type: Transform - uid: 9102 components: - - pos: 13.5,-49.5 + - pos: 38.5,-30.5 parent: 2 type: Transform - uid: 9103 components: - - pos: 11.5,-49.5 + - pos: 36.5,-30.5 parent: 2 type: Transform - uid: 9104 components: - - pos: 16.5,-14.5 + - pos: 28.5,-28.5 parent: 2 type: Transform - uid: 9105 components: - - pos: 17.5,-14.5 + - pos: 35.5,-27.5 parent: 2 type: Transform - uid: 9106 components: - - pos: 17.5,-13.5 + - pos: 35.5,-26.5 parent: 2 type: Transform - uid: 9107 components: - - pos: 17.5,-12.5 + - pos: 36.5,-26.5 parent: 2 type: Transform - uid: 9108 components: - - pos: 19.5,-11.5 + - pos: 37.5,-26.5 parent: 2 type: Transform - uid: 9109 components: - - pos: 21.5,-11.5 + - pos: 38.5,-26.5 parent: 2 type: Transform - uid: 9110 components: - - pos: 5.5,-47.5 + - pos: 39.5,-26.5 parent: 2 type: Transform - uid: 9111 components: - - pos: 19.5,-52.5 + - pos: 41.5,-26.5 parent: 2 type: Transform - uid: 9112 components: - - pos: 32.5,-4.5 + - pos: 42.5,-26.5 parent: 2 type: Transform - uid: 9113 components: - - pos: 6.5,-43.5 + - pos: 0.5,12.5 parent: 2 type: Transform - uid: 9114 components: - - pos: 14.5,-14.5 + - pos: 0.5,13.5 parent: 2 type: Transform - uid: 9115 components: - - pos: 6.5,-14.5 + - pos: 38.5,-29.5 parent: 2 type: Transform - uid: 9116 components: - - pos: 7.5,-14.5 + - pos: 8.5,-47.5 parent: 2 type: Transform - uid: 9117 components: - - pos: 8.5,-14.5 + - pos: 6.5,-19.5 parent: 2 type: Transform - uid: 9118 components: - - pos: 8.5,-16.5 + - pos: 6.5,-11.5 parent: 2 type: Transform - uid: 9119 components: - - pos: 21.5,-28.5 + - pos: 7.5,-11.5 parent: 2 type: Transform - uid: 9120 components: - - pos: 21.5,-10.5 + - pos: 8.5,-11.5 parent: 2 type: Transform - uid: 9121 components: - - pos: 12.5,-49.5 + - pos: 8.5,-10.5 parent: 2 type: Transform - uid: 9122 components: - - pos: 13.5,-57.5 + - pos: 8.5,-9.5 parent: 2 type: Transform - uid: 9123 components: - - pos: 14.5,-52.5 + - pos: 8.5,-7.5 parent: 2 type: Transform - uid: 9124 components: - - pos: 32.5,-2.5 + - pos: 8.5,-5.5 parent: 2 type: Transform - uid: 9125 components: - - pos: -4.5,-69.5 + - pos: 8.5,-4.5 parent: 2 type: Transform - uid: 9126 components: - - pos: 5.5,-43.5 + - pos: 8.5,-3.5 parent: 2 type: Transform - uid: 9127 components: - - pos: 38.5,16.5 + - pos: -21.5,-69.5 parent: 2 type: Transform - uid: 9128 components: - - pos: 37.5,14.5 + - pos: 10.5,-14.5 parent: 2 type: Transform - uid: 9129 components: - - pos: 7.5,-46.5 + - pos: -19.5,-69.5 parent: 2 type: Transform - uid: 9130 components: - - pos: 27.5,18.5 + - pos: 9.5,-14.5 parent: 2 type: Transform - uid: 9131 components: - - pos: 32.5,-3.5 + - pos: 15.5,-14.5 parent: 2 type: Transform - uid: 9132 components: - - pos: -18.5,-69.5 + - pos: 12.5,-14.5 parent: 2 type: Transform - uid: 9133 components: - - pos: -13.5,-69.5 + - pos: -16.5,-69.5 parent: 2 type: Transform - uid: 9134 components: - - pos: 26.5,-28.5 + - pos: 8.5,-6.5 parent: 2 type: Transform - uid: 9135 components: - - pos: 25.5,-28.5 + - pos: 8.5,-8.5 parent: 2 type: Transform - uid: 9136 components: - - pos: 23.5,-28.5 + - pos: -4.5,14.5 parent: 2 type: Transform - uid: 9137 components: - - pos: 22.5,-28.5 + - pos: 10.5,-49.5 parent: 2 type: Transform - uid: 9138 components: - - pos: 20.5,-28.5 + - pos: 19.5,-51.5 parent: 2 type: Transform - uid: 9139 components: - - pos: 7.5,-45.5 + - pos: 17.5,-52.5 parent: 2 type: Transform - uid: 9140 components: - - pos: 11.5,-45.5 + - pos: 15.5,-52.5 parent: 2 type: Transform - uid: 9141 components: - - pos: 11.5,-14.5 + - pos: 14.5,-51.5 parent: 2 type: Transform - uid: 9142 components: - - pos: 20.5,-11.5 + - pos: 14.5,-50.5 parent: 2 type: Transform - uid: 9143 components: - - pos: -17.5,-69.5 + - pos: 14.5,-49.5 parent: 2 type: Transform - uid: 9144 components: - - pos: 22.5,17.5 + - pos: 13.5,-49.5 parent: 2 type: Transform - uid: 9145 components: - - pos: 23.5,17.5 + - pos: 11.5,-49.5 parent: 2 type: Transform - uid: 9146 components: - - pos: 23.5,18.5 + - pos: 16.5,-14.5 parent: 2 type: Transform - uid: 9147 components: - - pos: 24.5,18.5 + - pos: 17.5,-14.5 parent: 2 type: Transform - uid: 9148 components: - - pos: 25.5,18.5 + - pos: 17.5,-13.5 parent: 2 type: Transform - uid: 9149 components: - - pos: 26.5,18.5 + - pos: 17.5,-12.5 parent: 2 type: Transform - uid: 9150 components: - - pos: 35.5,-28.5 + - pos: 19.5,-11.5 parent: 2 type: Transform - uid: 9151 components: - - pos: 35.5,-30.5 + - pos: 21.5,-11.5 parent: 2 type: Transform - uid: 9152 components: - - pos: -15.5,-69.5 + - pos: 5.5,-47.5 parent: 2 type: Transform - uid: 9153 components: - - pos: -12.5,-69.5 + - pos: 19.5,-52.5 parent: 2 type: Transform - uid: 9154 components: - - pos: 33.5,23.5 + - pos: 32.5,-4.5 parent: 2 type: Transform - uid: 9155 components: - - pos: 29.5,20.5 + - pos: 6.5,-43.5 parent: 2 type: Transform - uid: 9156 components: - - pos: 29.5,21.5 + - pos: 14.5,-14.5 parent: 2 type: Transform - uid: 9157 components: - - pos: 28.5,21.5 + - pos: 6.5,-14.5 parent: 2 type: Transform - uid: 9158 components: - - pos: 27.5,21.5 + - pos: 7.5,-14.5 parent: 2 type: Transform - uid: 9159 components: - - pos: 26.5,21.5 + - pos: 8.5,-14.5 parent: 2 type: Transform - uid: 9160 components: - - pos: 25.5,21.5 + - pos: 8.5,-16.5 parent: 2 type: Transform - uid: 9161 components: - - pos: 25.5,22.5 + - pos: 21.5,-28.5 parent: 2 type: Transform - uid: 9162 components: - - pos: 25.5,23.5 + - pos: 21.5,-10.5 parent: 2 type: Transform - uid: 9163 components: - - pos: 25.5,24.5 + - pos: 12.5,-49.5 parent: 2 type: Transform - uid: 9164 components: - - pos: 24.5,24.5 + - pos: 13.5,-57.5 parent: 2 type: Transform - uid: 9165 components: - - pos: 30.5,21.5 + - pos: 14.5,-52.5 parent: 2 type: Transform - uid: 9166 components: - - pos: 31.5,21.5 + - pos: 32.5,-2.5 parent: 2 type: Transform - uid: 9167 components: - - pos: 32.5,21.5 + - pos: -4.5,-69.5 parent: 2 type: Transform - uid: 9168 components: - - pos: 32.5,22.5 + - pos: 5.5,-43.5 parent: 2 type: Transform - uid: 9169 components: - - pos: 32.5,23.5 + - pos: 38.5,16.5 parent: 2 type: Transform - uid: 9170 components: - - pos: 33.5,24.5 + - pos: 37.5,14.5 parent: 2 type: Transform - uid: 9171 components: - - pos: 33.5,25.5 + - pos: 7.5,-46.5 parent: 2 type: Transform - uid: 9172 components: - - pos: 46.5,-64.5 + - pos: 27.5,18.5 parent: 2 type: Transform - uid: 9173 components: - - pos: -13.5,42.5 + - pos: 32.5,-3.5 parent: 2 type: Transform - uid: 9174 components: - - pos: -14.5,42.5 + - pos: -18.5,-69.5 parent: 2 type: Transform - uid: 9175 components: - - pos: -19.5,23.5 + - pos: -13.5,-69.5 parent: 2 type: Transform - uid: 9176 components: - - pos: -19.5,22.5 + - pos: 26.5,-28.5 parent: 2 type: Transform - uid: 9177 components: - - pos: 32.5,-9.5 + - pos: 25.5,-28.5 parent: 2 type: Transform - uid: 9178 components: - - pos: 63.5,7.5 + - pos: 23.5,-28.5 parent: 2 type: Transform - uid: 9179 components: - - pos: 63.5,6.5 + - pos: 22.5,-28.5 parent: 2 type: Transform - uid: 9180 components: - - pos: 63.5,5.5 + - pos: 20.5,-28.5 parent: 2 type: Transform - uid: 9181 components: - - pos: 63.5,4.5 + - pos: 7.5,-45.5 parent: 2 type: Transform - uid: 9182 components: - - pos: 62.5,4.5 + - pos: 11.5,-45.5 parent: 2 type: Transform - uid: 9183 components: - - pos: 61.5,4.5 + - pos: 11.5,-14.5 parent: 2 type: Transform - uid: 9184 components: - - pos: 60.5,4.5 + - pos: 20.5,-11.5 parent: 2 type: Transform - uid: 9185 components: - - pos: 60.5,5.5 + - pos: -17.5,-69.5 parent: 2 type: Transform - uid: 9186 components: - - pos: 60.5,6.5 + - pos: 22.5,17.5 parent: 2 type: Transform - uid: 9187 components: - - pos: 60.5,7.5 + - pos: 23.5,17.5 parent: 2 type: Transform - uid: 9188 components: - - pos: 60.5,8.5 + - pos: 23.5,18.5 parent: 2 type: Transform - uid: 9189 components: - - pos: 60.5,9.5 + - pos: 24.5,18.5 parent: 2 type: Transform - uid: 9190 components: - - pos: 59.5,9.5 + - pos: 25.5,18.5 parent: 2 type: Transform - uid: 9191 components: - - pos: 58.5,9.5 + - pos: 26.5,18.5 parent: 2 type: Transform - uid: 9192 components: - - pos: 58.5,10.5 + - pos: 35.5,-28.5 parent: 2 type: Transform - uid: 9193 components: - - pos: 58.5,11.5 + - pos: 35.5,-30.5 parent: 2 type: Transform - uid: 9194 components: - - pos: 38.5,15.5 + - pos: -15.5,-69.5 parent: 2 type: Transform - uid: 9195 components: - - pos: 22.5,-8.5 + - pos: -12.5,-69.5 parent: 2 type: Transform - uid: 9196 components: - - pos: 23.5,-8.5 + - pos: 33.5,23.5 parent: 2 type: Transform - uid: 9197 components: - - pos: 24.5,-8.5 + - pos: 29.5,20.5 parent: 2 type: Transform - uid: 9198 components: - - pos: 25.5,-8.5 + - pos: 29.5,21.5 parent: 2 type: Transform - uid: 9199 components: - - pos: 26.5,-8.5 + - pos: 28.5,21.5 parent: 2 type: Transform - uid: 9200 components: - - pos: 27.5,-8.5 + - pos: 27.5,21.5 parent: 2 type: Transform - uid: 9201 components: - - pos: 29.5,-8.5 + - pos: 26.5,21.5 parent: 2 type: Transform - uid: 9202 components: - - pos: 28.5,-8.5 + - pos: 25.5,21.5 parent: 2 type: Transform - uid: 9203 components: - - pos: 30.5,-8.5 + - pos: 25.5,22.5 parent: 2 type: Transform - uid: 9204 components: - - pos: 31.5,-8.5 + - pos: 25.5,23.5 parent: 2 type: Transform - uid: 9205 components: - - pos: 32.5,-8.5 + - pos: 25.5,24.5 parent: 2 type: Transform - uid: 9206 components: - - pos: 47.5,-3.5 + - pos: 24.5,24.5 parent: 2 type: Transform - uid: 9207 components: - - pos: 47.5,-2.5 + - pos: 30.5,21.5 parent: 2 type: Transform - uid: 9208 components: - - pos: 47.5,-1.5 + - pos: 31.5,21.5 parent: 2 type: Transform - uid: 9209 components: - - pos: 46.5,-1.5 + - pos: 32.5,21.5 parent: 2 type: Transform - uid: 9210 components: - - pos: 46.5,-0.5 + - pos: 32.5,22.5 parent: 2 type: Transform - uid: 9211 components: - - pos: 46.5,0.5 + - pos: 32.5,23.5 parent: 2 type: Transform - uid: 9212 components: - - pos: 47.5,0.5 + - pos: 33.5,24.5 parent: 2 type: Transform - uid: 9213 components: - - pos: 48.5,0.5 + - pos: 33.5,25.5 parent: 2 type: Transform - uid: 9214 components: - - pos: 49.5,0.5 + - pos: 46.5,-64.5 parent: 2 type: Transform - uid: 9215 components: - - pos: 49.5,1.5 + - pos: -13.5,42.5 parent: 2 type: Transform - uid: 9216 components: - - pos: 49.5,2.5 + - pos: -14.5,42.5 parent: 2 type: Transform - uid: 9217 components: - - pos: 49.5,3.5 + - pos: -19.5,23.5 parent: 2 type: Transform - uid: 9218 components: - - pos: 48.5,-5.5 + - pos: -19.5,22.5 parent: 2 type: Transform - uid: 9219 components: - - pos: 47.5,-5.5 + - pos: 32.5,-9.5 parent: 2 type: Transform - uid: 9220 components: - - pos: 47.5,-6.5 + - pos: 63.5,7.5 parent: 2 type: Transform - uid: 9221 components: - - pos: 47.5,-7.5 + - pos: 63.5,6.5 parent: 2 type: Transform - uid: 9222 components: - - pos: 47.5,-8.5 + - pos: 63.5,5.5 parent: 2 type: Transform - uid: 9223 components: - - pos: 48.5,-8.5 + - pos: 63.5,4.5 parent: 2 type: Transform - uid: 9224 components: - - pos: 49.5,-8.5 + - pos: 62.5,4.5 parent: 2 type: Transform - uid: 9225 components: - - pos: 50.5,-8.5 + - pos: 61.5,4.5 parent: 2 type: Transform - uid: 9226 components: - - pos: 51.5,-8.5 + - pos: 60.5,4.5 parent: 2 type: Transform - uid: 9227 components: - - pos: 52.5,-8.5 + - pos: 60.5,5.5 parent: 2 type: Transform - uid: 9228 components: - - pos: 52.5,-7.5 + - pos: 60.5,6.5 parent: 2 type: Transform - uid: 9229 components: - - pos: 52.5,-6.5 + - pos: 60.5,7.5 parent: 2 type: Transform - uid: 9230 components: - - pos: 53.5,-6.5 + - pos: 60.5,8.5 parent: 2 type: Transform - uid: 9231 components: - - pos: 53.5,-5.5 + - pos: 60.5,9.5 parent: 2 type: Transform - uid: 9232 components: - - pos: 54.5,-5.5 + - pos: 59.5,9.5 parent: 2 type: Transform - uid: 9233 components: - - pos: 55.5,-5.5 + - pos: 58.5,9.5 parent: 2 type: Transform - uid: 9234 components: - - pos: 56.5,-5.5 + - pos: 58.5,10.5 parent: 2 type: Transform - uid: 9235 components: - - pos: 57.5,-5.5 + - pos: 58.5,11.5 parent: 2 type: Transform - uid: 9236 components: - - pos: 58.5,-5.5 + - pos: 38.5,15.5 parent: 2 type: Transform - uid: 9237 components: - - pos: 59.5,-5.5 + - pos: 22.5,-8.5 parent: 2 type: Transform - uid: 9238 components: - - pos: 59.5,-4.5 + - pos: 23.5,-8.5 parent: 2 type: Transform - uid: 9239 components: - - pos: 43.5,-64.5 + - pos: 24.5,-8.5 parent: 2 type: Transform - uid: 9240 components: - - pos: 38.5,-46.5 + - pos: 25.5,-8.5 parent: 2 type: Transform - uid: 9241 components: - - pos: 38.5,-45.5 + - pos: 26.5,-8.5 parent: 2 type: Transform - uid: 9242 components: - - pos: 38.5,-44.5 + - pos: 27.5,-8.5 parent: 2 type: Transform - uid: 9243 components: - - pos: 38.5,-43.5 + - pos: 29.5,-8.5 parent: 2 type: Transform - uid: 9244 components: - - pos: 39.5,-43.5 + - pos: 28.5,-8.5 parent: 2 type: Transform - uid: 9245 components: - - pos: 40.5,-43.5 + - pos: 30.5,-8.5 parent: 2 type: Transform - uid: 9246 components: - - pos: 41.5,-43.5 + - pos: 31.5,-8.5 parent: 2 type: Transform - uid: 9247 components: - - pos: 42.5,-43.5 + - pos: 32.5,-8.5 parent: 2 type: Transform - uid: 9248 components: - - pos: 43.5,-43.5 + - pos: 47.5,-3.5 parent: 2 type: Transform - uid: 9249 components: - - pos: 44.5,-43.5 + - pos: 47.5,-2.5 parent: 2 type: Transform - uid: 9250 components: - - pos: 45.5,-43.5 + - pos: 47.5,-1.5 parent: 2 type: Transform - uid: 9251 components: - - pos: 46.5,-43.5 + - pos: 46.5,-1.5 parent: 2 type: Transform - uid: 9252 components: - - pos: 47.5,-43.5 + - pos: 46.5,-0.5 parent: 2 type: Transform - uid: 9253 components: - - pos: 48.5,-43.5 + - pos: 46.5,0.5 parent: 2 type: Transform - uid: 9254 components: - - pos: 49.5,-43.5 + - pos: 47.5,0.5 parent: 2 type: Transform - uid: 9255 components: - - pos: 49.5,-44.5 + - pos: 48.5,0.5 parent: 2 type: Transform - uid: 9256 components: - - pos: 49.5,-45.5 + - pos: 49.5,0.5 parent: 2 type: Transform - uid: 9257 components: - - pos: 50.5,-45.5 + - pos: 49.5,1.5 parent: 2 type: Transform - uid: 9258 components: - - pos: 51.5,-45.5 + - pos: 49.5,2.5 parent: 2 type: Transform - uid: 9259 components: - - pos: 52.5,-45.5 + - pos: 49.5,3.5 parent: 2 type: Transform - uid: 9260 components: - - pos: 53.5,-45.5 + - pos: 48.5,-5.5 parent: 2 type: Transform - uid: 9261 components: - - pos: 54.5,-45.5 + - pos: 47.5,-5.5 parent: 2 type: Transform - uid: 9262 components: - - pos: 55.5,-45.5 + - pos: 47.5,-6.5 parent: 2 type: Transform - uid: 9263 components: - - pos: 55.5,-44.5 + - pos: 47.5,-7.5 parent: 2 type: Transform - uid: 9264 components: - - pos: 55.5,-43.5 + - pos: 47.5,-8.5 parent: 2 type: Transform - uid: 9265 components: - - pos: 68.5,-59.5 + - pos: 48.5,-8.5 parent: 2 type: Transform - uid: 9266 components: - - pos: 69.5,-59.5 + - pos: 49.5,-8.5 parent: 2 type: Transform - uid: 9267 components: - - pos: 40.5,-62.5 + - pos: 50.5,-8.5 parent: 2 type: Transform - uid: 9268 components: - - pos: 40.5,-60.5 + - pos: 51.5,-8.5 parent: 2 type: Transform - uid: 9269 components: - - pos: 42.5,-64.5 + - pos: 52.5,-8.5 parent: 2 type: Transform - uid: 9270 components: - - pos: -16.5,-0.5 + - pos: 52.5,-7.5 parent: 2 type: Transform - uid: 9271 components: - - pos: -17.5,-0.5 + - pos: 52.5,-6.5 parent: 2 type: Transform - uid: 9272 components: - - pos: -18.5,-0.5 + - pos: 53.5,-6.5 parent: 2 type: Transform - uid: 9273 components: - - pos: -19.5,-0.5 + - pos: 53.5,-5.5 parent: 2 type: Transform - uid: 9274 components: - - pos: -20.5,-0.5 + - pos: 54.5,-5.5 parent: 2 type: Transform - uid: 9275 components: - - pos: -20.5,0.5 + - pos: 55.5,-5.5 parent: 2 type: Transform - uid: 9276 components: - - pos: -29.5,-8.5 + - pos: 56.5,-5.5 parent: 2 type: Transform - uid: 9277 components: - - pos: -28.5,-23.5 + - pos: 57.5,-5.5 parent: 2 type: Transform - uid: 9278 components: - - pos: -28.5,-22.5 + - pos: 58.5,-5.5 parent: 2 type: Transform - uid: 9279 components: - - pos: -28.5,-21.5 + - pos: 59.5,-5.5 parent: 2 type: Transform - uid: 9280 components: - - pos: -29.5,-21.5 + - pos: 59.5,-4.5 parent: 2 type: Transform - uid: 9281 components: - - pos: -30.5,-21.5 + - pos: 43.5,-64.5 parent: 2 type: Transform - uid: 9282 components: - - pos: -31.5,-21.5 + - pos: 38.5,-46.5 parent: 2 type: Transform - uid: 9283 components: - - pos: -31.5,-20.5 + - pos: 38.5,-45.5 parent: 2 type: Transform - uid: 9284 components: - - pos: -31.5,-19.5 + - pos: 38.5,-44.5 parent: 2 type: Transform - uid: 9285 components: - - pos: -31.5,-18.5 + - pos: 38.5,-43.5 parent: 2 type: Transform - uid: 9286 components: - - pos: -31.5,-17.5 + - pos: 39.5,-43.5 parent: 2 type: Transform - uid: 9287 components: - - pos: -31.5,-16.5 + - pos: 40.5,-43.5 parent: 2 type: Transform - uid: 9288 components: - - pos: -31.5,-15.5 + - pos: 41.5,-43.5 parent: 2 type: Transform - uid: 9289 components: - - pos: -31.5,-14.5 + - pos: 42.5,-43.5 parent: 2 type: Transform - uid: 9290 components: - - pos: -31.5,-13.5 + - pos: 43.5,-43.5 parent: 2 type: Transform - uid: 9291 components: - - pos: -31.5,-12.5 + - pos: 44.5,-43.5 parent: 2 type: Transform - uid: 9292 components: - - pos: -31.5,-11.5 + - pos: 45.5,-43.5 parent: 2 type: Transform - uid: 9293 components: - - pos: -31.5,-10.5 + - pos: 46.5,-43.5 parent: 2 type: Transform - uid: 9294 components: - - pos: -30.5,-10.5 + - pos: 47.5,-43.5 parent: 2 type: Transform - uid: 9295 components: - - pos: -29.5,-10.5 + - pos: 48.5,-43.5 parent: 2 type: Transform - uid: 9296 components: - - pos: -29.5,-9.5 + - pos: 49.5,-43.5 parent: 2 type: Transform - uid: 9297 components: - - pos: 43.5,-58.5 + - pos: 49.5,-44.5 parent: 2 type: Transform - uid: 9298 components: - - pos: 43.5,-59.5 + - pos: 49.5,-45.5 parent: 2 type: Transform - uid: 9299 components: - - pos: 42.5,-59.5 + - pos: 50.5,-45.5 parent: 2 type: Transform - uid: 9300 components: - - pos: 41.5,-59.5 + - pos: 51.5,-45.5 parent: 2 type: Transform - uid: 9301 components: - - pos: 40.5,-59.5 + - pos: 52.5,-45.5 parent: 2 type: Transform - uid: 9302 components: - - pos: 39.5,-59.5 + - pos: 53.5,-45.5 parent: 2 type: Transform - uid: 9303 components: - - pos: 38.5,-59.5 + - pos: 54.5,-45.5 parent: 2 type: Transform - uid: 9304 components: - - pos: 37.5,-59.5 + - pos: 55.5,-45.5 parent: 2 type: Transform - uid: 9305 components: - - pos: 37.5,-58.5 + - pos: 55.5,-44.5 parent: 2 type: Transform - uid: 9306 components: - - pos: 37.5,-57.5 + - pos: 55.5,-43.5 parent: 2 type: Transform - uid: 9307 components: - - pos: 56.5,-45.5 + - pos: 68.5,-59.5 parent: 2 type: Transform - uid: 9308 components: - - pos: 57.5,-45.5 + - pos: 69.5,-59.5 parent: 2 type: Transform - uid: 9309 components: - - pos: 58.5,-45.5 + - pos: 40.5,-62.5 parent: 2 type: Transform - uid: 9310 components: - - pos: 59.5,-45.5 + - pos: 40.5,-60.5 parent: 2 type: Transform - uid: 9311 components: - - pos: 60.5,-45.5 + - pos: 42.5,-64.5 parent: 2 type: Transform - uid: 9312 components: - - pos: 61.5,-45.5 + - pos: -16.5,-0.5 parent: 2 type: Transform - uid: 9313 components: - - pos: 61.5,-46.5 + - pos: -17.5,-0.5 parent: 2 type: Transform - uid: 9314 components: - - pos: 61.5,-47.5 + - pos: -18.5,-0.5 parent: 2 type: Transform - uid: 9315 components: - - pos: 61.5,-48.5 + - pos: -19.5,-0.5 parent: 2 type: Transform - uid: 9316 components: - - pos: 61.5,-49.5 + - pos: -20.5,-0.5 parent: 2 type: Transform - uid: 9317 components: - - pos: 61.5,-50.5 + - pos: -20.5,0.5 parent: 2 type: Transform - uid: 9318 components: - - pos: 61.5,-51.5 + - pos: -29.5,-8.5 parent: 2 type: Transform - uid: 9319 components: - - pos: 60.5,-51.5 + - pos: -28.5,-23.5 parent: 2 type: Transform - uid: 9320 components: - - pos: 59.5,-51.5 + - pos: -28.5,-22.5 parent: 2 type: Transform - uid: 9321 components: - - pos: 58.5,-51.5 + - pos: -28.5,-21.5 parent: 2 type: Transform - uid: 9322 components: - - pos: 58.5,-52.5 + - pos: -29.5,-21.5 parent: 2 type: Transform - uid: 9323 components: - - pos: 58.5,-53.5 + - pos: -30.5,-21.5 parent: 2 type: Transform - uid: 9324 components: - - pos: 59.5,-53.5 + - pos: -31.5,-21.5 parent: 2 type: Transform - uid: 9325 components: - - pos: 59.5,-54.5 + - pos: -31.5,-20.5 parent: 2 type: Transform - uid: 9326 components: - - pos: 59.5,-55.5 + - pos: -31.5,-19.5 parent: 2 type: Transform - uid: 9327 components: - - pos: 60.5,-55.5 + - pos: -31.5,-18.5 parent: 2 type: Transform - uid: 9328 components: - - pos: 60.5,-56.5 + - pos: -31.5,-17.5 parent: 2 type: Transform - uid: 9329 components: - - pos: 61.5,-56.5 + - pos: -31.5,-16.5 parent: 2 type: Transform - uid: 9330 components: - - pos: 62.5,-56.5 + - pos: -31.5,-15.5 parent: 2 type: Transform - uid: 9331 components: - - pos: 63.5,-56.5 + - pos: -31.5,-14.5 parent: 2 type: Transform - uid: 9332 components: - - pos: 64.5,-56.5 + - pos: -31.5,-13.5 parent: 2 type: Transform - uid: 9333 components: - - pos: 64.5,-55.5 + - pos: -31.5,-12.5 parent: 2 type: Transform - uid: 9334 components: - - pos: 65.5,-55.5 + - pos: -31.5,-11.5 parent: 2 type: Transform - uid: 9335 components: - - pos: 65.5,-54.5 + - pos: -31.5,-10.5 parent: 2 type: Transform - uid: 9336 components: - - pos: 65.5,-53.5 + - pos: -30.5,-10.5 parent: 2 type: Transform - uid: 9337 components: - - pos: 66.5,-53.5 + - pos: -29.5,-10.5 parent: 2 type: Transform - uid: 9338 components: - - pos: 66.5,-52.5 + - pos: -29.5,-9.5 parent: 2 type: Transform - uid: 9339 components: - - pos: 66.5,-51.5 + - pos: 43.5,-58.5 parent: 2 type: Transform - uid: 9340 components: - - pos: 66.5,-50.5 + - pos: 43.5,-59.5 parent: 2 type: Transform - uid: 9341 components: - - pos: 65.5,-50.5 + - pos: 42.5,-59.5 parent: 2 type: Transform - uid: 9342 components: - - pos: 47.5,-65.5 + - pos: 41.5,-59.5 parent: 2 type: Transform - uid: 9343 components: - - pos: -59.5,-20.5 + - pos: 40.5,-59.5 parent: 2 type: Transform - uid: 9344 components: - - pos: -57.5,-20.5 + - pos: 39.5,-59.5 parent: 2 type: Transform - uid: 9345 components: - - pos: -56.5,-21.5 + - pos: 38.5,-59.5 parent: 2 type: Transform - uid: 9346 components: - - pos: -60.5,-20.5 + - pos: 37.5,-59.5 parent: 2 type: Transform - uid: 9347 components: - - pos: -61.5,-20.5 + - pos: 37.5,-58.5 parent: 2 type: Transform - uid: 9348 components: - - pos: -62.5,-20.5 + - pos: 37.5,-57.5 parent: 2 type: Transform - uid: 9349 components: - - pos: -63.5,-20.5 + - pos: 56.5,-45.5 parent: 2 type: Transform - uid: 9350 components: - - pos: -64.5,-20.5 + - pos: 57.5,-45.5 parent: 2 type: Transform - uid: 9351 components: - - pos: -65.5,-20.5 + - pos: 58.5,-45.5 parent: 2 type: Transform - uid: 9352 components: - - pos: -66.5,-20.5 + - pos: 59.5,-45.5 parent: 2 type: Transform - uid: 9353 components: - - pos: -67.5,-20.5 + - pos: 60.5,-45.5 parent: 2 type: Transform - uid: 9354 components: - - pos: -68.5,-20.5 + - pos: 61.5,-45.5 parent: 2 type: Transform - uid: 9355 components: - - pos: -69.5,-20.5 + - pos: 61.5,-46.5 parent: 2 type: Transform - uid: 9356 components: - - pos: -70.5,-20.5 + - pos: 61.5,-47.5 parent: 2 type: Transform - uid: 9357 components: - - pos: -71.5,-20.5 + - pos: 61.5,-48.5 parent: 2 type: Transform - uid: 9358 components: - - pos: -72.5,-20.5 + - pos: 61.5,-49.5 parent: 2 type: Transform - uid: 9359 components: - - pos: -73.5,-20.5 + - pos: 61.5,-50.5 parent: 2 type: Transform - uid: 9360 components: - - pos: -73.5,-19.5 + - pos: 61.5,-51.5 parent: 2 type: Transform - uid: 9361 components: - - pos: -73.5,-18.5 + - pos: 60.5,-51.5 parent: 2 type: Transform - uid: 9362 components: - - pos: -73.5,-17.5 + - pos: 59.5,-51.5 parent: 2 type: Transform - uid: 9363 components: - - pos: -73.5,-16.5 + - pos: 58.5,-51.5 parent: 2 type: Transform - uid: 9364 components: - - pos: -73.5,-15.5 + - pos: 58.5,-52.5 parent: 2 type: Transform - uid: 9365 components: - - pos: -73.5,-14.5 + - pos: 58.5,-53.5 parent: 2 type: Transform - uid: 9366 components: - - pos: -73.5,-13.5 + - pos: 59.5,-53.5 parent: 2 type: Transform - uid: 9367 components: - - pos: -73.5,-12.5 + - pos: 59.5,-54.5 parent: 2 type: Transform - uid: 9368 components: - - pos: -73.5,-11.5 + - pos: 59.5,-55.5 parent: 2 type: Transform - uid: 9369 components: - - pos: -73.5,-10.5 + - pos: 60.5,-55.5 parent: 2 type: Transform - uid: 9370 components: - - pos: -73.5,-9.5 + - pos: 60.5,-56.5 parent: 2 type: Transform - uid: 9371 components: - - pos: -73.5,-8.5 + - pos: 61.5,-56.5 parent: 2 type: Transform - uid: 9372 components: - - pos: -73.5,-7.5 + - pos: 62.5,-56.5 parent: 2 type: Transform - uid: 9373 components: - - pos: -73.5,-6.5 + - pos: 63.5,-56.5 parent: 2 type: Transform - uid: 9374 components: - - pos: -72.5,-6.5 + - pos: 64.5,-56.5 parent: 2 type: Transform - uid: 9375 components: - - pos: -71.5,-6.5 + - pos: 64.5,-55.5 parent: 2 type: Transform - uid: 9376 components: - - pos: -70.5,-6.5 + - pos: 65.5,-55.5 parent: 2 type: Transform - uid: 9377 components: - - pos: -69.5,-6.5 + - pos: 65.5,-54.5 parent: 2 type: Transform - uid: 9378 components: - - pos: -68.5,-6.5 + - pos: 65.5,-53.5 parent: 2 type: Transform - uid: 9379 components: - - pos: -67.5,-6.5 + - pos: 66.5,-53.5 parent: 2 type: Transform - uid: 9380 components: - - pos: -66.5,-6.5 + - pos: 66.5,-52.5 parent: 2 type: Transform - uid: 9381 components: - - pos: -65.5,-6.5 + - pos: 66.5,-51.5 parent: 2 type: Transform - uid: 9382 components: - - pos: -64.5,-6.5 + - pos: 66.5,-50.5 parent: 2 type: Transform - uid: 9383 components: - - pos: -63.5,-6.5 + - pos: 65.5,-50.5 parent: 2 type: Transform - uid: 9384 components: - - pos: -62.5,-6.5 + - pos: 47.5,-65.5 parent: 2 type: Transform - uid: 9385 components: - - pos: -61.5,-6.5 + - pos: -59.5,-20.5 parent: 2 type: Transform - uid: 9386 components: - - pos: -60.5,-6.5 + - pos: -57.5,-20.5 parent: 2 type: Transform - uid: 9387 components: - - pos: -59.5,-6.5 + - pos: -56.5,-21.5 parent: 2 type: Transform - uid: 9388 components: - - pos: -59.5,-7.5 + - pos: -60.5,-20.5 parent: 2 type: Transform - uid: 9389 components: - - pos: -59.5,-8.5 + - pos: -61.5,-20.5 parent: 2 type: Transform - uid: 9390 components: - - pos: -59.5,-9.5 + - pos: -62.5,-20.5 parent: 2 type: Transform - uid: 9391 components: - - pos: -59.5,-10.5 + - pos: -63.5,-20.5 parent: 2 type: Transform - uid: 9392 components: - - pos: -59.5,-11.5 + - pos: -64.5,-20.5 parent: 2 type: Transform - uid: 9393 components: - - pos: -59.5,-12.5 + - pos: -65.5,-20.5 parent: 2 type: Transform - uid: 9394 components: - - pos: -59.5,-13.5 + - pos: -66.5,-20.5 parent: 2 type: Transform - uid: 9395 components: - - pos: -59.5,-14.5 + - pos: -67.5,-20.5 parent: 2 type: Transform - uid: 9396 components: - - pos: -59.5,-15.5 + - pos: -68.5,-20.5 parent: 2 type: Transform - uid: 9397 components: - - pos: -59.5,-16.5 + - pos: -69.5,-20.5 parent: 2 type: Transform - uid: 9398 components: - - pos: -59.5,-17.5 + - pos: -70.5,-20.5 parent: 2 type: Transform - uid: 9399 components: - - pos: -59.5,-18.5 + - pos: -71.5,-20.5 parent: 2 type: Transform - uid: 9400 components: - - pos: -59.5,-19.5 + - pos: -72.5,-20.5 parent: 2 type: Transform - uid: 9401 components: - - pos: -50.5,-8.5 + - pos: -73.5,-20.5 parent: 2 type: Transform - uid: 9402 components: - - pos: -51.5,-8.5 + - pos: -73.5,-19.5 parent: 2 type: Transform - uid: 9403 components: - - pos: -52.5,-8.5 + - pos: -73.5,-18.5 parent: 2 type: Transform - uid: 9404 components: - - pos: -53.5,-8.5 + - pos: -73.5,-17.5 parent: 2 type: Transform - uid: 9405 components: - - pos: -53.5,-9.5 + - pos: -73.5,-16.5 parent: 2 type: Transform - uid: 9406 components: - - pos: -53.5,-10.5 + - pos: -73.5,-15.5 parent: 2 type: Transform - uid: 9407 components: - - pos: -53.5,-11.5 + - pos: -73.5,-14.5 parent: 2 type: Transform - uid: 9408 components: - - pos: -53.5,-12.5 + - pos: -73.5,-13.5 parent: 2 type: Transform - uid: 9409 components: - - pos: -53.5,-13.5 + - pos: -73.5,-12.5 parent: 2 type: Transform - uid: 9410 components: - - pos: -53.5,-14.5 + - pos: -73.5,-11.5 parent: 2 type: Transform - uid: 9411 components: - - pos: -53.5,-15.5 + - pos: -73.5,-10.5 parent: 2 type: Transform - uid: 9412 components: - - pos: -53.5,-16.5 + - pos: -73.5,-9.5 parent: 2 type: Transform - uid: 9413 components: - - pos: -51.5,-16.5 + - pos: -73.5,-8.5 parent: 2 type: Transform - uid: 9414 components: - - pos: -52.5,-16.5 + - pos: -73.5,-7.5 parent: 2 type: Transform - uid: 9415 components: - - pos: -50.5,-16.5 + - pos: -73.5,-6.5 parent: 2 type: Transform - uid: 9416 components: - - pos: -50.5,-15.5 + - pos: -72.5,-6.5 parent: 2 type: Transform - uid: 9417 components: - - pos: -27.5,-37.5 + - pos: -71.5,-6.5 parent: 2 type: Transform - uid: 9418 components: - - pos: -27.5,-36.5 + - pos: -70.5,-6.5 parent: 2 type: Transform - uid: 9419 components: - - pos: -27.5,-35.5 + - pos: -69.5,-6.5 parent: 2 type: Transform - uid: 9420 components: - - pos: -27.5,-34.5 + - pos: -68.5,-6.5 parent: 2 type: Transform - uid: 9421 components: - - pos: -28.5,-34.5 + - pos: -67.5,-6.5 parent: 2 type: Transform - uid: 9422 components: - - pos: -29.5,-34.5 + - pos: -66.5,-6.5 parent: 2 type: Transform - uid: 9423 components: - - pos: -30.5,-34.5 + - pos: -65.5,-6.5 parent: 2 type: Transform - uid: 9424 components: - - pos: -31.5,-34.5 + - pos: -64.5,-6.5 parent: 2 type: Transform - uid: 9425 components: - - pos: -32.5,-34.5 + - pos: -63.5,-6.5 parent: 2 type: Transform - uid: 9426 components: - - pos: -33.5,-34.5 + - pos: -62.5,-6.5 parent: 2 type: Transform - uid: 9427 components: - - pos: -34.5,-34.5 + - pos: -61.5,-6.5 parent: 2 type: Transform - uid: 9428 components: - - pos: -35.5,-34.5 + - pos: -60.5,-6.5 parent: 2 type: Transform - uid: 9429 components: - - pos: -35.5,-33.5 + - pos: -59.5,-6.5 parent: 2 type: Transform - uid: 9430 components: - - pos: -35.5,-32.5 + - pos: -59.5,-7.5 parent: 2 type: Transform - uid: 9431 components: - - pos: -35.5,-31.5 + - pos: -59.5,-8.5 parent: 2 type: Transform - uid: 9432 components: - - pos: -54.5,-13.5 + - pos: -59.5,-9.5 parent: 2 type: Transform - uid: 9433 components: - - pos: -31.5,-54.5 + - pos: -59.5,-10.5 parent: 2 type: Transform - uid: 9434 components: - - pos: -31.5,-55.5 + - pos: -59.5,-11.5 parent: 2 type: Transform - uid: 9435 components: - - pos: -30.5,-55.5 + - pos: -59.5,-12.5 parent: 2 type: Transform - uid: 9436 components: - - pos: -29.5,-55.5 + - pos: -59.5,-13.5 parent: 2 type: Transform - uid: 9437 components: - - pos: -28.5,-55.5 + - pos: -59.5,-14.5 parent: 2 type: Transform - uid: 9438 components: - - pos: -28.5,-56.5 + - pos: -59.5,-15.5 parent: 2 type: Transform - uid: 9439 components: - - pos: -28.5,-57.5 + - pos: -59.5,-16.5 parent: 2 type: Transform - uid: 9440 components: - - pos: -28.5,-58.5 + - pos: -59.5,-17.5 parent: 2 type: Transform - uid: 9441 components: - - pos: -28.5,-59.5 + - pos: -59.5,-18.5 parent: 2 type: Transform - uid: 9442 components: - - pos: -28.5,-60.5 + - pos: -59.5,-19.5 parent: 2 type: Transform - uid: 9443 components: - - pos: -28.5,-61.5 + - pos: -50.5,-8.5 parent: 2 type: Transform - uid: 9444 components: - - pos: -28.5,-62.5 + - pos: -51.5,-8.5 parent: 2 type: Transform - uid: 9445 components: - - pos: -28.5,-63.5 + - pos: -52.5,-8.5 parent: 2 type: Transform - uid: 9446 components: - - pos: -29.5,-63.5 + - pos: -53.5,-8.5 parent: 2 type: Transform - uid: 9447 components: - - pos: -29.5,-64.5 + - pos: -53.5,-9.5 parent: 2 type: Transform - uid: 9448 components: - - pos: -30.5,-63.5 + - pos: -53.5,-10.5 parent: 2 type: Transform - uid: 9449 components: - - pos: 21.5,-8.5 + - pos: -53.5,-11.5 parent: 2 type: Transform - uid: 9450 components: - - pos: 29.5,-28.5 + - pos: -53.5,-12.5 parent: 2 type: Transform - uid: 9451 components: - - pos: -55.5,-89.5 + - pos: -53.5,-13.5 parent: 2 type: Transform - uid: 9452 components: - - pos: -54.5,-89.5 + - pos: -53.5,-14.5 parent: 2 type: Transform - uid: 9453 components: - - pos: -54.5,-88.5 + - pos: -53.5,-15.5 parent: 2 type: Transform - uid: 9454 components: - - pos: -54.5,-87.5 + - pos: -53.5,-16.5 parent: 2 type: Transform - uid: 9455 components: - - pos: -55.5,-87.5 + - pos: -51.5,-16.5 parent: 2 type: Transform - uid: 9456 components: - - pos: -55.5,-86.5 + - pos: -52.5,-16.5 parent: 2 type: Transform - uid: 9457 components: - - pos: -56.5,-86.5 + - pos: -50.5,-16.5 parent: 2 type: Transform - uid: 9458 components: - - pos: -56.5,-85.5 + - pos: -50.5,-15.5 parent: 2 type: Transform - uid: 9459 components: - - pos: -8.5,35.5 + - pos: -27.5,-37.5 parent: 2 type: Transform - uid: 9460 components: - - pos: -8.5,33.5 + - pos: -27.5,-36.5 parent: 2 type: Transform - uid: 9461 components: - - pos: -8.5,34.5 + - pos: -27.5,-35.5 parent: 2 type: Transform - uid: 9462 components: - - pos: -8.5,31.5 + - pos: -27.5,-34.5 parent: 2 type: Transform - uid: 9463 components: - - pos: -8.5,32.5 + - pos: -28.5,-34.5 parent: 2 type: Transform - uid: 9464 components: - - pos: -7.5,32.5 + - pos: -29.5,-34.5 parent: 2 type: Transform - uid: 9465 components: - - pos: -6.5,32.5 + - pos: -30.5,-34.5 parent: 2 type: Transform - uid: 9466 components: - - pos: -5.5,32.5 + - pos: -31.5,-34.5 parent: 2 type: Transform - uid: 9467 components: - - pos: -4.5,32.5 + - pos: -32.5,-34.5 parent: 2 type: Transform - uid: 9468 components: - - pos: -3.5,32.5 + - pos: -33.5,-34.5 parent: 2 type: Transform - uid: 9469 components: - - pos: -2.5,32.5 + - pos: -34.5,-34.5 parent: 2 type: Transform - uid: 9470 components: - - pos: -1.5,32.5 + - pos: -35.5,-34.5 parent: 2 type: Transform - uid: 9471 components: - - pos: -0.5,32.5 + - pos: -35.5,-33.5 parent: 2 type: Transform - uid: 9472 components: - - pos: 0.5,32.5 + - pos: -35.5,-32.5 parent: 2 type: Transform - uid: 9473 components: - - pos: 0.5,33.5 + - pos: -35.5,-31.5 parent: 2 type: Transform - uid: 9474 components: - - pos: 0.5,34.5 + - pos: -54.5,-13.5 parent: 2 type: Transform - uid: 9475 components: - - pos: 0.5,35.5 + - pos: -31.5,-54.5 parent: 2 type: Transform - uid: 9476 components: - - pos: -23.5,15.5 + - pos: -31.5,-55.5 parent: 2 type: Transform - uid: 9477 components: - - pos: -22.5,15.5 + - pos: -30.5,-55.5 parent: 2 type: Transform - uid: 9478 components: - - pos: -21.5,15.5 + - pos: -29.5,-55.5 parent: 2 type: Transform - uid: 9479 components: - - pos: -20.5,15.5 + - pos: -28.5,-55.5 parent: 2 type: Transform - uid: 9480 components: - - pos: -19.5,15.5 + - pos: -28.5,-56.5 parent: 2 type: Transform - uid: 9481 components: - - pos: -19.5,16.5 + - pos: -28.5,-57.5 parent: 2 type: Transform - uid: 9482 components: - - pos: -19.5,17.5 + - pos: -28.5,-58.5 parent: 2 type: Transform - uid: 9483 components: - - pos: -19.5,18.5 + - pos: -28.5,-59.5 parent: 2 type: Transform - uid: 9484 components: - - pos: -19.5,19.5 + - pos: -28.5,-60.5 parent: 2 type: Transform - uid: 9485 components: - - pos: -19.5,20.5 + - pos: -28.5,-61.5 parent: 2 type: Transform - uid: 9486 components: - - pos: -19.5,21.5 + - pos: -28.5,-62.5 parent: 2 type: Transform - uid: 9487 components: - - pos: -20.5,21.5 + - pos: -28.5,-63.5 parent: 2 type: Transform - uid: 9488 components: - - pos: -21.5,21.5 + - pos: -29.5,-63.5 parent: 2 type: Transform - uid: 9489 components: - - pos: -22.5,21.5 + - pos: -29.5,-64.5 parent: 2 type: Transform - uid: 9490 components: - - pos: -23.5,21.5 + - pos: -30.5,-63.5 parent: 2 type: Transform - uid: 9491 components: - - pos: -23.5,22.5 + - pos: 21.5,-8.5 parent: 2 type: Transform - uid: 9492 components: - - pos: -23.5,23.5 + - pos: 29.5,-28.5 parent: 2 type: Transform - uid: 9493 components: - - pos: -23.5,24.5 + - pos: -56.5,-86.5 parent: 2 type: Transform - uid: 9494 components: - - pos: -23.5,25.5 + - pos: -56.5,-85.5 parent: 2 type: Transform - uid: 9495 components: - - pos: -23.5,26.5 + - pos: -8.5,35.5 parent: 2 type: Transform - uid: 9496 components: - - pos: -9.5,26.5 + - pos: -8.5,33.5 parent: 2 type: Transform - uid: 9497 components: - - pos: -34.5,-3.5 + - pos: -8.5,34.5 parent: 2 type: Transform - uid: 9498 components: - - pos: -34.5,-2.5 + - pos: -8.5,31.5 parent: 2 type: Transform - uid: 9499 components: - - pos: -35.5,-2.5 + - pos: -8.5,32.5 parent: 2 type: Transform - uid: 9500 components: - - pos: -36.5,-2.5 + - pos: -7.5,32.5 parent: 2 type: Transform - uid: 9501 components: - - pos: -37.5,-2.5 + - pos: -6.5,32.5 parent: 2 type: Transform - uid: 9502 components: - - pos: -37.5,-1.5 + - pos: -5.5,32.5 parent: 2 type: Transform - uid: 9503 components: - - pos: -37.5,-0.5 + - pos: -4.5,32.5 parent: 2 type: Transform - uid: 9504 components: - - pos: -37.5,0.5 + - pos: -3.5,32.5 parent: 2 type: Transform - uid: 9505 components: - - pos: -38.5,0.5 + - pos: -2.5,32.5 parent: 2 type: Transform - uid: 9506 components: - - pos: -39.5,0.5 + - pos: -1.5,32.5 parent: 2 type: Transform - uid: 9507 components: - - pos: -40.5,0.5 + - pos: -0.5,32.5 parent: 2 type: Transform - uid: 9508 components: - - pos: -41.5,0.5 + - pos: 0.5,32.5 parent: 2 type: Transform - uid: 9509 components: - - pos: -42.5,0.5 + - pos: 0.5,33.5 parent: 2 type: Transform - uid: 9510 components: - - pos: -42.5,1.5 + - pos: 0.5,34.5 parent: 2 type: Transform - uid: 9511 components: - - pos: -42.5,2.5 + - pos: 0.5,35.5 parent: 2 type: Transform - uid: 9512 components: - - pos: -9.5,25.5 + - pos: -23.5,15.5 parent: 2 type: Transform - uid: 9513 components: - - pos: -6.5,15.5 + - pos: -22.5,15.5 parent: 2 type: Transform - uid: 9514 components: - - pos: -10.5,16.5 + - pos: -21.5,15.5 parent: 2 type: Transform - uid: 9515 components: - - pos: -10.5,18.5 + - pos: -20.5,15.5 parent: 2 type: Transform - uid: 9516 components: - - pos: -11.5,18.5 + - pos: -19.5,15.5 parent: 2 type: Transform - uid: 9517 components: - - pos: -12.5,18.5 + - pos: -19.5,16.5 parent: 2 type: Transform - uid: 9518 components: - - pos: -12.5,19.5 + - pos: -19.5,17.5 parent: 2 type: Transform - uid: 9519 components: - - pos: -12.5,20.5 + - pos: -19.5,18.5 parent: 2 type: Transform - uid: 9520 components: - - pos: -12.5,21.5 + - pos: -19.5,19.5 parent: 2 type: Transform - uid: 9521 components: - - pos: -12.5,22.5 + - pos: -19.5,20.5 parent: 2 type: Transform - uid: 9522 components: - - pos: -12.5,23.5 + - pos: -19.5,21.5 parent: 2 type: Transform - uid: 9523 components: - - pos: -12.5,24.5 + - pos: -20.5,21.5 parent: 2 type: Transform - uid: 9524 components: - - pos: -11.5,24.5 + - pos: -21.5,21.5 parent: 2 type: Transform - uid: 9525 components: - - pos: -10.5,24.5 + - pos: -22.5,21.5 parent: 2 type: Transform - uid: 9526 components: - - pos: -9.5,24.5 + - pos: -23.5,21.5 parent: 2 type: Transform - uid: 9527 components: - - pos: -8.5,26.5 + - pos: -23.5,22.5 parent: 2 type: Transform - uid: 9528 components: - - pos: -8.5,27.5 + - pos: -23.5,23.5 parent: 2 type: Transform - uid: 9529 components: - - pos: -8.5,28.5 + - pos: -23.5,24.5 parent: 2 type: Transform - uid: 9530 components: - - pos: -8.5,29.5 + - pos: -23.5,25.5 parent: 2 type: Transform - uid: 9531 components: - - pos: -8.5,30.5 + - pos: -23.5,26.5 parent: 2 type: Transform - uid: 9532 components: - - pos: -55.5,-13.5 + - pos: -9.5,26.5 parent: 2 type: Transform - uid: 9533 components: - - pos: 33.5,26.5 + - pos: -34.5,-3.5 parent: 2 type: Transform - uid: 9534 components: - - pos: 33.5,27.5 + - pos: -34.5,-2.5 parent: 2 type: Transform - uid: 9535 components: - - pos: 33.5,28.5 + - pos: -35.5,-2.5 parent: 2 type: Transform - uid: 9536 components: - - pos: 34.5,28.5 + - pos: -36.5,-2.5 parent: 2 type: Transform - uid: 9537 components: - - pos: 35.5,28.5 + - pos: -37.5,-2.5 parent: 2 type: Transform - uid: 9538 components: - - pos: 36.5,28.5 + - pos: -37.5,-1.5 parent: 2 type: Transform - uid: 9539 components: - - pos: 36.5,29.5 + - pos: -37.5,-0.5 parent: 2 type: Transform - uid: 9540 components: - - pos: 36.5,30.5 + - pos: -37.5,0.5 parent: 2 type: Transform - uid: 9541 components: - - pos: 36.5,31.5 + - pos: -38.5,0.5 parent: 2 type: Transform - uid: 9542 components: - - pos: 36.5,32.5 + - pos: -39.5,0.5 parent: 2 type: Transform - uid: 9543 components: - - pos: 35.5,32.5 + - pos: -40.5,0.5 parent: 2 type: Transform - uid: 9544 components: - - pos: 34.5,32.5 + - pos: -41.5,0.5 parent: 2 type: Transform - uid: 9545 components: - - pos: 36.5,33.5 + - pos: -42.5,0.5 parent: 2 type: Transform - uid: 9546 components: - - pos: 34.5,33.5 + - pos: -42.5,1.5 parent: 2 type: Transform - uid: 9547 components: - - pos: 34.5,34.5 + - pos: -42.5,2.5 parent: 2 type: Transform - uid: 9548 components: - - pos: 33.5,34.5 + - pos: -9.5,25.5 parent: 2 type: Transform - uid: 9549 components: - - pos: 32.5,34.5 + - pos: -6.5,15.5 parent: 2 type: Transform - uid: 9550 components: - - pos: 32.5,35.5 + - pos: -10.5,16.5 parent: 2 type: Transform - uid: 9551 components: - - pos: 32.5,36.5 + - pos: -10.5,18.5 parent: 2 type: Transform - uid: 9552 components: - - pos: 32.5,37.5 + - pos: -11.5,18.5 parent: 2 type: Transform - uid: 9553 components: - - pos: 33.5,37.5 + - pos: -12.5,18.5 parent: 2 type: Transform - uid: 9554 components: - - pos: 31.5,37.5 + - pos: -12.5,19.5 parent: 2 type: Transform - uid: 9555 components: - - pos: 30.5,37.5 + - pos: -12.5,20.5 parent: 2 type: Transform - uid: 9556 components: - - pos: 29.5,37.5 + - pos: -12.5,21.5 parent: 2 type: Transform - uid: 9557 components: - - pos: 28.5,37.5 + - pos: -12.5,22.5 parent: 2 type: Transform - uid: 9558 components: - - pos: 27.5,37.5 + - pos: -12.5,23.5 parent: 2 type: Transform - uid: 9559 components: - - pos: 26.5,37.5 + - pos: -12.5,24.5 parent: 2 type: Transform - uid: 9560 components: - - pos: 25.5,37.5 + - pos: -11.5,24.5 parent: 2 type: Transform - uid: 9561 components: - - pos: 24.5,37.5 + - pos: -10.5,24.5 parent: 2 type: Transform - uid: 9562 components: - - pos: 23.5,37.5 + - pos: -9.5,24.5 parent: 2 type: Transform - uid: 9563 components: - - pos: 22.5,37.5 + - pos: -8.5,26.5 parent: 2 type: Transform - uid: 9564 components: - - pos: 21.5,37.5 + - pos: -8.5,27.5 parent: 2 type: Transform - uid: 9565 components: - - pos: 26.5,36.5 + - pos: -8.5,28.5 parent: 2 type: Transform - uid: 9566 components: - - pos: 26.5,35.5 + - pos: -8.5,29.5 parent: 2 type: Transform - uid: 9567 components: - - pos: 26.5,34.5 + - pos: -8.5,30.5 parent: 2 type: Transform - uid: 9568 components: - - pos: 25.5,34.5 + - pos: -55.5,-13.5 parent: 2 type: Transform - uid: 9569 components: - - pos: 24.5,34.5 + - pos: 33.5,26.5 parent: 2 type: Transform - uid: 9570 components: - - pos: 23.5,34.5 + - pos: 33.5,27.5 parent: 2 type: Transform - uid: 9571 components: - - pos: 22.5,34.5 + - pos: 33.5,28.5 parent: 2 type: Transform - uid: 9572 components: - - pos: 22.5,33.5 + - pos: 34.5,28.5 parent: 2 type: Transform - uid: 9573 components: - - pos: 22.5,32.5 + - pos: 35.5,28.5 parent: 2 type: Transform - uid: 9574 components: - - pos: 22.5,31.5 + - pos: 36.5,28.5 parent: 2 type: Transform - uid: 9575 components: - - pos: 22.5,30.5 + - pos: 36.5,29.5 parent: 2 type: Transform - uid: 9576 components: - - pos: 22.5,29.5 + - pos: 36.5,30.5 parent: 2 type: Transform - uid: 9577 components: - - pos: 22.5,28.5 + - pos: 36.5,31.5 parent: 2 type: Transform - uid: 9578 components: - - pos: 22.5,27.5 + - pos: 36.5,32.5 parent: 2 type: Transform - uid: 9579 components: - - pos: 22.5,26.5 + - pos: 35.5,32.5 parent: 2 type: Transform - uid: 9580 components: - - pos: 34.5,37.5 + - pos: 34.5,32.5 parent: 2 type: Transform - uid: 9581 components: - - pos: 35.5,37.5 + - pos: 36.5,33.5 parent: 2 type: Transform - uid: 9582 components: - - pos: 36.5,37.5 + - pos: 34.5,33.5 parent: 2 type: Transform - uid: 9583 components: - - pos: 36.5,36.5 + - pos: 34.5,34.5 parent: 2 type: Transform - uid: 9584 components: - - pos: 49.5,-46.5 + - pos: 33.5,34.5 parent: 2 type: Transform - uid: 9585 components: - - pos: 49.5,-47.5 + - pos: 32.5,34.5 parent: 2 type: Transform - uid: 9586 components: - - pos: 49.5,-48.5 + - pos: 32.5,35.5 parent: 2 type: Transform - uid: 9587 components: - - pos: 48.5,-48.5 + - pos: 32.5,36.5 parent: 2 type: Transform - uid: 9588 components: - - pos: -31.5,-63.5 + - pos: 32.5,37.5 parent: 2 type: Transform - uid: 9589 components: - - pos: -32.5,-63.5 + - pos: 33.5,37.5 parent: 2 type: Transform - uid: 9590 components: - - pos: -33.5,-63.5 + - pos: 31.5,37.5 parent: 2 type: Transform - uid: 9591 components: - - pos: -34.5,-63.5 + - pos: 30.5,37.5 parent: 2 type: Transform - uid: 9592 components: - - pos: -34.5,-64.5 + - pos: 29.5,37.5 parent: 2 type: Transform - uid: 9593 components: - - pos: -34.5,-65.5 + - pos: 28.5,37.5 parent: 2 type: Transform - uid: 9594 components: - - pos: -35.5,-65.5 + - pos: 27.5,37.5 parent: 2 type: Transform - uid: 9595 components: - - pos: -36.5,-65.5 + - pos: 26.5,37.5 parent: 2 type: Transform - uid: 9596 components: - - pos: -37.5,-65.5 + - pos: 25.5,37.5 parent: 2 type: Transform - uid: 9597 components: - - pos: -37.5,-66.5 + - pos: 24.5,37.5 parent: 2 type: Transform - uid: 9598 components: - - pos: -37.5,-67.5 + - pos: 23.5,37.5 parent: 2 type: Transform - uid: 9599 components: - - pos: -37.5,-68.5 + - pos: 22.5,37.5 parent: 2 type: Transform - uid: 9600 components: - - pos: -38.5,-68.5 + - pos: 21.5,37.5 parent: 2 type: Transform - uid: 9601 components: - - pos: -39.5,-68.5 + - pos: 26.5,36.5 parent: 2 type: Transform - uid: 9602 components: - - pos: -39.5,-69.5 + - pos: 26.5,35.5 parent: 2 type: Transform - uid: 9603 components: - - pos: -10.5,-58.5 + - pos: 26.5,34.5 parent: 2 type: Transform - uid: 9604 components: - - pos: -9.5,-58.5 + - pos: 25.5,34.5 parent: 2 type: Transform - uid: 9605 components: - - pos: -8.5,-58.5 + - pos: 24.5,34.5 parent: 2 type: Transform - uid: 9606 components: - - pos: -8.5,-57.5 + - pos: 23.5,34.5 parent: 2 type: Transform - uid: 9607 components: - - pos: -8.5,-56.5 + - pos: 22.5,34.5 parent: 2 type: Transform - uid: 9608 components: - - pos: -7.5,-56.5 + - pos: 22.5,33.5 parent: 2 type: Transform - uid: 9609 components: - - pos: -6.5,-56.5 + - pos: 22.5,32.5 parent: 2 type: Transform - uid: 9610 components: - - pos: -5.5,-56.5 + - pos: 22.5,31.5 parent: 2 type: Transform - uid: 9611 components: - - pos: -4.5,-56.5 + - pos: 22.5,30.5 parent: 2 type: Transform - uid: 9612 components: - - pos: -3.5,-56.5 + - pos: 22.5,29.5 parent: 2 type: Transform - uid: 9613 components: - - pos: -2.5,-56.5 + - pos: 22.5,28.5 parent: 2 type: Transform - uid: 9614 components: - - pos: -1.5,-56.5 + - pos: 22.5,27.5 parent: 2 type: Transform - uid: 9615 components: - - pos: -0.5,-56.5 + - pos: 22.5,26.5 parent: 2 type: Transform - uid: 9616 components: - - pos: 0.5,-56.5 + - pos: 34.5,37.5 parent: 2 type: Transform - uid: 9617 components: - - pos: 1.5,-56.5 + - pos: 35.5,37.5 parent: 2 type: Transform - uid: 9618 components: - - pos: 2.5,-56.5 + - pos: 36.5,37.5 parent: 2 type: Transform - uid: 9619 components: - - pos: 3.5,-56.5 + - pos: 36.5,36.5 parent: 2 type: Transform - uid: 9620 components: - - pos: 4.5,-56.5 + - pos: 49.5,-46.5 parent: 2 type: Transform - uid: 9621 components: - - pos: 5.5,-56.5 + - pos: 49.5,-47.5 parent: 2 type: Transform - uid: 9622 components: - - pos: 6.5,-56.5 + - pos: 49.5,-48.5 parent: 2 type: Transform - uid: 9623 components: - - pos: 6.5,-55.5 + - pos: 48.5,-48.5 parent: 2 type: Transform - uid: 9624 components: - - pos: 6.5,-54.5 + - pos: -31.5,-63.5 parent: 2 type: Transform - uid: 9625 components: - - pos: 6.5,-53.5 + - pos: -32.5,-63.5 parent: 2 type: Transform - uid: 9626 components: - - pos: 34.5,23.5 + - pos: -33.5,-63.5 parent: 2 type: Transform - uid: 9627 components: - - pos: 35.5,23.5 + - pos: -34.5,-63.5 parent: 2 type: Transform - uid: 9628 components: - - pos: 35.5,22.5 + - pos: -34.5,-64.5 parent: 2 type: Transform - uid: 9629 components: - - pos: 36.5,22.5 + - pos: -34.5,-65.5 parent: 2 type: Transform - uid: 9630 components: - - pos: 37.5,22.5 + - pos: -35.5,-65.5 parent: 2 type: Transform - uid: 9631 components: - - pos: 37.5,20.5 + - pos: -36.5,-65.5 parent: 2 type: Transform - uid: 9632 components: - - pos: 37.5,19.5 + - pos: -37.5,-65.5 parent: 2 type: Transform - uid: 9633 components: - - pos: 37.5,18.5 + - pos: -37.5,-66.5 parent: 2 type: Transform - uid: 9634 components: - - pos: 38.5,18.5 + - pos: -37.5,-67.5 parent: 2 type: Transform - uid: 9635 components: - - pos: 38.5,17.5 + - pos: -37.5,-68.5 parent: 2 type: Transform - uid: 9636 components: - - pos: 29.5,-27.5 + - pos: -38.5,-68.5 parent: 2 type: Transform - uid: 9637 components: - - pos: 50.5,29.5 + - pos: -39.5,-68.5 parent: 2 type: Transform - uid: 9638 components: - - pos: 50.5,28.5 + - pos: -39.5,-69.5 parent: 2 type: Transform - uid: 9639 components: - - pos: 49.5,28.5 + - pos: -10.5,-58.5 parent: 2 type: Transform - uid: 9640 components: - - pos: 48.5,28.5 + - pos: -9.5,-58.5 parent: 2 type: Transform - uid: 9641 components: - - pos: 48.5,29.5 + - pos: -8.5,-58.5 parent: 2 type: Transform - uid: 9642 components: - - pos: 48.5,30.5 + - pos: -8.5,-57.5 parent: 2 type: Transform - uid: 9643 components: - - pos: 48.5,31.5 + - pos: -8.5,-56.5 parent: 2 type: Transform - uid: 9644 components: - - pos: 49.5,31.5 + - pos: -7.5,-56.5 parent: 2 type: Transform - uid: 9645 components: - - pos: 50.5,31.5 + - pos: -6.5,-56.5 parent: 2 type: Transform - uid: 9646 components: - - pos: 51.5,31.5 + - pos: -5.5,-56.5 parent: 2 type: Transform - uid: 9647 components: - - pos: 52.5,31.5 + - pos: -4.5,-56.5 parent: 2 type: Transform - uid: 9648 components: - - pos: 52.5,32.5 + - pos: -3.5,-56.5 parent: 2 type: Transform - uid: 9649 components: - - pos: 52.5,33.5 + - pos: -2.5,-56.5 parent: 2 type: Transform - uid: 9650 components: - - pos: 52.5,34.5 + - pos: -1.5,-56.5 parent: 2 type: Transform - uid: 9651 components: - - pos: 52.5,35.5 + - pos: -0.5,-56.5 parent: 2 type: Transform - uid: 9652 components: - - pos: 52.5,36.5 + - pos: 0.5,-56.5 parent: 2 type: Transform - uid: 9653 components: - - pos: 52.5,37.5 + - pos: 1.5,-56.5 parent: 2 type: Transform - uid: 9654 components: - - pos: 52.5,38.5 + - pos: 2.5,-56.5 parent: 2 type: Transform - uid: 9655 components: - - pos: 52.5,39.5 + - pos: 3.5,-56.5 parent: 2 type: Transform - uid: 9656 components: - - pos: 52.5,40.5 + - pos: 4.5,-56.5 parent: 2 type: Transform - uid: 9657 components: - - pos: 52.5,41.5 + - pos: 5.5,-56.5 parent: 2 type: Transform - uid: 9658 components: - - pos: 52.5,42.5 + - pos: 6.5,-56.5 parent: 2 type: Transform - uid: 9659 components: - - pos: 53.5,42.5 + - pos: 6.5,-55.5 parent: 2 type: Transform - uid: 9660 components: - - pos: 54.5,42.5 + - pos: 6.5,-54.5 parent: 2 type: Transform - uid: 9661 components: - - pos: 55.5,42.5 + - pos: 6.5,-53.5 parent: 2 type: Transform - uid: 9662 components: - - pos: 56.5,42.5 + - pos: 34.5,23.5 parent: 2 type: Transform - uid: 9663 components: - - pos: 57.5,42.5 + - pos: 35.5,23.5 parent: 2 type: Transform - uid: 9664 components: - - pos: 58.5,42.5 + - pos: 35.5,22.5 parent: 2 type: Transform - uid: 9665 components: - - pos: 58.5,43.5 + - pos: 36.5,22.5 parent: 2 type: Transform - uid: 9666 components: - - pos: 59.5,43.5 + - pos: 37.5,22.5 parent: 2 type: Transform - uid: 9667 components: - - pos: -19.5,26.5 + - pos: 37.5,20.5 parent: 2 type: Transform - uid: 9668 components: - - pos: -19.5,27.5 + - pos: 37.5,19.5 parent: 2 type: Transform - uid: 9669 components: - - pos: -19.5,28.5 + - pos: 37.5,18.5 parent: 2 type: Transform - uid: 9670 components: - - pos: -19.5,29.5 + - pos: 38.5,18.5 parent: 2 type: Transform - uid: 9671 components: - - pos: -18.5,29.5 + - pos: 38.5,17.5 parent: 2 type: Transform - uid: 9672 components: - - pos: -17.5,29.5 + - pos: 29.5,-27.5 parent: 2 type: Transform - uid: 9673 components: - - pos: -16.5,29.5 + - pos: 50.5,29.5 parent: 2 type: Transform - uid: 9674 components: - - pos: -15.5,29.5 + - pos: 50.5,28.5 parent: 2 type: Transform - uid: 9675 components: - - pos: -15.5,30.5 + - pos: 49.5,28.5 parent: 2 type: Transform - uid: 9676 components: - - pos: -15.5,31.5 + - pos: 48.5,28.5 parent: 2 type: Transform - uid: 9677 components: - - pos: -15.5,32.5 + - pos: 48.5,29.5 parent: 2 type: Transform - uid: 9678 components: - - pos: -15.5,33.5 + - pos: 48.5,30.5 parent: 2 type: Transform - uid: 9679 components: - - pos: -15.5,34.5 + - pos: 48.5,31.5 parent: 2 type: Transform - uid: 9680 components: - - pos: -15.5,35.5 + - pos: 49.5,31.5 parent: 2 type: Transform - uid: 9681 components: - - pos: -15.5,36.5 + - pos: 50.5,31.5 parent: 2 type: Transform - uid: 9682 components: - - pos: -15.5,37.5 + - pos: 51.5,31.5 parent: 2 type: Transform - uid: 9683 components: - - pos: -15.5,38.5 + - pos: 52.5,31.5 parent: 2 type: Transform - uid: 9684 components: - - pos: -15.5,39.5 + - pos: 52.5,32.5 parent: 2 type: Transform - uid: 9685 components: - - pos: -15.5,40.5 + - pos: 52.5,33.5 parent: 2 type: Transform - uid: 9686 components: - - pos: -15.5,41.5 + - pos: 52.5,34.5 parent: 2 type: Transform - uid: 9687 components: - - pos: -15.5,42.5 + - pos: 52.5,35.5 parent: 2 type: Transform - uid: 9688 components: - - pos: -10.5,62.5 + - pos: 52.5,36.5 parent: 2 type: Transform - uid: 9689 components: - - pos: -10.5,61.5 + - pos: 52.5,37.5 parent: 2 type: Transform - uid: 9690 components: - - pos: -10.5,60.5 + - pos: 52.5,38.5 parent: 2 type: Transform - uid: 9691 components: - - pos: -10.5,59.5 + - pos: 52.5,39.5 parent: 2 type: Transform - uid: 9692 components: - - pos: -9.5,59.5 + - pos: 52.5,40.5 parent: 2 type: Transform - uid: 9693 components: - - pos: -8.5,59.5 + - pos: 52.5,41.5 parent: 2 type: Transform - uid: 9694 components: - - pos: -8.5,60.5 + - pos: 52.5,42.5 parent: 2 type: Transform - uid: 9695 components: - - pos: 40.5,-61.5 + - pos: 53.5,42.5 parent: 2 type: Transform - uid: 9696 components: - - pos: 40.5,-63.5 + - pos: 54.5,42.5 parent: 2 type: Transform - uid: 9697 components: - - pos: 48.5,-65.5 + - pos: 55.5,42.5 parent: 2 type: Transform - uid: 9698 components: - - pos: 51.5,-65.5 + - pos: 56.5,42.5 parent: 2 type: Transform - uid: 9699 components: - - pos: 50.5,-65.5 + - pos: 57.5,42.5 parent: 2 type: Transform - uid: 9700 components: - - pos: 49.5,-65.5 + - pos: 58.5,42.5 parent: 2 type: Transform - uid: 9701 components: - - pos: 40.5,-64.5 + - pos: 58.5,43.5 parent: 2 type: Transform - uid: 9702 components: - - pos: 41.5,-64.5 + - pos: 59.5,43.5 parent: 2 type: Transform - uid: 9703 components: - - pos: 52.5,-65.5 + - pos: -19.5,26.5 parent: 2 type: Transform - uid: 9704 components: - - pos: 53.5,-65.5 + - pos: -19.5,27.5 parent: 2 type: Transform - uid: 9705 components: - - pos: 54.5,-65.5 + - pos: -19.5,28.5 parent: 2 type: Transform - uid: 9706 components: - - pos: 55.5,-65.5 + - pos: -19.5,29.5 parent: 2 type: Transform - uid: 9707 components: - - pos: 55.5,-64.5 + - pos: -18.5,29.5 parent: 2 type: Transform - uid: 9708 components: - - pos: 55.5,-63.5 + - pos: -17.5,29.5 parent: 2 type: Transform - uid: 9709 components: - - pos: 55.5,-62.5 + - pos: -16.5,29.5 parent: 2 type: Transform - uid: 9710 components: - - pos: 68.5,-60.5 + - pos: -15.5,29.5 parent: 2 type: Transform - uid: 9711 components: - - pos: 68.5,-61.5 + - pos: -15.5,30.5 parent: 2 type: Transform - uid: 9712 components: - - pos: 69.5,-61.5 + - pos: -15.5,31.5 parent: 2 type: Transform - uid: 9713 components: - - pos: 70.5,-61.5 + - pos: -15.5,32.5 parent: 2 type: Transform - uid: 9714 components: - - pos: 71.5,-61.5 + - pos: -15.5,33.5 parent: 2 type: Transform - uid: 9715 components: - - pos: 71.5,-60.5 + - pos: -15.5,34.5 parent: 2 type: Transform - uid: 9716 components: - - pos: 71.5,-59.5 + - pos: -15.5,35.5 parent: 2 type: Transform - uid: 9717 components: - - pos: 71.5,-58.5 + - pos: -15.5,36.5 parent: 2 type: Transform - uid: 9718 components: - - pos: 71.5,-57.5 + - pos: -15.5,37.5 parent: 2 type: Transform - uid: 9719 components: - - pos: 72.5,-57.5 + - pos: -15.5,38.5 parent: 2 type: Transform - uid: 9720 components: - - pos: 73.5,-57.5 + - pos: -15.5,39.5 parent: 2 type: Transform - uid: 9721 components: - - pos: 74.5,-57.5 + - pos: -15.5,40.5 parent: 2 type: Transform - uid: 9722 components: - - pos: 74.5,-56.5 + - pos: -15.5,41.5 parent: 2 type: Transform - uid: 9723 components: - - pos: 74.5,-55.5 + - pos: -15.5,42.5 parent: 2 type: Transform - uid: 9724 components: - - pos: 74.5,-54.5 + - pos: -10.5,62.5 parent: 2 type: Transform - uid: 9725 components: - - pos: 75.5,-54.5 + - pos: -10.5,61.5 parent: 2 type: Transform - uid: 9726 components: - - pos: 75.5,-53.5 + - pos: -10.5,60.5 parent: 2 type: Transform - uid: 9727 components: - - pos: 75.5,-52.5 + - pos: -10.5,59.5 parent: 2 type: Transform - uid: 9728 components: - - pos: 75.5,-51.5 + - pos: -9.5,59.5 parent: 2 type: Transform - uid: 9729 components: - - pos: 75.5,-50.5 + - pos: -8.5,59.5 parent: 2 type: Transform - uid: 9730 components: - - pos: 75.5,-49.5 + - pos: -8.5,60.5 parent: 2 type: Transform - uid: 9731 components: - - pos: 75.5,-48.5 + - pos: 40.5,-61.5 parent: 2 type: Transform - uid: 9732 components: - - pos: 75.5,-47.5 + - pos: 40.5,-63.5 parent: 2 type: Transform - uid: 9733 components: - - pos: 75.5,-46.5 + - pos: 48.5,-65.5 parent: 2 type: Transform - uid: 9734 components: - - pos: 75.5,-45.5 + - pos: 51.5,-65.5 parent: 2 type: Transform - uid: 9735 components: - - pos: 74.5,-45.5 + - pos: 50.5,-65.5 parent: 2 type: Transform - uid: 9736 components: - - pos: 73.5,-45.5 + - pos: 49.5,-65.5 parent: 2 type: Transform - uid: 9737 components: - - pos: 72.5,-45.5 + - pos: 40.5,-64.5 parent: 2 type: Transform - uid: 9738 components: - - pos: 71.5,-45.5 + - pos: 41.5,-64.5 parent: 2 type: Transform - uid: 9739 components: - - pos: 71.5,-44.5 + - pos: 52.5,-65.5 parent: 2 type: Transform - uid: 9740 components: - - pos: 71.5,-43.5 + - pos: 53.5,-65.5 parent: 2 type: Transform - uid: 9741 components: - - pos: 71.5,-42.5 + - pos: 54.5,-65.5 parent: 2 type: Transform - uid: 9742 components: - - pos: 4.5,-19.5 + - pos: 55.5,-65.5 parent: 2 type: Transform - uid: 9743 components: - - pos: 7.5,-19.5 + - pos: 55.5,-64.5 parent: 2 type: Transform - uid: 9744 components: - - pos: 5.5,-19.5 + - pos: 55.5,-63.5 parent: 2 type: Transform - uid: 9745 components: - - pos: 7.5,-20.5 + - pos: 55.5,-62.5 parent: 2 type: Transform - uid: 9746 components: - - pos: 8.5,-20.5 + - pos: 68.5,-60.5 parent: 2 type: Transform - uid: 9747 components: - - pos: 9.5,-20.5 + - pos: 68.5,-61.5 parent: 2 type: Transform - uid: 9748 components: - - pos: 10.5,-20.5 + - pos: 69.5,-61.5 parent: 2 type: Transform - uid: 9749 components: - - pos: 11.5,-20.5 + - pos: 70.5,-61.5 parent: 2 type: Transform - uid: 9750 components: - - pos: 11.5,-19.5 + - pos: 71.5,-61.5 parent: 2 type: Transform - uid: 9751 components: - - pos: 11.5,-18.5 + - pos: 71.5,-60.5 parent: 2 type: Transform - uid: 9752 components: - - pos: 6.5,-49.5 + - pos: 71.5,-59.5 parent: 2 type: Transform - uid: 9753 components: - - pos: 7.5,-49.5 + - pos: 71.5,-58.5 parent: 2 type: Transform - uid: 9754 components: - - pos: 9.5,-49.5 + - pos: 71.5,-57.5 parent: 2 type: Transform - uid: 9755 components: - - pos: 8.5,-49.5 + - pos: 72.5,-57.5 parent: 2 type: Transform - uid: 9756 components: - - pos: 31.5,35.5 + - pos: 73.5,-57.5 parent: 2 type: Transform - uid: 9757 components: - - pos: 30.5,35.5 + - pos: 74.5,-57.5 parent: 2 type: Transform - uid: 9758 components: - - pos: 29.5,35.5 + - pos: 74.5,-56.5 parent: 2 type: Transform - uid: 9759 components: - - pos: 28.5,35.5 + - pos: 74.5,-55.5 parent: 2 type: Transform - uid: 9760 components: - - pos: 27.5,35.5 + - pos: 74.5,-54.5 parent: 2 type: Transform - uid: 9761 components: - - pos: -10.5,17.5 + - pos: 75.5,-54.5 parent: 2 type: Transform - uid: 9762 components: - - pos: -8.5,15.5 + - pos: 75.5,-53.5 parent: 2 type: Transform - uid: 9763 components: - - pos: -9.5,15.5 + - pos: 75.5,-52.5 parent: 2 type: Transform - uid: 9764 components: - - pos: -7.5,15.5 + - pos: 75.5,-51.5 parent: 2 type: Transform - uid: 9765 components: - - pos: -65.5,-54.5 + - pos: 75.5,-50.5 parent: 2 type: Transform - uid: 9766 components: - - pos: -66.5,-54.5 + - pos: 75.5,-49.5 parent: 2 type: Transform - uid: 9767 components: - - pos: -66.5,-53.5 + - pos: 75.5,-48.5 parent: 2 type: Transform - uid: 9768 components: - - pos: -67.5,-53.5 + - pos: 75.5,-47.5 parent: 2 type: Transform - uid: 9769 components: - - pos: -68.5,-53.5 + - pos: 75.5,-46.5 parent: 2 type: Transform - uid: 9770 components: - - pos: -69.5,-53.5 + - pos: 75.5,-45.5 parent: 2 type: Transform - uid: 9771 components: - - pos: -70.5,-53.5 + - pos: 74.5,-45.5 parent: 2 type: Transform - uid: 9772 components: - - pos: -71.5,-53.5 + - pos: 73.5,-45.5 parent: 2 type: Transform - uid: 9773 components: - - pos: -72.5,-53.5 + - pos: 72.5,-45.5 parent: 2 type: Transform - uid: 9774 components: - - pos: -73.5,-53.5 + - pos: 71.5,-45.5 parent: 2 type: Transform - uid: 9775 components: - - pos: -73.5,-52.5 + - pos: 71.5,-44.5 parent: 2 type: Transform - uid: 9776 components: - - pos: -74.5,-52.5 + - pos: 71.5,-43.5 parent: 2 type: Transform - uid: 9777 components: - - pos: -74.5,-51.5 + - pos: 71.5,-42.5 parent: 2 type: Transform - uid: 9778 components: - - pos: -74.5,-50.5 + - pos: 4.5,-19.5 parent: 2 type: Transform - uid: 9779 components: - - pos: -67.5,-37.5 + - pos: 7.5,-19.5 parent: 2 type: Transform - uid: 9780 components: - - pos: -69.5,-34.5 + - pos: 5.5,-19.5 parent: 2 type: Transform - uid: 9781 components: - - pos: -68.5,-37.5 + - pos: 7.5,-20.5 parent: 2 type: Transform - uid: 9782 components: - - pos: -66.5,-37.5 + - pos: 8.5,-20.5 parent: 2 type: Transform - uid: 9783 components: - - pos: -66.5,-36.5 + - pos: 9.5,-20.5 parent: 2 type: Transform - uid: 9784 components: - - pos: -72.5,-35.5 + - pos: 10.5,-20.5 parent: 2 type: Transform - uid: 9785 components: - - pos: -71.5,-35.5 + - pos: 11.5,-20.5 parent: 2 type: Transform - uid: 9786 components: - - pos: -70.5,-35.5 + - pos: 11.5,-19.5 parent: 2 type: Transform - uid: 9787 components: - - pos: -70.5,-34.5 + - pos: 11.5,-18.5 parent: 2 type: Transform - uid: 9788 components: - - pos: -69.5,-37.5 + - pos: 6.5,-49.5 parent: 2 type: Transform - uid: 9789 components: - - pos: -70.5,-37.5 + - pos: 7.5,-49.5 parent: 2 type: Transform - uid: 9790 components: - - pos: -72.5,-37.5 + - pos: 9.5,-49.5 parent: 2 type: Transform - uid: 9791 components: - - pos: -72.5,-36.5 + - pos: 8.5,-49.5 parent: 2 type: Transform - uid: 9792 components: - - pos: -71.5,-38.5 + - pos: 31.5,35.5 parent: 2 type: Transform - uid: 9793 components: - - pos: -70.5,-38.5 + - pos: 30.5,35.5 parent: 2 type: Transform - uid: 9794 components: - - pos: -66.5,-35.5 + - pos: 29.5,35.5 parent: 2 type: Transform - uid: 9795 components: - - pos: 46.5,1.5 + - pos: 28.5,35.5 parent: 2 type: Transform - uid: 9796 components: - - pos: 46.5,2.5 + - pos: 27.5,35.5 parent: 2 type: Transform - uid: 9797 components: - - pos: 46.5,3.5 + - pos: -10.5,17.5 parent: 2 type: Transform - uid: 9798 components: - - pos: 46.5,4.5 + - pos: -8.5,15.5 parent: 2 type: Transform - uid: 9799 components: - - pos: 47.5,4.5 + - pos: -9.5,15.5 parent: 2 type: Transform - uid: 9800 components: - - pos: 47.5,5.5 + - pos: -7.5,15.5 parent: 2 type: Transform - uid: 9801 components: - - pos: 47.5,6.5 + - pos: -65.5,-54.5 parent: 2 type: Transform - uid: 9802 components: - - pos: 48.5,6.5 + - pos: -66.5,-54.5 parent: 2 type: Transform - uid: 9803 components: - - pos: 48.5,7.5 + - pos: -66.5,-53.5 parent: 2 type: Transform - uid: 9804 components: - - pos: 46.5,6.5 + - pos: -67.5,-53.5 parent: 2 type: Transform - uid: 9805 components: - - pos: 46.5,7.5 + - pos: -68.5,-53.5 parent: 2 type: Transform - uid: 9806 components: - - pos: 46.5,8.5 + - pos: -69.5,-53.5 parent: 2 type: Transform - uid: 9807 components: - - pos: 46.5,9.5 + - pos: -70.5,-53.5 parent: 2 type: Transform - uid: 9808 components: - - pos: 45.5,9.5 + - pos: -71.5,-53.5 parent: 2 type: Transform - uid: 9809 components: - - pos: 21.5,-39.5 + - pos: -72.5,-53.5 parent: 2 type: Transform - uid: 9810 components: - - pos: 4.5,-1.5 + - pos: -73.5,-53.5 parent: 2 type: Transform - uid: 9811 components: - - pos: 3.5,-2.5 + - pos: -73.5,-52.5 parent: 2 type: Transform - uid: 9812 components: - - pos: 11.5,-16.5 + - pos: -74.5,-52.5 parent: 2 type: Transform - uid: 9813 components: - - pos: 9.5,-18.5 + - pos: -74.5,-51.5 parent: 2 type: Transform - uid: 9814 components: - - pos: 9.5,-19.5 + - pos: -74.5,-50.5 parent: 2 type: Transform - uid: 9815 components: - - pos: 2.5,-3.5 + - pos: -67.5,-37.5 parent: 2 type: Transform - uid: 9816 components: - - pos: 1.5,-3.5 + - pos: -69.5,-34.5 parent: 2 type: Transform - uid: 9817 components: - - pos: 3.5,-1.5 + - pos: -68.5,-37.5 parent: 2 type: Transform - uid: 9818 components: - - pos: 10.5,-4.5 + - pos: -66.5,-37.5 parent: 2 type: Transform - uid: 9819 components: - - pos: -0.5,-6.5 + - pos: -66.5,-36.5 parent: 2 type: Transform - uid: 9820 components: - - pos: 10.5,-3.5 + - pos: -72.5,-35.5 parent: 2 type: Transform - uid: 9821 components: - - pos: 1.5,-6.5 + - pos: -71.5,-35.5 parent: 2 type: Transform - uid: 9822 components: - - pos: 1.5,-4.5 + - pos: -70.5,-35.5 parent: 2 type: Transform - uid: 9823 components: - - pos: 0.5,-6.5 + - pos: -70.5,-34.5 parent: 2 type: Transform - uid: 9824 components: - - pos: 23.5,-38.5 + - pos: -69.5,-37.5 parent: 2 type: Transform - uid: 9825 components: - - pos: 23.5,-39.5 + - pos: -70.5,-37.5 parent: 2 type: Transform - uid: 9826 components: - - pos: 23.5,-40.5 + - pos: -72.5,-37.5 parent: 2 type: Transform - uid: 9827 components: - - pos: 24.5,-40.5 + - pos: -72.5,-36.5 parent: 2 type: Transform - uid: 9828 components: - - pos: 25.5,-40.5 + - pos: -71.5,-38.5 parent: 2 type: Transform - uid: 9829 components: - - pos: 26.5,-40.5 + - pos: -70.5,-38.5 parent: 2 type: Transform - uid: 9830 components: - - pos: 27.5,-40.5 + - pos: -66.5,-35.5 parent: 2 type: Transform - uid: 9831 components: - - pos: 10.5,-16.5 + - pos: 46.5,1.5 parent: 2 type: Transform - uid: 9832 components: - - pos: 4.5,-14.5 + - pos: 46.5,2.5 parent: 2 type: Transform - uid: 9833 components: - - pos: 4.5,-13.5 + - pos: 46.5,3.5 parent: 2 type: Transform - uid: 9834 components: - - pos: 9.5,-16.5 + - pos: 46.5,4.5 parent: 2 type: Transform - uid: 9835 components: - - pos: 4.5,-12.5 + - pos: 47.5,4.5 parent: 2 type: Transform - uid: 9836 components: - - pos: 5.5,-14.5 + - pos: 47.5,5.5 parent: 2 type: Transform - uid: 9837 components: - - pos: 4.5,-11.5 + - pos: 47.5,6.5 parent: 2 type: Transform - uid: 9838 components: - - pos: 8.5,-16.5 + - pos: 48.5,6.5 parent: 2 type: Transform - uid: 9839 components: - - pos: 12.5,-16.5 + - pos: 48.5,7.5 parent: 2 type: Transform - uid: 9840 components: - - pos: 5.5,-11.5 + - pos: 46.5,6.5 parent: 2 type: Transform - uid: 9841 components: - - pos: 22.5,-30.5 + - pos: 46.5,7.5 parent: 2 type: Transform - uid: 9842 components: - - pos: 22.5,-31.5 + - pos: 46.5,8.5 parent: 2 type: Transform - uid: 9843 components: - - pos: 23.5,-30.5 + - pos: 46.5,9.5 parent: 2 type: Transform - uid: 9844 components: - - pos: 24.5,-30.5 + - pos: 45.5,9.5 parent: 2 type: Transform - uid: 9845 components: - - pos: 24.5,-29.5 + - pos: 21.5,-39.5 parent: 2 type: Transform - uid: 9846 components: - - pos: -56.5,-22.5 + - pos: 4.5,-1.5 parent: 2 type: Transform - uid: 9847 components: - - pos: -56.5,-23.5 + - pos: 3.5,-2.5 parent: 2 type: Transform - uid: 9848 components: - - pos: -64.5,-24.5 + - pos: 11.5,-16.5 parent: 2 type: Transform - uid: 9849 components: - - pos: -64.5,-25.5 + - pos: 9.5,-18.5 parent: 2 type: Transform - uid: 9850 components: - - pos: -65.5,-25.5 + - pos: 9.5,-19.5 parent: 2 type: Transform - uid: 9851 components: - - pos: -66.5,-25.5 + - pos: 2.5,-3.5 parent: 2 type: Transform - uid: 9852 components: - - pos: -66.5,-26.5 + - pos: 1.5,-3.5 parent: 2 type: Transform - uid: 9853 components: - - pos: -63.5,-24.5 + - pos: 3.5,-1.5 parent: 2 type: Transform - uid: 9854 components: - - pos: -62.5,-24.5 + - pos: 10.5,-4.5 parent: 2 type: Transform - uid: 9855 components: - - pos: -61.5,-24.5 + - pos: -0.5,-6.5 parent: 2 type: Transform - uid: 9856 components: - - pos: -60.5,-24.5 + - pos: 10.5,-3.5 parent: 2 type: Transform - uid: 9857 components: - - pos: -59.5,-24.5 + - pos: 1.5,-6.5 parent: 2 type: Transform - uid: 9858 components: - - pos: -58.5,-24.5 + - pos: 1.5,-4.5 parent: 2 type: Transform - uid: 9859 components: - - pos: -57.5,-24.5 + - pos: 0.5,-6.5 parent: 2 type: Transform - uid: 9860 components: - - pos: -56.5,-24.5 + - pos: 23.5,-38.5 parent: 2 type: Transform - uid: 9861 components: - - pos: -55.5,-24.5 + - pos: 23.5,-39.5 parent: 2 type: Transform - uid: 9862 components: - - pos: -54.5,-24.5 + - pos: 23.5,-40.5 parent: 2 type: Transform - uid: 9863 components: - - pos: -54.5,-23.5 + - pos: 24.5,-40.5 parent: 2 type: Transform - uid: 9864 components: - - pos: -54.5,-22.5 + - pos: 25.5,-40.5 parent: 2 type: Transform - uid: 9865 components: - - pos: -54.5,-21.5 + - pos: 26.5,-40.5 parent: 2 type: Transform - uid: 9866 components: - - pos: -54.5,-20.5 + - pos: 27.5,-40.5 parent: 2 type: Transform - uid: 9867 components: - - pos: -54.5,-19.5 + - pos: 10.5,-16.5 parent: 2 type: Transform - uid: 9868 components: - - pos: -54.5,-18.5 + - pos: 4.5,-14.5 parent: 2 type: Transform - uid: 9869 components: - - pos: -55.5,-18.5 + - pos: 4.5,-13.5 parent: 2 type: Transform - uid: 9870 components: - - pos: -56.5,-18.5 + - pos: 9.5,-16.5 parent: 2 type: Transform - uid: 9871 components: - - pos: -57.5,-18.5 + - pos: 4.5,-12.5 parent: 2 type: Transform - uid: 9872 components: - - pos: -58.5,-18.5 + - pos: 5.5,-14.5 parent: 2 type: Transform -- proto: CableMVStack - entities: - uid: 9873 components: - - pos: -39.41842,-18.34842 + - pos: 4.5,-11.5 parent: 2 type: Transform - uid: 9874 components: - - pos: -36.572292,-8.416974 + - pos: 8.5,-16.5 parent: 2 type: Transform -- proto: CableTerminal - entities: - uid: 9875 components: - - rot: 1.5707963267948966 rad - pos: -70.5,-35.5 + - pos: 12.5,-16.5 parent: 2 type: Transform - uid: 9876 components: - - rot: 3.141592653589793 rad - pos: -2.5,-79.5 + - pos: 5.5,-11.5 parent: 2 type: Transform - uid: 9877 components: - - pos: 48.5,-2.5 + - pos: 22.5,-30.5 parent: 2 type: Transform - uid: 9878 components: - - pos: -48.5,-20.5 + - pos: 22.5,-31.5 parent: 2 type: Transform - uid: 9879 components: - - pos: -46.5,-20.5 + - pos: 23.5,-30.5 parent: 2 type: Transform - uid: 9880 components: - - pos: -44.5,-20.5 + - pos: 24.5,-30.5 parent: 2 type: Transform - uid: 9881 components: - - rot: 1.5707963267948966 rad - pos: -51.5,-9.5 + - pos: 24.5,-29.5 parent: 2 type: Transform - uid: 9882 components: - - rot: 3.141592653589793 rad - pos: -56.5,-21.5 + - pos: -56.5,-22.5 parent: 2 type: Transform - uid: 9883 components: - - pos: -28.5,-36.5 + - pos: -56.5,-23.5 parent: 2 type: Transform - uid: 9884 components: - - rot: 1.5707963267948966 rad - pos: -56.5,-88.5 + - pos: -64.5,-24.5 parent: 2 type: Transform - uid: 9885 components: - - rot: -1.5707963267948966 rad - pos: 74.5,38.5 + - pos: -64.5,-25.5 parent: 2 type: Transform - uid: 9886 components: - - rot: -1.5707963267948966 rad - pos: 74.5,34.5 + - pos: -65.5,-25.5 parent: 2 type: Transform - uid: 9887 components: - - rot: 3.141592653589793 rad - pos: -0.5,-79.5 + - pos: -66.5,-25.5 parent: 2 type: Transform - uid: 9888 components: - - pos: -74.5,-29.5 + - pos: -66.5,-26.5 parent: 2 type: Transform - uid: 9889 components: - - pos: -72.5,-29.5 + - pos: -63.5,-24.5 parent: 2 type: Transform - uid: 9890 components: - - pos: -70.5,-29.5 + - pos: -62.5,-24.5 parent: 2 type: Transform - uid: 9891 components: - - rot: 3.141592653589793 rad - pos: 4.5,-21.5 + - pos: -61.5,-24.5 parent: 2 type: Transform - uid: 9892 components: - - pos: -65.5,-52.5 + - pos: -60.5,-24.5 parent: 2 type: Transform -- proto: CannabisSeeds - entities: - uid: 9893 components: - - rot: 3.141592653589793 rad - pos: -55.50433,-67.64641 + - pos: -59.5,-24.5 parent: 2 type: Transform - uid: 9894 components: - - rot: 1.5707963267948966 rad - pos: -55.707455,-67.38078 + - pos: -58.5,-24.5 parent: 2 type: Transform -- proto: CapacitorStockPart - entities: - uid: 9895 components: - - pos: 38.490074,-35.297806 + - pos: -57.5,-24.5 parent: 2 type: Transform - uid: 9896 components: - - pos: 38.302574,-35.672806 + - pos: -56.5,-24.5 parent: 2 type: Transform - uid: 9897 components: - - pos: 38.521324,-35.53218 + - pos: -55.5,-24.5 parent: 2 type: Transform - uid: 9898 components: - - pos: -50.47893,-28.448412 + - pos: -54.5,-24.5 parent: 2 type: Transform -- proto: CaptainIDCard - entities: - uid: 9899 components: - - pos: 30.440884,-27.198164 + - pos: -54.5,-23.5 parent: 2 type: Transform -- proto: CarbonDioxideCanister - entities: - uid: 9900 components: - - pos: -40.5,-38.5 + - pos: -54.5,-22.5 parent: 2 type: Transform - uid: 9901 components: - - pos: -50.5,-50.5 + - pos: -54.5,-21.5 parent: 2 type: Transform - uid: 9902 components: - - pos: -52.5,-62.5 + - pos: -54.5,-20.5 parent: 2 type: Transform - uid: 9903 components: - - pos: -76.5,-45.5 + - pos: -54.5,-19.5 parent: 2 type: Transform - uid: 9904 components: - - pos: 46.5,-54.5 + - pos: -54.5,-18.5 parent: 2 type: Transform -- proto: Carpet - entities: - uid: 9905 components: - - rot: 3.141592653589793 rad - pos: 5.5,20.5 + - pos: -55.5,-18.5 parent: 2 type: Transform - uid: 9906 components: - - rot: 3.141592653589793 rad - pos: 4.5,22.5 + - pos: -56.5,-18.5 parent: 2 type: Transform - uid: 9907 components: - - rot: 3.141592653589793 rad - pos: 4.5,21.5 + - pos: -57.5,-18.5 parent: 2 type: Transform - uid: 9908 components: - - rot: 3.141592653589793 rad - pos: 4.5,20.5 + - pos: -58.5,-18.5 parent: 2 type: Transform +- proto: CableMVStack + entities: - uid: 9909 components: - - rot: 3.141592653589793 rad - pos: 6.5,22.5 + - pos: -39.41842,-18.34842 parent: 2 type: Transform - uid: 9910 components: - - rot: 3.141592653589793 rad - pos: 6.5,21.5 + - pos: -36.572292,-8.416974 parent: 2 type: Transform +- proto: CableTerminal + entities: - uid: 9911 components: - - rot: 3.141592653589793 rad - pos: 6.5,20.5 + - rot: 1.5707963267948966 rad + pos: -70.5,-35.5 parent: 2 type: Transform - uid: 9912 components: - rot: 3.141592653589793 rad - pos: 7.5,22.5 + pos: -2.5,-79.5 parent: 2 type: Transform - uid: 9913 components: - - rot: 3.141592653589793 rad - pos: 7.5,21.5 + - pos: 48.5,-2.5 parent: 2 type: Transform - uid: 9914 components: - - rot: 3.141592653589793 rad - pos: 7.5,20.5 + - pos: -48.5,-20.5 parent: 2 type: Transform - uid: 9915 components: - - rot: 3.141592653589793 rad - pos: 8.5,22.5 + - pos: -46.5,-20.5 parent: 2 type: Transform - uid: 9916 components: - - rot: 3.141592653589793 rad - pos: 8.5,21.5 + - pos: -44.5,-20.5 parent: 2 type: Transform - uid: 9917 components: - - rot: 3.141592653589793 rad - pos: 8.5,20.5 + - rot: 1.5707963267948966 rad + pos: -51.5,-9.5 parent: 2 type: Transform - uid: 9918 components: - - pos: 39.5,-5.5 + - rot: 3.141592653589793 rad + pos: -56.5,-21.5 parent: 2 type: Transform - uid: 9919 components: - - pos: 43.5,-5.5 + - pos: -28.5,-36.5 parent: 2 type: Transform - uid: 9920 components: - - pos: 44.5,-5.5 + - rot: -1.5707963267948966 rad + pos: 74.5,38.5 parent: 2 type: Transform - uid: 9921 components: - - pos: 42.5,-5.5 + - rot: -1.5707963267948966 rad + pos: 74.5,34.5 parent: 2 type: Transform - uid: 9922 components: - - pos: 42.5,-2.5 + - rot: 3.141592653589793 rad + pos: -0.5,-79.5 parent: 2 type: Transform - uid: 9923 components: - - pos: 42.5,-3.5 + - pos: -74.5,-29.5 parent: 2 type: Transform - uid: 9924 components: - - pos: 42.5,-4.5 + - pos: -72.5,-29.5 parent: 2 type: Transform - uid: 9925 components: - - pos: 43.5,-2.5 + - pos: -70.5,-29.5 parent: 2 type: Transform - uid: 9926 components: - - pos: 43.5,-3.5 + - rot: 3.141592653589793 rad + pos: 4.5,-21.5 parent: 2 type: Transform - uid: 9927 components: - - pos: 43.5,-4.5 + - pos: -65.5,-52.5 parent: 2 type: Transform - uid: 9928 components: - - pos: 44.5,-2.5 + - rot: 3.141592653589793 rad + pos: -56.5,-88.5 parent: 2 type: Transform +- proto: CannabisSeeds + entities: - uid: 9929 components: - - pos: 44.5,-3.5 + - rot: 3.141592653589793 rad + pos: -55.50433,-67.64641 parent: 2 type: Transform - uid: 9930 components: - - pos: 44.5,-4.5 + - rot: 1.5707963267948966 rad + pos: -55.707455,-67.38078 parent: 2 type: Transform +- proto: CapacitorStockPart + entities: - uid: 9931 components: - - pos: 37.5,-2.5 + - pos: 38.490074,-35.297806 parent: 2 type: Transform - uid: 9932 components: - - pos: 38.5,-2.5 + - pos: 38.302574,-35.672806 parent: 2 type: Transform - uid: 9933 components: - - pos: 39.5,-2.5 + - pos: 38.521324,-35.53218 parent: 2 type: Transform - uid: 9934 components: - - pos: 37.5,-3.5 + - pos: -50.47893,-28.448412 parent: 2 type: Transform +- proto: CaptainIDCard + entities: - uid: 9935 components: - - pos: 37.5,-4.5 + - pos: 30.440884,-27.198164 parent: 2 type: Transform +- proto: CarbonDioxideCanister + entities: - uid: 9936 components: - - pos: 38.5,-3.5 + - pos: -40.5,-38.5 parent: 2 type: Transform - uid: 9937 components: - - pos: 38.5,-4.5 + - pos: -50.5,-50.5 parent: 2 type: Transform - uid: 9938 components: - - pos: 39.5,-3.5 + - pos: -52.5,-62.5 parent: 2 type: Transform - uid: 9939 components: - - pos: 39.5,-4.5 + - pos: -76.5,-45.5 parent: 2 type: Transform - uid: 9940 components: - - pos: 38.5,-5.5 + - pos: 46.5,-54.5 parent: 2 type: Transform +- proto: Carpet + entities: - uid: 9941 components: - - pos: 37.5,-5.5 + - rot: 3.141592653589793 rad + pos: 5.5,20.5 parent: 2 type: Transform - uid: 9942 components: - rot: 3.141592653589793 rad - pos: 28.5,-50.5 + pos: 4.5,22.5 parent: 2 type: Transform - uid: 9943 components: - rot: 3.141592653589793 rad - pos: 28.5,-51.5 + pos: 4.5,21.5 parent: 2 type: Transform - uid: 9944 components: - rot: 3.141592653589793 rad - pos: 29.5,-50.5 + pos: 4.5,20.5 parent: 2 type: Transform - uid: 9945 components: - rot: 3.141592653589793 rad - pos: 29.5,-51.5 + pos: 6.5,22.5 parent: 2 type: Transform - uid: 9946 components: - rot: 3.141592653589793 rad - pos: 30.5,-50.5 + pos: 6.5,21.5 parent: 2 type: Transform - uid: 9947 components: - rot: 3.141592653589793 rad - pos: 30.5,-51.5 + pos: 6.5,20.5 parent: 2 type: Transform - uid: 9948 components: - - rot: -1.5707963267948966 rad - pos: -38.5,15.5 + - rot: 3.141592653589793 rad + pos: 7.5,22.5 parent: 2 type: Transform - uid: 9949 components: - - rot: -1.5707963267948966 rad - pos: -38.5,14.5 + - rot: 3.141592653589793 rad + pos: 7.5,21.5 parent: 2 type: Transform - uid: 9950 components: - - rot: -1.5707963267948966 rad - pos: -38.5,13.5 + - rot: 3.141592653589793 rad + pos: 7.5,20.5 parent: 2 type: Transform - uid: 9951 components: - - rot: -1.5707963267948966 rad - pos: -38.5,12.5 + - rot: 3.141592653589793 rad + pos: 8.5,22.5 parent: 2 type: Transform - uid: 9952 components: - - rot: -1.5707963267948966 rad - pos: -38.5,11.5 + - rot: 3.141592653589793 rad + pos: 8.5,21.5 parent: 2 type: Transform - uid: 9953 components: - - rot: -1.5707963267948966 rad - pos: -38.5,10.5 + - rot: 3.141592653589793 rad + pos: 8.5,20.5 parent: 2 type: Transform - uid: 9954 components: - - rot: -1.5707963267948966 rad - pos: -38.5,9.5 + - pos: 39.5,-5.5 parent: 2 type: Transform - uid: 9955 components: - - rot: -1.5707963267948966 rad - pos: -38.5,8.5 + - pos: 43.5,-5.5 parent: 2 type: Transform - uid: 9956 components: - - rot: -1.5707963267948966 rad - pos: -37.5,15.5 + - pos: 44.5,-5.5 parent: 2 type: Transform - uid: 9957 components: - - rot: -1.5707963267948966 rad - pos: -37.5,14.5 + - pos: 42.5,-5.5 parent: 2 type: Transform - uid: 9958 components: - - rot: -1.5707963267948966 rad - pos: -37.5,13.5 + - pos: 42.5,-2.5 parent: 2 type: Transform - uid: 9959 components: - - rot: -1.5707963267948966 rad - pos: -37.5,12.5 + - pos: 42.5,-3.5 parent: 2 type: Transform - uid: 9960 components: - - rot: -1.5707963267948966 rad - pos: -37.5,11.5 + - pos: 42.5,-4.5 parent: 2 type: Transform - uid: 9961 components: - - rot: -1.5707963267948966 rad - pos: -37.5,10.5 + - pos: 43.5,-2.5 parent: 2 type: Transform - uid: 9962 components: - - rot: -1.5707963267948966 rad - pos: -37.5,9.5 + - pos: 43.5,-3.5 parent: 2 type: Transform - uid: 9963 components: - - rot: -1.5707963267948966 rad - pos: -37.5,8.5 + - pos: 43.5,-4.5 parent: 2 type: Transform - uid: 9964 components: - - rot: -1.5707963267948966 rad - pos: -34.5,15.5 + - pos: 44.5,-2.5 parent: 2 type: Transform - uid: 9965 components: - - rot: -1.5707963267948966 rad - pos: -34.5,14.5 + - pos: 44.5,-3.5 parent: 2 type: Transform - uid: 9966 components: - - rot: -1.5707963267948966 rad - pos: -34.5,13.5 + - pos: 44.5,-4.5 parent: 2 type: Transform - uid: 9967 components: - - rot: -1.5707963267948966 rad - pos: -33.5,15.5 + - pos: 37.5,-2.5 parent: 2 type: Transform - uid: 9968 components: - - rot: -1.5707963267948966 rad - pos: -33.5,14.5 + - pos: 38.5,-2.5 parent: 2 type: Transform - uid: 9969 components: - - rot: -1.5707963267948966 rad - pos: -33.5,13.5 + - pos: 39.5,-2.5 parent: 2 type: Transform - uid: 9970 components: - - pos: -30.5,14.5 + - pos: 37.5,-3.5 parent: 2 type: Transform - uid: 9971 components: - - pos: -30.5,13.5 + - pos: 37.5,-4.5 parent: 2 type: Transform - uid: 9972 components: - - pos: -30.5,12.5 + - pos: 38.5,-3.5 parent: 2 type: Transform - uid: 9973 components: - - pos: 64.5,-0.5 + - pos: 38.5,-4.5 parent: 2 type: Transform - uid: 9974 components: - - pos: 64.5,-1.5 + - pos: 39.5,-3.5 parent: 2 type: Transform - uid: 9975 components: - - pos: 65.5,-0.5 + - pos: 39.5,-4.5 parent: 2 type: Transform - uid: 9976 components: - - pos: 65.5,-1.5 + - pos: 38.5,-5.5 parent: 2 type: Transform - uid: 9977 components: - - rot: 3.141592653589793 rad - pos: 61.5,-63.5 + - pos: 37.5,-5.5 parent: 2 type: Transform - uid: 9978 components: - rot: 3.141592653589793 rad - pos: 61.5,-64.5 + pos: 28.5,-50.5 parent: 2 type: Transform - uid: 9979 components: - rot: 3.141592653589793 rad - pos: 61.5,-65.5 + pos: 28.5,-51.5 parent: 2 type: Transform - uid: 9980 components: - rot: 3.141592653589793 rad - pos: 61.5,-66.5 + pos: 29.5,-50.5 parent: 2 type: Transform - uid: 9981 components: - rot: 3.141592653589793 rad - pos: 61.5,-67.5 + pos: 29.5,-51.5 parent: 2 type: Transform - uid: 9982 components: - rot: 3.141592653589793 rad - pos: 61.5,-68.5 + pos: 30.5,-50.5 parent: 2 type: Transform - uid: 9983 components: - - rot: 1.5707963267948966 rad - pos: 1.5,21.5 + - rot: 3.141592653589793 rad + pos: 30.5,-51.5 parent: 2 type: Transform - uid: 9984 components: - - rot: 1.5707963267948966 rad - pos: 1.5,20.5 + - rot: -1.5707963267948966 rad + pos: -38.5,15.5 parent: 2 type: Transform - uid: 9985 components: - - rot: 1.5707963267948966 rad - pos: 1.5,19.5 + - rot: -1.5707963267948966 rad + pos: -38.5,14.5 parent: 2 type: Transform - uid: 9986 components: - - rot: 1.5707963267948966 rad - pos: 2.5,21.5 + - rot: -1.5707963267948966 rad + pos: -38.5,13.5 parent: 2 type: Transform - uid: 9987 components: - - rot: 1.5707963267948966 rad - pos: 2.5,20.5 + - rot: -1.5707963267948966 rad + pos: -38.5,12.5 parent: 2 type: Transform - uid: 9988 components: - - rot: 1.5707963267948966 rad - pos: 2.5,19.5 + - rot: -1.5707963267948966 rad + pos: -38.5,11.5 parent: 2 type: Transform - uid: 9989 components: - - rot: 3.141592653589793 rad - pos: 5.5,21.5 + - rot: -1.5707963267948966 rad + pos: -38.5,10.5 parent: 2 type: Transform - uid: 9990 components: - - rot: 3.141592653589793 rad - pos: 5.5,22.5 + - rot: -1.5707963267948966 rad + pos: -38.5,9.5 parent: 2 type: Transform -- proto: CarpetBlack - entities: - uid: 9991 components: - - pos: -7.5,-36.5 + - rot: -1.5707963267948966 rad + pos: -38.5,8.5 parent: 2 type: Transform - uid: 9992 components: - - pos: -7.5,-37.5 + - rot: -1.5707963267948966 rad + pos: -37.5,15.5 parent: 2 type: Transform - uid: 9993 components: - - pos: -7.5,-38.5 + - rot: -1.5707963267948966 rad + pos: -37.5,14.5 parent: 2 type: Transform - uid: 9994 components: - - pos: -11.5,-39.5 + - rot: -1.5707963267948966 rad + pos: -37.5,13.5 parent: 2 type: Transform - uid: 9995 components: - - pos: -10.5,-39.5 + - rot: -1.5707963267948966 rad + pos: -37.5,12.5 parent: 2 type: Transform - uid: 9996 components: - - pos: -9.5,-39.5 + - rot: -1.5707963267948966 rad + pos: -37.5,11.5 parent: 2 type: Transform - uid: 9997 components: - - rot: 3.141592653589793 rad - pos: 31.5,-53.5 + - rot: -1.5707963267948966 rad + pos: -37.5,10.5 parent: 2 type: Transform - uid: 9998 components: - - rot: 3.141592653589793 rad - pos: 31.5,-54.5 + - rot: -1.5707963267948966 rad + pos: -37.5,9.5 parent: 2 type: Transform - uid: 9999 components: - - rot: 3.141592653589793 rad - pos: 31.5,-55.5 + - rot: -1.5707963267948966 rad + pos: -37.5,8.5 parent: 2 type: Transform - uid: 10000 components: - - rot: 3.141592653589793 rad - pos: 31.5,-56.5 + - rot: -1.5707963267948966 rad + pos: -34.5,15.5 parent: 2 type: Transform - uid: 10001 components: - - rot: 3.141592653589793 rad - pos: -12.5,32.5 + - rot: -1.5707963267948966 rad + pos: -34.5,14.5 parent: 2 type: Transform - uid: 10002 components: - - rot: 3.141592653589793 rad - pos: -12.5,31.5 + - rot: -1.5707963267948966 rad + pos: -34.5,13.5 parent: 2 type: Transform - uid: 10003 components: - - rot: 3.141592653589793 rad - pos: -11.5,32.5 + - rot: -1.5707963267948966 rad + pos: -33.5,15.5 parent: 2 type: Transform - uid: 10004 components: - - rot: 3.141592653589793 rad - pos: -11.5,31.5 + - rot: -1.5707963267948966 rad + pos: -33.5,14.5 parent: 2 type: Transform - uid: 10005 components: - - rot: 3.141592653589793 rad - pos: -10.5,32.5 + - rot: -1.5707963267948966 rad + pos: -33.5,13.5 parent: 2 type: Transform - uid: 10006 components: - - rot: 3.141592653589793 rad - pos: -10.5,31.5 + - pos: -30.5,14.5 parent: 2 type: Transform -- proto: CarpetBlue - entities: - uid: 10007 components: - - rot: -1.5707963267948966 rad - pos: 2.5,-7.5 + - pos: -30.5,13.5 parent: 2 type: Transform - uid: 10008 components: - - rot: -1.5707963267948966 rad - pos: 9.5,5.5 + - pos: -30.5,12.5 parent: 2 type: Transform - uid: 10009 components: - - pos: -18.5,-56.5 + - pos: 64.5,-0.5 parent: 2 type: Transform - uid: 10010 components: - - pos: -18.5,-55.5 + - pos: 64.5,-1.5 parent: 2 type: Transform - uid: 10011 components: - - pos: -20.5,-55.5 + - pos: 65.5,-0.5 parent: 2 type: Transform - uid: 10012 components: - - pos: -20.5,-54.5 + - pos: 65.5,-1.5 parent: 2 type: Transform - uid: 10013 components: - - pos: -19.5,-54.5 + - rot: 3.141592653589793 rad + pos: 61.5,-63.5 parent: 2 type: Transform - uid: 10014 components: - - pos: -17.5,-56.5 + - rot: 3.141592653589793 rad + pos: 61.5,-64.5 parent: 2 type: Transform - uid: 10015 components: - - pos: -20.5,-56.5 + - rot: 3.141592653589793 rad + pos: 61.5,-65.5 parent: 2 type: Transform - uid: 10016 components: - - pos: -17.5,-54.5 + - rot: 3.141592653589793 rad + pos: 61.5,-66.5 parent: 2 type: Transform - uid: 10017 components: - - pos: -17.5,-55.5 + - rot: 3.141592653589793 rad + pos: 61.5,-67.5 parent: 2 type: Transform - uid: 10018 components: - - pos: -19.5,-55.5 + - rot: 3.141592653589793 rad + pos: 61.5,-68.5 parent: 2 type: Transform - uid: 10019 components: - - pos: -19.5,-56.5 + - rot: 1.5707963267948966 rad + pos: 1.5,21.5 parent: 2 type: Transform - uid: 10020 components: - - pos: -18.5,-54.5 + - rot: 1.5707963267948966 rad + pos: 1.5,20.5 parent: 2 type: Transform - uid: 10021 components: - - rot: -1.5707963267948966 rad - pos: 8.5,5.5 + - rot: 1.5707963267948966 rad + pos: 1.5,19.5 parent: 2 type: Transform - uid: 10022 components: - - rot: 3.141592653589793 rad - pos: 17.5,13.5 + - rot: 1.5707963267948966 rad + pos: 2.5,21.5 parent: 2 type: Transform - uid: 10023 components: - - rot: 3.141592653589793 rad - pos: 17.5,12.5 - parent: 2 + - rot: 1.5707963267948966 rad + pos: 2.5,20.5 + parent: 2 type: Transform - uid: 10024 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,19.5 + parent: 2 + type: Transform + - uid: 10025 + components: + - rot: 3.141592653589793 rad + pos: 5.5,21.5 + parent: 2 + type: Transform + - uid: 10026 + components: + - rot: 3.141592653589793 rad + pos: 5.5,22.5 + parent: 2 + type: Transform +- proto: CarpetBlack + entities: + - uid: 10027 + components: + - pos: -7.5,-36.5 + parent: 2 + type: Transform + - uid: 10028 + components: + - pos: -7.5,-37.5 + parent: 2 + type: Transform + - uid: 10029 + components: + - pos: -7.5,-38.5 + parent: 2 + type: Transform + - uid: 10030 + components: + - pos: -11.5,-39.5 + parent: 2 + type: Transform + - uid: 10031 + components: + - pos: -10.5,-39.5 + parent: 2 + type: Transform + - uid: 10032 + components: + - pos: -9.5,-39.5 + parent: 2 + type: Transform + - uid: 10033 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-53.5 + parent: 2 + type: Transform + - uid: 10034 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-54.5 + parent: 2 + type: Transform + - uid: 10035 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-55.5 + parent: 2 + type: Transform + - uid: 10036 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-56.5 + parent: 2 + type: Transform + - uid: 10037 + components: + - rot: 3.141592653589793 rad + pos: -12.5,32.5 + parent: 2 + type: Transform + - uid: 10038 + components: + - rot: 3.141592653589793 rad + pos: -12.5,31.5 + parent: 2 + type: Transform + - uid: 10039 + components: + - rot: 3.141592653589793 rad + pos: -11.5,32.5 + parent: 2 + type: Transform + - uid: 10040 + components: + - rot: 3.141592653589793 rad + pos: -11.5,31.5 + parent: 2 + type: Transform + - uid: 10041 + components: + - rot: 3.141592653589793 rad + pos: -10.5,32.5 + parent: 2 + type: Transform + - uid: 10042 + components: + - rot: 3.141592653589793 rad + pos: -10.5,31.5 + parent: 2 + type: Transform +- proto: CarpetBlue + entities: + - uid: 10043 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 2 + type: Transform + - uid: 10044 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,5.5 + parent: 2 + type: Transform + - uid: 10045 + components: + - pos: -18.5,-56.5 + parent: 2 + type: Transform + - uid: 10046 + components: + - pos: -18.5,-55.5 + parent: 2 + type: Transform + - uid: 10047 + components: + - pos: -20.5,-55.5 + parent: 2 + type: Transform + - uid: 10048 + components: + - pos: -20.5,-54.5 + parent: 2 + type: Transform + - uid: 10049 + components: + - pos: -19.5,-54.5 + parent: 2 + type: Transform + - uid: 10050 + components: + - pos: -17.5,-56.5 + parent: 2 + type: Transform + - uid: 10051 + components: + - pos: -20.5,-56.5 + parent: 2 + type: Transform + - uid: 10052 + components: + - pos: -17.5,-54.5 + parent: 2 + type: Transform + - uid: 10053 + components: + - pos: -17.5,-55.5 + parent: 2 + type: Transform + - uid: 10054 + components: + - pos: -19.5,-55.5 + parent: 2 + type: Transform + - uid: 10055 + components: + - pos: -19.5,-56.5 + parent: 2 + type: Transform + - uid: 10056 + components: + - pos: -18.5,-54.5 + parent: 2 + type: Transform + - uid: 10057 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,5.5 + parent: 2 + type: Transform + - uid: 10058 + components: + - rot: 3.141592653589793 rad + pos: 17.5,13.5 + parent: 2 + type: Transform + - uid: 10059 + components: + - rot: 3.141592653589793 rad + pos: 17.5,12.5 + parent: 2 + type: Transform + - uid: 10060 components: - rot: 3.141592653589793 rad pos: 17.5,11.5 parent: 2 type: Transform - - uid: 10025 + - uid: 10061 components: - pos: 17.5,9.5 parent: 2 type: Transform - - uid: 10026 + - uid: 10062 components: - pos: 17.5,14.5 parent: 2 type: Transform - - uid: 10027 + - uid: 10063 components: - pos: 17.5,10.5 parent: 2 type: Transform - - uid: 10028 + - uid: 10064 components: - pos: -22.5,-55.5 parent: 2 type: Transform - - uid: 10029 + - uid: 10065 components: - pos: -21.5,-55.5 parent: 2 type: Transform - - uid: 10030 + - uid: 10066 components: - pos: -21.5,-54.5 parent: 2 type: Transform - - uid: 10031 + - uid: 10067 components: - pos: -22.5,-54.5 parent: 2 type: Transform - - uid: 10032 + - uid: 10068 components: - pos: -1.5,-6.5 parent: 2 type: Transform - - uid: 10033 + - uid: 10069 components: - rot: -1.5707963267948966 rad pos: 3.5,-4.5 parent: 2 type: Transform - - uid: 10034 + - uid: 10070 components: - rot: -1.5707963267948966 rad pos: 4.5,-5.5 parent: 2 type: Transform - - uid: 10035 + - uid: 10071 components: - rot: -1.5707963267948966 rad pos: 5.5,-4.5 parent: 2 type: Transform - - uid: 10036 + - uid: 10072 components: - rot: -1.5707963267948966 rad pos: 2.5,-6.5 parent: 2 type: Transform - - uid: 10037 + - uid: 10073 components: - rot: -1.5707963267948966 rad pos: 4.5,-6.5 parent: 2 type: Transform - - uid: 10038 + - uid: 10074 components: - pos: -1.5,-5.5 parent: 2 type: Transform - - uid: 10039 + - uid: 10075 components: - rot: -1.5707963267948966 rad pos: 3.5,-7.5 parent: 2 type: Transform - - uid: 10040 + - uid: 10076 components: - pos: -0.5,-6.5 parent: 2 type: Transform - - uid: 10041 + - uid: 10077 components: - rot: -1.5707963267948966 rad pos: 3.5,-6.5 parent: 2 type: Transform - - uid: 10042 + - uid: 10078 components: - rot: -1.5707963267948966 rad pos: 4.5,-7.5 parent: 2 type: Transform - - uid: 10043 + - uid: 10079 components: - pos: -0.5,-5.5 parent: 2 type: Transform - - uid: 10044 + - uid: 10080 components: - rot: -1.5707963267948966 rad pos: 5.5,-6.5 parent: 2 type: Transform - - uid: 10045 + - uid: 10081 components: - rot: -1.5707963267948966 rad pos: 5.5,-7.5 parent: 2 type: Transform - - uid: 10046 + - uid: 10082 components: - rot: 1.5707963267948966 rad pos: 28.5,-36.5 parent: 2 type: Transform - - uid: 10047 + - uid: 10083 components: - pos: 3.5,-5.5 parent: 2 type: Transform - - uid: 10048 + - uid: 10084 components: - pos: 2.5,-5.5 parent: 2 type: Transform - - uid: 10049 + - uid: 10085 components: - pos: 2.5,-4.5 parent: 2 type: Transform - - uid: 10050 + - uid: 10086 components: - pos: 4.5,-4.5 parent: 2 type: Transform - - uid: 10051 + - uid: 10087 components: - pos: 5.5,-5.5 parent: 2 type: Transform - - uid: 10052 + - uid: 10088 components: - rot: 1.5707963267948966 rad pos: 28.5,-35.5 parent: 2 type: Transform - - uid: 10053 + - uid: 10089 components: - rot: 1.5707963267948966 rad pos: 28.5,-37.5 parent: 2 type: Transform - - uid: 10054 + - uid: 10090 components: - rot: 3.141592653589793 rad pos: 28.5,-34.5 @@ -63111,208 +63329,208 @@ entities: type: Transform - proto: CarpetChapel entities: - - uid: 10055 + - uid: 10091 components: - rot: -1.5707963267948966 rad pos: -36.5,10.5 parent: 2 type: Transform - - uid: 10056 + - uid: 10092 components: - rot: 3.141592653589793 rad pos: -35.5,10.5 parent: 2 type: Transform - - uid: 10057 + - uid: 10093 components: - rot: 1.5707963267948966 rad pos: -35.5,9.5 parent: 2 type: Transform - - uid: 10058 + - uid: 10094 components: - pos: -36.5,9.5 parent: 2 type: Transform - - uid: 10059 + - uid: 10095 components: - pos: -36.5,11.5 parent: 2 type: Transform - - uid: 10060 + - uid: 10096 components: - rot: 1.5707963267948966 rad pos: -35.5,11.5 parent: 2 type: Transform - - uid: 10061 + - uid: 10097 components: - rot: -1.5707963267948966 rad pos: -36.5,12.5 parent: 2 type: Transform - - uid: 10062 + - uid: 10098 components: - rot: 3.141592653589793 rad pos: -35.5,12.5 parent: 2 type: Transform - - uid: 10063 + - uid: 10099 components: - rot: 3.141592653589793 rad pos: -39.5,12.5 parent: 2 type: Transform - - uid: 10064 + - uid: 10100 components: - rot: 1.5707963267948966 rad pos: -39.5,11.5 parent: 2 type: Transform - - uid: 10065 + - uid: 10101 components: - pos: -40.5,11.5 parent: 2 type: Transform - - uid: 10066 + - uid: 10102 components: - rot: -1.5707963267948966 rad pos: -40.5,10.5 parent: 2 type: Transform - - uid: 10067 + - uid: 10103 components: - rot: 3.141592653589793 rad pos: -39.5,10.5 parent: 2 type: Transform - - uid: 10068 + - uid: 10104 components: - pos: -40.5,9.5 parent: 2 type: Transform - - uid: 10069 + - uid: 10105 components: - rot: 1.5707963267948966 rad pos: -39.5,9.5 parent: 2 type: Transform - - uid: 10070 + - uid: 10106 components: - rot: -1.5707963267948966 rad pos: -40.5,12.5 parent: 2 type: Transform - - uid: 10071 + - uid: 10107 components: - rot: -1.5707963267948966 rad pos: 59.5,-65.5 parent: 2 type: Transform - - uid: 10072 + - uid: 10108 components: - rot: 3.141592653589793 rad pos: 60.5,-65.5 parent: 2 type: Transform - - uid: 10073 + - uid: 10109 components: - pos: 59.5,-66.5 parent: 2 type: Transform - - uid: 10074 + - uid: 10110 components: - rot: -1.5707963267948966 rad pos: 62.5,-65.5 parent: 2 type: Transform - - uid: 10075 + - uid: 10111 components: - pos: 62.5,-66.5 parent: 2 type: Transform - - uid: 10076 + - uid: 10112 components: - rot: 3.141592653589793 rad pos: 63.5,-65.5 parent: 2 type: Transform - - uid: 10077 + - uid: 10113 components: - rot: 1.5707963267948966 rad pos: 63.5,-66.5 parent: 2 type: Transform - - uid: 10078 + - uid: 10114 components: - rot: -1.5707963267948966 rad pos: 62.5,-63.5 parent: 2 type: Transform - - uid: 10079 + - uid: 10115 components: - rot: 3.141592653589793 rad pos: 63.5,-63.5 parent: 2 type: Transform - - uid: 10080 + - uid: 10116 components: - rot: 1.5707963267948966 rad pos: 63.5,-64.5 parent: 2 type: Transform - - uid: 10081 + - uid: 10117 components: - pos: 62.5,-64.5 parent: 2 type: Transform - - uid: 10082 + - uid: 10118 components: - rot: 3.141592653589793 rad pos: 60.5,-63.5 parent: 2 type: Transform - - uid: 10083 + - uid: 10119 components: - rot: -1.5707963267948966 rad pos: 59.5,-63.5 parent: 2 type: Transform - - uid: 10084 + - uid: 10120 components: - pos: 59.5,-64.5 parent: 2 type: Transform - - uid: 10085 + - uid: 10121 components: - rot: 1.5707963267948966 rad pos: 60.5,-64.5 parent: 2 type: Transform - - uid: 10086 + - uid: 10122 components: - pos: 60.5,-68.5 parent: 2 type: Transform - - uid: 10087 + - uid: 10123 components: - rot: 1.5707963267948966 rad pos: 62.5,-68.5 parent: 2 type: Transform - - uid: 10088 + - uid: 10124 components: - rot: -1.5707963267948966 rad pos: 60.5,-67.5 parent: 2 type: Transform - - uid: 10089 + - uid: 10125 components: - rot: 3.141592653589793 rad pos: 62.5,-67.5 parent: 2 type: Transform - - uid: 10090 + - uid: 10126 components: - rot: 1.5707963267948966 rad pos: 60.5,-66.5 @@ -63320,540 +63538,540 @@ entities: type: Transform - proto: CarpetGreen entities: - - uid: 10091 + - uid: 10127 components: - pos: 22.5,-34.5 parent: 2 type: Transform - - uid: 10092 + - uid: 10128 components: - rot: -1.5707963267948966 rad pos: 13.5,-10.5 parent: 2 type: Transform - - uid: 10093 + - uid: 10129 components: - rot: -1.5707963267948966 rad pos: 9.5,-10.5 parent: 2 type: Transform - - uid: 10094 + - uid: 10130 components: - rot: -1.5707963267948966 rad pos: 10.5,-10.5 parent: 2 type: Transform - - uid: 10095 + - uid: 10131 components: - rot: -1.5707963267948966 rad pos: 9.5,-12.5 parent: 2 type: Transform - - uid: 10096 + - uid: 10132 components: - rot: -1.5707963267948966 rad pos: 10.5,-12.5 parent: 2 type: Transform - - uid: 10097 + - uid: 10133 components: - rot: -1.5707963267948966 rad pos: 10.5,-11.5 parent: 2 type: Transform - - uid: 10098 + - uid: 10134 components: - rot: -1.5707963267948966 rad pos: 11.5,-11.5 parent: 2 type: Transform - - uid: 10099 + - uid: 10135 components: - rot: -1.5707963267948966 rad pos: 12.5,-11.5 parent: 2 type: Transform - - uid: 10100 + - uid: 10136 components: - rot: -1.5707963267948966 rad pos: 13.5,-11.5 parent: 2 type: Transform - - uid: 10101 + - uid: 10137 components: - rot: -1.5707963267948966 rad pos: 11.5,-10.5 parent: 2 type: Transform - - uid: 10102 + - uid: 10138 components: - rot: -1.5707963267948966 rad pos: 12.5,-10.5 parent: 2 type: Transform - - uid: 10103 + - uid: 10139 components: - rot: -1.5707963267948966 rad pos: 11.5,-12.5 parent: 2 type: Transform - - uid: 10104 + - uid: 10140 components: - pos: 20.5,13.5 parent: 2 type: Transform - - uid: 10105 + - uid: 10141 components: - pos: 14.5,9.5 parent: 2 type: Transform - - uid: 10106 + - uid: 10142 components: - pos: 9.5,-11.5 parent: 2 type: Transform - - uid: 10107 + - uid: 10143 components: - rot: -1.5707963267948966 rad pos: 12.5,-12.5 parent: 2 type: Transform - - uid: 10108 + - uid: 10144 components: - rot: -1.5707963267948966 rad pos: 13.5,-12.5 parent: 2 type: Transform - - uid: 10109 + - uid: 10145 components: - rot: 1.5707963267948966 rad pos: 8.5,8.5 parent: 2 type: Transform - - uid: 10110 + - uid: 10146 components: - rot: 3.141592653589793 rad pos: 14.5,13.5 parent: 2 type: Transform - - uid: 10111 + - uid: 10147 components: - rot: 3.141592653589793 rad pos: 14.5,12.5 parent: 2 type: Transform - - uid: 10112 + - uid: 10148 components: - rot: 3.141592653589793 rad pos: 14.5,11.5 parent: 2 type: Transform - - uid: 10113 + - uid: 10149 components: - rot: 3.141592653589793 rad pos: 14.5,10.5 parent: 2 type: Transform - - uid: 10114 + - uid: 10150 components: - rot: 1.5707963267948966 rad pos: 8.5,9.5 parent: 2 type: Transform - - uid: 10115 + - uid: 10151 components: - pos: -5.5,-49.5 parent: 2 type: Transform - - uid: 10116 + - uid: 10152 components: - pos: -4.5,-49.5 parent: 2 type: Transform - - uid: 10117 + - uid: 10153 components: - pos: -3.5,-49.5 parent: 2 type: Transform - - uid: 10118 + - uid: 10154 components: - pos: -3.5,-50.5 parent: 2 type: Transform - - uid: 10119 + - uid: 10155 components: - pos: -4.5,-50.5 parent: 2 type: Transform - - uid: 10120 + - uid: 10156 components: - pos: -5.5,-50.5 parent: 2 type: Transform - - uid: 10121 + - uid: 10157 components: - pos: 21.5,13.5 parent: 2 type: Transform - - uid: 10122 + - uid: 10158 components: - pos: 21.5,10.5 parent: 2 type: Transform - - uid: 10123 + - uid: 10159 components: - pos: 20.5,10.5 parent: 2 type: Transform - - uid: 10124 + - uid: 10160 components: - pos: 20.5,12.5 parent: 2 type: Transform - - uid: 10125 + - uid: 10161 components: - pos: 20.5,11.5 parent: 2 type: Transform - - uid: 10126 + - uid: 10162 components: - pos: 21.5,11.5 parent: 2 type: Transform - - uid: 10127 + - uid: 10163 components: - pos: 21.5,12.5 parent: 2 type: Transform - - uid: 10128 + - uid: 10164 components: - pos: -22.5,45.5 parent: 2 type: Transform - - uid: 10129 + - uid: 10165 components: - pos: -22.5,44.5 parent: 2 type: Transform - - uid: 10130 + - uid: 10166 components: - pos: -22.5,43.5 parent: 2 type: Transform - - uid: 10131 + - uid: 10167 components: - pos: -22.5,42.5 parent: 2 type: Transform - - uid: 10132 + - uid: 10168 components: - pos: -21.5,45.5 parent: 2 type: Transform - - uid: 10133 + - uid: 10169 components: - pos: -21.5,44.5 parent: 2 type: Transform - - uid: 10134 + - uid: 10170 components: - rot: 3.141592653589793 rad pos: 32.5,-50.5 parent: 2 type: Transform - - uid: 10135 + - uid: 10171 components: - rot: 3.141592653589793 rad pos: 32.5,-51.5 parent: 2 type: Transform - - uid: 10136 + - uid: 10172 components: - rot: 3.141592653589793 rad pos: 33.5,-50.5 parent: 2 type: Transform - - uid: 10137 + - uid: 10173 components: - rot: 3.141592653589793 rad pos: 33.5,-51.5 parent: 2 type: Transform - - uid: 10138 + - uid: 10174 components: - rot: 3.141592653589793 rad pos: 34.5,-50.5 parent: 2 type: Transform - - uid: 10139 + - uid: 10175 components: - rot: 3.141592653589793 rad pos: 34.5,-51.5 parent: 2 type: Transform - - uid: 10140 + - uid: 10176 components: - pos: -21.5,42.5 parent: 2 type: Transform - - uid: 10141 + - uid: 10177 components: - pos: -21.5,43.5 parent: 2 type: Transform - - uid: 10142 + - uid: 10178 components: - rot: 1.5707963267948966 rad pos: -22.5,30.5 parent: 2 type: Transform - - uid: 10143 + - uid: 10179 components: - rot: 1.5707963267948966 rad pos: -23.5,30.5 parent: 2 type: Transform - - uid: 10144 + - uid: 10180 components: - pos: -23.5,31.5 parent: 2 type: Transform - - uid: 10145 + - uid: 10181 components: - pos: -23.5,29.5 parent: 2 type: Transform - - uid: 10146 + - uid: 10182 components: - pos: -22.5,31.5 parent: 2 type: Transform - - uid: 10147 + - uid: 10183 components: - pos: -22.5,29.5 parent: 2 type: Transform - - uid: 10148 + - uid: 10184 components: - rot: 1.5707963267948966 rad pos: -19.5,33.5 parent: 2 type: Transform - - uid: 10149 + - uid: 10185 components: - rot: 1.5707963267948966 rad pos: -19.5,34.5 parent: 2 type: Transform - - uid: 10150 + - uid: 10186 components: - rot: 1.5707963267948966 rad pos: -19.5,35.5 parent: 2 type: Transform - - uid: 10151 + - uid: 10187 components: - rot: 1.5707963267948966 rad pos: -18.5,33.5 parent: 2 type: Transform - - uid: 10152 + - uid: 10188 components: - rot: 1.5707963267948966 rad pos: -18.5,34.5 parent: 2 type: Transform - - uid: 10153 + - uid: 10189 components: - rot: 1.5707963267948966 rad pos: -18.5,35.5 parent: 2 type: Transform - - uid: 10154 + - uid: 10190 components: - rot: 1.5707963267948966 rad pos: 8.5,7.5 parent: 2 type: Transform - - uid: 10155 + - uid: 10191 components: - rot: 1.5707963267948966 rad pos: 13.5,-79.5 parent: 2 type: Transform - - uid: 10156 + - uid: 10192 components: - rot: 1.5707963267948966 rad pos: 14.5,-79.5 parent: 2 type: Transform - - uid: 10157 + - uid: 10193 components: - rot: 1.5707963267948966 rad pos: 15.5,-79.5 parent: 2 type: Transform - - uid: 10158 + - uid: 10194 components: - rot: 1.5707963267948966 rad pos: 16.5,-79.5 parent: 2 type: Transform - - uid: 10159 + - uid: 10195 components: - rot: 1.5707963267948966 rad pos: 17.5,-79.5 parent: 2 type: Transform - - uid: 10160 + - uid: 10196 components: - rot: 1.5707963267948966 rad pos: 13.5,-87.5 parent: 2 type: Transform - - uid: 10161 + - uid: 10197 components: - rot: 1.5707963267948966 rad pos: 14.5,-87.5 parent: 2 type: Transform - - uid: 10162 + - uid: 10198 components: - rot: 1.5707963267948966 rad pos: 15.5,-87.5 parent: 2 type: Transform - - uid: 10163 + - uid: 10199 components: - rot: 1.5707963267948966 rad pos: 16.5,-87.5 parent: 2 type: Transform - - uid: 10164 + - uid: 10200 components: - rot: 1.5707963267948966 rad pos: 17.5,-87.5 parent: 2 type: Transform - - uid: 10165 + - uid: 10201 components: - rot: -1.5707963267948966 rad pos: 22.5,-35.5 parent: 2 type: Transform - - uid: 10166 + - uid: 10202 components: - rot: -1.5707963267948966 rad pos: 22.5,-36.5 parent: 2 type: Transform - - uid: 10167 + - uid: 10203 components: - rot: -1.5707963267948966 rad pos: 23.5,-35.5 parent: 2 type: Transform - - uid: 10168 + - uid: 10204 components: - rot: -1.5707963267948966 rad pos: 23.5,-36.5 parent: 2 type: Transform - - uid: 10169 + - uid: 10205 components: - rot: -1.5707963267948966 rad pos: 24.5,-34.5 parent: 2 type: Transform - - uid: 10170 + - uid: 10206 components: - rot: -1.5707963267948966 rad pos: 24.5,-35.5 parent: 2 type: Transform - - uid: 10171 + - uid: 10207 components: - rot: -1.5707963267948966 rad pos: 24.5,-36.5 parent: 2 type: Transform - - uid: 10172 + - uid: 10208 components: - rot: -1.5707963267948966 rad pos: 26.5,-35.5 parent: 2 type: Transform - - uid: 10173 + - uid: 10209 components: - rot: -1.5707963267948966 rad pos: 26.5,-36.5 parent: 2 type: Transform - - uid: 10174 + - uid: 10210 components: - rot: -1.5707963267948966 rad pos: 26.5,-37.5 parent: 2 type: Transform - - uid: 10175 + - uid: 10211 components: - pos: 26.5,-34.5 parent: 2 type: Transform - - uid: 10176 + - uid: 10212 components: - pos: 23.5,-34.5 parent: 2 type: Transform - - uid: 10177 + - uid: 10213 components: - rot: 1.5707963267948966 rad pos: 3.5,-9.5 parent: 2 type: Transform - - uid: 10178 + - uid: 10214 components: - rot: 1.5707963267948966 rad pos: 3.5,-10.5 parent: 2 type: Transform - - uid: 10179 + - uid: 10215 components: - rot: 1.5707963267948966 rad pos: 3.5,-11.5 parent: 2 type: Transform - - uid: 10180 + - uid: 10216 components: - rot: 1.5707963267948966 rad pos: 4.5,-9.5 parent: 2 type: Transform - - uid: 10181 + - uid: 10217 components: - rot: 1.5707963267948966 rad pos: 4.5,-10.5 parent: 2 type: Transform - - uid: 10182 + - uid: 10218 components: - rot: 1.5707963267948966 rad pos: 4.5,-11.5 parent: 2 type: Transform - - uid: 10183 + - uid: 10219 components: - rot: 1.5707963267948966 rad pos: 5.5,-9.5 parent: 2 type: Transform - - uid: 10184 + - uid: 10220 components: - rot: 1.5707963267948966 rad pos: 5.5,-10.5 parent: 2 type: Transform - - uid: 10185 + - uid: 10221 components: - rot: 1.5707963267948966 rad pos: 5.5,-11.5 @@ -63861,899 +64079,974 @@ entities: type: Transform - proto: CarpetOrange entities: - - uid: 10186 + - uid: 10222 components: - rot: -1.5707963267948966 rad pos: 8.5,-6.5 parent: 2 type: Transform - - uid: 10187 + - uid: 10223 components: - rot: -1.5707963267948966 rad pos: 9.5,-5.5 parent: 2 type: Transform - - uid: 10188 + - uid: 10224 components: - rot: 3.141592653589793 rad pos: 12.5,11.5 parent: 2 type: Transform - - uid: 10189 + - uid: 10225 components: - rot: 1.5707963267948966 rad pos: 10.5,7.5 parent: 2 type: Transform - - uid: 10190 + - uid: 10226 components: - rot: -1.5707963267948966 rad pos: 11.5,-6.5 parent: 2 type: Transform - - uid: 10191 + - uid: 10227 components: - rot: -1.5707963267948966 rad pos: 11.5,-7.5 parent: 2 type: Transform - - uid: 10192 + - uid: 10228 components: - rot: -1.5707963267948966 rad pos: 11.5,-8.5 parent: 2 type: Transform - - uid: 10193 + - uid: 10229 components: - rot: -1.5707963267948966 rad pos: 10.5,-8.5 parent: 2 type: Transform - - uid: 10194 + - uid: 10230 components: - rot: -1.5707963267948966 rad pos: 9.5,-8.5 parent: 2 type: Transform - - uid: 10195 + - uid: 10231 components: - rot: -1.5707963267948966 rad pos: 8.5,-8.5 parent: 2 type: Transform - - uid: 10196 + - uid: 10232 components: - rot: -1.5707963267948966 rad pos: 8.5,-7.5 parent: 2 type: Transform - - uid: 10197 + - uid: 10233 components: - rot: -1.5707963267948966 rad pos: 8.5,-5.5 parent: 2 type: Transform - - uid: 10198 + - uid: 10234 components: - rot: -1.5707963267948966 rad pos: 9.5,-6.5 parent: 2 type: Transform - - uid: 10199 + - uid: 10235 components: - rot: -1.5707963267948966 rad pos: 10.5,-6.5 parent: 2 type: Transform - - uid: 10200 + - uid: 10236 components: - rot: -1.5707963267948966 rad pos: 10.5,-7.5 parent: 2 type: Transform - - uid: 10201 + - uid: 10237 components: - rot: -1.5707963267948966 rad pos: 9.5,-7.5 parent: 2 type: Transform - - uid: 10202 + - uid: 10238 components: - rot: 1.5707963267948966 rad pos: 12.5,7.5 parent: 2 type: Transform - - uid: 10203 + - uid: 10239 components: - rot: -1.5707963267948966 rad pos: 10.5,-5.5 parent: 2 type: Transform - - uid: 10204 + - uid: 10240 components: - rot: -1.5707963267948966 rad pos: 11.5,-5.5 parent: 2 type: Transform - - uid: 10205 + - uid: 10241 components: - rot: 1.5707963267948966 rad pos: 12.5,8.5 parent: 2 type: Transform - - uid: 10206 + - uid: 10242 components: - rot: 3.141592653589793 rad pos: 12.5,10.5 parent: 2 type: Transform - - uid: 10207 + - uid: 10243 components: - rot: 1.5707963267948966 rad pos: 10.5,8.5 parent: 2 type: Transform - - uid: 10208 + - uid: 10244 components: - rot: 1.5707963267948966 rad pos: 11.5,7.5 parent: 2 type: Transform - - uid: 10209 + - uid: 10245 components: - rot: 1.5707963267948966 rad pos: 11.5,8.5 parent: 2 type: Transform - - uid: 10210 + - uid: 10246 components: - rot: 3.141592653589793 rad pos: 11.5,11.5 parent: 2 type: Transform - - uid: 10211 + - uid: 10247 components: - rot: 3.141592653589793 rad pos: 11.5,12.5 parent: 2 type: Transform - - uid: 10212 + - uid: 10248 components: - pos: -12.5,-35.5 parent: 2 type: Transform - - uid: 10213 + - uid: 10249 components: - pos: -12.5,-36.5 parent: 2 type: Transform - - uid: 10214 + - uid: 10250 components: - pos: -12.5,-37.5 parent: 2 type: Transform - - uid: 10215 + - uid: 10251 components: - pos: -11.5,-35.5 parent: 2 type: Transform - - uid: 10216 + - uid: 10252 components: - pos: -11.5,-36.5 parent: 2 type: Transform - - uid: 10217 + - uid: 10253 components: - pos: -11.5,-37.5 parent: 2 type: Transform - - uid: 10218 + - uid: 10254 components: - pos: -10.5,-35.5 parent: 2 type: Transform - - uid: 10219 + - uid: 10255 components: - pos: -10.5,-36.5 parent: 2 type: Transform - - uid: 10220 + - uid: 10256 components: - pos: -10.5,-37.5 parent: 2 type: Transform - - uid: 10221 + - uid: 10257 components: - pos: -9.5,-35.5 parent: 2 type: Transform - - uid: 10222 + - uid: 10258 components: - pos: -9.5,-36.5 parent: 2 type: Transform - - uid: 10223 + - uid: 10259 components: - pos: -9.5,-37.5 parent: 2 type: Transform - - uid: 10224 + - uid: 10260 components: - rot: 3.141592653589793 rad pos: 12.5,12.5 parent: 2 type: Transform - - uid: 10225 + - uid: 10261 components: - rot: 3.141592653589793 rad pos: -37.5,-15.5 parent: 2 type: Transform - - uid: 10226 + - uid: 10262 components: - rot: 3.141592653589793 rad pos: -37.5,-16.5 parent: 2 type: Transform - - uid: 10227 + - uid: 10263 components: - rot: 3.141592653589793 rad pos: -37.5,-17.5 parent: 2 type: Transform - - uid: 10228 + - uid: 10264 components: - rot: 3.141592653589793 rad pos: -37.5,-18.5 parent: 2 type: Transform - - uid: 10229 + - uid: 10265 components: - rot: 3.141592653589793 rad pos: -36.5,-16.5 parent: 2 type: Transform - - uid: 10230 + - uid: 10266 components: - rot: 3.141592653589793 rad pos: -36.5,-17.5 parent: 2 type: Transform - - uid: 10231 + - uid: 10267 components: - rot: 3.141592653589793 rad pos: -36.5,-18.5 parent: 2 type: Transform - - uid: 10232 + - uid: 10268 components: - rot: 3.141592653589793 rad pos: -35.5,-15.5 parent: 2 type: Transform - - uid: 10233 + - uid: 10269 components: - rot: 3.141592653589793 rad pos: -35.5,-16.5 parent: 2 type: Transform - - uid: 10234 + - uid: 10270 components: - rot: 3.141592653589793 rad pos: -35.5,-17.5 parent: 2 type: Transform - - uid: 10235 + - uid: 10271 components: - rot: 3.141592653589793 rad pos: -35.5,-18.5 parent: 2 type: Transform - - uid: 10236 + - uid: 10272 components: - rot: 3.141592653589793 rad pos: -34.5,31.5 parent: 2 type: Transform - - uid: 10237 + - uid: 10273 components: - pos: -34.5,30.5 parent: 2 type: Transform - - uid: 10238 + - uid: 10274 components: - rot: 3.141592653589793 rad pos: -34.5,29.5 parent: 2 type: Transform - - uid: 10239 + - uid: 10275 components: - rot: 3.141592653589793 rad pos: -33.5,31.5 parent: 2 type: Transform - - uid: 10240 + - uid: 10276 components: - rot: 3.141592653589793 rad pos: -33.5,30.5 parent: 2 type: Transform - - uid: 10241 + - uid: 10277 components: - rot: 3.141592653589793 rad pos: -33.5,29.5 parent: 2 type: Transform - - uid: 10242 + - uid: 10278 components: - rot: 3.141592653589793 rad pos: -32.5,31.5 parent: 2 type: Transform - - uid: 10243 + - uid: 10279 components: - rot: 3.141592653589793 rad pos: -32.5,30.5 parent: 2 type: Transform - - uid: 10244 + - uid: 10280 components: - rot: 3.141592653589793 rad pos: -32.5,29.5 parent: 2 type: Transform - - uid: 10245 + - uid: 10281 components: - rot: 3.141592653589793 rad pos: -31.5,31.5 parent: 2 type: Transform - - uid: 10246 + - uid: 10282 components: - rot: 3.141592653589793 rad pos: -31.5,30.5 parent: 2 type: Transform - - uid: 10247 + - uid: 10283 components: - rot: 3.141592653589793 rad pos: -31.5,29.5 parent: 2 type: Transform - - uid: 10248 + - uid: 10284 components: - rot: 3.141592653589793 rad pos: -30.5,31.5 parent: 2 type: Transform - - uid: 10249 + - uid: 10285 components: - rot: 3.141592653589793 rad pos: -30.5,30.5 parent: 2 type: Transform - - uid: 10250 + - uid: 10286 components: - rot: 3.141592653589793 rad pos: -30.5,29.5 parent: 2 type: Transform - - uid: 10251 + - uid: 10287 components: - rot: 3.141592653589793 rad pos: 11.5,10.5 parent: 2 type: Transform - - uid: 10252 + - uid: 10288 components: - pos: 23.5,-38.5 parent: 2 type: Transform - - uid: 10253 + - uid: 10289 components: - pos: 22.5,-38.5 parent: 2 type: Transform - - uid: 10254 + - uid: 10290 components: - pos: 22.5,-39.5 parent: 2 type: Transform - - uid: 10255 + - uid: 10291 components: - pos: 23.5,-39.5 parent: 2 type: Transform - - uid: 10256 + - uid: 10292 components: - pos: 27.5,-39.5 parent: 2 type: Transform - - uid: 10257 + - uid: 10293 components: - pos: 28.5,-39.5 parent: 2 type: Transform - - uid: 10258 + - uid: 10294 components: - pos: 29.5,-39.5 parent: 2 type: Transform - proto: CarpetPink entities: - - uid: 10259 + - uid: 10295 components: - pos: 21.5,-29.5 parent: 2 type: Transform - - uid: 10260 + - uid: 10296 components: - pos: 23.5,-29.5 parent: 2 type: Transform - - uid: 10261 + - uid: 10297 components: - pos: 22.5,-29.5 parent: 2 type: Transform - - uid: 10262 + - uid: 10298 components: - pos: 22.5,-28.5 parent: 2 type: Transform - - uid: 10263 + - uid: 10299 components: - pos: 21.5,-28.5 parent: 2 type: Transform - - uid: 10264 + - uid: 10300 components: - pos: 22.5,-29.5 parent: 2 type: Transform - - uid: 10265 + - uid: 10301 components: - pos: 23.5,-29.5 parent: 2 type: Transform - - uid: 10266 + - uid: 10302 components: - pos: 23.5,-28.5 parent: 2 type: Transform - - uid: 10267 + - uid: 10303 components: - rot: -1.5707963267948966 rad pos: 22.5,-28.5 parent: 2 type: Transform - - uid: 10268 + - uid: 10304 components: - pos: 24.5,-28.5 parent: 2 type: Transform - - uid: 10269 + - uid: 10305 components: - rot: 1.5707963267948966 rad pos: 20.5,-29.5 parent: 2 type: Transform - - uid: 10270 + - uid: 10306 components: - pos: 20.5,-28.5 parent: 2 type: Transform - - uid: 10271 + - uid: 10307 components: - pos: 24.5,-29.5 parent: 2 type: Transform - proto: CarpetPurple entities: - - uid: 10272 + - uid: 10308 components: - pos: -16.5,-38.5 parent: 2 type: Transform - - uid: 10273 + - uid: 10309 components: - pos: -16.5,-39.5 parent: 2 type: Transform - - uid: 10274 + - uid: 10310 components: - pos: -15.5,-38.5 parent: 2 type: Transform - - uid: 10275 + - uid: 10311 components: - pos: -15.5,-39.5 parent: 2 type: Transform - - uid: 10276 + - uid: 10312 components: - pos: -14.5,-38.5 parent: 2 type: Transform - - uid: 10277 + - uid: 10313 components: - pos: -14.5,-39.5 parent: 2 type: Transform - - uid: 10278 + - uid: 10314 components: - rot: -1.5707963267948966 rad pos: -49.5,7.5 parent: 2 type: Transform - - uid: 10279 + - uid: 10315 components: - rot: -1.5707963267948966 rad pos: -49.5,6.5 parent: 2 type: Transform - - uid: 10280 + - uid: 10316 components: - rot: -1.5707963267948966 rad pos: -49.5,5.5 parent: 2 type: Transform - - uid: 10281 + - uid: 10317 components: - rot: -1.5707963267948966 rad pos: -49.5,4.5 parent: 2 type: Transform - - uid: 10282 + - uid: 10318 components: - rot: -1.5707963267948966 rad pos: -48.5,7.5 parent: 2 type: Transform - - uid: 10283 + - uid: 10319 components: - rot: -1.5707963267948966 rad pos: -48.5,6.5 parent: 2 type: Transform - - uid: 10284 + - uid: 10320 components: - rot: -1.5707963267948966 rad pos: -48.5,5.5 parent: 2 type: Transform - - uid: 10285 + - uid: 10321 components: - rot: -1.5707963267948966 rad pos: -48.5,4.5 parent: 2 type: Transform - - uid: 10286 + - uid: 10322 components: - rot: -1.5707963267948966 rad pos: -47.5,7.5 parent: 2 type: Transform - - uid: 10287 + - uid: 10323 components: - rot: -1.5707963267948966 rad pos: -47.5,6.5 parent: 2 type: Transform - - uid: 10288 + - uid: 10324 components: - rot: -1.5707963267948966 rad pos: -47.5,5.5 parent: 2 type: Transform - - uid: 10289 + - uid: 10325 components: - rot: -1.5707963267948966 rad pos: -47.5,4.5 parent: 2 type: Transform - - uid: 10290 + - uid: 10326 components: - rot: -1.5707963267948966 rad pos: -46.5,7.5 parent: 2 type: Transform - - uid: 10291 + - uid: 10327 components: - rot: -1.5707963267948966 rad pos: -46.5,6.5 parent: 2 type: Transform - - uid: 10292 + - uid: 10328 components: - rot: -1.5707963267948966 rad pos: -46.5,5.5 parent: 2 type: Transform - - uid: 10293 + - uid: 10329 components: - rot: -1.5707963267948966 rad pos: -46.5,4.5 parent: 2 type: Transform + - uid: 10330 + components: + - pos: 51.5,-40.5 + parent: 2 + type: Transform + - uid: 10331 + components: + - pos: 52.5,-39.5 + parent: 2 + type: Transform + - uid: 10332 + components: + - pos: 52.5,-41.5 + parent: 2 + type: Transform + - uid: 10333 + components: + - pos: 53.5,-40.5 + parent: 2 + type: Transform + - uid: 10334 + components: + - pos: 52.5,-43.5 + parent: 2 + type: Transform + - uid: 10335 + components: + - pos: 51.5,-42.5 + parent: 2 + type: Transform + - uid: 10336 + components: + - pos: 53.5,-43.5 + parent: 2 + type: Transform + - uid: 10337 + components: + - pos: 51.5,-43.5 + parent: 2 + type: Transform + - uid: 10338 + components: + - pos: 52.5,-40.5 + parent: 2 + type: Transform + - uid: 10339 + components: + - pos: 53.5,-39.5 + parent: 2 + type: Transform + - uid: 10340 + components: + - pos: 52.5,-42.5 + parent: 2 + type: Transform + - uid: 10341 + components: + - pos: 51.5,-39.5 + parent: 2 + type: Transform + - uid: 10342 + components: + - pos: 53.5,-41.5 + parent: 2 + type: Transform + - uid: 10343 + components: + - pos: 53.5,-42.5 + parent: 2 + type: Transform + - uid: 10344 + components: + - pos: 51.5,-41.5 + parent: 2 + type: Transform - proto: CarpetSBlue entities: - - uid: 10294 + - uid: 10345 components: - pos: 21.5,-22.5 parent: 2 type: Transform - - uid: 10295 + - uid: 10346 components: - pos: 21.5,-23.5 parent: 2 type: Transform - - uid: 10296 + - uid: 10347 components: - pos: 23.5,-23.5 parent: 2 type: Transform - - uid: 10297 + - uid: 10348 components: - pos: 24.5,-25.5 parent: 2 type: Transform - - uid: 10298 + - uid: 10349 components: - pos: 26.5,-24.5 parent: 2 type: Transform - - uid: 10299 + - uid: 10350 components: - pos: 26.5,-25.5 parent: 2 type: Transform - - uid: 10300 + - uid: 10351 components: - pos: 29.5,-23.5 parent: 2 type: Transform - - uid: 10301 + - uid: 10352 components: - pos: 28.5,-22.5 parent: 2 type: Transform - - uid: 10302 + - uid: 10353 components: - pos: 29.5,-23.5 parent: 2 type: Transform - - uid: 10303 + - uid: 10354 components: - pos: 25.5,-25.5 parent: 2 type: Transform - - uid: 10304 + - uid: 10355 components: - pos: 29.5,-22.5 parent: 2 type: Transform - - uid: 10305 + - uid: 10356 components: - pos: 27.5,-22.5 parent: 2 type: Transform - - uid: 10306 + - uid: 10357 components: - pos: 26.5,-22.5 parent: 2 type: Transform - - uid: 10307 + - uid: 10358 components: - pos: 24.5,-24.5 parent: 2 type: Transform - - uid: 10308 + - uid: 10359 components: - pos: 24.5,-23.5 parent: 2 type: Transform - - uid: 10309 + - uid: 10360 components: - pos: 24.5,-22.5 parent: 2 type: Transform - - uid: 10310 + - uid: 10361 components: - pos: 25.5,-24.5 parent: 2 type: Transform - - uid: 10311 + - uid: 10362 components: - pos: 28.5,-23.5 parent: 2 type: Transform - - uid: 10312 + - uid: 10363 components: - pos: 22.5,-23.5 parent: 2 type: Transform - - uid: 10313 + - uid: 10364 components: - pos: 22.5,-22.5 parent: 2 type: Transform - - uid: 10314 + - uid: 10365 components: - pos: 23.5,-22.5 parent: 2 type: Transform - - uid: 10315 + - uid: 10366 components: - pos: 25.5,-23.5 parent: 2 type: Transform - - uid: 10316 + - uid: 10367 components: - pos: 25.5,-22.5 parent: 2 type: Transform - - uid: 10317 + - uid: 10368 components: - pos: 26.5,-23.5 parent: 2 type: Transform - - uid: 10318 + - uid: 10369 components: - rot: 3.141592653589793 rad pos: 30.5,-47.5 parent: 2 type: Transform - - uid: 10319 + - uid: 10370 components: - rot: 3.141592653589793 rad pos: 30.5,-48.5 parent: 2 type: Transform - - uid: 10320 + - uid: 10371 components: - rot: 3.141592653589793 rad pos: 31.5,-47.5 parent: 2 type: Transform - - uid: 10321 + - uid: 10372 components: - rot: 3.141592653589793 rad pos: 31.5,-48.5 parent: 2 type: Transform - - uid: 10322 + - uid: 10373 components: - rot: 3.141592653589793 rad pos: 32.5,-47.5 parent: 2 type: Transform - - uid: 10323 + - uid: 10374 components: - rot: 3.141592653589793 rad pos: 32.5,-48.5 parent: 2 type: Transform - - uid: 10324 + - uid: 10375 components: - pos: 30.5,-28.5 parent: 2 type: Transform - - uid: 10325 + - uid: 10376 components: - pos: 30.5,-29.5 parent: 2 type: Transform - - uid: 10326 + - uid: 10377 components: - pos: 31.5,-27.5 parent: 2 type: Transform - - uid: 10327 + - uid: 10378 components: - pos: 31.5,-28.5 parent: 2 type: Transform - - uid: 10328 + - uid: 10379 components: - pos: 31.5,-29.5 parent: 2 type: Transform - - uid: 10329 + - uid: 10380 components: - pos: 32.5,-27.5 parent: 2 type: Transform - - uid: 10330 + - uid: 10381 components: - pos: 32.5,-28.5 parent: 2 type: Transform - - uid: 10331 + - uid: 10382 components: - pos: 32.5,-29.5 parent: 2 type: Transform - - uid: 10332 + - uid: 10383 components: - pos: 30.5,-27.5 parent: 2 type: Transform - - uid: 10333 + - uid: 10384 components: - pos: 31.5,-30.5 parent: 2 type: Transform - - uid: 10334 + - uid: 10385 components: - pos: 30.5,-30.5 parent: 2 type: Transform - - uid: 10335 + - uid: 10386 components: - pos: 59.5,-0.5 parent: 2 type: Transform - - uid: 10336 + - uid: 10387 components: - pos: 59.5,-1.5 parent: 2 type: Transform - - uid: 10337 + - uid: 10388 components: - pos: 60.5,-0.5 parent: 2 type: Transform - - uid: 10338 + - uid: 10389 components: - pos: 60.5,-1.5 parent: 2 type: Transform - - uid: 10339 + - uid: 10390 components: - pos: 61.5,-0.5 parent: 2 type: Transform - - uid: 10340 + - uid: 10391 components: - pos: 61.5,-1.5 parent: 2 type: Transform - - uid: 10341 + - uid: 10392 components: - pos: 62.5,-0.5 parent: 2 type: Transform - - uid: 10342 + - uid: 10393 components: - pos: 62.5,-1.5 parent: 2 type: Transform - - uid: 10343 + - uid: 10394 components: - pos: 32.5,-30.5 parent: 2 type: Transform - - uid: 10344 + - uid: 10395 components: - pos: 27.5,-23.5 parent: 2 type: Transform - proto: CartridgeMagnumAP entities: - - uid: 10345 + - uid: 10396 components: - rot: 1.5707963267948966 rad pos: 23.553988,-35.486286 parent: 2 type: Transform - - uid: 10346 + - uid: 10397 components: - rot: 1.5707963267948966 rad pos: 23.460238,-35.548786 parent: 2 type: Transform - - uid: 10347 + - uid: 10398 components: - rot: 1.5707963267948966 rad pos: 23.647738,-35.43941 @@ -64761,8849 +65054,8869 @@ entities: type: Transform - proto: Catwalk entities: - - uid: 10348 + - uid: 10399 components: - pos: 58.5,-38.5 parent: 2 type: Transform - - uid: 10349 + - uid: 10400 components: - rot: 3.141592653589793 rad pos: 22.5,-32.5 parent: 2 type: Transform - - uid: 10350 + - uid: 10401 components: - rot: 3.141592653589793 rad pos: -76.5,-38.5 parent: 2 type: Transform - - uid: 10351 + - uid: 10402 components: - pos: -79.5,-40.5 parent: 2 type: Transform - - uid: 10352 + - uid: 10403 components: - pos: -79.5,-41.5 parent: 2 type: Transform - - uid: 10353 + - uid: 10404 components: - rot: 3.141592653589793 rad pos: -61.5,-53.5 parent: 2 type: Transform - - uid: 10354 + - uid: 10405 components: - rot: 3.141592653589793 rad pos: -61.5,-54.5 parent: 2 type: Transform - - uid: 10355 + - uid: 10406 components: - rot: 3.141592653589793 rad pos: -61.5,-52.5 parent: 2 type: Transform - - uid: 10356 + - uid: 10407 components: - rot: 3.141592653589793 rad pos: -61.5,-51.5 parent: 2 type: Transform - - uid: 10357 + - uid: 10408 components: - rot: 3.141592653589793 rad pos: -61.5,-50.5 parent: 2 type: Transform - - uid: 10358 + - uid: 10409 components: - rot: 3.141592653589793 rad pos: -61.5,-49.5 parent: 2 type: Transform - - uid: 10359 + - uid: 10410 components: - rot: 3.141592653589793 rad pos: -61.5,-48.5 parent: 2 type: Transform - - uid: 10360 + - uid: 10411 components: - rot: 1.5707963267948966 rad pos: -59.5,56.5 parent: 2 type: Transform - - uid: 10361 + - uid: 10412 components: - rot: 1.5707963267948966 rad pos: -57.5,56.5 parent: 2 type: Transform - - uid: 10362 + - uid: 10413 components: - rot: 1.5707963267948966 rad pos: -55.5,56.5 parent: 2 type: Transform - - uid: 10363 + - uid: 10414 components: - rot: 1.5707963267948966 rad pos: -54.5,55.5 parent: 2 type: Transform - - uid: 10364 + - uid: 10415 components: - rot: 3.141592653589793 rad pos: -0.5,-71.5 parent: 2 type: Transform - - uid: 10365 + - uid: 10416 components: - rot: 3.141592653589793 rad pos: 14.5,-47.5 parent: 2 type: Transform - - uid: 10366 + - uid: 10417 components: - pos: 65.5,-25.5 parent: 2 type: Transform - - uid: 10367 + - uid: 10418 components: - rot: 3.141592653589793 rad pos: 79.5,-26.5 parent: 2 type: Transform - - uid: 10368 + - uid: 10419 components: - pos: 31.5,-14.5 parent: 2 type: Transform - - uid: 10369 + - uid: 10420 components: - pos: -11.5,-15.5 parent: 2 type: Transform - - uid: 10370 + - uid: 10421 components: - pos: -7.5,-75.5 parent: 2 type: Transform - - uid: 10371 + - uid: 10422 components: - pos: 32.5,-11.5 parent: 2 type: Transform - - uid: 10372 + - uid: 10423 components: - pos: -1.5,-83.5 parent: 2 type: Transform - - uid: 10373 + - uid: 10424 components: - pos: -12.5,-15.5 parent: 2 type: Transform - - uid: 10374 + - uid: 10425 components: - pos: -5.5,-69.5 parent: 2 type: Transform - - uid: 10375 + - uid: 10426 components: - pos: 2.5,-90.5 parent: 2 type: Transform - - uid: 10376 + - uid: 10427 components: - pos: -1.5,-88.5 parent: 2 type: Transform - - uid: 10377 + - uid: 10428 components: - pos: -0.5,-89.5 parent: 2 type: Transform - - uid: 10378 + - uid: 10429 components: - pos: 0.5,-89.5 parent: 2 type: Transform - - uid: 10379 + - uid: 10430 components: - pos: 3.5,-92.5 parent: 2 type: Transform - - uid: 10380 + - uid: 10431 components: - pos: 8.5,-53.5 parent: 2 type: Transform - - uid: 10381 + - uid: 10432 components: - pos: 4.5,-92.5 parent: 2 type: Transform - - uid: 10382 + - uid: 10433 components: - pos: -46.5,-50.5 parent: 2 type: Transform - - uid: 10383 + - uid: 10434 components: - rot: 3.141592653589793 rad pos: 0.5,-71.5 parent: 2 type: Transform - - uid: 10384 + - uid: 10435 components: - pos: 2.5,-91.5 parent: 2 type: Transform - - uid: 10385 + - uid: 10436 components: - pos: -1.5,-89.5 parent: 2 type: Transform - - uid: 10386 + - uid: 10437 components: - pos: 4.5,-89.5 parent: 2 type: Transform - - uid: 10387 + - uid: 10438 components: - pos: -6.5,-75.5 parent: 2 type: Transform - - uid: 10388 + - uid: 10439 components: - pos: -8.5,-75.5 parent: 2 type: Transform - - uid: 10389 + - uid: 10440 components: - pos: 30.5,-14.5 parent: 2 type: Transform - - uid: 10390 + - uid: 10441 components: - pos: -5.5,-75.5 parent: 2 type: Transform - - uid: 10391 + - uid: 10442 components: - pos: -4.5,-75.5 parent: 2 type: Transform - - uid: 10392 + - uid: 10443 components: - pos: -3.5,-75.5 parent: 2 type: Transform - - uid: 10393 + - uid: 10444 components: - pos: -14.5,-73.5 parent: 2 type: Transform - - uid: 10394 + - uid: 10445 components: - pos: 30.5,-10.5 parent: 2 type: Transform - - uid: 10395 + - uid: 10446 components: - pos: -13.5,-73.5 parent: 2 type: Transform - - uid: 10396 + - uid: 10447 components: - pos: 9.5,-47.5 parent: 2 type: Transform - - uid: 10397 + - uid: 10448 components: - rot: 3.141592653589793 rad pos: 18.5,-52.5 parent: 2 type: Transform - - uid: 10398 + - uid: 10449 components: - rot: 3.141592653589793 rad pos: 14.5,-53.5 parent: 2 type: Transform - - uid: 10399 + - uid: 10450 components: - rot: 3.141592653589793 rad pos: 14.5,-52.5 parent: 2 type: Transform - - uid: 10400 + - uid: 10451 components: - rot: 3.141592653589793 rad pos: 21.5,-53.5 parent: 2 type: Transform - - uid: 10401 + - uid: 10452 components: - rot: 3.141592653589793 rad pos: 15.5,-53.5 parent: 2 type: Transform - - uid: 10402 + - uid: 10453 components: - rot: 3.141592653589793 rad pos: 15.5,-52.5 parent: 2 type: Transform - - uid: 10403 + - uid: 10454 components: - rot: 3.141592653589793 rad pos: 16.5,-52.5 parent: 2 type: Transform - - uid: 10404 + - uid: 10455 components: - rot: 3.141592653589793 rad pos: 17.5,-52.5 parent: 2 type: Transform - - uid: 10405 + - uid: 10456 components: - rot: 3.141592653589793 rad pos: 17.5,-53.5 parent: 2 type: Transform - - uid: 10406 + - uid: 10457 components: - pos: -46.5,-43.5 parent: 2 type: Transform - - uid: 10407 + - uid: 10458 components: - pos: 32.5,-10.5 parent: 2 type: Transform - - uid: 10408 + - uid: 10459 components: - pos: 32.5,-13.5 parent: 2 type: Transform - - uid: 10409 + - uid: 10460 components: - rot: -1.5707963267948966 rad pos: 27.5,-32.5 parent: 2 type: Transform - - uid: 10410 + - uid: 10461 components: - rot: -1.5707963267948966 rad pos: 24.5,-32.5 parent: 2 type: Transform - - uid: 10411 + - uid: 10462 components: - rot: 3.141592653589793 rad pos: 12.5,-16.5 parent: 2 type: Transform - - uid: 10412 + - uid: 10463 components: - rot: -1.5707963267948966 rad pos: 21.5,-32.5 parent: 2 type: Transform - - uid: 10413 + - uid: 10464 components: - pos: -17.5,-52.5 parent: 2 type: Transform - - uid: 10414 + - uid: 10465 components: - pos: -8.5,-13.5 parent: 2 type: Transform - - uid: 10415 + - uid: 10466 components: - pos: -6.5,-70.5 parent: 2 type: Transform - - uid: 10416 + - uid: 10467 components: - pos: 11.5,-17.5 parent: 2 type: Transform - - uid: 10417 + - uid: 10468 components: - pos: -19.5,-52.5 parent: 2 type: Transform - - uid: 10418 + - uid: 10469 components: - rot: 3.141592653589793 rad pos: 9.5,-92.5 parent: 2 type: Transform - - uid: 10419 + - uid: 10470 components: - rot: 3.141592653589793 rad pos: 10.5,-92.5 parent: 2 type: Transform - - uid: 10420 + - uid: 10471 components: - pos: -1.5,-82.5 parent: 2 type: Transform - - uid: 10421 + - uid: 10472 components: - rot: 3.141592653589793 rad pos: 14.5,-45.5 parent: 2 type: Transform - - uid: 10422 + - uid: 10473 components: - rot: -1.5707963267948966 rad pos: 25.5,-32.5 parent: 2 type: Transform - - uid: 10423 + - uid: 10474 components: - pos: 32.5,-12.5 parent: 2 type: Transform - - uid: 10424 + - uid: 10475 components: - pos: 32.5,-14.5 parent: 2 type: Transform - - uid: 10425 + - uid: 10476 components: - pos: -1.5,-85.5 parent: 2 type: Transform - - uid: 10426 + - uid: 10477 components: - pos: -1.5,-87.5 parent: 2 type: Transform - - uid: 10427 + - uid: 10478 components: - rot: 3.141592653589793 rad pos: 11.5,-105.5 parent: 2 type: Transform - - uid: 10428 + - uid: 10479 components: - pos: -12.5,-14.5 parent: 2 type: Transform - - uid: 10429 + - uid: 10480 components: - pos: 4.5,-67.5 parent: 2 type: Transform - - uid: 10430 + - uid: 10481 components: - pos: 1.5,-89.5 parent: 2 type: Transform - - uid: 10431 + - uid: 10482 components: - pos: 8.5,-55.5 parent: 2 type: Transform - - uid: 10432 + - uid: 10483 components: - rot: 3.141592653589793 rad pos: 11.5,-92.5 parent: 2 type: Transform - - uid: 10433 + - uid: 10484 components: - pos: 3.5,-67.5 parent: 2 type: Transform - - uid: 10434 + - uid: 10485 components: - pos: 5.5,-67.5 parent: 2 type: Transform - - uid: 10435 + - uid: 10486 components: - pos: 8.5,-54.5 parent: 2 type: Transform - - uid: 10436 + - uid: 10487 components: - rot: 1.5707963267948966 rad pos: -24.5,53.5 parent: 2 type: Transform - - uid: 10437 + - uid: 10488 components: - rot: 1.5707963267948966 rad pos: -24.5,50.5 parent: 2 type: Transform - - uid: 10438 + - uid: 10489 components: - rot: 1.5707963267948966 rad pos: -24.5,51.5 parent: 2 type: Transform - - uid: 10439 + - uid: 10490 components: - rot: 1.5707963267948966 rad pos: -24.5,52.5 parent: 2 type: Transform - - uid: 10440 + - uid: 10491 components: - rot: 1.5707963267948966 rad pos: -24.5,49.5 parent: 2 type: Transform - - uid: 10441 + - uid: 10492 components: - rot: 3.141592653589793 rad pos: 2.5,-71.5 parent: 2 type: Transform - - uid: 10442 + - uid: 10493 components: - pos: 30.5,-11.5 parent: 2 type: Transform - - uid: 10443 + - uid: 10494 components: - rot: 3.141592653589793 rad pos: 14.5,-48.5 parent: 2 type: Transform - - uid: 10444 + - uid: 10495 components: - rot: -1.5707963267948966 rad pos: 20.5,-32.5 parent: 2 type: Transform - - uid: 10445 + - uid: 10496 components: - pos: -1.5,-81.5 parent: 2 type: Transform - - uid: 10446 + - uid: 10497 components: - pos: -1.5,-86.5 parent: 2 type: Transform - - uid: 10447 + - uid: 10498 components: - pos: 2.5,-89.5 parent: 2 type: Transform - - uid: 10448 + - uid: 10499 components: - pos: 7.5,-92.5 parent: 2 type: Transform - - uid: 10449 + - uid: 10500 components: - pos: 2.5,-92.5 parent: 2 type: Transform - - uid: 10450 + - uid: 10501 components: - pos: 11.5,-100.5 parent: 2 type: Transform - - uid: 10451 + - uid: 10502 components: - rot: 3.141592653589793 rad pos: 8.5,-92.5 parent: 2 type: Transform - - uid: 10452 + - uid: 10503 components: - pos: 6.5,-92.5 parent: 2 type: Transform - - uid: 10453 + - uid: 10504 components: - pos: 5.5,-92.5 parent: 2 type: Transform - - uid: 10454 + - uid: 10505 components: - pos: -9.5,-75.5 parent: 2 type: Transform - - uid: 10455 + - uid: 10506 components: - rot: 3.141592653589793 rad pos: 20.5,-53.5 parent: 2 type: Transform - - uid: 10456 + - uid: 10507 components: - pos: 30.5,-12.5 parent: 2 type: Transform - - uid: 10457 + - uid: 10508 components: - pos: 60.5,-58.5 parent: 2 type: Transform - - uid: 10458 + - uid: 10509 components: - pos: -4.5,-69.5 parent: 2 type: Transform - - uid: 10459 + - uid: 10510 components: - pos: -13.5,-31.5 parent: 2 type: Transform - - uid: 10460 + - uid: 10511 components: - pos: -3.5,-69.5 parent: 2 type: Transform - - uid: 10461 + - uid: 10512 components: - pos: -9.5,-13.5 parent: 2 type: Transform - - uid: 10462 + - uid: 10513 components: - pos: -12.5,-13.5 parent: 2 type: Transform - - uid: 10463 + - uid: 10514 components: - pos: -10.5,-13.5 parent: 2 type: Transform - - uid: 10464 + - uid: 10515 components: - pos: -10.5,-14.5 parent: 2 type: Transform - - uid: 10465 + - uid: 10516 components: - pos: -10.5,-15.5 parent: 2 type: Transform - - uid: 10466 + - uid: 10517 components: - pos: -13.5,-14.5 parent: 2 type: Transform - - uid: 10467 + - uid: 10518 components: - pos: -7.5,-13.5 parent: 2 type: Transform - - uid: 10468 + - uid: 10519 components: - pos: -14.5,-31.5 parent: 2 type: Transform - - uid: 10469 + - uid: 10520 components: - pos: -15.5,-31.5 parent: 2 type: Transform - - uid: 10470 + - uid: 10521 components: - pos: -2.5,-69.5 parent: 2 type: Transform - - uid: 10471 + - uid: 10522 components: - pos: -16.5,-31.5 parent: 2 type: Transform - - uid: 10472 + - uid: 10523 components: - pos: -6.5,-69.5 parent: 2 type: Transform - - uid: 10473 + - uid: 10524 components: - pos: -12.5,15.5 parent: 2 type: Transform - - uid: 10474 + - uid: 10525 components: - pos: -14.5,15.5 parent: 2 type: Transform - - uid: 10475 + - uid: 10526 components: - pos: -6.5,-71.5 parent: 2 type: Transform - - uid: 10476 + - uid: 10527 components: - pos: -7.5,-71.5 parent: 2 type: Transform - - uid: 10477 + - uid: 10528 components: - pos: -8.5,-71.5 parent: 2 type: Transform - - uid: 10478 + - uid: 10529 components: - pos: -9.5,-71.5 parent: 2 type: Transform - - uid: 10479 + - uid: 10530 components: - pos: -10.5,-71.5 parent: 2 type: Transform - - uid: 10480 + - uid: 10531 components: - pos: -11.5,-71.5 parent: 2 type: Transform - - uid: 10481 + - uid: 10532 components: - pos: 3.5,-16.5 parent: 2 type: Transform - - uid: 10482 + - uid: 10533 components: - pos: 2.5,-16.5 parent: 2 type: Transform - - uid: 10483 + - uid: 10534 components: - pos: 1.5,-16.5 parent: 2 type: Transform - - uid: 10484 + - uid: 10535 components: - pos: 1.5,-17.5 parent: 2 type: Transform - - uid: 10485 + - uid: 10536 components: - pos: 0.5,-17.5 parent: 2 type: Transform - - uid: 10486 + - uid: 10537 components: - pos: -0.5,-17.5 parent: 2 type: Transform - - uid: 10487 + - uid: 10538 components: - pos: -0.5,-17.5 parent: 2 type: Transform - - uid: 10488 + - uid: 10539 components: - pos: 14.5,-14.5 parent: 2 type: Transform - - uid: 10489 + - uid: 10540 components: - pos: 13.5,-14.5 parent: 2 type: Transform - - uid: 10490 + - uid: 10541 components: - pos: 12.5,-14.5 parent: 2 type: Transform - - uid: 10491 + - uid: 10542 components: - pos: 11.5,-14.5 parent: 2 type: Transform - - uid: 10492 + - uid: 10543 components: - pos: 10.5,-14.5 parent: 2 type: Transform - - uid: 10493 + - uid: 10544 components: - pos: 9.5,-14.5 parent: 2 type: Transform - - uid: 10494 + - uid: 10545 components: - pos: 8.5,-14.5 parent: 2 type: Transform - - uid: 10495 + - uid: 10546 components: - pos: 7.5,-14.5 parent: 2 type: Transform - - uid: 10496 + - uid: 10547 components: - pos: 14.5,-5.5 parent: 2 type: Transform - - uid: 10497 + - uid: 10548 components: - pos: 14.5,-6.5 parent: 2 type: Transform - - uid: 10498 + - uid: 10549 components: - pos: 14.5,-4.5 parent: 2 type: Transform - - uid: 10499 + - uid: 10550 components: - pos: 56.5,1.5 parent: 2 type: Transform - - uid: 10500 + - uid: 10551 components: - pos: 57.5,2.5 parent: 2 type: Transform - - uid: 10501 + - uid: 10552 components: - pos: 56.5,2.5 parent: 2 type: Transform - - uid: 10502 + - uid: 10553 components: - pos: 57.5,1.5 parent: 2 type: Transform - - uid: 10503 + - uid: 10554 components: - pos: 58.5,1.5 parent: 2 type: Transform - - uid: 10504 + - uid: 10555 components: - pos: 59.5,1.5 parent: 2 type: Transform - - uid: 10505 + - uid: 10556 components: - pos: 60.5,1.5 parent: 2 type: Transform - - uid: 10506 + - uid: 10557 components: - pos: 61.5,1.5 parent: 2 type: Transform - - uid: 10507 + - uid: 10558 components: - pos: 62.5,1.5 parent: 2 type: Transform - - uid: 10508 + - uid: 10559 components: - pos: 62.5,2.5 parent: 2 type: Transform - - uid: 10509 + - uid: 10560 components: - pos: 12.5,-17.5 parent: 2 type: Transform - - uid: 10510 + - uid: 10561 components: - pos: 10.5,-17.5 parent: 2 type: Transform - - uid: 10511 + - uid: 10562 components: - pos: 8.5,-17.5 parent: 2 type: Transform - - uid: 10512 + - uid: 10563 components: - pos: 7.5,-17.5 parent: 2 type: Transform - - uid: 10513 + - uid: 10564 components: - rot: -1.5707963267948966 rad pos: 59.5,-19.5 parent: 2 type: Transform - - uid: 10514 + - uid: 10565 components: - rot: -1.5707963267948966 rad pos: 59.5,-20.5 parent: 2 type: Transform - - uid: 10515 + - uid: 10566 components: - rot: -1.5707963267948966 rad pos: 59.5,-21.5 parent: 2 type: Transform - - uid: 10516 + - uid: 10567 components: - rot: -1.5707963267948966 rad pos: 58.5,-19.5 parent: 2 type: Transform - - uid: 10517 + - uid: 10568 components: - rot: -1.5707963267948966 rad pos: 57.5,-19.5 parent: 2 type: Transform - - uid: 10518 + - uid: 10569 components: - rot: -1.5707963267948966 rad pos: 57.5,-18.5 parent: 2 type: Transform - - uid: 10519 + - uid: 10570 components: - rot: -1.5707963267948966 rad pos: 57.5,-17.5 parent: 2 type: Transform - - uid: 10520 + - uid: 10571 components: - rot: -1.5707963267948966 rad pos: 52.5,-17.5 parent: 2 type: Transform - - uid: 10521 + - uid: 10572 components: - rot: -1.5707963267948966 rad pos: 53.5,-17.5 parent: 2 type: Transform - - uid: 10522 + - uid: 10573 components: - rot: -1.5707963267948966 rad pos: 54.5,-17.5 parent: 2 type: Transform - - uid: 10523 + - uid: 10574 components: - rot: -1.5707963267948966 rad pos: 55.5,-17.5 parent: 2 type: Transform - - uid: 10524 + - uid: 10575 components: - rot: -1.5707963267948966 rad pos: 56.5,-17.5 parent: 2 type: Transform - - uid: 10525 + - uid: 10576 components: - pos: 61.5,-58.5 parent: 2 type: Transform - - uid: 10526 + - uid: 10577 components: - pos: 62.5,-58.5 parent: 2 type: Transform - - uid: 10527 + - uid: 10578 components: - pos: 63.5,-58.5 parent: 2 type: Transform - - uid: 10528 + - uid: 10579 components: - pos: 79.5,-43.5 parent: 2 type: Transform - - uid: 10529 + - uid: 10580 components: - pos: 79.5,-42.5 parent: 2 type: Transform - - uid: 10530 + - uid: 10581 components: - pos: -46.5,-55.5 parent: 2 type: Transform - - uid: 10531 + - uid: 10582 components: - pos: -16.5,-0.5 parent: 2 type: Transform - - uid: 10532 + - uid: 10583 components: - pos: -17.5,-0.5 parent: 2 type: Transform - - uid: 10533 + - uid: 10584 components: - pos: -18.5,-0.5 parent: 2 type: Transform - - uid: 10534 + - uid: 10585 components: - pos: -19.5,-0.5 parent: 2 type: Transform - - uid: 10535 + - uid: 10586 components: - pos: -20.5,-0.5 parent: 2 type: Transform - - uid: 10536 + - uid: 10587 components: - pos: -21.5,-0.5 parent: 2 type: Transform - - uid: 10537 + - uid: 10588 components: - pos: -22.5,-0.5 parent: 2 type: Transform - - uid: 10538 + - uid: 10589 components: - rot: 3.141592653589793 rad pos: 52.5,-85.5 parent: 2 type: Transform - - uid: 10539 + - uid: 10590 components: - rot: 3.141592653589793 rad pos: 52.5,-86.5 parent: 2 type: Transform - - uid: 10540 + - uid: 10591 components: - rot: 3.141592653589793 rad pos: 52.5,-87.5 parent: 2 type: Transform - - uid: 10541 + - uid: 10592 components: - rot: 3.141592653589793 rad pos: 52.5,-92.5 parent: 2 type: Transform - - uid: 10542 + - uid: 10593 components: - rot: 3.141592653589793 rad pos: 52.5,-77.5 parent: 2 type: Transform - - uid: 10543 + - uid: 10594 components: - rot: 3.141592653589793 rad pos: 14.5,-89.5 parent: 2 type: Transform - - uid: 10544 + - uid: 10595 components: - rot: 3.141592653589793 rad pos: 52.5,-78.5 parent: 2 type: Transform - - uid: 10545 + - uid: 10596 components: - rot: 3.141592653589793 rad pos: 15.5,-89.5 parent: 2 type: Transform - - uid: 10546 + - uid: 10597 components: - rot: 3.141592653589793 rad pos: 26.5,-89.5 parent: 2 type: Transform - - uid: 10547 + - uid: 10598 components: - rot: 3.141592653589793 rad pos: 24.5,-89.5 parent: 2 type: Transform - - uid: 10548 + - uid: 10599 components: - rot: 3.141592653589793 rad pos: 25.5,-89.5 parent: 2 type: Transform - - uid: 10549 + - uid: 10600 components: - rot: 3.141592653589793 rad pos: 52.5,-84.5 parent: 2 type: Transform - - uid: 10550 + - uid: 10601 components: - rot: 3.141592653589793 rad pos: 52.5,-94.5 parent: 2 type: Transform - - uid: 10551 + - uid: 10602 components: - rot: 3.141592653589793 rad pos: 52.5,-79.5 parent: 2 type: Transform - - uid: 10552 + - uid: 10603 components: - rot: 3.141592653589793 rad pos: 16.5,-89.5 parent: 2 type: Transform - - uid: 10553 + - uid: 10604 components: - rot: 3.141592653589793 rad pos: 17.5,-89.5 parent: 2 type: Transform - - uid: 10554 + - uid: 10605 components: - rot: 3.141592653589793 rad pos: 18.5,-89.5 parent: 2 type: Transform - - uid: 10555 + - uid: 10606 components: - rot: 3.141592653589793 rad pos: 19.5,-89.5 parent: 2 type: Transform - - uid: 10556 + - uid: 10607 components: - rot: 3.141592653589793 rad pos: 20.5,-89.5 parent: 2 type: Transform - - uid: 10557 + - uid: 10608 components: - rot: 3.141592653589793 rad pos: 21.5,-89.5 parent: 2 type: Transform - - uid: 10558 + - uid: 10609 components: - rot: 3.141592653589793 rad pos: 22.5,-89.5 parent: 2 type: Transform - - uid: 10559 + - uid: 10610 components: - rot: 3.141592653589793 rad pos: 27.5,-89.5 parent: 2 type: Transform - - uid: 10560 + - uid: 10611 components: - rot: 3.141592653589793 rad pos: 57.5,-74.5 parent: 2 type: Transform - - uid: 10561 + - uid: 10612 components: - rot: 3.141592653589793 rad pos: 27.5,-93.5 parent: 2 type: Transform - - uid: 10562 + - uid: 10613 components: - rot: 3.141592653589793 rad pos: 27.5,-94.5 parent: 2 type: Transform - - uid: 10563 + - uid: 10614 components: - rot: 3.141592653589793 rad pos: 27.5,-91.5 parent: 2 type: Transform - - uid: 10564 + - uid: 10615 components: - rot: 3.141592653589793 rad pos: 27.5,-92.5 parent: 2 type: Transform - - uid: 10565 + - uid: 10616 components: - rot: 3.141592653589793 rad pos: 52.5,-91.5 parent: 2 type: Transform - - uid: 10566 + - uid: 10617 components: - rot: 1.5707963267948966 rad pos: 22.5,-75.5 parent: 2 type: Transform - - uid: 10567 + - uid: 10618 components: - pos: 20.5,-73.5 parent: 2 type: Transform - - uid: 10568 + - uid: 10619 components: - pos: 19.5,-73.5 parent: 2 type: Transform - - uid: 10569 + - uid: 10620 components: - pos: 18.5,-73.5 parent: 2 type: Transform - - uid: 10570 + - uid: 10621 components: - pos: 17.5,-73.5 parent: 2 type: Transform - - uid: 10571 + - uid: 10622 components: - pos: 16.5,-73.5 parent: 2 type: Transform - - uid: 10572 + - uid: 10623 components: - pos: 15.5,-73.5 parent: 2 type: Transform - - uid: 10573 + - uid: 10624 components: - pos: 14.5,-73.5 parent: 2 type: Transform - - uid: 10574 + - uid: 10625 components: - pos: 13.5,-73.5 parent: 2 type: Transform - - uid: 10575 + - uid: 10626 components: - pos: 12.5,-73.5 parent: 2 type: Transform - - uid: 10576 + - uid: 10627 components: - pos: 11.5,-73.5 parent: 2 type: Transform - - uid: 10577 + - uid: 10628 components: - pos: 43.5,-59.5 parent: 2 type: Transform - - uid: 10578 + - uid: 10629 components: - pos: -46.5,-48.5 parent: 2 type: Transform - - uid: 10579 + - uid: 10630 components: - pos: -46.5,-45.5 parent: 2 type: Transform - - uid: 10580 + - uid: 10631 components: - pos: -46.5,-46.5 parent: 2 type: Transform - - uid: 10581 + - uid: 10632 components: - pos: -46.5,-52.5 parent: 2 type: Transform - - uid: 10582 + - uid: 10633 components: - rot: 1.5707963267948966 rad pos: -19.5,-45.5 parent: 2 type: Transform - - uid: 10583 + - uid: 10634 components: - rot: 1.5707963267948966 rad pos: -19.5,-46.5 parent: 2 type: Transform - - uid: 10584 + - uid: 10635 components: - rot: 1.5707963267948966 rad pos: -19.5,-47.5 parent: 2 type: Transform - - uid: 10585 + - uid: 10636 components: - rot: 3.141592653589793 rad pos: 27.5,-95.5 parent: 2 type: Transform - - uid: 10586 + - uid: 10637 components: - rot: 3.141592653589793 rad pos: 28.5,-95.5 parent: 2 type: Transform - - uid: 10587 + - uid: 10638 components: - rot: 3.141592653589793 rad pos: 56.5,-74.5 parent: 2 type: Transform - - uid: 10588 + - uid: 10639 components: - pos: -46.5,-47.5 parent: 2 type: Transform - - uid: 10589 + - uid: 10640 components: - pos: -46.5,-49.5 parent: 2 type: Transform - - uid: 10590 + - uid: 10641 components: - pos: -46.5,-44.5 parent: 2 type: Transform - - uid: 10591 + - uid: 10642 components: - pos: -46.5,-51.5 parent: 2 type: Transform - - uid: 10592 + - uid: 10643 components: - pos: 79.5,-50.5 parent: 2 type: Transform - - uid: 10593 + - uid: 10644 components: - pos: 79.5,-49.5 parent: 2 type: Transform - - uid: 10594 + - uid: 10645 components: - pos: 79.5,-44.5 parent: 2 type: Transform - - uid: 10595 + - uid: 10646 components: - pos: 79.5,-45.5 parent: 2 type: Transform - - uid: 10596 + - uid: 10647 components: - pos: 79.5,-46.5 parent: 2 type: Transform - - uid: 10597 + - uid: 10648 components: - pos: 79.5,-47.5 parent: 2 type: Transform - - uid: 10598 + - uid: 10649 components: - pos: 79.5,-48.5 parent: 2 type: Transform - - uid: 10599 + - uid: 10650 components: - pos: 79.5,-41.5 parent: 2 type: Transform - - uid: 10600 + - uid: 10651 components: - pos: 68.5,-74.5 parent: 2 type: Transform - - uid: 10601 + - uid: 10652 components: - pos: 68.5,-73.5 parent: 2 type: Transform - - uid: 10602 + - uid: 10653 components: - pos: -23.5,-26.5 parent: 2 type: Transform - - uid: 10603 + - uid: 10654 components: - pos: -24.5,-26.5 parent: 2 type: Transform - - uid: 10604 + - uid: 10655 components: - pos: -25.5,-26.5 parent: 2 type: Transform - - uid: 10605 + - uid: 10656 components: - pos: -26.5,-26.5 parent: 2 type: Transform - - uid: 10606 + - uid: 10657 components: - pos: -27.5,-26.5 parent: 2 type: Transform - - uid: 10607 + - uid: 10658 components: - pos: -28.5,-26.5 parent: 2 type: Transform - - uid: 10608 + - uid: 10659 components: - pos: 68.5,-72.5 parent: 2 type: Transform - - uid: 10609 + - uid: 10660 components: - pos: 68.5,-71.5 parent: 2 type: Transform - - uid: 10610 + - uid: 10661 components: - pos: 36.5,-56.5 parent: 2 type: Transform - - uid: 10611 + - uid: 10662 components: - pos: 36.5,-54.5 parent: 2 type: Transform - - uid: 10612 + - uid: 10663 components: - pos: 36.5,-53.5 parent: 2 type: Transform - - uid: 10613 + - uid: 10664 components: - pos: 36.5,-52.5 parent: 2 type: Transform - - uid: 10614 + - uid: 10665 components: - pos: 38.5,-51.5 parent: 2 type: Transform - - uid: 10615 + - uid: 10666 components: - pos: 39.5,-51.5 parent: 2 type: Transform - - uid: 10616 + - uid: 10667 components: - pos: 40.5,-51.5 parent: 2 type: Transform - - uid: 10617 + - uid: 10668 components: - pos: 41.5,-51.5 parent: 2 type: Transform - - uid: 10618 + - uid: 10669 components: - pos: 13.5,-47.5 parent: 2 type: Transform - - uid: 10619 + - uid: 10670 components: - pos: 13.5,-45.5 parent: 2 type: Transform - - uid: 10620 + - uid: 10671 components: - pos: 15.5,-45.5 parent: 2 type: Transform - - uid: 10621 + - uid: 10672 components: - pos: 16.5,-45.5 parent: 2 type: Transform - - uid: 10622 + - uid: 10673 components: - pos: 17.5,-45.5 parent: 2 type: Transform - - uid: 10623 + - uid: 10674 components: - rot: 3.141592653589793 rad pos: -1.5,-71.5 parent: 2 type: Transform - - uid: 10624 + - uid: 10675 components: - pos: 8.5,-56.5 parent: 2 type: Transform - - uid: 10625 + - uid: 10676 components: - pos: 62.5,-17.5 parent: 2 type: Transform - - uid: 10626 + - uid: 10677 components: - pos: 62.5,-18.5 parent: 2 type: Transform - - uid: 10627 + - uid: 10678 components: - pos: 62.5,-19.5 parent: 2 type: Transform - - uid: 10628 + - uid: 10679 components: - pos: 62.5,-20.5 parent: 2 type: Transform - - uid: 10629 + - uid: 10680 components: - pos: 62.5,-21.5 parent: 2 type: Transform - - uid: 10630 + - uid: 10681 components: - pos: 62.5,-22.5 parent: 2 type: Transform - - uid: 10631 + - uid: 10682 components: - pos: 62.5,-23.5 parent: 2 type: Transform - - uid: 10632 + - uid: 10683 components: - pos: -46.5,-9.5 parent: 2 type: Transform - - uid: 10633 + - uid: 10684 components: - pos: -46.5,-10.5 parent: 2 type: Transform - - uid: 10634 + - uid: 10685 components: - pos: -46.5,-11.5 parent: 2 type: Transform - - uid: 10635 + - uid: 10686 components: - pos: -46.5,-12.5 parent: 2 type: Transform - - uid: 10636 + - uid: 10687 components: - pos: -46.5,-13.5 parent: 2 type: Transform - - uid: 10637 + - uid: 10688 components: - pos: -46.5,-14.5 parent: 2 type: Transform - - uid: 10638 + - uid: 10689 components: - pos: -46.5,-15.5 parent: 2 type: Transform - - uid: 10639 + - uid: 10690 components: - pos: -46.5,-16.5 parent: 2 type: Transform - - uid: 10640 + - uid: 10691 components: - rot: -1.5707963267948966 rad pos: -59.5,-12.5 parent: 2 type: Transform - - uid: 10641 + - uid: 10692 components: - rot: -1.5707963267948966 rad pos: -59.5,-13.5 parent: 2 type: Transform - - uid: 10642 + - uid: 10693 components: - rot: -1.5707963267948966 rad pos: -59.5,-14.5 parent: 2 type: Transform - - uid: 10643 + - uid: 10694 components: - rot: -1.5707963267948966 rad pos: -59.5,-15.5 parent: 2 type: Transform - - uid: 10644 + - uid: 10695 components: - rot: -1.5707963267948966 rad pos: -59.5,-16.5 parent: 2 type: Transform - - uid: 10645 + - uid: 10696 components: - rot: -1.5707963267948966 rad pos: -59.5,-17.5 parent: 2 type: Transform - - uid: 10646 + - uid: 10697 components: - rot: -1.5707963267948966 rad pos: -59.5,-18.5 parent: 2 type: Transform - - uid: 10647 + - uid: 10698 components: - rot: -1.5707963267948966 rad pos: -59.5,-19.5 parent: 2 type: Transform - - uid: 10648 + - uid: 10699 components: - rot: -1.5707963267948966 rad pos: -59.5,-20.5 parent: 2 type: Transform - - uid: 10649 + - uid: 10700 components: - rot: -1.5707963267948966 rad pos: -60.5,-20.5 parent: 2 type: Transform - - uid: 10650 + - uid: 10701 components: - rot: -1.5707963267948966 rad pos: -61.5,-20.5 parent: 2 type: Transform - - uid: 10651 + - uid: 10702 components: - rot: -1.5707963267948966 rad pos: -62.5,-20.5 parent: 2 type: Transform - - uid: 10652 + - uid: 10703 components: - rot: -1.5707963267948966 rad pos: -63.5,-20.5 parent: 2 type: Transform - - uid: 10653 + - uid: 10704 components: - rot: -1.5707963267948966 rad pos: -64.5,-20.5 parent: 2 type: Transform - - uid: 10654 + - uid: 10705 components: - rot: -1.5707963267948966 rad pos: -65.5,-20.5 parent: 2 type: Transform - - uid: 10655 + - uid: 10706 components: - rot: -1.5707963267948966 rad pos: -66.5,-20.5 parent: 2 type: Transform - - uid: 10656 + - uid: 10707 components: - rot: -1.5707963267948966 rad pos: -67.5,-20.5 parent: 2 type: Transform - - uid: 10657 + - uid: 10708 components: - rot: -1.5707963267948966 rad pos: -68.5,-20.5 parent: 2 type: Transform - - uid: 10658 + - uid: 10709 components: - rot: -1.5707963267948966 rad pos: -69.5,-20.5 parent: 2 type: Transform - - uid: 10659 + - uid: 10710 components: - rot: -1.5707963267948966 rad pos: -70.5,-20.5 parent: 2 type: Transform - - uid: 10660 + - uid: 10711 components: - rot: -1.5707963267948966 rad pos: -71.5,-20.5 parent: 2 type: Transform - - uid: 10661 + - uid: 10712 components: - rot: -1.5707963267948966 rad pos: -72.5,-20.5 parent: 2 type: Transform - - uid: 10662 + - uid: 10713 components: - rot: -1.5707963267948966 rad pos: -73.5,-20.5 parent: 2 type: Transform - - uid: 10663 + - uid: 10714 components: - rot: -1.5707963267948966 rad pos: -73.5,-19.5 parent: 2 type: Transform - - uid: 10664 + - uid: 10715 components: - rot: -1.5707963267948966 rad pos: -73.5,-18.5 parent: 2 type: Transform - - uid: 10665 + - uid: 10716 components: - rot: -1.5707963267948966 rad pos: -73.5,-17.5 parent: 2 type: Transform - - uid: 10666 + - uid: 10717 components: - rot: -1.5707963267948966 rad pos: -73.5,-16.5 parent: 2 type: Transform - - uid: 10667 + - uid: 10718 components: - rot: -1.5707963267948966 rad pos: -73.5,-15.5 parent: 2 type: Transform - - uid: 10668 + - uid: 10719 components: - rot: -1.5707963267948966 rad pos: -73.5,-14.5 parent: 2 type: Transform - - uid: 10669 + - uid: 10720 components: - rot: -1.5707963267948966 rad pos: -73.5,-13.5 parent: 2 type: Transform - - uid: 10670 + - uid: 10721 components: - rot: -1.5707963267948966 rad pos: -73.5,-12.5 parent: 2 type: Transform - - uid: 10671 + - uid: 10722 components: - rot: -1.5707963267948966 rad pos: -73.5,-11.5 parent: 2 type: Transform - - uid: 10672 + - uid: 10723 components: - rot: -1.5707963267948966 rad pos: -73.5,-10.5 parent: 2 type: Transform - - uid: 10673 + - uid: 10724 components: - rot: -1.5707963267948966 rad pos: -73.5,-9.5 parent: 2 type: Transform - - uid: 10674 + - uid: 10725 components: - rot: -1.5707963267948966 rad pos: -73.5,-8.5 parent: 2 type: Transform - - uid: 10675 + - uid: 10726 components: - rot: -1.5707963267948966 rad pos: -73.5,-7.5 parent: 2 type: Transform - - uid: 10676 + - uid: 10727 components: - rot: -1.5707963267948966 rad pos: -73.5,-6.5 parent: 2 type: Transform - - uid: 10677 + - uid: 10728 components: - rot: -1.5707963267948966 rad pos: -72.5,-6.5 parent: 2 type: Transform - - uid: 10678 + - uid: 10729 components: - rot: -1.5707963267948966 rad pos: -71.5,-6.5 parent: 2 type: Transform - - uid: 10679 + - uid: 10730 components: - rot: -1.5707963267948966 rad pos: -70.5,-6.5 parent: 2 type: Transform - - uid: 10680 + - uid: 10731 components: - rot: -1.5707963267948966 rad pos: -69.5,-6.5 parent: 2 type: Transform - - uid: 10681 + - uid: 10732 components: - rot: -1.5707963267948966 rad pos: -68.5,-6.5 parent: 2 type: Transform - - uid: 10682 + - uid: 10733 components: - rot: -1.5707963267948966 rad pos: -67.5,-6.5 parent: 2 type: Transform - - uid: 10683 + - uid: 10734 components: - rot: -1.5707963267948966 rad pos: -66.5,-6.5 parent: 2 type: Transform - - uid: 10684 + - uid: 10735 components: - rot: -1.5707963267948966 rad pos: -65.5,-6.5 parent: 2 type: Transform - - uid: 10685 + - uid: 10736 components: - rot: -1.5707963267948966 rad pos: -64.5,-6.5 parent: 2 type: Transform - - uid: 10686 + - uid: 10737 components: - rot: -1.5707963267948966 rad pos: -63.5,-6.5 parent: 2 type: Transform - - uid: 10687 + - uid: 10738 components: - rot: -1.5707963267948966 rad pos: -62.5,-6.5 parent: 2 type: Transform - - uid: 10688 + - uid: 10739 components: - rot: -1.5707963267948966 rad pos: -61.5,-6.5 parent: 2 type: Transform - - uid: 10689 + - uid: 10740 components: - rot: -1.5707963267948966 rad pos: -60.5,-6.5 parent: 2 type: Transform - - uid: 10690 + - uid: 10741 components: - rot: -1.5707963267948966 rad pos: -59.5,-6.5 parent: 2 type: Transform - - uid: 10691 + - uid: 10742 components: - rot: -1.5707963267948966 rad pos: -59.5,-7.5 parent: 2 type: Transform - - uid: 10692 + - uid: 10743 components: - rot: -1.5707963267948966 rad pos: -59.5,-8.5 parent: 2 type: Transform - - uid: 10693 + - uid: 10744 components: - rot: -1.5707963267948966 rad pos: -59.5,-9.5 parent: 2 type: Transform - - uid: 10694 + - uid: 10745 components: - rot: -1.5707963267948966 rad pos: -59.5,-10.5 parent: 2 type: Transform - - uid: 10695 + - uid: 10746 components: - rot: -1.5707963267948966 rad pos: -59.5,-11.5 parent: 2 type: Transform - - uid: 10696 + - uid: 10747 components: - rot: -1.5707963267948966 rad pos: -79.5,-1.5 parent: 2 type: Transform - - uid: 10697 + - uid: 10748 components: - rot: -1.5707963267948966 rad pos: -79.5,-2.5 parent: 2 type: Transform - - uid: 10698 + - uid: 10749 components: - rot: -1.5707963267948966 rad pos: -79.5,-3.5 parent: 2 type: Transform - - uid: 10699 + - uid: 10750 components: - rot: -1.5707963267948966 rad pos: -79.5,-4.5 parent: 2 type: Transform - - uid: 10700 + - uid: 10751 components: - rot: -1.5707963267948966 rad pos: -79.5,-5.5 parent: 2 type: Transform - - uid: 10701 + - uid: 10752 components: - rot: -1.5707963267948966 rad pos: -79.5,-6.5 parent: 2 type: Transform - - uid: 10702 + - uid: 10753 components: - rot: -1.5707963267948966 rad pos: -79.5,-7.5 parent: 2 type: Transform - - uid: 10703 + - uid: 10754 components: - rot: -1.5707963267948966 rad pos: -79.5,-8.5 parent: 2 type: Transform - - uid: 10704 + - uid: 10755 components: - rot: -1.5707963267948966 rad pos: -79.5,-9.5 parent: 2 type: Transform - - uid: 10705 + - uid: 10756 components: - rot: -1.5707963267948966 rad pos: -79.5,-10.5 parent: 2 type: Transform - - uid: 10706 + - uid: 10757 components: - rot: -1.5707963267948966 rad pos: -79.5,-11.5 parent: 2 type: Transform - - uid: 10707 + - uid: 10758 components: - rot: -1.5707963267948966 rad pos: -79.5,-15.5 parent: 2 type: Transform - - uid: 10708 + - uid: 10759 components: - rot: -1.5707963267948966 rad pos: -79.5,-19.5 parent: 2 type: Transform - - uid: 10709 + - uid: 10760 components: - rot: -1.5707963267948966 rad pos: -79.5,-22.5 parent: 2 type: Transform - - uid: 10710 + - uid: 10761 components: - rot: -1.5707963267948966 rad pos: -79.5,-26.5 parent: 2 type: Transform - - uid: 10711 + - uid: 10762 components: - rot: -1.5707963267948966 rad pos: -78.5,-1.5 parent: 2 type: Transform - - uid: 10712 + - uid: 10763 components: - rot: -1.5707963267948966 rad pos: -77.5,-1.5 parent: 2 type: Transform - - uid: 10713 + - uid: 10764 components: - rot: -1.5707963267948966 rad pos: -76.5,-1.5 parent: 2 type: Transform - - uid: 10714 + - uid: 10765 components: - rot: -1.5707963267948966 rad pos: -75.5,-1.5 parent: 2 type: Transform - - uid: 10715 + - uid: 10766 components: - rot: -1.5707963267948966 rad pos: -74.5,-1.5 parent: 2 type: Transform - - uid: 10716 + - uid: 10767 components: - rot: -1.5707963267948966 rad pos: -73.5,-1.5 parent: 2 type: Transform - - uid: 10717 + - uid: 10768 components: - rot: -1.5707963267948966 rad pos: -72.5,-1.5 parent: 2 type: Transform - - uid: 10718 + - uid: 10769 components: - rot: -1.5707963267948966 rad pos: -71.5,-1.5 parent: 2 type: Transform - - uid: 10719 + - uid: 10770 components: - rot: -1.5707963267948966 rad pos: -70.5,-1.5 parent: 2 type: Transform - - uid: 10720 + - uid: 10771 components: - rot: -1.5707963267948966 rad pos: -69.5,-1.5 parent: 2 type: Transform - - uid: 10721 + - uid: 10772 components: - rot: -1.5707963267948966 rad pos: -68.5,-1.5 parent: 2 type: Transform - - uid: 10722 + - uid: 10773 components: - rot: -1.5707963267948966 rad pos: -67.5,-1.5 parent: 2 type: Transform - - uid: 10723 + - uid: 10774 components: - rot: -1.5707963267948966 rad pos: -66.5,-1.5 parent: 2 type: Transform - - uid: 10724 + - uid: 10775 components: - rot: -1.5707963267948966 rad pos: -65.5,-1.5 parent: 2 type: Transform - - uid: 10725 + - uid: 10776 components: - rot: -1.5707963267948966 rad pos: -64.5,-1.5 parent: 2 type: Transform - - uid: 10726 + - uid: 10777 components: - rot: -1.5707963267948966 rad pos: -63.5,-1.5 parent: 2 type: Transform - - uid: 10727 + - uid: 10778 components: - rot: -1.5707963267948966 rad pos: -62.5,-1.5 parent: 2 type: Transform - - uid: 10728 + - uid: 10779 components: - rot: -1.5707963267948966 rad pos: -61.5,-1.5 parent: 2 type: Transform - - uid: 10729 + - uid: 10780 components: - rot: -1.5707963267948966 rad pos: -60.5,-1.5 parent: 2 type: Transform - - uid: 10730 + - uid: 10781 components: - rot: -1.5707963267948966 rad pos: -59.5,-1.5 parent: 2 type: Transform - - uid: 10731 + - uid: 10782 components: - rot: -1.5707963267948966 rad pos: -58.5,-1.5 parent: 2 type: Transform - - uid: 10732 + - uid: 10783 components: - pos: -25.5,-58.5 parent: 2 type: Transform - - uid: 10733 + - uid: 10784 components: - pos: -28.5,-66.5 parent: 2 type: Transform - - uid: 10734 + - uid: 10785 components: - pos: -29.5,-66.5 parent: 2 type: Transform - - uid: 10735 + - uid: 10786 components: - pos: -30.5,-66.5 parent: 2 type: Transform - - uid: 10736 + - uid: 10787 components: - pos: -31.5,-66.5 parent: 2 type: Transform - - uid: 10737 + - uid: 10788 components: - pos: -32.5,-66.5 parent: 2 type: Transform - - uid: 10738 + - uid: 10789 components: - pos: -33.5,-66.5 parent: 2 type: Transform - - uid: 10739 + - uid: 10790 components: - pos: -34.5,-66.5 parent: 2 type: Transform - - uid: 10740 + - uid: 10791 components: - pos: -35.5,-66.5 parent: 2 type: Transform - - uid: 10741 + - uid: 10792 components: - pos: -24.5,-51.5 parent: 2 type: Transform - - uid: 10742 + - uid: 10793 components: - pos: -25.5,-51.5 parent: 2 type: Transform - - uid: 10743 + - uid: 10794 components: - pos: -26.5,-51.5 parent: 2 type: Transform - - uid: 10744 + - uid: 10795 components: - pos: -27.5,-51.5 parent: 2 type: Transform - - uid: 10745 + - uid: 10796 components: - pos: -28.5,-51.5 parent: 2 type: Transform - - uid: 10746 + - uid: 10797 components: - pos: -29.5,-51.5 parent: 2 type: Transform - - uid: 10747 + - uid: 10798 components: - pos: -25.5,-41.5 parent: 2 type: Transform - - uid: 10748 + - uid: 10799 components: - pos: -25.5,-42.5 parent: 2 type: Transform - - uid: 10749 + - uid: 10800 components: - pos: -25.5,-43.5 parent: 2 type: Transform - - uid: 10750 + - uid: 10801 components: - pos: -25.5,-44.5 parent: 2 type: Transform - - uid: 10751 + - uid: 10802 components: - pos: -25.5,-45.5 parent: 2 type: Transform - - uid: 10752 + - uid: 10803 components: - pos: -25.5,-46.5 parent: 2 type: Transform - - uid: 10753 + - uid: 10804 components: - pos: -26.5,-46.5 parent: 2 type: Transform - - uid: 10754 + - uid: 10805 components: - pos: -25.5,-47.5 parent: 2 type: Transform - - uid: 10755 + - uid: 10806 components: - pos: -25.5,-47.5 parent: 2 type: Transform - - uid: 10756 + - uid: 10807 components: - pos: -26.5,-47.5 parent: 2 type: Transform - - uid: 10757 + - uid: 10808 components: - pos: -26.5,-39.5 parent: 2 type: Transform - - uid: 10758 + - uid: 10809 components: - pos: -26.5,-40.5 parent: 2 type: Transform - - uid: 10759 + - uid: 10810 components: - pos: -25.5,-40.5 parent: 2 type: Transform - - uid: 10760 + - uid: 10811 components: - pos: -25.5,-39.5 parent: 2 type: Transform - - uid: 10761 + - uid: 10812 components: - pos: -47.5,-67.5 parent: 2 type: Transform - - uid: 10762 + - uid: 10813 components: - pos: -47.5,-66.5 parent: 2 type: Transform - - uid: 10763 + - uid: 10814 components: - pos: -47.5,-68.5 parent: 2 type: Transform - - uid: 10764 + - uid: 10815 components: - pos: -46.5,-66.5 parent: 2 type: Transform - - uid: 10765 + - uid: 10816 components: - pos: -46.5,-67.5 parent: 2 type: Transform - - uid: 10766 + - uid: 10817 components: - pos: -46.5,-68.5 parent: 2 type: Transform - - uid: 10767 + - uid: 10818 components: - pos: 46.5,-11.5 parent: 2 type: Transform - - uid: 10768 + - uid: 10819 components: - pos: 45.5,-11.5 parent: 2 type: Transform - - uid: 10769 + - uid: 10820 components: - pos: 44.5,-11.5 parent: 2 type: Transform - - uid: 10770 + - uid: 10821 components: - pos: 43.5,-11.5 parent: 2 type: Transform - - uid: 10771 + - uid: 10822 components: - pos: 42.5,-11.5 parent: 2 type: Transform - - uid: 10772 + - uid: 10823 components: - pos: 40.5,-7.5 parent: 2 type: Transform - - uid: 10773 + - uid: 10824 components: - pos: 40.5,-8.5 parent: 2 type: Transform - - uid: 10774 + - uid: 10825 components: - pos: 40.5,-9.5 parent: 2 type: Transform - - uid: 10775 + - uid: 10826 components: - pos: 40.5,-10.5 parent: 2 type: Transform - - uid: 10776 + - uid: 10827 components: - pos: 40.5,-11.5 parent: 2 type: Transform - - uid: 10777 + - uid: 10828 components: - pos: 30.5,-8.5 parent: 2 type: Transform - - uid: 10778 + - uid: 10829 components: - pos: 31.5,-8.5 parent: 2 type: Transform - - uid: 10779 + - uid: 10830 components: - pos: 33.5,-8.5 parent: 2 type: Transform - - uid: 10780 + - uid: 10831 components: - pos: 34.5,-8.5 parent: 2 type: Transform - - uid: 10781 + - uid: 10832 components: - pos: 35.5,-8.5 parent: 2 type: Transform - - uid: 10782 + - uid: 10833 components: - pos: 30.5,-13.5 parent: 2 type: Transform - - uid: 10783 + - uid: 10834 components: - pos: 37.5,-8.5 parent: 2 type: Transform - - uid: 10784 + - uid: 10835 components: - pos: -46.5,-42.5 parent: 2 type: Transform - - uid: 10785 + - uid: 10836 components: - pos: -20.5,-52.5 parent: 2 type: Transform - - uid: 10786 + - uid: 10837 components: - pos: -37.5,-21.5 parent: 2 type: Transform - - uid: 10787 + - uid: 10838 components: - pos: -37.5,-22.5 parent: 2 type: Transform - - uid: 10788 + - uid: 10839 components: - pos: -37.5,-23.5 parent: 2 type: Transform - - uid: 10789 + - uid: 10840 components: - pos: -37.5,-24.5 parent: 2 type: Transform - - uid: 10790 + - uid: 10841 components: - pos: -43.5,-26.5 parent: 2 type: Transform - - uid: 10791 + - uid: 10842 components: - pos: -42.5,-26.5 parent: 2 type: Transform - - uid: 10792 + - uid: 10843 components: - pos: -41.5,-26.5 parent: 2 type: Transform - - uid: 10793 + - uid: 10844 components: - pos: -40.5,-26.5 parent: 2 type: Transform - - uid: 10794 + - uid: 10845 components: - pos: -39.5,-26.5 parent: 2 type: Transform - - uid: 10795 + - uid: 10846 components: - pos: -38.5,-26.5 parent: 2 type: Transform - - uid: 10796 + - uid: 10847 components: - pos: -48.5,-32.5 parent: 2 type: Transform - - uid: 10797 + - uid: 10848 components: - pos: -52.5,-32.5 parent: 2 type: Transform - - uid: 10798 + - uid: 10849 components: - pos: 69.5,3.5 parent: 2 type: Transform - - uid: 10799 + - uid: 10850 components: - pos: -2.5,29.5 parent: 2 type: Transform - - uid: 10800 + - uid: 10851 components: - rot: 3.141592653589793 rad pos: 14.5,32.5 parent: 2 type: Transform - - uid: 10801 + - uid: 10852 components: - rot: 3.141592653589793 rad pos: 13.5,32.5 parent: 2 type: Transform - - uid: 10802 + - uid: 10853 components: - rot: 3.141592653589793 rad pos: 2.5,32.5 parent: 2 type: Transform - - uid: 10803 + - uid: 10854 components: - rot: 3.141592653589793 rad pos: 19.5,25.5 parent: 2 type: Transform - - uid: 10804 + - uid: 10855 components: - rot: 3.141592653589793 rad pos: 18.5,25.5 parent: 2 type: Transform - - uid: 10805 + - uid: 10856 components: - rot: 3.141592653589793 rad pos: 17.5,25.5 parent: 2 type: Transform - - uid: 10806 + - uid: 10857 components: - rot: 3.141592653589793 rad pos: 16.5,25.5 parent: 2 type: Transform - - uid: 10807 + - uid: 10858 components: - rot: 3.141592653589793 rad pos: 15.5,25.5 parent: 2 type: Transform - - uid: 10808 + - uid: 10859 components: - rot: 3.141592653589793 rad pos: 14.5,25.5 parent: 2 type: Transform - - uid: 10809 + - uid: 10860 components: - rot: 3.141592653589793 rad pos: 13.5,25.5 parent: 2 type: Transform - - uid: 10810 + - uid: 10861 components: - rot: 3.141592653589793 rad pos: 16.5,27.5 parent: 2 type: Transform - - uid: 10811 + - uid: 10862 components: - rot: 3.141592653589793 rad pos: 16.5,26.5 parent: 2 type: Transform - - uid: 10812 + - uid: 10863 components: - rot: 3.141592653589793 rad pos: 8.5,24.5 parent: 2 type: Transform - - uid: 10813 + - uid: 10864 components: - rot: 3.141592653589793 rad pos: 7.5,24.5 parent: 2 type: Transform - - uid: 10814 + - uid: 10865 components: - rot: 3.141592653589793 rad pos: 6.5,24.5 parent: 2 type: Transform - - uid: 10815 + - uid: 10866 components: - rot: 3.141592653589793 rad pos: 5.5,24.5 parent: 2 type: Transform - - uid: 10816 + - uid: 10867 components: - rot: 3.141592653589793 rad pos: 4.5,24.5 parent: 2 type: Transform - - uid: 10817 + - uid: 10868 components: - rot: 3.141592653589793 rad pos: 3.5,24.5 parent: 2 type: Transform - - uid: 10818 + - uid: 10869 components: - rot: 3.141592653589793 rad pos: 2.5,24.5 parent: 2 type: Transform - - uid: 10819 + - uid: 10870 components: - rot: 3.141592653589793 rad pos: 1.5,24.5 parent: 2 type: Transform - - uid: 10820 + - uid: 10871 components: - rot: 3.141592653589793 rad pos: 0.5,24.5 parent: 2 type: Transform - - uid: 10821 + - uid: 10872 components: - rot: 3.141592653589793 rad pos: -3.5,23.5 parent: 2 type: Transform - - uid: 10822 + - uid: 10873 components: - rot: 3.141592653589793 rad pos: -4.5,23.5 parent: 2 type: Transform - - uid: 10823 + - uid: 10874 components: - rot: 3.141592653589793 rad pos: -5.5,23.5 parent: 2 type: Transform - - uid: 10824 + - uid: 10875 components: - rot: 3.141592653589793 rad pos: -6.5,23.5 parent: 2 type: Transform - - uid: 10825 + - uid: 10876 components: - rot: 3.141592653589793 rad pos: -7.5,23.5 parent: 2 type: Transform - - uid: 10826 + - uid: 10877 components: - pos: -11.5,18.5 parent: 2 type: Transform - - uid: 10827 + - uid: 10878 components: - pos: -11.5,15.5 parent: 2 type: Transform - - uid: 10828 + - uid: 10879 components: - pos: -12.5,24.5 parent: 2 type: Transform - - uid: 10829 + - uid: 10880 components: - rot: -1.5707963267948966 rad pos: 65.5,-24.5 parent: 2 type: Transform - - uid: 10830 + - uid: 10881 components: - rot: -1.5707963267948966 rad pos: 65.5,-23.5 parent: 2 type: Transform - - uid: 10831 + - uid: 10882 components: - rot: -1.5707963267948966 rad pos: 65.5,-22.5 parent: 2 type: Transform - - uid: 10832 + - uid: 10883 components: - rot: -1.5707963267948966 rad pos: 65.5,-21.5 parent: 2 type: Transform - - uid: 10833 + - uid: 10884 components: - pos: 67.5,-18.5 parent: 2 type: Transform - - uid: 10834 + - uid: 10885 components: - pos: -45.5,46.5 parent: 2 type: Transform - - uid: 10835 + - uid: 10886 components: - pos: -45.5,47.5 parent: 2 type: Transform - - uid: 10836 + - uid: 10887 components: - pos: -45.5,48.5 parent: 2 type: Transform - - uid: 10837 + - uid: 10888 components: - pos: -45.5,49.5 parent: 2 type: Transform - - uid: 10838 + - uid: 10889 components: - rot: -1.5707963267948966 rad pos: -41.5,46.5 parent: 2 type: Transform - - uid: 10839 + - uid: 10890 components: - rot: -1.5707963267948966 rad pos: -42.5,46.5 parent: 2 type: Transform - - uid: 10840 + - uid: 10891 components: - rot: -1.5707963267948966 rad pos: -43.5,46.5 parent: 2 type: Transform - - uid: 10841 + - uid: 10892 components: - rot: -1.5707963267948966 rad pos: -44.5,46.5 parent: 2 type: Transform - - uid: 10842 + - uid: 10893 components: - pos: -40.5,45.5 parent: 2 type: Transform - - uid: 10843 + - uid: 10894 components: - pos: -39.5,45.5 parent: 2 type: Transform - - uid: 10844 + - uid: 10895 components: - pos: -38.5,45.5 parent: 2 type: Transform - - uid: 10845 + - uid: 10896 components: - pos: -40.5,46.5 parent: 2 type: Transform - - uid: 10846 + - uid: 10897 components: - pos: -40.5,47.5 parent: 2 type: Transform - - uid: 10847 + - uid: 10898 components: - pos: -40.5,48.5 parent: 2 type: Transform - - uid: 10848 + - uid: 10899 components: - pos: -40.5,49.5 parent: 2 type: Transform - - uid: 10849 + - uid: 10900 components: - pos: -40.5,50.5 parent: 2 type: Transform - - uid: 10850 + - uid: 10901 components: - pos: -40.5,51.5 parent: 2 type: Transform - - uid: 10851 + - uid: 10902 components: - pos: -40.5,52.5 parent: 2 type: Transform - - uid: 10852 + - uid: 10903 components: - pos: -40.5,53.5 parent: 2 type: Transform - - uid: 10853 + - uid: 10904 components: - pos: -48.5,53.5 parent: 2 type: Transform - - uid: 10854 + - uid: 10905 components: - pos: -47.5,53.5 parent: 2 type: Transform - - uid: 10855 + - uid: 10906 components: - pos: -46.5,53.5 parent: 2 type: Transform - - uid: 10856 + - uid: 10907 components: - pos: -45.5,53.5 parent: 2 type: Transform - - uid: 10857 + - uid: 10908 components: - pos: -44.5,53.5 parent: 2 type: Transform - - uid: 10858 + - uid: 10909 components: - pos: -43.5,53.5 parent: 2 type: Transform - - uid: 10859 + - uid: 10910 components: - pos: -42.5,53.5 parent: 2 type: Transform - - uid: 10860 + - uid: 10911 components: - pos: -41.5,53.5 parent: 2 type: Transform - - uid: 10861 + - uid: 10912 components: - pos: -40.5,53.5 parent: 2 type: Transform - - uid: 10862 + - uid: 10913 components: - pos: -39.5,53.5 parent: 2 type: Transform - - uid: 10863 + - uid: 10914 components: - pos: -49.5,0.5 parent: 2 type: Transform - - uid: 10864 + - uid: 10915 components: - pos: -49.5,-0.5 parent: 2 type: Transform - - uid: 10865 + - uid: 10916 components: - pos: -49.5,-1.5 parent: 2 type: Transform - - uid: 10866 + - uid: 10917 components: - pos: -49.5,-2.5 parent: 2 type: Transform - - uid: 10867 + - uid: 10918 components: - pos: -49.5,-3.5 parent: 2 type: Transform - - uid: 10868 + - uid: 10919 components: - pos: -50.5,-3.5 parent: 2 type: Transform - - uid: 10869 + - uid: 10920 components: - pos: -51.5,-3.5 parent: 2 type: Transform - - uid: 10870 + - uid: 10921 components: - pos: -51.5,-2.5 parent: 2 type: Transform - - uid: 10871 + - uid: 10922 components: - pos: -51.5,-1.5 parent: 2 type: Transform - - uid: 10872 + - uid: 10923 components: - pos: -51.5,-0.5 parent: 2 type: Transform - - uid: 10873 + - uid: 10924 components: - pos: -51.5,0.5 parent: 2 type: Transform - - uid: 10874 + - uid: 10925 components: - pos: -51.5,1.5 parent: 2 type: Transform - - uid: 10875 + - uid: 10926 components: - pos: -38.5,-2.5 parent: 2 type: Transform - - uid: 10876 + - uid: 10927 components: - pos: -37.5,-2.5 parent: 2 type: Transform - - uid: 10877 + - uid: 10928 components: - pos: -36.5,-2.5 parent: 2 type: Transform - - uid: 10878 + - uid: 10929 components: - rot: -1.5707963267948966 rad pos: -38.5,53.5 parent: 2 type: Transform - - uid: 10879 + - uid: 10930 components: - rot: -1.5707963267948966 rad pos: -37.5,53.5 parent: 2 type: Transform - - uid: 10880 + - uid: 10931 components: - rot: -1.5707963267948966 rad pos: -36.5,53.5 parent: 2 type: Transform - - uid: 10881 + - uid: 10932 components: - rot: -1.5707963267948966 rad pos: -35.5,53.5 parent: 2 type: Transform - - uid: 10882 + - uid: 10933 components: - rot: -1.5707963267948966 rad pos: -34.5,53.5 parent: 2 type: Transform - - uid: 10883 + - uid: 10934 components: - rot: -1.5707963267948966 rad pos: -33.5,53.5 parent: 2 type: Transform - - uid: 10884 + - uid: 10935 components: - rot: -1.5707963267948966 rad pos: -33.5,54.5 parent: 2 type: Transform - - uid: 10885 + - uid: 10936 components: - rot: -1.5707963267948966 rad pos: -33.5,55.5 parent: 2 type: Transform - - uid: 10886 + - uid: 10937 components: - rot: -1.5707963267948966 rad pos: -33.5,56.5 parent: 2 type: Transform - - uid: 10887 + - uid: 10938 components: - rot: -1.5707963267948966 rad pos: -33.5,57.5 parent: 2 type: Transform - - uid: 10888 + - uid: 10939 components: - rot: -1.5707963267948966 rad pos: -33.5,58.5 parent: 2 type: Transform - - uid: 10889 + - uid: 10940 components: - rot: -1.5707963267948966 rad pos: -33.5,59.5 parent: 2 type: Transform - - uid: 10890 + - uid: 10941 components: - rot: -1.5707963267948966 rad pos: -33.5,60.5 parent: 2 type: Transform - - uid: 10891 + - uid: 10942 components: - rot: -1.5707963267948966 rad pos: -33.5,61.5 parent: 2 type: Transform - - uid: 10892 + - uid: 10943 components: - rot: -1.5707963267948966 rad pos: -33.5,62.5 parent: 2 type: Transform - - uid: 10893 + - uid: 10944 components: - rot: -1.5707963267948966 rad pos: -33.5,63.5 parent: 2 type: Transform - - uid: 10894 + - uid: 10945 components: - rot: -1.5707963267948966 rad pos: -33.5,64.5 parent: 2 type: Transform - - uid: 10895 + - uid: 10946 components: - rot: -1.5707963267948966 rad pos: -33.5,65.5 parent: 2 type: Transform - - uid: 10896 + - uid: 10947 components: - rot: -1.5707963267948966 rad pos: -33.5,66.5 parent: 2 type: Transform - - uid: 10897 + - uid: 10948 components: - rot: -1.5707963267948966 rad pos: -33.5,67.5 parent: 2 type: Transform - - uid: 10898 + - uid: 10949 components: - rot: -1.5707963267948966 rad pos: -33.5,68.5 parent: 2 type: Transform - - uid: 10899 + - uid: 10950 components: - rot: -1.5707963267948966 rad pos: -33.5,69.5 parent: 2 type: Transform - - uid: 10900 + - uid: 10951 components: - rot: -1.5707963267948966 rad pos: -33.5,70.5 parent: 2 type: Transform - - uid: 10901 + - uid: 10952 components: - rot: -1.5707963267948966 rad pos: -33.5,71.5 parent: 2 type: Transform - - uid: 10902 + - uid: 10953 components: - rot: -1.5707963267948966 rad pos: -33.5,72.5 parent: 2 type: Transform - - uid: 10903 + - uid: 10954 components: - rot: -1.5707963267948966 rad pos: -34.5,72.5 parent: 2 type: Transform - - uid: 10904 + - uid: 10955 components: - rot: -1.5707963267948966 rad pos: -35.5,72.5 parent: 2 type: Transform - - uid: 10905 + - uid: 10956 components: - rot: -1.5707963267948966 rad pos: -36.5,72.5 parent: 2 type: Transform - - uid: 10906 + - uid: 10957 components: - rot: -1.5707963267948966 rad pos: -37.5,72.5 parent: 2 type: Transform - - uid: 10907 + - uid: 10958 components: - rot: -1.5707963267948966 rad pos: -38.5,72.5 parent: 2 type: Transform - - uid: 10908 + - uid: 10959 components: - rot: -1.5707963267948966 rad pos: -39.5,72.5 parent: 2 type: Transform - - uid: 10909 + - uid: 10960 components: - rot: -1.5707963267948966 rad pos: -40.5,72.5 parent: 2 type: Transform - - uid: 10910 + - uid: 10961 components: - rot: -1.5707963267948966 rad pos: -41.5,72.5 parent: 2 type: Transform - - uid: 10911 + - uid: 10962 components: - rot: -1.5707963267948966 rad pos: -42.5,72.5 parent: 2 type: Transform - - uid: 10912 + - uid: 10963 components: - rot: -1.5707963267948966 rad pos: -43.5,72.5 parent: 2 type: Transform - - uid: 10913 + - uid: 10964 components: - rot: -1.5707963267948966 rad pos: -44.5,72.5 parent: 2 type: Transform - - uid: 10914 + - uid: 10965 components: - rot: -1.5707963267948966 rad pos: -45.5,72.5 parent: 2 type: Transform - - uid: 10915 + - uid: 10966 components: - rot: -1.5707963267948966 rad pos: -46.5,72.5 parent: 2 type: Transform - - uid: 10916 + - uid: 10967 components: - rot: -1.5707963267948966 rad pos: -47.5,72.5 parent: 2 type: Transform - - uid: 10917 + - uid: 10968 components: - rot: -1.5707963267948966 rad pos: -48.5,72.5 parent: 2 type: Transform - - uid: 10918 + - uid: 10969 components: - rot: -1.5707963267948966 rad pos: -49.5,72.5 parent: 2 type: Transform - - uid: 10919 + - uid: 10970 components: - rot: -1.5707963267948966 rad pos: -50.5,72.5 parent: 2 type: Transform - - uid: 10920 + - uid: 10971 components: - rot: -1.5707963267948966 rad pos: -51.5,72.5 parent: 2 type: Transform - - uid: 10921 + - uid: 10972 components: - rot: -1.5707963267948966 rad pos: -52.5,72.5 parent: 2 type: Transform - - uid: 10922 + - uid: 10973 components: - rot: -1.5707963267948966 rad pos: -53.5,72.5 parent: 2 type: Transform - - uid: 10923 + - uid: 10974 components: - rot: -1.5707963267948966 rad pos: -54.5,72.5 parent: 2 type: Transform - - uid: 10924 + - uid: 10975 components: - rot: -1.5707963267948966 rad pos: -55.5,72.5 parent: 2 type: Transform - - uid: 10925 + - uid: 10976 components: - rot: -1.5707963267948966 rad pos: -56.5,72.5 parent: 2 type: Transform - - uid: 10926 + - uid: 10977 components: - rot: -1.5707963267948966 rad pos: -57.5,72.5 parent: 2 type: Transform - - uid: 10927 + - uid: 10978 components: - rot: -1.5707963267948966 rad pos: -58.5,72.5 parent: 2 type: Transform - - uid: 10928 + - uid: 10979 components: - rot: -1.5707963267948966 rad pos: -59.5,72.5 parent: 2 type: Transform - - uid: 10929 + - uid: 10980 components: - rot: -1.5707963267948966 rad pos: -60.5,72.5 parent: 2 type: Transform - - uid: 10930 + - uid: 10981 components: - rot: -1.5707963267948966 rad pos: -61.5,72.5 parent: 2 type: Transform - - uid: 10931 + - uid: 10982 components: - rot: -1.5707963267948966 rad pos: -61.5,71.5 parent: 2 type: Transform - - uid: 10932 + - uid: 10983 components: - rot: -1.5707963267948966 rad pos: -61.5,70.5 parent: 2 type: Transform - - uid: 10933 + - uid: 10984 components: - rot: -1.5707963267948966 rad pos: -61.5,69.5 parent: 2 type: Transform - - uid: 10934 + - uid: 10985 components: - rot: -1.5707963267948966 rad pos: -61.5,68.5 parent: 2 type: Transform - - uid: 10935 + - uid: 10986 components: - rot: -1.5707963267948966 rad pos: -61.5,67.5 parent: 2 type: Transform - - uid: 10936 + - uid: 10987 components: - rot: -1.5707963267948966 rad pos: -61.5,66.5 parent: 2 type: Transform - - uid: 10937 + - uid: 10988 components: - rot: -1.5707963267948966 rad pos: -61.5,65.5 parent: 2 type: Transform - - uid: 10938 + - uid: 10989 components: - rot: -1.5707963267948966 rad pos: -61.5,64.5 parent: 2 type: Transform - - uid: 10939 + - uid: 10990 components: - rot: -1.5707963267948966 rad pos: -61.5,63.5 parent: 2 type: Transform - - uid: 10940 + - uid: 10991 components: - rot: -1.5707963267948966 rad pos: -61.5,62.5 parent: 2 type: Transform - - uid: 10941 + - uid: 10992 components: - rot: -1.5707963267948966 rad pos: -61.5,61.5 parent: 2 type: Transform - - uid: 10942 + - uid: 10993 components: - rot: -1.5707963267948966 rad pos: -61.5,60.5 parent: 2 type: Transform - - uid: 10943 + - uid: 10994 components: - rot: -1.5707963267948966 rad pos: -61.5,59.5 parent: 2 type: Transform - - uid: 10944 + - uid: 10995 components: - rot: -1.5707963267948966 rad pos: -61.5,58.5 parent: 2 type: Transform - - uid: 10945 + - uid: 10996 components: - rot: -1.5707963267948966 rad pos: -61.5,57.5 parent: 2 type: Transform - - uid: 10946 + - uid: 10997 components: - rot: -1.5707963267948966 rad pos: -61.5,56.5 parent: 2 type: Transform - - uid: 10947 + - uid: 10998 components: - rot: 1.5707963267948966 rad pos: -53.5,53.5 parent: 2 type: Transform - - uid: 10948 + - uid: 10999 components: - rot: 1.5707963267948966 rad pos: -53.5,54.5 parent: 2 type: Transform - - uid: 10949 + - uid: 11000 components: - rot: 1.5707963267948966 rad pos: -53.5,55.5 parent: 2 type: Transform - - uid: 10950 + - uid: 11001 components: - rot: 1.5707963267948966 rad pos: -54.5,56.5 parent: 2 type: Transform - - uid: 10951 + - uid: 11002 components: - rot: 1.5707963267948966 rad pos: -56.5,56.5 parent: 2 type: Transform - - uid: 10952 + - uid: 11003 components: - rot: 1.5707963267948966 rad pos: -58.5,56.5 parent: 2 type: Transform - - uid: 10953 + - uid: 11004 components: - rot: 1.5707963267948966 rad pos: -60.5,56.5 parent: 2 type: Transform - - uid: 10954 + - uid: 11005 components: - rot: -1.5707963267948966 rad pos: -52.5,53.5 parent: 2 type: Transform - - uid: 10955 + - uid: 11006 components: - rot: -1.5707963267948966 rad pos: -51.5,53.5 parent: 2 type: Transform - - uid: 10956 + - uid: 11007 components: - rot: -1.5707963267948966 rad pos: -50.5,53.5 parent: 2 type: Transform - - uid: 10957 + - uid: 11008 components: - rot: -1.5707963267948966 rad pos: -49.5,53.5 parent: 2 type: Transform - - uid: 10958 + - uid: 11009 components: - pos: 12.5,-92.5 parent: 2 type: Transform - - uid: 10959 + - uid: 11010 components: - pos: 11.5,-99.5 parent: 2 type: Transform - - uid: 10960 + - uid: 11011 components: - rot: 3.141592653589793 rad pos: 1.5,-71.5 parent: 2 type: Transform - - uid: 10961 + - uid: 11012 components: - rot: 3.141592653589793 rad pos: 2.5,-67.5 parent: 2 type: Transform - - uid: 10962 + - uid: 11013 components: - rot: 3.141592653589793 rad pos: 3.5,-71.5 parent: 2 type: Transform - - uid: 10963 + - uid: 11014 components: - rot: 3.141592653589793 rad pos: 4.5,-71.5 parent: 2 type: Transform - - uid: 10964 + - uid: 11015 components: - rot: 3.141592653589793 rad pos: 2.5,-68.5 parent: 2 type: Transform - - uid: 10965 + - uid: 11016 components: - rot: -1.5707963267948966 rad pos: -79.5,-25.5 parent: 2 type: Transform - - uid: 10966 + - uid: 11017 components: - rot: -1.5707963267948966 rad pos: -79.5,-24.5 parent: 2 type: Transform - - uid: 10967 + - uid: 11018 components: - rot: -1.5707963267948966 rad pos: -79.5,-23.5 parent: 2 type: Transform - - uid: 10968 + - uid: 11019 components: - rot: -1.5707963267948966 rad pos: -79.5,-21.5 parent: 2 type: Transform - - uid: 10969 + - uid: 11020 components: - rot: -1.5707963267948966 rad pos: -79.5,-20.5 parent: 2 type: Transform - - uid: 10970 + - uid: 11021 components: - rot: -1.5707963267948966 rad pos: -79.5,-18.5 parent: 2 type: Transform - - uid: 10971 + - uid: 11022 components: - rot: -1.5707963267948966 rad pos: -79.5,-17.5 parent: 2 type: Transform - - uid: 10972 + - uid: 11023 components: - rot: -1.5707963267948966 rad pos: -79.5,-16.5 parent: 2 type: Transform - - uid: 10973 + - uid: 11024 components: - rot: -1.5707963267948966 rad pos: -79.5,-14.5 parent: 2 type: Transform - - uid: 10974 + - uid: 11025 components: - rot: -1.5707963267948966 rad pos: -79.5,-12.5 parent: 2 type: Transform - - uid: 10975 + - uid: 11026 components: - rot: -1.5707963267948966 rad pos: -79.5,-13.5 parent: 2 type: Transform - - uid: 10976 + - uid: 11027 components: - pos: -13.5,-8.5 parent: 2 type: Transform - - uid: 10977 + - uid: 11028 components: - rot: 3.141592653589793 rad pos: 23.5,-89.5 parent: 2 type: Transform - - uid: 10978 + - uid: 11029 components: - pos: 36.5,23.5 parent: 2 type: Transform - - uid: 10979 + - uid: 11030 components: - pos: 37.5,23.5 parent: 2 type: Transform - - uid: 10980 + - uid: 11031 components: - pos: 38.5,23.5 parent: 2 type: Transform - - uid: 10981 + - uid: 11032 components: - pos: 39.5,23.5 parent: 2 type: Transform - - uid: 10982 + - uid: 11033 components: - pos: 40.5,23.5 parent: 2 type: Transform - - uid: 10983 + - uid: 11034 components: - pos: 41.5,23.5 parent: 2 type: Transform - - uid: 10984 + - uid: 11035 components: - pos: 42.5,23.5 parent: 2 type: Transform - - uid: 10985 + - uid: 11036 components: - pos: 35.5,23.5 parent: 2 type: Transform - - uid: 10986 + - uid: 11037 components: - pos: 43.5,23.5 parent: 2 type: Transform - - uid: 10987 + - uid: 11038 components: - pos: 46.5,26.5 parent: 2 type: Transform - - uid: 10988 + - uid: 11039 components: - pos: 47.5,26.5 parent: 2 type: Transform - - uid: 10989 + - uid: 11040 components: - pos: 48.5,26.5 parent: 2 type: Transform - - uid: 10990 + - uid: 11041 components: - pos: 11.5,-97.5 parent: 2 type: Transform - - uid: 10991 + - uid: 11042 components: - pos: 11.5,-93.5 parent: 2 type: Transform - - uid: 10992 + - uid: 11043 components: - pos: 11.5,-94.5 parent: 2 type: Transform - - uid: 10993 + - uid: 11044 components: - pos: 11.5,-95.5 parent: 2 type: Transform - - uid: 10994 + - uid: 11045 components: - pos: 11.5,-98.5 parent: 2 type: Transform - - uid: 10995 + - uid: 11046 components: - pos: 11.5,-96.5 parent: 2 type: Transform - - uid: 10996 + - uid: 11047 components: - pos: 11.5,-104.5 parent: 2 type: Transform - - uid: 10997 + - uid: 11048 components: - pos: 11.5,-103.5 parent: 2 type: Transform - - uid: 10998 + - uid: 11049 components: - pos: 11.5,-102.5 parent: 2 type: Transform - - uid: 10999 + - uid: 11050 components: - pos: 11.5,-101.5 parent: 2 type: Transform - - uid: 11000 + - uid: 11051 components: - rot: 3.141592653589793 rad pos: 19.5,-53.5 parent: 2 type: Transform - - uid: 11001 + - uid: 11052 components: - rot: 3.141592653589793 rad pos: 18.5,-53.5 parent: 2 type: Transform - - uid: 11002 + - uid: 11053 components: - rot: 3.141592653589793 rad pos: 22.5,-53.5 parent: 2 type: Transform - - uid: 11003 + - uid: 11054 components: - pos: -79.5,-27.5 parent: 2 type: Transform - - uid: 11004 + - uid: 11055 components: - pos: -79.5,-28.5 parent: 2 type: Transform - - uid: 11005 + - uid: 11056 components: - pos: -79.5,-29.5 parent: 2 type: Transform - - uid: 11006 + - uid: 11057 components: - pos: -79.5,-30.5 parent: 2 type: Transform - - uid: 11007 + - uid: 11058 components: - pos: -79.5,-31.5 parent: 2 type: Transform - - uid: 11008 + - uid: 11059 components: - pos: -61.5,-55.5 parent: 2 type: Transform - - uid: 11009 + - uid: 11060 components: - pos: -18.5,-52.5 parent: 2 type: Transform - - uid: 11010 + - uid: 11061 components: - rot: -1.5707963267948966 rad pos: 14.5,-60.5 parent: 2 type: Transform - - uid: 11011 + - uid: 11062 components: - rot: -1.5707963267948966 rad pos: 14.5,-61.5 parent: 2 type: Transform - - uid: 11012 + - uid: 11063 components: - rot: -1.5707963267948966 rad pos: 14.5,-62.5 parent: 2 type: Transform - - uid: 11013 + - uid: 11064 components: - rot: -1.5707963267948966 rad pos: 14.5,-63.5 parent: 2 type: Transform - - uid: 11014 + - uid: 11065 components: - rot: -1.5707963267948966 rad pos: 14.5,-64.5 parent: 2 type: Transform - - uid: 11015 + - uid: 11066 components: - rot: -1.5707963267948966 rad pos: 8.5,-67.5 parent: 2 type: Transform - - uid: 11016 + - uid: 11067 components: - rot: -1.5707963267948966 rad pos: 9.5,-67.5 parent: 2 type: Transform - - uid: 11017 + - uid: 11068 components: - rot: -1.5707963267948966 rad pos: 10.5,-67.5 parent: 2 type: Transform - - uid: 11018 + - uid: 11069 components: - rot: -1.5707963267948966 rad pos: 11.5,-67.5 parent: 2 type: Transform - - uid: 11019 + - uid: 11070 components: - rot: -1.5707963267948966 rad pos: 12.5,-67.5 parent: 2 type: Transform - - uid: 11020 + - uid: 11071 components: - rot: -1.5707963267948966 rad pos: 13.5,-67.5 parent: 2 type: Transform - - uid: 11021 + - uid: 11072 components: - rot: -1.5707963267948966 rad pos: 14.5,-67.5 parent: 2 type: Transform - - uid: 11022 + - uid: 11073 components: - rot: 1.5707963267948966 rad pos: 42.5,-13.5 parent: 2 type: Transform - - uid: 11023 + - uid: 11074 components: - rot: 1.5707963267948966 rad pos: 43.5,-13.5 parent: 2 type: Transform - - uid: 11024 + - uid: 11075 components: - rot: 1.5707963267948966 rad pos: 44.5,-13.5 parent: 2 type: Transform - - uid: 11025 + - uid: 11076 components: - rot: 1.5707963267948966 rad pos: 45.5,-13.5 parent: 2 type: Transform - - uid: 11026 + - uid: 11077 components: - rot: 1.5707963267948966 rad pos: 46.5,-13.5 parent: 2 type: Transform - - uid: 11027 + - uid: 11078 components: - rot: 1.5707963267948966 rad pos: 47.5,-13.5 parent: 2 type: Transform - - uid: 11028 + - uid: 11079 components: - rot: 1.5707963267948966 rad pos: 48.5,-13.5 parent: 2 type: Transform - - uid: 11029 + - uid: 11080 components: - pos: 49.5,26.5 parent: 2 type: Transform - - uid: 11030 + - uid: 11081 components: - pos: 50.5,26.5 parent: 2 type: Transform - - uid: 11031 + - uid: 11082 components: - pos: 51.5,26.5 parent: 2 type: Transform - - uid: 11032 + - uid: 11083 components: - pos: 52.5,26.5 parent: 2 type: Transform - - uid: 11033 + - uid: 11084 components: - pos: 53.5,26.5 parent: 2 type: Transform - - uid: 11034 + - uid: 11085 components: - rot: 3.141592653589793 rad pos: 49.5,38.5 parent: 2 type: Transform - - uid: 11035 + - uid: 11086 components: - rot: 3.141592653589793 rad pos: 49.5,37.5 parent: 2 type: Transform - - uid: 11036 + - uid: 11087 components: - rot: 3.141592653589793 rad pos: 49.5,36.5 parent: 2 type: Transform - - uid: 11037 + - uid: 11088 components: - rot: 3.141592653589793 rad pos: 49.5,35.5 parent: 2 type: Transform - - uid: 11038 + - uid: 11089 components: - rot: 3.141592653589793 rad pos: 48.5,35.5 parent: 2 type: Transform - - uid: 11039 + - uid: 11090 components: - rot: 3.141592653589793 rad pos: 47.5,35.5 parent: 2 type: Transform - - uid: 11040 + - uid: 11091 components: - rot: 3.141592653589793 rad pos: 52.5,31.5 parent: 2 type: Transform - - uid: 11041 + - uid: 11092 components: - rot: 3.141592653589793 rad pos: 52.5,32.5 parent: 2 type: Transform - - uid: 11042 + - uid: 11093 components: - rot: 3.141592653589793 rad pos: 52.5,33.5 parent: 2 type: Transform - - uid: 11043 + - uid: 11094 components: - pos: 81.5,36.5 parent: 2 type: Transform - - uid: 11044 + - uid: 11095 components: - pos: 80.5,36.5 parent: 2 type: Transform - - uid: 11045 + - uid: 11096 components: - pos: 86.5,36.5 parent: 2 type: Transform - - uid: 11046 + - uid: 11097 components: - pos: 87.5,36.5 parent: 2 type: Transform - - uid: 11047 + - uid: 11098 components: - pos: 79.5,36.5 parent: 2 type: Transform - - uid: 11048 + - uid: 11099 components: - pos: 78.5,36.5 parent: 2 type: Transform - - uid: 11049 + - uid: 11100 components: - pos: 88.5,36.5 parent: 2 type: Transform - - uid: 11050 + - uid: 11101 components: - pos: 82.5,36.5 parent: 2 type: Transform - - uid: 11051 + - uid: 11102 components: - pos: -24.5,47.5 parent: 2 type: Transform - - uid: 11052 + - uid: 11103 components: - pos: -24.5,46.5 parent: 2 type: Transform - - uid: 11053 + - uid: 11104 components: - pos: -24.5,45.5 parent: 2 type: Transform - - uid: 11054 + - uid: 11105 components: - pos: -24.5,44.5 parent: 2 type: Transform - - uid: 11055 + - uid: 11106 components: - pos: -24.5,43.5 parent: 2 type: Transform - - uid: 11056 + - uid: 11107 components: - pos: -24.5,42.5 parent: 2 type: Transform - - uid: 11057 + - uid: 11108 components: - pos: -24.5,41.5 parent: 2 type: Transform - - uid: 11058 + - uid: 11109 components: - pos: -24.5,40.5 parent: 2 type: Transform - - uid: 11059 + - uid: 11110 components: - pos: -24.5,39.5 parent: 2 type: Transform - - uid: 11060 + - uid: 11111 components: - pos: -24.5,38.5 parent: 2 type: Transform - - uid: 11061 + - uid: 11112 components: - pos: -31.5,39.5 parent: 2 type: Transform - - uid: 11062 + - uid: 11113 components: - pos: -32.5,39.5 parent: 2 type: Transform - - uid: 11063 + - uid: 11114 components: - pos: -33.5,39.5 parent: 2 type: Transform - - uid: 11064 + - uid: 11115 components: - pos: -34.5,39.5 parent: 2 type: Transform - - uid: 11065 + - uid: 11116 components: - pos: -35.5,39.5 parent: 2 type: Transform - - uid: 11066 + - uid: 11117 components: - pos: -36.5,39.5 parent: 2 type: Transform - - uid: 11067 + - uid: 11118 components: - pos: -39.5,39.5 parent: 2 type: Transform - - uid: 11068 + - uid: 11119 components: - pos: -40.5,39.5 parent: 2 type: Transform - - uid: 11069 + - uid: 11120 components: - pos: -41.5,39.5 parent: 2 type: Transform - - uid: 11070 + - uid: 11121 components: - pos: -42.5,39.5 parent: 2 type: Transform - - uid: 11071 + - uid: 11122 components: - pos: -43.5,39.5 parent: 2 type: Transform - - uid: 11072 + - uid: 11123 components: - pos: -2.5,28.5 parent: 2 type: Transform - - uid: 11073 + - uid: 11124 components: - pos: -2.5,27.5 parent: 2 type: Transform - - uid: 11074 + - uid: 11125 components: - pos: -2.5,26.5 parent: 2 type: Transform - - uid: 11075 + - uid: 11126 components: - pos: -2.5,25.5 parent: 2 type: Transform - - uid: 11076 + - uid: 11127 components: - pos: -12.5,26.5 parent: 2 type: Transform - - uid: 11077 + - uid: 11128 components: - pos: -11.5,26.5 parent: 2 type: Transform - - uid: 11078 + - uid: 11129 components: - pos: -10.5,26.5 parent: 2 type: Transform - - uid: 11079 + - uid: 11130 components: - pos: -10.5,24.5 parent: 2 type: Transform - - uid: 11080 + - uid: 11131 components: - pos: -37.5,45.5 parent: 2 type: Transform - - uid: 11081 + - uid: 11132 components: - pos: -37.5,44.5 parent: 2 type: Transform - - uid: 11082 + - uid: 11133 components: - pos: -17.5,58.5 parent: 2 type: Transform - - uid: 11083 + - uid: 11134 components: - pos: -17.5,57.5 parent: 2 type: Transform - - uid: 11084 + - uid: 11135 components: - pos: -17.5,56.5 parent: 2 type: Transform - - uid: 11085 + - uid: 11136 components: - pos: -17.5,55.5 parent: 2 type: Transform - - uid: 11086 + - uid: 11137 components: - pos: -17.5,54.5 parent: 2 type: Transform - - uid: 11087 + - uid: 11138 components: - pos: -17.5,53.5 parent: 2 type: Transform - - uid: 11088 + - uid: 11139 components: - rot: 1.5707963267948966 rad pos: -11.5,24.5 parent: 2 type: Transform - - uid: 11089 + - uid: 11140 components: - rot: 3.141592653589793 rad pos: 66.5,36.5 parent: 2 type: Transform - - uid: 11090 + - uid: 11141 components: - rot: 3.141592653589793 rad pos: 65.5,36.5 parent: 2 type: Transform - - uid: 11091 + - uid: 11142 components: - rot: 3.141592653589793 rad pos: 64.5,36.5 parent: 2 type: Transform - - uid: 11092 + - uid: 11143 components: - rot: 3.141592653589793 rad pos: 63.5,36.5 parent: 2 type: Transform - - uid: 11093 + - uid: 11144 components: - rot: 3.141592653589793 rad pos: 63.5,35.5 parent: 2 type: Transform - - uid: 11094 + - uid: 11145 components: - rot: 3.141592653589793 rad pos: 63.5,34.5 parent: 2 type: Transform - - uid: 11095 + - uid: 11146 components: - rot: 3.141592653589793 rad pos: 63.5,33.5 parent: 2 type: Transform - - uid: 11096 + - uid: 11147 components: - pos: 83.5,36.5 parent: 2 type: Transform - - uid: 11097 + - uid: 11148 components: - pos: 84.5,36.5 parent: 2 type: Transform - - uid: 11098 + - uid: 11149 components: - pos: 85.5,36.5 parent: 2 type: Transform - - uid: 11099 + - uid: 11150 components: - pos: 89.5,36.5 parent: 2 type: Transform - - uid: 11100 + - uid: 11151 components: - pos: 90.5,36.5 parent: 2 type: Transform - - uid: 11101 + - uid: 11152 components: - pos: -22.5,27.5 parent: 2 type: Transform - - uid: 11102 + - uid: 11153 components: - pos: -23.5,27.5 parent: 2 type: Transform - - uid: 11103 + - uid: 11154 components: - pos: -24.5,27.5 parent: 2 type: Transform - - uid: 11104 + - uid: 11155 components: - pos: -25.5,27.5 parent: 2 type: Transform - - uid: 11105 + - uid: 11156 components: - pos: -26.5,27.5 parent: 2 type: Transform - - uid: 11106 + - uid: 11157 components: - pos: -27.5,27.5 parent: 2 type: Transform - - uid: 11107 + - uid: 11158 components: - pos: -28.5,27.5 parent: 2 type: Transform - - uid: 11108 + - uid: 11159 components: - pos: 29.5,55.5 parent: 2 type: Transform - - uid: 11109 + - uid: 11160 components: - pos: 29.5,56.5 parent: 2 type: Transform - - uid: 11110 + - uid: 11161 components: - pos: 29.5,57.5 parent: 2 type: Transform - - uid: 11111 + - uid: 11162 components: - pos: 29.5,58.5 parent: 2 type: Transform - - uid: 11112 + - uid: 11163 components: - pos: 29.5,59.5 parent: 2 type: Transform - - uid: 11113 + - uid: 11164 components: - pos: 29.5,60.5 parent: 2 type: Transform - - uid: 11114 + - uid: 11165 components: - pos: 29.5,61.5 parent: 2 type: Transform - - uid: 11115 + - uid: 11166 components: - pos: 29.5,62.5 parent: 2 type: Transform - - uid: 11116 + - uid: 11167 components: - pos: 28.5,62.5 parent: 2 type: Transform - - uid: 11117 + - uid: 11168 components: - pos: 27.5,62.5 parent: 2 type: Transform - - uid: 11118 + - uid: 11169 components: - pos: 26.5,62.5 parent: 2 type: Transform - - uid: 11119 + - uid: 11170 components: - pos: 25.5,62.5 parent: 2 type: Transform - - uid: 11120 + - uid: 11171 components: - pos: 24.5,62.5 parent: 2 type: Transform - - uid: 11121 + - uid: 11172 components: - pos: 23.5,62.5 parent: 2 type: Transform - - uid: 11122 + - uid: 11173 components: - pos: 22.5,62.5 parent: 2 type: Transform - - uid: 11123 + - uid: 11174 components: - pos: 21.5,62.5 parent: 2 type: Transform - - uid: 11124 + - uid: 11175 components: - pos: 20.5,62.5 parent: 2 type: Transform - - uid: 11125 + - uid: 11176 components: - pos: 19.5,62.5 parent: 2 type: Transform - - uid: 11126 + - uid: 11177 components: - pos: 18.5,62.5 parent: 2 type: Transform - - uid: 11127 + - uid: 11178 components: - pos: 17.5,62.5 parent: 2 type: Transform - - uid: 11128 + - uid: 11179 components: - pos: 16.5,62.5 parent: 2 type: Transform - - uid: 11129 + - uid: 11180 components: - pos: 15.5,62.5 parent: 2 type: Transform - - uid: 11130 + - uid: 11181 components: - pos: 14.5,62.5 parent: 2 type: Transform - - uid: 11131 + - uid: 11182 components: - pos: 13.5,62.5 parent: 2 type: Transform - - uid: 11132 + - uid: 11183 components: - pos: 12.5,62.5 parent: 2 type: Transform - - uid: 11133 + - uid: 11184 components: - pos: 11.5,62.5 parent: 2 type: Transform - - uid: 11134 + - uid: 11185 components: - pos: 10.5,62.5 parent: 2 type: Transform - - uid: 11135 + - uid: 11186 components: - pos: 9.5,62.5 parent: 2 type: Transform - - uid: 11136 + - uid: 11187 components: - pos: 8.5,62.5 parent: 2 type: Transform - - uid: 11137 + - uid: 11188 components: - pos: 7.5,62.5 parent: 2 type: Transform - - uid: 11138 + - uid: 11189 components: - pos: 7.5,63.5 parent: 2 type: Transform - - uid: 11139 + - uid: 11190 components: - pos: 7.5,64.5 parent: 2 type: Transform - - uid: 11140 + - uid: 11191 components: - pos: 7.5,65.5 parent: 2 type: Transform - - uid: 11141 + - uid: 11192 components: - pos: 7.5,66.5 parent: 2 type: Transform - - uid: 11142 + - uid: 11193 components: - pos: 7.5,67.5 parent: 2 type: Transform - - uid: 11143 + - uid: 11194 components: - pos: 7.5,68.5 parent: 2 type: Transform - - uid: 11144 + - uid: 11195 components: - pos: 7.5,69.5 parent: 2 type: Transform - - uid: 11145 + - uid: 11196 components: - pos: 7.5,70.5 parent: 2 type: Transform - - uid: 11146 + - uid: 11197 components: - pos: 7.5,71.5 parent: 2 type: Transform - - uid: 11147 + - uid: 11198 components: - pos: 7.5,72.5 parent: 2 type: Transform - - uid: 11148 + - uid: 11199 components: - pos: 7.5,73.5 parent: 2 type: Transform - - uid: 11149 + - uid: 11200 components: - pos: 7.5,74.5 parent: 2 type: Transform - - uid: 11150 + - uid: 11201 components: - pos: 7.5,75.5 parent: 2 type: Transform - - uid: 11151 + - uid: 11202 components: - pos: 6.5,75.5 parent: 2 type: Transform - - uid: 11152 + - uid: 11203 components: - pos: 5.5,75.5 parent: 2 type: Transform - - uid: 11153 + - uid: 11204 components: - pos: 4.5,75.5 parent: 2 type: Transform - - uid: 11154 + - uid: 11205 components: - pos: 3.5,75.5 parent: 2 type: Transform - - uid: 11155 + - uid: 11206 components: - pos: 2.5,75.5 parent: 2 type: Transform - - uid: 11156 + - uid: 11207 components: - pos: 1.5,75.5 parent: 2 type: Transform - - uid: 11157 + - uid: 11208 components: - pos: 0.5,75.5 parent: 2 type: Transform - - uid: 11158 + - uid: 11209 components: - pos: -0.5,75.5 parent: 2 type: Transform - - uid: 11159 + - uid: 11210 components: - pos: -1.5,75.5 parent: 2 type: Transform - - uid: 11160 + - uid: 11211 components: - pos: -2.5,75.5 parent: 2 type: Transform - - uid: 11161 + - uid: 11212 components: - pos: -3.5,75.5 parent: 2 type: Transform - - uid: 11162 + - uid: 11213 components: - pos: -4.5,75.5 parent: 2 type: Transform - - uid: 11163 + - uid: 11214 components: - pos: -5.5,75.5 parent: 2 type: Transform - - uid: 11164 + - uid: 11215 components: - pos: -6.5,75.5 parent: 2 type: Transform - - uid: 11165 + - uid: 11216 components: - pos: -7.5,75.5 parent: 2 type: Transform - - uid: 11166 + - uid: 11217 components: - pos: -8.5,75.5 parent: 2 type: Transform - - uid: 11167 + - uid: 11218 components: - pos: -9.5,75.5 parent: 2 type: Transform - - uid: 11168 + - uid: 11219 components: - pos: -10.5,75.5 parent: 2 type: Transform - - uid: 11169 + - uid: 11220 components: - pos: 1.5,-92.5 parent: 2 type: Transform - - uid: 11170 + - uid: 11221 components: - pos: 0.5,-92.5 parent: 2 type: Transform - - uid: 11171 + - uid: 11222 components: - pos: -0.5,-92.5 parent: 2 type: Transform - - uid: 11172 + - uid: 11223 components: - pos: -0.5,-93.5 parent: 2 type: Transform - - uid: 11173 + - uid: 11224 components: - pos: -0.5,-94.5 parent: 2 type: Transform - - uid: 11174 + - uid: 11225 components: - pos: -0.5,-95.5 parent: 2 type: Transform - - uid: 11175 + - uid: 11226 components: - pos: -0.5,-96.5 parent: 2 type: Transform - - uid: 11176 + - uid: 11227 components: - pos: -0.5,-97.5 parent: 2 type: Transform - - uid: 11177 + - uid: 11228 components: - pos: -0.5,-98.5 parent: 2 type: Transform - - uid: 11178 + - uid: 11229 components: - pos: -0.5,-99.5 parent: 2 type: Transform - - uid: 11179 + - uid: 11230 components: - pos: -0.5,-100.5 parent: 2 type: Transform - - uid: 11180 + - uid: 11231 components: - pos: -0.5,-101.5 parent: 2 type: Transform - - uid: 11181 + - uid: 11232 components: - pos: -0.5,-102.5 parent: 2 type: Transform - - uid: 11182 + - uid: 11233 components: - pos: -0.5,-103.5 parent: 2 type: Transform - - uid: 11183 + - uid: 11234 components: - pos: -0.5,-104.5 parent: 2 type: Transform - - uid: 11184 + - uid: 11235 components: - pos: -0.5,-105.5 parent: 2 type: Transform - - uid: 11185 + - uid: 11236 components: - pos: -28.5,-105.5 parent: 2 type: Transform - - uid: 11186 + - uid: 11237 components: - pos: -29.5,-105.5 parent: 2 type: Transform - - uid: 11187 + - uid: 11238 components: - pos: -30.5,-105.5 parent: 2 type: Transform - - uid: 11188 + - uid: 11239 components: - pos: -31.5,-105.5 parent: 2 type: Transform - - uid: 11189 + - uid: 11240 components: - pos: -32.5,-105.5 parent: 2 type: Transform - - uid: 11190 + - uid: 11241 components: - pos: -33.5,-105.5 parent: 2 type: Transform - - uid: 11191 + - uid: 11242 components: - pos: -34.5,-105.5 parent: 2 type: Transform - - uid: 11192 + - uid: 11243 components: - pos: -35.5,-105.5 parent: 2 type: Transform - - uid: 11193 + - uid: 11244 components: - pos: -1.5,-105.5 parent: 2 type: Transform - - uid: 11194 + - uid: 11245 components: - pos: -2.5,-105.5 parent: 2 type: Transform - - uid: 11195 + - uid: 11246 components: - pos: -3.5,-105.5 parent: 2 type: Transform - - uid: 11196 + - uid: 11247 components: - pos: -4.5,-105.5 parent: 2 type: Transform - - uid: 11197 + - uid: 11248 components: - pos: -5.5,-105.5 parent: 2 type: Transform - - uid: 11198 + - uid: 11249 components: - pos: -6.5,-105.5 parent: 2 type: Transform - - uid: 11199 + - uid: 11250 components: - pos: -7.5,-105.5 parent: 2 type: Transform - - uid: 11200 + - uid: 11251 components: - pos: -8.5,-105.5 parent: 2 type: Transform - - uid: 11201 + - uid: 11252 components: - pos: -9.5,-105.5 parent: 2 type: Transform - - uid: 11202 + - uid: 11253 components: - pos: -10.5,-105.5 parent: 2 type: Transform - - uid: 11203 + - uid: 11254 components: - pos: -11.5,-105.5 parent: 2 type: Transform - - uid: 11204 + - uid: 11255 components: - pos: -12.5,-105.5 parent: 2 type: Transform - - uid: 11205 + - uid: 11256 components: - pos: -13.5,-105.5 parent: 2 type: Transform - - uid: 11206 + - uid: 11257 components: - pos: -14.5,-105.5 parent: 2 type: Transform - - uid: 11207 + - uid: 11258 components: - pos: -15.5,-105.5 parent: 2 type: Transform - - uid: 11208 + - uid: 11259 components: - pos: -16.5,-105.5 parent: 2 type: Transform - - uid: 11209 + - uid: 11260 components: - pos: -17.5,-105.5 parent: 2 type: Transform - - uid: 11210 + - uid: 11261 components: - pos: -18.5,-105.5 parent: 2 type: Transform - - uid: 11211 + - uid: 11262 components: - pos: -19.5,-105.5 parent: 2 type: Transform - - uid: 11212 + - uid: 11263 components: - pos: -20.5,-105.5 parent: 2 type: Transform - - uid: 11213 + - uid: 11264 components: - pos: -21.5,-105.5 parent: 2 type: Transform - - uid: 11214 + - uid: 11265 components: - pos: -22.5,-105.5 parent: 2 type: Transform - - uid: 11215 + - uid: 11266 components: - pos: -23.5,-105.5 parent: 2 type: Transform - - uid: 11216 + - uid: 11267 components: - pos: -24.5,-105.5 parent: 2 type: Transform - - uid: 11217 + - uid: 11268 components: - pos: -25.5,-105.5 parent: 2 type: Transform - - uid: 11218 + - uid: 11269 components: - pos: -26.5,-105.5 parent: 2 type: Transform - - uid: 11219 + - uid: 11270 components: - pos: -27.5,-105.5 parent: 2 type: Transform - - uid: 11220 + - uid: 11271 components: - pos: -35.5,-104.5 parent: 2 type: Transform - - uid: 11221 + - uid: 11272 components: - pos: -35.5,-103.5 parent: 2 type: Transform - - uid: 11222 + - uid: 11273 components: - pos: -35.5,-102.5 parent: 2 type: Transform - - uid: 11223 + - uid: 11274 components: - pos: 67.5,-17.5 parent: 2 type: Transform - - uid: 11224 + - uid: 11275 components: - pos: -79.5,-32.5 parent: 2 type: Transform - - uid: 11225 + - uid: 11276 components: - pos: -78.5,-31.5 parent: 2 type: Transform - - uid: 11226 + - uid: 11277 components: - pos: -74.5,-48.5 parent: 2 type: Transform - - uid: 11227 + - uid: 11278 components: - pos: -73.5,-48.5 parent: 2 type: Transform - - uid: 11228 + - uid: 11279 components: - pos: -72.5,-48.5 parent: 2 type: Transform - - uid: 11229 + - uid: 11280 components: - pos: -71.5,-48.5 parent: 2 type: Transform - - uid: 11230 + - uid: 11281 components: - pos: -70.5,-48.5 parent: 2 type: Transform - - uid: 11231 + - uid: 11282 components: - pos: -69.5,-48.5 parent: 2 type: Transform - - uid: 11232 + - uid: 11283 components: - pos: -68.5,-48.5 parent: 2 type: Transform - - uid: 11233 + - uid: 11284 components: - pos: -67.5,-48.5 parent: 2 type: Transform - - uid: 11234 + - uid: 11285 components: - pos: -66.5,-48.5 parent: 2 type: Transform - - uid: 11235 + - uid: 11286 components: - pos: -65.5,-48.5 parent: 2 type: Transform - - uid: 11236 + - uid: 11287 components: - pos: -64.5,-48.5 parent: 2 type: Transform - - uid: 11237 + - uid: 11288 components: - pos: -63.5,-48.5 parent: 2 type: Transform - - uid: 11238 + - uid: 11289 components: - pos: -62.5,-48.5 parent: 2 type: Transform - - uid: 11239 + - uid: 11290 components: - rot: 3.141592653589793 rad pos: 55.5,-74.5 parent: 2 type: Transform - - uid: 11240 + - uid: 11291 components: - rot: 3.141592653589793 rad pos: 79.5,-27.5 parent: 2 type: Transform - - uid: 11241 + - uid: 11292 components: - rot: 3.141592653589793 rad pos: 79.5,-28.5 parent: 2 type: Transform - - uid: 11242 + - uid: 11293 components: - pos: 79.5,-29.5 parent: 2 type: Transform - - uid: 11243 + - uid: 11294 components: - pos: 79.5,-30.5 parent: 2 type: Transform - - uid: 11244 + - uid: 11295 components: - pos: 79.5,-31.5 parent: 2 type: Transform - - uid: 11245 + - uid: 11296 components: - pos: 79.5,-40.5 parent: 2 type: Transform - - uid: 11246 + - uid: 11297 components: - pos: 79.5,-39.5 parent: 2 type: Transform - - uid: 11247 + - uid: 11298 components: - rot: 1.5707963267948966 rad pos: -61.5,-56.5 parent: 2 type: Transform - - uid: 11248 + - uid: 11299 components: - rot: 1.5707963267948966 rad pos: -61.5,-57.5 parent: 2 type: Transform - - uid: 11249 + - uid: 11300 components: - rot: 1.5707963267948966 rad pos: -60.5,-57.5 parent: 2 type: Transform - - uid: 11250 + - uid: 11301 components: - rot: 1.5707963267948966 rad pos: -59.5,-57.5 parent: 2 type: Transform - - uid: 11251 + - uid: 11302 components: - rot: 1.5707963267948966 rad pos: -59.5,-58.5 parent: 2 type: Transform - - uid: 11252 + - uid: 11303 components: - rot: 1.5707963267948966 rad pos: -59.5,-59.5 parent: 2 type: Transform - - uid: 11253 + - uid: 11304 components: - rot: 1.5707963267948966 rad pos: -59.5,-60.5 parent: 2 type: Transform - - uid: 11254 + - uid: 11305 components: - rot: 1.5707963267948966 rad pos: -59.5,-61.5 parent: 2 type: Transform - - uid: 11255 + - uid: 11306 components: - rot: 1.5707963267948966 rad pos: -59.5,-62.5 parent: 2 type: Transform - - uid: 11256 + - uid: 11307 components: - rot: 1.5707963267948966 rad pos: -59.5,-63.5 parent: 2 type: Transform - - uid: 11257 + - uid: 11308 components: - rot: 1.5707963267948966 rad pos: -59.5,-64.5 parent: 2 type: Transform - - uid: 11258 + - uid: 11309 components: - rot: 1.5707963267948966 rad pos: -59.5,-65.5 parent: 2 type: Transform - - uid: 11259 + - uid: 11310 components: - rot: 1.5707963267948966 rad pos: -59.5,-66.5 parent: 2 type: Transform - - uid: 11260 + - uid: 11311 components: - rot: 1.5707963267948966 rad pos: -59.5,-67.5 parent: 2 type: Transform - - uid: 11261 + - uid: 11312 components: - rot: 1.5707963267948966 rad pos: -59.5,-68.5 parent: 2 type: Transform - - uid: 11262 + - uid: 11313 components: - rot: 1.5707963267948966 rad pos: -59.5,-69.5 parent: 2 type: Transform - - uid: 11263 + - uid: 11314 components: - pos: 8.5,-35.5 parent: 2 type: Transform - - uid: 11264 + - uid: 11315 components: - pos: 8.5,-34.5 parent: 2 type: Transform - - uid: 11265 + - uid: 11316 components: - pos: 8.5,-32.5 parent: 2 type: Transform - - uid: 11266 + - uid: 11317 components: - pos: 8.5,-33.5 parent: 2 type: Transform - - uid: 11267 + - uid: 11318 components: - pos: 46.5,-33.5 parent: 2 type: Transform - - uid: 11268 + - uid: 11319 components: - pos: 45.5,-33.5 parent: 2 type: Transform - - uid: 11269 + - uid: 11320 components: - pos: 44.5,-33.5 parent: 2 type: Transform - - uid: 11270 + - uid: 11321 components: - pos: 8.5,-31.5 parent: 2 type: Transform - - uid: 11271 + - uid: 11322 components: - pos: 8.5,-30.5 parent: 2 type: Transform - - uid: 11272 + - uid: 11323 components: - pos: 68.5,-70.5 parent: 2 type: Transform - - uid: 11273 + - uid: 11324 components: - pos: 69.5,-71.5 parent: 2 type: Transform - - uid: 11274 + - uid: 11325 components: - pos: 70.5,-71.5 parent: 2 type: Transform - - uid: 11275 + - uid: 11326 components: - pos: 71.5,-71.5 parent: 2 type: Transform - - uid: 11276 + - uid: 11327 components: - pos: 71.5,-71.5 parent: 2 type: Transform - - uid: 11277 + - uid: 11328 components: - pos: 71.5,-70.5 parent: 2 type: Transform - - uid: 11278 + - uid: 11329 components: - pos: 72.5,-70.5 parent: 2 type: Transform - - uid: 11279 + - uid: 11330 components: - pos: 72.5,-69.5 parent: 2 type: Transform - - uid: 11280 + - uid: 11331 components: - pos: 73.5,-69.5 parent: 2 type: Transform - - uid: 11281 + - uid: 11332 components: - pos: 74.5,-69.5 parent: 2 type: Transform - - uid: 11282 + - uid: 11333 components: - pos: 74.5,-68.5 parent: 2 type: Transform - - uid: 11283 + - uid: 11334 components: - pos: 74.5,-67.5 parent: 2 type: Transform - - uid: 11284 + - uid: 11335 components: - pos: 74.5,-66.5 parent: 2 type: Transform - - uid: 11285 + - uid: 11336 components: - pos: 74.5,-65.5 parent: 2 type: Transform - - uid: 11286 + - uid: 11337 components: - pos: 74.5,-64.5 parent: 2 type: Transform - - uid: 11287 + - uid: 11338 components: - pos: 74.5,-63.5 parent: 2 type: Transform - - uid: 11288 + - uid: 11339 components: - pos: 75.5,-63.5 parent: 2 type: Transform - - uid: 11289 + - uid: 11340 components: - pos: 76.5,-63.5 parent: 2 type: Transform - - uid: 11290 + - uid: 11341 components: - pos: 77.5,-63.5 parent: 2 type: Transform - - uid: 11291 + - uid: 11342 components: - pos: 78.5,-63.5 parent: 2 type: Transform - - uid: 11292 + - uid: 11343 components: - pos: 79.5,-63.5 parent: 2 type: Transform - - uid: 11293 + - uid: 11344 components: - pos: 79.5,-51.5 parent: 2 type: Transform - - uid: 11294 + - uid: 11345 components: - pos: 79.5,-52.5 parent: 2 type: Transform - - uid: 11295 + - uid: 11346 components: - pos: 79.5,-53.5 parent: 2 type: Transform - - uid: 11296 + - uid: 11347 components: - pos: 79.5,-54.5 parent: 2 type: Transform - - uid: 11297 + - uid: 11348 components: - pos: 79.5,-55.5 parent: 2 type: Transform - - uid: 11298 + - uid: 11349 components: - pos: 79.5,-56.5 parent: 2 type: Transform - - uid: 11299 + - uid: 11350 components: - pos: 79.5,-57.5 parent: 2 type: Transform - - uid: 11300 + - uid: 11351 components: - pos: 79.5,-58.5 parent: 2 type: Transform - - uid: 11301 + - uid: 11352 components: - pos: 79.5,-59.5 parent: 2 type: Transform - - uid: 11302 + - uid: 11353 components: - pos: 79.5,-60.5 parent: 2 type: Transform - - uid: 11303 + - uid: 11354 components: - pos: 79.5,-61.5 parent: 2 type: Transform - - uid: 11304 + - uid: 11355 components: - pos: 79.5,-62.5 parent: 2 type: Transform - - uid: 11305 + - uid: 11356 components: - pos: 72.5,-71.5 parent: 2 type: Transform - - uid: 11306 + - uid: 11357 components: - pos: 71.5,-69.5 parent: 2 type: Transform - - uid: 11307 + - uid: 11358 components: - pos: 55.5,-32.5 parent: 2 type: Transform - - uid: 11308 + - uid: 11359 components: - pos: 54.5,-32.5 parent: 2 type: Transform - - uid: 11309 + - uid: 11360 components: - pos: 53.5,-32.5 parent: 2 type: Transform - - uid: 11310 + - uid: 11361 components: - pos: 67.5,-74.5 parent: 2 type: Transform - - uid: 11311 + - uid: 11362 components: - pos: 66.5,-74.5 parent: 2 type: Transform - - uid: 11312 + - uid: 11363 components: - pos: 65.5,-74.5 parent: 2 type: Transform - - uid: 11313 + - uid: 11364 components: - pos: 64.5,-74.5 parent: 2 type: Transform - - uid: 11314 + - uid: 11365 components: - pos: 63.5,-74.5 parent: 2 type: Transform - - uid: 11315 + - uid: 11366 components: - pos: 62.5,-74.5 parent: 2 type: Transform - - uid: 11316 + - uid: 11367 components: - pos: 61.5,-74.5 parent: 2 type: Transform - - uid: 11317 + - uid: 11368 components: - pos: 60.5,-74.5 parent: 2 type: Transform - - uid: 11318 + - uid: 11369 components: - pos: 59.5,-74.5 parent: 2 type: Transform - - uid: 11319 + - uid: 11370 components: - pos: 58.5,-74.5 parent: 2 type: Transform - - uid: 11320 + - uid: 11371 components: - pos: 55.5,-30.5 parent: 2 type: Transform - - uid: 11321 + - uid: 11372 components: - pos: 55.5,-31.5 parent: 2 type: Transform - - uid: 11322 + - uid: 11373 components: - pos: 59.5,-22.5 parent: 2 type: Transform - - uid: 11323 + - uid: 11374 components: - pos: 59.5,-41.5 parent: 2 type: Transform - - uid: 11324 + - uid: 11375 components: - pos: 59.5,-40.5 parent: 2 type: Transform - - uid: 11325 + - uid: 11376 components: - pos: 59.5,-39.5 parent: 2 type: Transform - - uid: 11326 + - uid: 11377 components: - pos: 59.5,-38.5 parent: 2 type: Transform - - uid: 11327 + - uid: 11378 components: - pos: 57.5,-38.5 parent: 2 type: Transform - - uid: 11328 + - uid: 11379 components: - pos: 56.5,-38.5 parent: 2 type: Transform - - uid: 11329 + - uid: 11380 components: - pos: 59.5,-23.5 parent: 2 type: Transform - - uid: 11330 + - uid: 11381 components: - pos: 59.5,-24.5 parent: 2 type: Transform - - uid: 11331 + - uid: 11382 components: - rot: 3.141592653589793 rad pos: 65.5,-20.5 parent: 2 type: Transform - - uid: 11332 + - uid: 11383 components: - rot: 3.141592653589793 rad pos: 65.5,-19.5 parent: 2 type: Transform - - uid: 11333 + - uid: 11384 components: - rot: 3.141592653589793 rad pos: 65.5,-18.5 parent: 2 type: Transform - - uid: 11334 + - uid: 11385 components: - rot: 3.141592653589793 rad pos: 66.5,-18.5 parent: 2 type: Transform - - uid: 11335 + - uid: 11386 components: - pos: 75.5,-51.5 parent: 2 type: Transform - - uid: 11336 + - uid: 11387 components: - pos: 75.5,-52.5 parent: 2 type: Transform - - uid: 11337 + - uid: 11388 components: - pos: 75.5,-53.5 parent: 2 type: Transform - - uid: 11338 + - uid: 11389 components: - pos: 75.5,-54.5 parent: 2 type: Transform - - uid: 11339 + - uid: 11390 components: - pos: 75.5,-55.5 parent: 2 type: Transform - - uid: 11340 + - uid: 11391 components: - pos: 75.5,-56.5 parent: 2 type: Transform - - uid: 11341 + - uid: 11392 components: - pos: 60.5,-26.5 parent: 2 type: Transform - - uid: 11342 + - uid: 11393 components: - pos: 59.5,-26.5 parent: 2 type: Transform - - uid: 11343 + - uid: 11394 components: - pos: 58.5,-26.5 parent: 2 type: Transform - - uid: 11344 + - uid: 11395 components: - pos: 57.5,-26.5 parent: 2 type: Transform - - uid: 11345 + - uid: 11396 components: - pos: 56.5,-26.5 parent: 2 type: Transform - - uid: 11346 + - uid: 11397 components: - pos: 64.5,-58.5 parent: 2 type: Transform - - uid: 11347 + - uid: 11398 components: - pos: 71.5,-57.5 parent: 2 type: Transform - - uid: 11348 + - uid: 11399 components: - pos: 71.5,-58.5 parent: 2 type: Transform - - uid: 11349 + - uid: 11400 components: - pos: 71.5,-59.5 parent: 2 type: Transform - - uid: 11350 + - uid: 11401 components: - pos: 71.5,-60.5 parent: 2 type: Transform - - uid: 11351 + - uid: 11402 components: - pos: 71.5,-61.5 parent: 2 type: Transform - - uid: 11352 + - uid: 11403 components: - pos: 47.5,-65.5 parent: 2 type: Transform - - uid: 11353 + - uid: 11404 components: - pos: 48.5,-65.5 parent: 2 type: Transform - - uid: 11354 + - uid: 11405 components: - pos: 49.5,-65.5 parent: 2 type: Transform - - uid: 11355 + - uid: 11406 components: - pos: 50.5,-65.5 parent: 2 type: Transform - - uid: 11356 + - uid: 11407 components: - pos: 52.5,-66.5 parent: 2 type: Transform - - uid: 11357 + - uid: 11408 components: - pos: 69.5,-63.5 parent: 2 type: Transform - - uid: 11358 + - uid: 11409 components: - pos: 67.5,-66.5 parent: 2 type: Transform - - uid: 11359 + - uid: 11410 components: - pos: 11.5,-89.5 parent: 2 type: Transform - - uid: 11360 + - uid: 11411 components: - pos: 12.5,-89.5 parent: 2 type: Transform - - uid: 11361 + - uid: 11412 components: - pos: 12.5,-90.5 parent: 2 type: Transform - - uid: 11362 + - uid: 11413 components: - pos: 12.5,-91.5 parent: 2 type: Transform - - uid: 11363 + - uid: 11414 components: - pos: 5.5,-89.5 parent: 2 type: Transform - - uid: 11364 + - uid: 11415 components: - pos: 6.5,-89.5 parent: 2 type: Transform - - uid: 11365 + - uid: 11416 components: - pos: 7.5,-89.5 parent: 2 type: Transform - - uid: 11366 + - uid: 11417 components: - pos: 8.5,-89.5 parent: 2 type: Transform - - uid: 11367 + - uid: 11418 components: - pos: 9.5,-89.5 parent: 2 type: Transform - - uid: 11368 + - uid: 11419 components: - pos: 10.5,-89.5 parent: 2 type: Transform - - uid: 11369 + - uid: 11420 components: - pos: 3.5,-89.5 parent: 2 type: Transform - - uid: 11370 + - uid: 11421 components: - pos: 70.5,-25.5 parent: 2 type: Transform - - uid: 11371 + - uid: 11422 components: - pos: 69.5,-25.5 parent: 2 type: Transform - - uid: 11372 + - uid: 11423 components: - pos: 68.5,-25.5 parent: 2 type: Transform - - uid: 11373 + - uid: 11424 components: - pos: 66.5,-25.5 parent: 2 type: Transform - - uid: 11374 + - uid: 11425 components: - pos: 67.5,-25.5 parent: 2 type: Transform - - uid: 11375 + - uid: 11426 components: - pos: 71.5,-26.5 parent: 2 type: Transform - - uid: 11376 + - uid: 11427 components: - pos: 72.5,-26.5 parent: 2 type: Transform - - uid: 11377 + - uid: 11428 components: - pos: 73.5,-26.5 parent: 2 type: Transform - - uid: 11378 + - uid: 11429 components: - pos: 74.5,-26.5 parent: 2 type: Transform - - uid: 11379 + - uid: 11430 components: - pos: 75.5,-26.5 parent: 2 type: Transform - - uid: 11380 + - uid: 11431 components: - pos: 76.5,-26.5 parent: 2 type: Transform - - uid: 11381 + - uid: 11432 components: - pos: 77.5,-26.5 parent: 2 type: Transform - - uid: 11382 + - uid: 11433 components: - pos: 78.5,-26.5 parent: 2 type: Transform - - uid: 11383 + - uid: 11434 components: - pos: -46.5,-53.5 parent: 2 type: Transform - - uid: 11384 + - uid: 11435 components: - pos: -46.5,-54.5 parent: 2 type: Transform - - uid: 11385 + - uid: 11436 components: - pos: 6.5,-88.5 parent: 2 type: Transform - - uid: 11386 + - uid: 11437 components: - pos: 6.5,-87.5 parent: 2 type: Transform - - uid: 11387 + - uid: 11438 components: - pos: 8.5,-75.5 parent: 2 type: Transform - - uid: 11388 + - uid: 11439 components: - pos: 9.5,-75.5 parent: 2 type: Transform - - uid: 11389 + - uid: 11440 components: - pos: 10.5,-75.5 parent: 2 type: Transform - - uid: 11390 + - uid: 11441 components: - pos: 11.5,-75.5 parent: 2 type: Transform - - uid: 11391 + - uid: 11442 components: - pos: 12.5,-75.5 parent: 2 type: Transform - - uid: 11392 + - uid: 11443 components: - pos: 13.5,-75.5 parent: 2 type: Transform - - uid: 11393 + - uid: 11444 components: - pos: 14.5,-75.5 parent: 2 type: Transform - - uid: 11394 + - uid: 11445 components: - pos: 15.5,-75.5 parent: 2 type: Transform - - uid: 11395 + - uid: 11446 components: - pos: 16.5,-75.5 parent: 2 type: Transform - - uid: 11396 + - uid: 11447 components: - pos: 17.5,-75.5 parent: 2 type: Transform - - uid: 11397 + - uid: 11448 components: - pos: 18.5,-75.5 parent: 2 type: Transform - - uid: 11398 + - uid: 11449 components: - pos: 19.5,-75.5 parent: 2 type: Transform - - uid: 11399 + - uid: 11450 components: - pos: 20.5,-75.5 parent: 2 type: Transform - - uid: 11400 + - uid: 11451 components: - pos: 21.5,-75.5 parent: 2 type: Transform - - uid: 11401 + - uid: 11452 components: - pos: 69.5,4.5 parent: 2 type: Transform - - uid: 11402 + - uid: 11453 components: - pos: 69.5,2.5 parent: 2 type: Transform - - uid: 11403 + - uid: 11454 components: - pos: 69.5,1.5 parent: 2 type: Transform - - uid: 11404 + - uid: 11455 components: - pos: 69.5,0.5 parent: 2 type: Transform - - uid: 11405 + - uid: 11456 components: - pos: 69.5,-0.5 parent: 2 type: Transform - - uid: 11406 + - uid: 11457 components: - pos: 69.5,-1.5 parent: 2 type: Transform - - uid: 11407 + - uid: 11458 components: - pos: 69.5,31.5 parent: 2 type: Transform - - uid: 11408 + - uid: 11459 components: - pos: 69.5,30.5 parent: 2 type: Transform - - uid: 11409 + - uid: 11460 components: - pos: 69.5,29.5 parent: 2 type: Transform - - uid: 11410 + - uid: 11461 components: - pos: 69.5,28.5 parent: 2 type: Transform - - uid: 11411 + - uid: 11462 components: - pos: 69.5,27.5 parent: 2 type: Transform - - uid: 11412 + - uid: 11463 components: - pos: 69.5,26.5 parent: 2 type: Transform - - uid: 11413 + - uid: 11464 components: - pos: 69.5,25.5 parent: 2 type: Transform - - uid: 11414 + - uid: 11465 components: - pos: 69.5,24.5 parent: 2 type: Transform - - uid: 11415 + - uid: 11466 components: - pos: 69.5,23.5 parent: 2 type: Transform - - uid: 11416 + - uid: 11467 components: - pos: 69.5,22.5 parent: 2 type: Transform - - uid: 11417 + - uid: 11468 components: - pos: 69.5,21.5 parent: 2 type: Transform - - uid: 11418 + - uid: 11469 components: - pos: 69.5,20.5 parent: 2 type: Transform - - uid: 11419 + - uid: 11470 components: - pos: 69.5,19.5 parent: 2 type: Transform - - uid: 11420 + - uid: 11471 components: - pos: 69.5,18.5 parent: 2 type: Transform - - uid: 11421 + - uid: 11472 components: - pos: 69.5,17.5 parent: 2 type: Transform - - uid: 11422 + - uid: 11473 components: - pos: 69.5,16.5 parent: 2 type: Transform - - uid: 11423 + - uid: 11474 components: - pos: 69.5,15.5 parent: 2 type: Transform - - uid: 11424 + - uid: 11475 components: - pos: 69.5,14.5 parent: 2 type: Transform - - uid: 11425 + - uid: 11476 components: - pos: 69.5,13.5 parent: 2 type: Transform - - uid: 11426 + - uid: 11477 components: - pos: 69.5,12.5 parent: 2 type: Transform - - uid: 11427 + - uid: 11478 components: - pos: 69.5,11.5 parent: 2 type: Transform - - uid: 11428 + - uid: 11479 components: - pos: 69.5,10.5 parent: 2 type: Transform - - uid: 11429 + - uid: 11480 components: - pos: 69.5,9.5 parent: 2 type: Transform - - uid: 11430 + - uid: 11481 components: - pos: 69.5,8.5 parent: 2 type: Transform - - uid: 11431 + - uid: 11482 components: - pos: 69.5,7.5 parent: 2 type: Transform - - uid: 11432 + - uid: 11483 components: - pos: 69.5,6.5 parent: 2 type: Transform - - uid: 11433 + - uid: 11484 components: - pos: 69.5,5.5 parent: 2 type: Transform - - uid: 11434 + - uid: 11485 components: - pos: 75.5,43.5 parent: 2 type: Transform - - uid: 11435 + - uid: 11486 components: - pos: 63.5,37.5 parent: 2 type: Transform - - uid: 11436 + - uid: 11487 components: - pos: 63.5,38.5 parent: 2 type: Transform - - uid: 11437 + - uid: 11488 components: - pos: 63.5,39.5 parent: 2 type: Transform - - uid: 11438 + - uid: 11489 components: - pos: 64.5,39.5 parent: 2 type: Transform - - uid: 11439 + - uid: 11490 components: - pos: 65.5,39.5 parent: 2 type: Transform - - uid: 11440 + - uid: 11491 components: - pos: 66.5,39.5 parent: 2 type: Transform - - uid: 11441 + - uid: 11492 components: - pos: 67.5,39.5 parent: 2 type: Transform - - uid: 11442 + - uid: 11493 components: - pos: 67.5,40.5 parent: 2 type: Transform - - uid: 11443 + - uid: 11494 components: - pos: 67.5,41.5 parent: 2 type: Transform - - uid: 11444 + - uid: 11495 components: - pos: 68.5,41.5 parent: 2 type: Transform - - uid: 11445 + - uid: 11496 components: - pos: 69.5,41.5 parent: 2 type: Transform - - uid: 11446 + - uid: 11497 components: - pos: 70.5,41.5 parent: 2 type: Transform - - uid: 11447 + - uid: 11498 components: - pos: 71.5,41.5 parent: 2 type: Transform - - uid: 11448 + - uid: 11499 components: - pos: 72.5,41.5 parent: 2 type: Transform - - uid: 11449 + - uid: 11500 components: - pos: 72.5,42.5 parent: 2 type: Transform - - uid: 11450 + - uid: 11501 components: - pos: 73.5,42.5 parent: 2 type: Transform - - uid: 11451 + - uid: 11502 components: - pos: 74.5,42.5 parent: 2 type: Transform - - uid: 11452 + - uid: 11503 components: - pos: 75.5,42.5 parent: 2 type: Transform - - uid: 11453 + - uid: 11504 components: - pos: 75.5,44.5 parent: 2 type: Transform - - uid: 11454 + - uid: 11505 components: - pos: 75.5,45.5 parent: 2 type: Transform - - uid: 11455 + - uid: 11506 components: - pos: 75.5,46.5 parent: 2 type: Transform - - uid: 11456 + - uid: 11507 components: - pos: 74.5,46.5 parent: 2 type: Transform - - uid: 11457 + - uid: 11508 components: - pos: 74.5,47.5 parent: 2 type: Transform - - uid: 11458 + - uid: 11509 components: - pos: 74.5,48.5 parent: 2 type: Transform - - uid: 11459 + - uid: 11510 components: - pos: 74.5,49.5 parent: 2 type: Transform - - uid: 11460 + - uid: 11511 components: - pos: 74.5,50.5 parent: 2 type: Transform - - uid: 11461 + - uid: 11512 components: - pos: 74.5,51.5 parent: 2 type: Transform - - uid: 11462 + - uid: 11513 components: - pos: 74.5,52.5 parent: 2 type: Transform - - uid: 11463 + - uid: 11514 components: - pos: 74.5,53.5 parent: 2 type: Transform - - uid: 11464 + - uid: 11515 components: - pos: 74.5,54.5 parent: 2 type: Transform - - uid: 11465 + - uid: 11516 components: - pos: 74.5,55.5 parent: 2 type: Transform - - uid: 11466 + - uid: 11517 components: - pos: 74.5,56.5 parent: 2 type: Transform - - uid: 11467 + - uid: 11518 components: - pos: 74.5,57.5 parent: 2 type: Transform - - uid: 11468 + - uid: 11519 components: - pos: 60.5,58.5 parent: 2 type: Transform - - uid: 11469 + - uid: 11520 components: - pos: 73.5,57.5 parent: 2 type: Transform - - uid: 11470 + - uid: 11521 components: - pos: 72.5,57.5 parent: 2 type: Transform - - uid: 11471 + - uid: 11522 components: - pos: 71.5,57.5 parent: 2 type: Transform - - uid: 11472 + - uid: 11523 components: - pos: 70.5,57.5 parent: 2 type: Transform - - uid: 11473 + - uid: 11524 components: - pos: 69.5,57.5 parent: 2 type: Transform - - uid: 11474 + - uid: 11525 components: - pos: 68.5,57.5 parent: 2 type: Transform - - uid: 11475 + - uid: 11526 components: - pos: 67.5,57.5 parent: 2 type: Transform - - uid: 11476 + - uid: 11527 components: - pos: 66.5,57.5 parent: 2 type: Transform - - uid: 11477 + - uid: 11528 components: - pos: 65.5,57.5 parent: 2 type: Transform - - uid: 11478 + - uid: 11529 components: - pos: 64.5,57.5 parent: 2 type: Transform - - uid: 11479 + - uid: 11530 components: - pos: 63.5,57.5 parent: 2 type: Transform - - uid: 11480 + - uid: 11531 components: - pos: 62.5,57.5 parent: 2 type: Transform - - uid: 11481 + - uid: 11532 components: - pos: 61.5,57.5 parent: 2 type: Transform - - uid: 11482 + - uid: 11533 components: - pos: 60.5,57.5 parent: 2 type: Transform - - uid: 11483 + - uid: 11534 components: - pos: 60.5,59.5 parent: 2 type: Transform - - uid: 11484 + - uid: 11535 components: - pos: 60.5,60.5 parent: 2 type: Transform - - uid: 11485 + - uid: 11536 components: - pos: 60.5,61.5 parent: 2 type: Transform - - uid: 11486 + - uid: 11537 components: - pos: 60.5,62.5 parent: 2 type: Transform - - uid: 11487 + - uid: 11538 components: - pos: 60.5,63.5 parent: 2 type: Transform - - uid: 11488 + - uid: 11539 components: - pos: 47.5,55.5 parent: 2 type: Transform - - uid: 11489 + - uid: 11540 components: - pos: 59.5,63.5 parent: 2 type: Transform - - uid: 11490 + - uid: 11541 components: - pos: 58.5,63.5 parent: 2 type: Transform - - uid: 11491 + - uid: 11542 components: - pos: 57.5,63.5 parent: 2 type: Transform - - uid: 11492 + - uid: 11543 components: - pos: 56.5,63.5 parent: 2 type: Transform - - uid: 11493 + - uid: 11544 components: - pos: 55.5,63.5 parent: 2 type: Transform - - uid: 11494 + - uid: 11545 components: - pos: 54.5,63.5 parent: 2 type: Transform - - uid: 11495 + - uid: 11546 components: - pos: 53.5,63.5 parent: 2 type: Transform - - uid: 11496 + - uid: 11547 components: - pos: 52.5,63.5 parent: 2 type: Transform - - uid: 11497 + - uid: 11548 components: - pos: 51.5,63.5 parent: 2 type: Transform - - uid: 11498 + - uid: 11549 components: - pos: 50.5,63.5 parent: 2 type: Transform - - uid: 11499 + - uid: 11550 components: - pos: 49.5,63.5 parent: 2 type: Transform - - uid: 11500 + - uid: 11551 components: - pos: 48.5,63.5 parent: 2 type: Transform - - uid: 11501 + - uid: 11552 components: - pos: 48.5,62.5 parent: 2 type: Transform - - uid: 11502 + - uid: 11553 components: - pos: 48.5,61.5 parent: 2 type: Transform - - uid: 11503 + - uid: 11554 components: - pos: 48.5,60.5 parent: 2 type: Transform - - uid: 11504 + - uid: 11555 components: - pos: 48.5,59.5 parent: 2 type: Transform - - uid: 11505 + - uid: 11556 components: - pos: 48.5,58.5 parent: 2 type: Transform - - uid: 11506 + - uid: 11557 components: - pos: 48.5,57.5 parent: 2 type: Transform - - uid: 11507 + - uid: 11558 components: - pos: 48.5,56.5 parent: 2 type: Transform - - uid: 11508 + - uid: 11559 components: - pos: 48.5,55.5 parent: 2 type: Transform - - uid: 11509 + - uid: 11560 components: - pos: 46.5,55.5 parent: 2 type: Transform - - uid: 11510 + - uid: 11561 components: - pos: 45.5,55.5 parent: 2 type: Transform - - uid: 11511 + - uid: 11562 components: - pos: 44.5,55.5 parent: 2 type: Transform - - uid: 11512 + - uid: 11563 components: - pos: 43.5,55.5 parent: 2 type: Transform - - uid: 11513 + - uid: 11564 components: - pos: 42.5,55.5 parent: 2 type: Transform - - uid: 11514 + - uid: 11565 components: - pos: 41.5,55.5 parent: 2 type: Transform - - uid: 11515 + - uid: 11566 components: - pos: 40.5,55.5 parent: 2 type: Transform - - uid: 11516 - components: - - pos: 39.5,55.5 - parent: 2 - type: Transform - - uid: 11517 - components: - - pos: 38.5,55.5 - parent: 2 - type: Transform - - uid: 11518 + - uid: 11567 components: - pos: 37.5,55.5 parent: 2 type: Transform - - uid: 11519 + - uid: 11568 components: - pos: 36.5,55.5 parent: 2 type: Transform - - uid: 11520 + - uid: 11569 components: - pos: 35.5,55.5 parent: 2 type: Transform - - uid: 11521 + - uid: 11570 components: - pos: 34.5,55.5 parent: 2 type: Transform - - uid: 11522 + - uid: 11571 components: - pos: 33.5,55.5 parent: 2 type: Transform - - uid: 11523 + - uid: 11572 components: - pos: 32.5,55.5 parent: 2 type: Transform - - uid: 11524 + - uid: 11573 components: - pos: 31.5,55.5 parent: 2 type: Transform - - uid: 11525 + - uid: 11574 components: - pos: 30.5,55.5 parent: 2 type: Transform - - uid: 11526 + - uid: 11575 components: - pos: 66.5,35.5 parent: 2 type: Transform - - uid: 11527 + - uid: 11576 components: - pos: 66.5,34.5 parent: 2 type: Transform - - uid: 11528 + - uid: 11577 components: - pos: 66.5,33.5 parent: 2 type: Transform - - uid: 11529 + - uid: 11578 components: - pos: 66.5,32.5 parent: 2 type: Transform - - uid: 11530 + - uid: 11579 components: - pos: 66.5,31.5 parent: 2 type: Transform - - uid: 11531 + - uid: 11580 components: - pos: 67.5,31.5 parent: 2 type: Transform - - uid: 11532 + - uid: 11581 components: - pos: 68.5,31.5 parent: 2 type: Transform - - uid: 11533 + - uid: 11582 components: - rot: 3.141592653589793 rad pos: 27.5,-90.5 parent: 2 type: Transform - - uid: 11534 + - uid: 11583 components: - rot: 3.141592653589793 rad pos: 13.5,-89.5 parent: 2 type: Transform - - uid: 11535 + - uid: 11584 components: - pos: -7.5,-9.5 parent: 2 type: Transform - - uid: 11536 + - uid: 11585 components: - pos: -8.5,-9.5 parent: 2 type: Transform - - uid: 11537 + - uid: 11586 components: - pos: -9.5,-9.5 parent: 2 type: Transform - - uid: 11538 + - uid: 11587 components: - pos: -10.5,-9.5 parent: 2 type: Transform - - uid: 11539 + - uid: 11588 components: - pos: -11.5,-9.5 parent: 2 type: Transform - - uid: 11540 + - uid: 11589 components: - pos: -12.5,-9.5 parent: 2 type: Transform - - uid: 11541 + - uid: 11590 components: - pos: -13.5,-9.5 parent: 2 type: Transform - - uid: 11542 + - uid: 11591 components: - pos: -15.5,-14.5 parent: 2 type: Transform - - uid: 11543 + - uid: 11592 components: - pos: -16.5,-14.5 parent: 2 type: Transform - - uid: 11544 + - uid: 11593 components: - pos: -46.5,52.5 parent: 2 type: Transform - - uid: 11545 + - uid: 11594 components: - pos: -46.5,51.5 parent: 2 type: Transform - - uid: 11546 + - uid: 11595 components: - pos: -46.5,50.5 parent: 2 type: Transform - - uid: 11547 + - uid: 11596 components: - pos: -46.5,49.5 parent: 2 type: Transform - - uid: 11548 + - uid: 11597 components: - pos: -46.5,-56.5 parent: 2 type: Transform - - uid: 11549 + - uid: 11598 components: - pos: -46.5,-57.5 parent: 2 type: Transform - - uid: 11550 + - uid: 11599 components: - pos: -46.5,-58.5 parent: 2 type: Transform - - uid: 11551 + - uid: 11600 components: - pos: -47.5,-58.5 parent: 2 type: Transform - - uid: 11552 + - uid: 11601 components: - pos: -48.5,-58.5 parent: 2 type: Transform - - uid: 11553 + - uid: 11602 components: - pos: -49.5,-58.5 parent: 2 type: Transform - - uid: 11554 + - uid: 11603 components: - pos: -29.5,-19.5 parent: 2 type: Transform - - uid: 11555 + - uid: 11604 components: - pos: -29.5,-20.5 parent: 2 type: Transform - - uid: 11556 + - uid: 11605 components: - pos: -29.5,-21.5 parent: 2 type: Transform - - uid: 11557 + - uid: 11606 components: - rot: 1.5707963267948966 rad pos: -25.5,-60.5 parent: 2 type: Transform - - uid: 11558 + - uid: 11607 components: - rot: 1.5707963267948966 rad pos: -24.5,-60.5 parent: 2 type: Transform - - uid: 11559 + - uid: 11608 components: - rot: 1.5707963267948966 rad pos: -23.5,-60.5 parent: 2 type: Transform - - uid: 11560 + - uid: 11609 components: - rot: 1.5707963267948966 rad pos: -23.5,-58.5 parent: 2 type: Transform - - uid: 11561 + - uid: 11610 components: - pos: 63.5,2.5 parent: 2 type: Transform - - uid: 11562 + - uid: 11611 components: - rot: 3.141592653589793 rad pos: 52.5,-93.5 parent: 2 type: Transform - - uid: 11563 + - uid: 11612 components: - rot: 3.141592653589793 rad pos: 52.5,-80.5 parent: 2 type: Transform - - uid: 11564 + - uid: 11613 components: - rot: 3.141592653589793 rad pos: 52.5,-76.5 parent: 2 type: Transform - - uid: 11565 + - uid: 11614 components: - rot: 3.141592653589793 rad pos: 51.5,-95.5 parent: 2 type: Transform - - uid: 11566 + - uid: 11615 components: - rot: 3.141592653589793 rad pos: 52.5,-95.5 parent: 2 type: Transform - - uid: 11567 + - uid: 11616 components: - pos: 6.5,-73.5 parent: 2 type: Transform - - uid: 11568 + - uid: 11617 components: - rot: 3.141592653589793 rad pos: 50.5,-95.5 parent: 2 type: Transform - - uid: 11569 + - uid: 11618 components: - rot: 3.141592653589793 rad pos: 52.5,-75.5 parent: 2 type: Transform - - uid: 11570 + - uid: 11619 components: - rot: 3.141592653589793 rad pos: 52.5,-74.5 parent: 2 type: Transform - - uid: 11571 + - uid: 11620 components: - rot: 3.141592653589793 rad pos: 54.5,-74.5 parent: 2 type: Transform - - uid: 11572 + - uid: 11621 components: - rot: 3.141592653589793 rad pos: 53.5,-74.5 parent: 2 type: Transform - - uid: 11573 + - uid: 11622 components: - rot: 1.5707963267948966 rad pos: -19.5,-48.5 parent: 2 type: Transform - - uid: 11574 + - uid: 11623 components: - rot: 1.5707963267948966 rad pos: -19.5,-49.5 parent: 2 type: Transform - - uid: 11575 + - uid: 11624 components: - rot: 3.141592653589793 rad pos: 5.5,-19.5 parent: 2 type: Transform - - uid: 11576 + - uid: 11625 components: - rot: 3.141592653589793 rad pos: 5.5,-20.5 parent: 2 type: Transform - - uid: 11577 + - uid: 11626 components: - rot: 3.141592653589793 rad pos: 5.5,-21.5 parent: 2 type: Transform - - uid: 11578 + - uid: 11627 components: - rot: 3.141592653589793 rad pos: 5.5,-22.5 parent: 2 type: Transform - - uid: 11579 + - uid: 11628 components: - rot: 3.141592653589793 rad pos: 4.5,-16.5 parent: 2 type: Transform - - uid: 11580 + - uid: 11629 components: - rot: 3.141592653589793 rad pos: 6.5,-14.5 parent: 2 type: Transform - - uid: 11581 + - uid: 11630 components: - rot: 3.141592653589793 rad pos: 5.5,-14.5 parent: 2 type: Transform - - uid: 11582 + - uid: 11631 components: - rot: 3.141592653589793 rad pos: 4.5,-14.5 parent: 2 type: Transform - - uid: 11583 + - uid: 11632 components: - rot: 1.5707963267948966 rad pos: -20.5,-49.5 parent: 2 type: Transform - - uid: 11584 + - uid: 11633 components: - pos: 6.5,-74.5 parent: 2 type: Transform - - uid: 11585 + - uid: 11634 components: - pos: 6.5,-75.5 parent: 2 type: Transform - - uid: 11586 + - uid: 11635 components: - pos: 6.5,-76.5 parent: 2 type: Transform - - uid: 11587 + - uid: 11636 components: - pos: 6.5,-77.5 parent: 2 type: Transform - - uid: 11588 + - uid: 11637 components: - pos: 6.5,-78.5 parent: 2 type: Transform - - uid: 11589 + - uid: 11638 components: - pos: 6.5,-79.5 parent: 2 type: Transform - - uid: 11590 + - uid: 11639 components: - pos: 6.5,-80.5 parent: 2 type: Transform - - uid: 11591 + - uid: 11640 components: - pos: 6.5,-81.5 parent: 2 type: Transform - - uid: 11592 + - uid: 11641 components: - pos: 6.5,-82.5 parent: 2 type: Transform - - uid: 11593 + - uid: 11642 components: - rot: -1.5707963267948966 rad pos: -47.5,49.5 parent: 2 type: Transform - - uid: 11594 + - uid: 11643 components: - rot: -1.5707963267948966 rad pos: -48.5,49.5 parent: 2 type: Transform - - uid: 11595 + - uid: 11644 components: - rot: -1.5707963267948966 rad pos: -49.5,49.5 parent: 2 type: Transform - - uid: 11596 + - uid: 11645 components: - rot: -1.5707963267948966 rad pos: -49.5,48.5 parent: 2 type: Transform - - uid: 11597 + - uid: 11646 components: - pos: 71.5,-25.5 parent: 2 type: Transform - - uid: 11598 + - uid: 11647 components: - rot: 1.5707963267948966 rad pos: -61.5,-58.5 parent: 2 type: Transform - - uid: 11599 + - uid: 11648 components: - rot: 1.5707963267948966 rad pos: -61.5,-59.5 parent: 2 type: Transform - - uid: 11600 + - uid: 11649 components: - rot: 1.5707963267948966 rad pos: -62.5,-59.5 parent: 2 type: Transform - - uid: 11601 + - uid: 11650 components: - rot: 1.5707963267948966 rad pos: -63.5,-59.5 parent: 2 type: Transform - - uid: 11602 + - uid: 11651 components: - rot: 1.5707963267948966 rad pos: -64.5,-59.5 parent: 2 type: Transform - - uid: 11603 + - uid: 11652 components: - rot: 1.5707963267948966 rad pos: -65.5,-59.5 parent: 2 type: Transform - - uid: 11604 + - uid: 11653 components: - rot: 1.5707963267948966 rad pos: -66.5,-59.5 parent: 2 type: Transform - - uid: 11605 + - uid: 11654 components: - rot: 1.5707963267948966 rad pos: -67.5,-59.5 parent: 2 type: Transform - - uid: 11606 + - uid: 11655 components: - rot: 1.5707963267948966 rad pos: -68.5,-59.5 parent: 2 type: Transform - - uid: 11607 + - uid: 11656 components: - rot: 1.5707963267948966 rad pos: -69.5,-59.5 parent: 2 type: Transform - - uid: 11608 + - uid: 11657 components: - rot: 1.5707963267948966 rad pos: -70.5,-59.5 parent: 2 type: Transform - - uid: 11609 + - uid: 11658 components: - rot: 1.5707963267948966 rad pos: -71.5,-59.5 parent: 2 type: Transform - - uid: 11610 + - uid: 11659 components: - rot: 1.5707963267948966 rad pos: -72.5,-59.5 parent: 2 type: Transform - - uid: 11611 + - uid: 11660 components: - rot: 1.5707963267948966 rad pos: -73.5,-59.5 parent: 2 type: Transform - - uid: 11612 + - uid: 11661 components: - rot: 1.5707963267948966 rad pos: -74.5,-59.5 parent: 2 type: Transform - - uid: 11613 + - uid: 11662 components: - rot: 3.141592653589793 rad pos: 45.5,-80.5 parent: 2 type: Transform - - uid: 11614 + - uid: 11663 components: - rot: 3.141592653589793 rad pos: 45.5,-79.5 parent: 2 type: Transform - - uid: 11615 + - uid: 11664 components: - rot: 1.5707963267948966 rad pos: 33.5,-91.5 parent: 2 type: Transform - - uid: 11616 + - uid: 11665 components: - rot: 1.5707963267948966 rad pos: 45.5,-91.5 parent: 2 type: Transform - - uid: 11617 + - uid: 11666 components: - rot: 1.5707963267948966 rad pos: 45.5,-92.5 parent: 2 type: Transform - - uid: 11618 + - uid: 11667 components: - rot: 1.5707963267948966 rad pos: 45.5,-93.5 parent: 2 type: Transform - - uid: 11619 + - uid: 11668 components: - rot: 1.5707963267948966 rad pos: 33.5,-92.5 parent: 2 type: Transform - - uid: 11620 + - uid: 11669 components: - rot: 1.5707963267948966 rad pos: 33.5,-93.5 parent: 2 type: Transform - - uid: 11621 + - uid: 11670 components: - rot: 3.141592653589793 rad pos: 45.5,-78.5 parent: 2 type: Transform - - uid: 11622 + - uid: 11671 components: - rot: 3.141592653589793 rad pos: 45.5,-77.5 parent: 2 type: Transform - - uid: 11623 + - uid: 11672 components: - rot: 3.141592653589793 rad pos: 45.5,-76.5 parent: 2 type: Transform - - uid: 11624 + - uid: 11673 components: - rot: 3.141592653589793 rad pos: 45.5,-75.5 parent: 2 type: Transform - - uid: 11625 + - uid: 11674 components: - rot: 3.141592653589793 rad pos: 33.5,-80.5 parent: 2 type: Transform - - uid: 11626 + - uid: 11675 components: - rot: 3.141592653589793 rad pos: 33.5,-79.5 parent: 2 type: Transform - - uid: 11627 + - uid: 11676 components: - rot: 3.141592653589793 rad pos: 33.5,-78.5 parent: 2 type: Transform - - uid: 11628 + - uid: 11677 components: - rot: 3.141592653589793 rad pos: 33.5,-77.5 parent: 2 type: Transform - - uid: 11629 + - uid: 11678 components: - rot: 3.141592653589793 rad pos: 33.5,-76.5 parent: 2 type: Transform - - uid: 11630 + - uid: 11679 components: - rot: 3.141592653589793 rad pos: 33.5,-75.5 parent: 2 type: Transform - - uid: 11631 + - uid: 11680 components: - pos: -79.5,-33.5 parent: 2 type: Transform - - uid: 11632 + - uid: 11681 components: - pos: -79.5,-39.5 parent: 2 type: Transform - - uid: 11633 + - uid: 11682 components: - pos: -79.5,-38.5 parent: 2 type: Transform - - uid: 11634 + - uid: 11683 components: - pos: -79.5,-34.5 parent: 2 type: Transform - - uid: 11635 + - uid: 11684 components: - pos: -79.5,-36.5 parent: 2 type: Transform - - uid: 11636 + - uid: 11685 components: - pos: -79.5,-43.5 parent: 2 type: Transform - - uid: 11637 + - uid: 11686 components: - pos: -79.5,-37.5 parent: 2 type: Transform - - uid: 11638 + - uid: 11687 components: - pos: -79.5,-42.5 parent: 2 type: Transform - - uid: 11639 + - uid: 11688 components: - pos: -79.5,-35.5 parent: 2 type: Transform - - uid: 11640 + - uid: 11689 components: - rot: 3.141592653589793 rad pos: -79.5,-44.5 parent: 2 type: Transform - - uid: 11641 + - uid: 11690 components: - pos: -70.5,-37.5 parent: 2 type: Transform - - uid: 11642 + - uid: 11691 components: - pos: -69.5,-37.5 parent: 2 type: Transform - - uid: 11643 + - uid: 11692 components: - pos: -68.5,-37.5 parent: 2 type: Transform - - uid: 11644 + - uid: 11693 components: - pos: -67.5,-37.5 parent: 2 type: Transform - - uid: 11645 + - uid: 11694 components: - pos: -66.5,-37.5 parent: 2 type: Transform - - uid: 11646 + - uid: 11695 components: - pos: -65.5,-37.5 parent: 2 type: Transform - - uid: 11647 + - uid: 11696 components: - pos: -65.5,-38.5 parent: 2 type: Transform - - uid: 11648 + - uid: 11697 components: - pos: -65.5,-39.5 parent: 2 type: Transform - - uid: 11649 + - uid: 11698 components: - pos: -65.5,-40.5 parent: 2 type: Transform - - uid: 11650 + - uid: 11699 components: - pos: -65.5,-41.5 parent: 2 type: Transform - - uid: 11651 + - uid: 11700 components: - pos: -65.5,-42.5 parent: 2 type: Transform - - uid: 11652 + - uid: 11701 components: - pos: -65.5,-43.5 parent: 2 type: Transform - - uid: 11653 + - uid: 11702 components: - pos: -65.5,-45.5 parent: 2 type: Transform - - uid: 11654 + - uid: 11703 components: - rot: 3.141592653589793 rad pos: -79.5,-45.5 parent: 2 type: Transform - - uid: 11655 + - uid: 11704 components: - rot: 3.141592653589793 rad pos: -79.5,-46.5 parent: 2 type: Transform - - uid: 11656 + - uid: 11705 components: - rot: 3.141592653589793 rad pos: -79.5,-47.5 parent: 2 type: Transform - - uid: 11657 + - uid: 11706 components: - rot: 3.141592653589793 rad pos: -79.5,-48.5 parent: 2 type: Transform - - uid: 11658 + - uid: 11707 components: - rot: 3.141592653589793 rad pos: -78.5,-48.5 parent: 2 type: Transform - - uid: 11659 + - uid: 11708 components: - rot: 3.141592653589793 rad pos: -77.5,-48.5 parent: 2 type: Transform - - uid: 11660 + - uid: 11709 components: - rot: 3.141592653589793 rad pos: -76.5,-48.5 parent: 2 type: Transform - - uid: 11661 + - uid: 11710 components: - rot: 3.141592653589793 rad pos: -75.5,-48.5 parent: 2 type: Transform - - uid: 11662 + - uid: 11711 components: - rot: -1.5707963267948966 rad pos: -65.5,-44.5 parent: 2 type: Transform - - uid: 11663 + - uid: 11712 components: - rot: -1.5707963267948966 rad pos: -61.5,-47.5 parent: 2 type: Transform - - uid: 11664 + - uid: 11713 components: - rot: -1.5707963267948966 rad pos: -61.5,-46.5 parent: 2 type: Transform - - uid: 11665 + - uid: 11714 components: - rot: -1.5707963267948966 rad pos: -61.5,-45.5 parent: 2 type: Transform - - uid: 11666 + - uid: 11715 components: - rot: 3.141592653589793 rad pos: -78.5,-38.5 parent: 2 type: Transform - - uid: 11667 + - uid: 11716 components: - rot: 1.5707963267948966 rad pos: -15.5,15.5 parent: 2 type: Transform - - uid: 11668 + - uid: 11717 components: - rot: 3.141592653589793 rad pos: -77.5,-38.5 parent: 2 type: Transform - - uid: 11669 + - uid: 11718 components: - rot: 3.141592653589793 rad pos: -75.5,-38.5 parent: 2 type: Transform - - uid: 11670 + - uid: 11719 components: - rot: 3.141592653589793 rad pos: -52.5,-33.5 parent: 2 type: Transform - - uid: 11671 + - uid: 11720 components: - rot: -1.5707963267948966 rad pos: -43.5,-38.5 parent: 2 type: Transform - - uid: 11672 + - uid: 11721 components: - rot: -1.5707963267948966 rad pos: -43.5,-39.5 parent: 2 type: Transform - - uid: 11673 + - uid: 11722 components: - rot: -1.5707963267948966 rad pos: -43.5,-40.5 parent: 2 type: Transform - - uid: 11674 + - uid: 11723 components: - rot: 3.141592653589793 rad pos: 23.5,-32.5 parent: 2 type: Transform - - uid: 11675 + - uid: 11724 components: - rot: 3.141592653589793 rad pos: 26.5,-32.5 parent: 2 type: Transform - - uid: 11676 + - uid: 11725 components: - pos: 12.5,25.5 parent: 2 type: Transform - - uid: 11677 + - uid: 11726 components: - pos: 11.5,25.5 parent: 2 type: Transform - - uid: 11678 + - uid: 11727 components: - pos: 10.5,25.5 parent: 2 type: Transform - - uid: 11679 + - uid: 11728 components: - pos: 9.5,25.5 parent: 2 type: Transform - - uid: 11680 + - uid: 11729 components: - pos: 8.5,25.5 parent: 2 type: Transform + - uid: 11730 + components: + - rot: 3.141592653589793 rad + pos: 39.5,58.5 + parent: 2 + type: Transform + - uid: 11731 + components: + - rot: 3.141592653589793 rad + pos: 39.5,57.5 + parent: 2 + type: Transform + - uid: 11732 + components: + - rot: 3.141592653589793 rad + pos: 39.5,56.5 + parent: 2 + type: Transform + - uid: 11733 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,55.5 + parent: 2 + type: Transform + - uid: 11734 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,55.5 + parent: 2 + type: Transform - proto: Cautery entities: - - uid: 11681 + - uid: 11735 components: - rot: -1.5707963267948966 rad pos: 0.5414771,-66.9678 parent: 2 type: Transform - - uid: 11682 + - uid: 11736 components: - pos: 73.52661,-47.78304 parent: 2 type: Transform - proto: Chair entities: - - uid: 11683 + - uid: 11737 + components: + - rot: -1.5707963267948966 rad + pos: 58.5,58.5 + parent: 2 + type: Transform + - uid: 11738 components: - rot: -1.5707963267948966 rad pos: 18.5,-72.5 parent: 2 type: Transform - - uid: 11684 + - uid: 11739 components: - rot: -1.5707963267948966 rad pos: -51.5,-75.5 parent: 2 type: Transform - - uid: 11685 + - uid: 11740 components: - pos: 14.5,-72.5 parent: 2 type: Transform - - uid: 11686 + - uid: 11741 components: - rot: -1.5707963267948966 rad pos: -51.5,-79.5 parent: 2 type: Transform - - uid: 11687 + - uid: 11742 components: - rot: -1.5707963267948966 rad pos: -51.5,-78.5 parent: 2 type: Transform - - uid: 11688 + - uid: 11743 components: - rot: -1.5707963267948966 rad pos: -51.5,-77.5 parent: 2 type: Transform - - uid: 11689 + - uid: 11744 components: - rot: -1.5707963267948966 rad pos: -51.5,-74.5 parent: 2 type: Transform - - uid: 11690 + - uid: 11745 components: - rot: -1.5707963267948966 rad pos: -51.5,-73.5 parent: 2 type: Transform - - uid: 11691 + - uid: 11746 components: - pos: -23.5,-38.5 parent: 2 type: Transform - - uid: 11692 + - uid: 11747 components: - pos: 1.5,-52.5 parent: 2 type: Transform - - uid: 11693 + - uid: 11748 components: - rot: 3.141592653589793 rad pos: 27.5,-4.5 parent: 2 type: Transform - - uid: 11694 + - uid: 11749 components: - pos: -5.5,-45.5 parent: 2 type: Transform - - uid: 11695 + - uid: 11750 components: - pos: -2.5,-32.5 parent: 2 type: Transform - - uid: 11696 + - uid: 11751 components: - rot: 1.5707963267948966 rad pos: 17.5,-65.5 parent: 2 type: Transform - - uid: 11697 + - uid: 11752 components: - rot: 1.5707963267948966 rad pos: 17.5,-66.5 parent: 2 type: Transform - - uid: 11698 + - uid: 11753 components: - rot: 1.5707963267948966 rad pos: 18.5,-0.5 parent: 2 type: Transform - - uid: 11699 + - uid: 11754 components: - pos: -14.5,-52.5 parent: 2 type: Transform - - uid: 11700 + - uid: 11755 components: - pos: 2.5,-52.5 parent: 2 type: Transform - - uid: 11701 + - uid: 11756 components: - pos: -12.5,-52.5 parent: 2 type: Transform - - uid: 11702 + - uid: 11757 components: - pos: -11.5,-52.5 parent: 2 type: Transform - - uid: 11703 + - uid: 11758 components: - pos: 16.5,-67.5 parent: 2 type: Transform - - uid: 11704 + - uid: 11759 components: - rot: 1.5707963267948966 rad pos: 18.5,2.5 parent: 2 type: Transform - - uid: 11705 + - uid: 11760 components: - pos: 27.5,6.5 parent: 2 type: Transform - - uid: 11706 + - uid: 11761 components: - pos: 26.5,6.5 parent: 2 type: Transform - - uid: 11707 + - uid: 11762 components: - rot: 1.5707963267948966 rad pos: 7.5,13.5 parent: 2 type: Transform - - uid: 11708 + - uid: 11763 components: - rot: 1.5707963267948966 rad pos: 7.5,14.5 parent: 2 type: Transform - - uid: 11709 + - uid: 11764 components: - pos: -4.5,-45.5 parent: 2 type: Transform - - uid: 11710 + - uid: 11765 components: - pos: -3.5,-45.5 parent: 2 type: Transform - - uid: 11711 + - uid: 11766 components: - rot: 3.141592653589793 rad pos: 23.5,-4.5 parent: 2 type: Transform - - uid: 11712 + - uid: 11767 components: - rot: 3.141592653589793 rad pos: 26.5,-4.5 parent: 2 type: Transform - - uid: 11713 + - uid: 11768 components: - pos: 22.5,6.5 parent: 2 type: Transform - - uid: 11714 + - uid: 11769 components: - pos: 25.5,6.5 parent: 2 type: Transform - - uid: 11715 + - uid: 11770 components: - pos: 21.5,6.5 parent: 2 type: Transform - - uid: 11716 + - uid: 11771 components: - rot: 3.141592653589793 rad pos: -2.5,-34.5 parent: 2 type: Transform - - uid: 11717 + - uid: 11772 components: - pos: 15.5,-67.5 parent: 2 type: Transform - - uid: 11718 + - uid: 11773 components: - rot: 3.141592653589793 rad pos: 22.5,-4.5 parent: 2 type: Transform - - uid: 11719 + - uid: 11774 components: - rot: 3.141592653589793 rad pos: 21.5,-4.5 parent: 2 type: Transform - - uid: 11720 + - uid: 11775 components: - rot: -1.5707963267948966 rad pos: 65.5,-9.5 parent: 2 type: Transform - - uid: 11721 + - uid: 11776 components: - rot: -1.5707963267948966 rad pos: -7.5,-36.5 parent: 2 type: Transform - - uid: 11722 + - uid: 11777 components: - rot: -1.5707963267948966 rad pos: -7.5,-37.5 parent: 2 type: Transform - - uid: 11723 + - uid: 11778 components: - rot: -1.5707963267948966 rad pos: -7.5,-38.5 parent: 2 type: Transform - - uid: 11724 + - uid: 11779 components: - pos: 17.5,23.5 parent: 2 type: Transform - - uid: 11725 + - uid: 11780 components: - pos: 15.5,23.5 parent: 2 type: Transform - - uid: 11726 + - uid: 11781 components: - rot: 3.141592653589793 rad pos: 16.5,20.5 parent: 2 type: Transform - - uid: 11727 + - uid: 11782 components: - pos: 35.5,19.5 parent: 2 type: Transform - - uid: 11728 + - uid: 11783 components: - rot: 3.141592653589793 rad pos: 35.5,17.5 parent: 2 type: Transform - - uid: 11729 + - uid: 11784 components: - rot: -1.5707963267948966 rad pos: 18.5,29.5 parent: 2 type: Transform - - uid: 11730 + - uid: 11785 components: - rot: -1.5707963267948966 rad pos: 18.5,28.5 parent: 2 type: Transform - - uid: 11731 + - uid: 11786 components: - pos: 48.5,19.5 parent: 2 type: Transform - - uid: 11732 + - uid: 11787 components: - pos: 52.5,8.5 parent: 2 type: Transform - - uid: 11733 + - uid: 11788 components: - rot: 3.141592653589793 rad pos: 52.5,5.5 parent: 2 type: Transform - - uid: 11734 + - uid: 11789 components: - pos: 51.5,8.5 parent: 2 type: Transform - - uid: 11735 + - uid: 11790 components: - rot: 3.141592653589793 rad pos: 51.5,5.5 parent: 2 type: Transform - - uid: 11736 + - uid: 11791 components: - pos: 58.5,21.5 parent: 2 type: Transform - - uid: 11737 + - uid: 11792 components: - pos: 57.5,21.5 parent: 2 type: Transform - - uid: 11738 + - uid: 11793 components: - rot: 3.141592653589793 rad pos: 58.5,18.5 parent: 2 type: Transform - - uid: 11739 + - uid: 11794 components: - rot: 3.141592653589793 rad pos: 57.5,18.5 parent: 2 type: Transform - - uid: 11740 + - uid: 11795 components: - rot: 1.5707963267948966 rad pos: 42.5,-3.5 parent: 2 type: Transform - - uid: 11741 + - uid: 11796 components: - pos: 59.5,-10.5 parent: 2 type: Transform - - uid: 11742 + - uid: 11797 components: - pos: 58.5,-10.5 parent: 2 type: Transform - - uid: 11743 + - uid: 11798 components: - pos: 57.5,-10.5 parent: 2 type: Transform - - uid: 11744 + - uid: 11799 components: - pos: 56.5,-10.5 parent: 2 type: Transform - - uid: 11745 + - uid: 11800 components: - pos: 55.5,-10.5 parent: 2 type: Transform - - uid: 11746 + - uid: 11801 components: - rot: 3.141592653589793 rad pos: 55.5,-6.5 parent: 2 type: Transform - - uid: 11747 + - uid: 11802 components: - rot: 3.141592653589793 rad pos: 56.5,-6.5 parent: 2 type: Transform - - uid: 11748 + - uid: 11803 components: - rot: 3.141592653589793 rad pos: 57.5,-6.5 parent: 2 type: Transform - - uid: 11749 + - uid: 11804 components: - rot: 3.141592653589793 rad pos: 58.5,-6.5 parent: 2 type: Transform - - uid: 11750 + - uid: 11805 components: - rot: 3.141592653589793 rad pos: 59.5,-6.5 parent: 2 type: Transform - - uid: 11751 + - uid: 11806 components: - pos: 55.5,-14.5 parent: 2 type: Transform - - uid: 11752 + - uid: 11807 components: - pos: 56.5,-14.5 parent: 2 type: Transform - - uid: 11753 + - uid: 11808 components: - pos: 59.5,-14.5 parent: 2 type: Transform - - uid: 11754 + - uid: 11809 components: - pos: 58.5,-14.5 parent: 2 type: Transform - - uid: 11755 + - uid: 11810 components: - pos: 61.5,-10.5 parent: 2 type: Transform - - uid: 11756 + - uid: 11811 components: - pos: 60.5,-10.5 parent: 2 type: Transform - - uid: 11757 + - uid: 11812 components: - pos: 44.5,-48.5 parent: 2 type: Transform - - uid: 11758 + - uid: 11813 components: - pos: 46.5,-48.5 parent: 2 type: Transform - - uid: 11759 + - uid: 11814 components: - rot: 3.141592653589793 rad pos: 28.5,-55.5 parent: 2 type: Transform - - uid: 11760 + - uid: 11815 components: - rot: 3.141592653589793 rad pos: 29.5,-55.5 parent: 2 type: Transform - - uid: 11761 + - uid: 11816 components: - rot: 3.141592653589793 rad pos: 30.5,-55.5 parent: 2 type: Transform - - uid: 11762 + - uid: 11817 components: - rot: 3.141592653589793 rad pos: 30.5,-54.5 parent: 2 type: Transform - - uid: 11763 + - uid: 11818 components: - rot: 3.141592653589793 rad pos: 29.5,-54.5 parent: 2 type: Transform - - uid: 11764 + - uid: 11819 components: - rot: 3.141592653589793 rad pos: 28.5,-54.5 parent: 2 type: Transform - - uid: 11765 + - uid: 11820 components: - rot: 3.141592653589793 rad pos: 32.5,-54.5 parent: 2 type: Transform - - uid: 11766 + - uid: 11821 components: - rot: 3.141592653589793 rad pos: 33.5,-54.5 parent: 2 type: Transform - - uid: 11767 + - uid: 11822 components: - rot: 3.141592653589793 rad pos: 34.5,-54.5 parent: 2 type: Transform - - uid: 11768 + - uid: 11823 components: - rot: 3.141592653589793 rad pos: 34.5,-55.5 parent: 2 type: Transform - - uid: 11769 + - uid: 11824 components: - rot: 3.141592653589793 rad pos: 33.5,-55.5 parent: 2 type: Transform - - uid: 11770 + - uid: 11825 components: - rot: 3.141592653589793 rad pos: 32.5,-55.5 parent: 2 type: Transform - - uid: 11771 + - uid: 11826 components: - rot: 3.141592653589793 rad pos: 32.5,-53.5 parent: 2 type: Transform - - uid: 11772 + - uid: 11827 components: - rot: 3.141592653589793 rad pos: 33.5,-53.5 parent: 2 type: Transform - - uid: 11773 + - uid: 11828 components: - rot: 3.141592653589793 rad pos: 34.5,-53.5 parent: 2 type: Transform - - uid: 11774 + - uid: 11829 components: - rot: 3.141592653589793 rad pos: 30.5,-53.5 parent: 2 type: Transform - - uid: 11775 + - uid: 11830 components: - rot: 3.141592653589793 rad pos: 29.5,-53.5 parent: 2 type: Transform - - uid: 11776 + - uid: 11831 components: - rot: 3.141592653589793 rad pos: 28.5,-53.5 parent: 2 type: Transform - - uid: 11777 + - uid: 11832 components: - pos: 33.5,-48.5 parent: 2 type: Transform - - uid: 11778 + - uid: 11833 components: - rot: 1.5707963267948966 rad pos: 29.5,-48.5 parent: 2 type: Transform - - uid: 11779 + - uid: 11834 components: - rot: -1.5707963267948966 rad pos: -22.5,-9.5 parent: 2 type: Transform - - uid: 11780 + - uid: 11835 components: - rot: -1.5707963267948966 rad pos: -22.5,-10.5 parent: 2 type: Transform - - uid: 11781 + - uid: 11836 components: - rot: -1.5707963267948966 rad pos: -22.5,-13.5 parent: 2 type: Transform - - uid: 11782 + - uid: 11837 components: - rot: -1.5707963267948966 rad pos: -22.5,-14.5 parent: 2 type: Transform - - uid: 11783 + - uid: 11838 components: - rot: 3.141592653589793 rad pos: -48.5,10.5 parent: 2 type: Transform - - uid: 11784 + - uid: 11839 components: - pos: 44.5,-70.5 parent: 2 type: Transform - - uid: 11785 + - uid: 11840 components: - pos: 43.5,-70.5 parent: 2 type: Transform - - uid: 11786 + - uid: 11841 components: - pos: 42.5,-70.5 parent: 2 type: Transform - - uid: 11787 + - uid: 11842 components: - pos: 41.5,-70.5 parent: 2 type: Transform - - uid: 11788 + - uid: 11843 components: - pos: 37.5,-70.5 parent: 2 type: Transform - - uid: 11789 + - uid: 11844 components: - pos: 36.5,-70.5 parent: 2 type: Transform - - uid: 11790 + - uid: 11845 components: - pos: 35.5,-70.5 parent: 2 type: Transform - - uid: 11791 + - uid: 11846 components: - pos: 34.5,-70.5 parent: 2 type: Transform - - uid: 11792 + - uid: 11847 components: - rot: 3.141592653589793 rad pos: -49.5,10.5 parent: 2 type: Transform - - uid: 11793 + - uid: 11848 components: - rot: 3.141592653589793 rad pos: 23.5,16.5 parent: 2 type: Transform - - uid: 11794 + - uid: 11849 components: - rot: 1.5707963267948966 rad pos: -56.5,-75.5 parent: 2 type: Transform - - uid: 11795 + - uid: 11850 components: - rot: 1.5707963267948966 rad pos: -56.5,-76.5 parent: 2 type: Transform - - uid: 11796 + - uid: 11851 components: - rot: 1.5707963267948966 rad pos: -56.5,-77.5 parent: 2 type: Transform - - uid: 11797 + - uid: 11852 components: - rot: 3.141592653589793 rad pos: -53.5,-82.5 parent: 2 type: Transform - - uid: 11798 + - uid: 11853 components: - rot: 3.141592653589793 rad pos: -55.5,-82.5 parent: 2 type: Transform - - uid: 11799 + - uid: 11854 components: - pos: -53.5,-70.5 parent: 2 type: Transform - - uid: 11800 + - uid: 11855 components: - pos: -54.5,-70.5 parent: 2 type: Transform - - uid: 11801 + - uid: 11856 components: - pos: -55.5,-70.5 parent: 2 type: Transform - - uid: 11802 + - uid: 11857 components: - rot: -1.5707963267948966 rad pos: -36.5,-81.5 parent: 2 type: Transform - - uid: 11803 + - uid: 11858 components: - rot: -1.5707963267948966 rad pos: -36.5,-82.5 parent: 2 type: Transform - - uid: 11804 + - uid: 11859 components: - rot: -1.5707963267948966 rad pos: -36.5,-83.5 parent: 2 type: Transform - - uid: 11805 + - uid: 11860 components: - rot: 1.5707963267948966 rad pos: -47.5,-81.5 parent: 2 type: Transform - - uid: 11806 + - uid: 11861 components: - rot: 1.5707963267948966 rad pos: -47.5,-82.5 parent: 2 type: Transform - - uid: 11807 + - uid: 11862 components: - rot: 1.5707963267948966 rad pos: -47.5,-83.5 parent: 2 type: Transform - - uid: 11808 + - uid: 11863 components: - pos: -54.5,-58.5 parent: 2 type: Transform - - uid: 11809 + - uid: 11864 components: - rot: 1.5707963267948966 rad pos: 69.5,-56.5 parent: 2 type: Transform - - uid: 11810 + - uid: 11865 components: - rot: 3.141592653589793 rad pos: 34.5,-36.5 parent: 2 type: Transform - - uid: 11811 + - uid: 11866 components: - pos: 70.5,-55.5 parent: 2 type: Transform - - uid: 11812 + - uid: 11867 components: - rot: -1.5707963267948966 rad pos: -57.5,-51.5 parent: 2 type: Transform - - uid: 11813 + - uid: 11868 components: - rot: -1.5707963267948966 rad pos: -57.5,-52.5 parent: 2 type: Transform - - uid: 11814 + - uid: 11869 components: - rot: -1.5707963267948966 rad pos: -22.5,24.5 parent: 2 type: Transform - - uid: 11815 + - uid: 11870 components: - rot: -1.5707963267948966 rad pos: -22.5,23.5 parent: 2 type: Transform - - uid: 11816 + - uid: 11871 components: - rot: -1.5707963267948966 rad pos: -22.5,22.5 parent: 2 type: Transform - - uid: 11817 + - uid: 11872 components: - rot: -1.5707963267948966 rad pos: -22.5,19.5 parent: 2 type: Transform - - uid: 11818 + - uid: 11873 components: - rot: -1.5707963267948966 rad pos: -22.5,18.5 parent: 2 type: Transform - - uid: 11819 + - uid: 11874 components: - rot: 3.141592653589793 rad pos: -0.5,34.5 parent: 2 type: Transform - - uid: 11820 + - uid: 11875 components: - rot: 3.141592653589793 rad pos: -1.5,34.5 parent: 2 type: Transform - - uid: 11821 + - uid: 11876 components: - rot: 3.141592653589793 rad pos: -2.5,34.5 parent: 2 type: Transform - - uid: 11822 + - uid: 11877 components: - pos: 4.5,-52.5 parent: 2 type: Transform - - uid: 11823 + - uid: 11878 components: - rot: -1.5707963267948966 rad pos: 65.5,-7.5 parent: 2 type: Transform - - uid: 11824 + - uid: 11879 components: - rot: 3.141592653589793 rad pos: 61.5,-6.5 parent: 2 type: Transform - - uid: 11825 + - uid: 11880 components: - rot: 3.141592653589793 rad pos: 60.5,-6.5 parent: 2 type: Transform - - uid: 11826 + - uid: 11881 components: - pos: 31.5,-60.5 parent: 2 type: Transform - - uid: 11827 + - uid: 11882 components: - rot: 3.141592653589793 rad pos: 30.5,-62.5 parent: 2 type: Transform - - uid: 11828 + - uid: 11883 components: - pos: 30.5,-60.5 parent: 2 type: Transform - - uid: 11829 + - uid: 11884 components: - rot: -1.5707963267948966 rad pos: 65.5,-8.5 parent: 2 type: Transform - - uid: 11830 + - uid: 11885 components: - rot: 3.141592653589793 rad pos: -50.5,10.5 parent: 2 type: Transform - - uid: 11831 + - uid: 11886 components: - rot: 3.141592653589793 rad pos: 25.5,-4.5 parent: 2 type: Transform - - uid: 11832 + - uid: 11887 components: - pos: 71.5,-55.5 parent: 2 type: Transform - - uid: 11833 + - uid: 11888 components: - pos: 23.5,6.5 parent: 2 type: Transform - - uid: 11834 + - uid: 11889 components: - rot: 3.141592653589793 rad pos: -5.5,-16.5 parent: 2 type: Transform - - uid: 11835 + - uid: 11890 components: - rot: 3.141592653589793 rad pos: 30.5,-43.5 parent: 2 type: Transform - - uid: 11836 + - uid: 11891 components: - rot: 3.141592653589793 rad pos: 29.5,-43.5 parent: 2 type: Transform - - uid: 11837 + - uid: 11892 components: - rot: 3.141592653589793 rad pos: 28.5,-43.5 parent: 2 type: Transform - - uid: 11838 + - uid: 11893 components: - rot: 3.141592653589793 rad pos: 18.5,-43.5 parent: 2 type: Transform - - uid: 11839 + - uid: 11894 components: - rot: 3.141592653589793 rad pos: 17.5,-43.5 parent: 2 type: Transform - - uid: 11840 + - uid: 11895 components: - rot: 3.141592653589793 rad pos: 16.5,-43.5 parent: 2 type: Transform - - uid: 11841 + - uid: 11896 components: - rot: 3.141592653589793 rad pos: 44.5,-43.5 parent: 2 type: Transform - - uid: 11842 + - uid: 11897 components: - rot: 3.141592653589793 rad pos: 43.5,-43.5 parent: 2 type: Transform - - uid: 11843 + - uid: 11898 components: - rot: 3.141592653589793 rad pos: 42.5,-43.5 parent: 2 type: Transform - - uid: 11844 + - uid: 11899 components: - pos: 34.5,-34.5 parent: 2 type: Transform - - uid: 11845 + - uid: 11900 components: - pos: 3.5,-40.5 parent: 2 type: Transform - - uid: 11846 + - uid: 11901 components: - pos: -14.5,8.5 parent: 2 type: Transform - - uid: 11847 + - uid: 11902 components: - pos: -15.5,8.5 parent: 2 type: Transform - - uid: 11848 + - uid: 11903 components: - rot: 3.141592653589793 rad pos: -40.5,-0.5 parent: 2 type: Transform - - uid: 11849 + - uid: 11904 components: - rot: 3.141592653589793 rad pos: -39.5,-0.5 parent: 2 type: Transform - - uid: 11850 + - uid: 11905 components: - rot: 3.141592653589793 rad pos: -38.5,-0.5 parent: 2 type: Transform - - uid: 11851 + - uid: 11906 components: - rot: 3.141592653589793 rad pos: -36.5,-0.5 parent: 2 type: Transform - - uid: 11852 + - uid: 11907 components: - rot: 3.141592653589793 rad pos: -35.5,-0.5 parent: 2 type: Transform - - uid: 11853 + - uid: 11908 components: - rot: 3.141592653589793 rad pos: -34.5,-0.5 parent: 2 type: Transform - - uid: 11854 + - uid: 11909 components: - rot: -1.5707963267948966 rad pos: -17.5,-70.5 parent: 2 type: Transform - - uid: 11855 + - uid: 11910 components: - rot: -1.5707963267948966 rad pos: -17.5,-71.5 parent: 2 type: Transform - - uid: 11856 + - uid: 11911 components: - rot: 3.141592653589793 rad pos: 31.5,-62.5 parent: 2 type: Transform - - uid: 11857 + - uid: 11912 components: - rot: -1.5707963267948966 rad pos: -18.5,-34.5 parent: 2 type: Transform - - uid: 11858 + - uid: 11913 components: - rot: -1.5707963267948966 rad pos: -18.5,-33.5 parent: 2 type: Transform - - uid: 11859 + - uid: 11914 components: - rot: -1.5707963267948966 rad pos: -18.5,-32.5 parent: 2 type: Transform - - uid: 11860 + - uid: 11915 components: - rot: 1.5707963267948966 rad pos: -34.5,-67.5 parent: 2 type: Transform - - uid: 11861 + - uid: 11916 components: - rot: 3.141592653589793 rad pos: 22.5,16.5 parent: 2 type: Transform - - uid: 11862 + - uid: 11917 components: - rot: 3.141592653589793 rad pos: 21.5,16.5 parent: 2 type: Transform - - uid: 11863 + - uid: 11918 components: - rot: 3.141592653589793 rad pos: 32.5,-18.5 parent: 2 type: Transform - - uid: 11864 + - uid: 11919 components: - rot: 3.141592653589793 rad pos: 31.5,-18.5 parent: 2 type: Transform - - uid: 11865 + - uid: 11920 components: - rot: 3.141592653589793 rad pos: 30.5,-18.5 parent: 2 type: Transform - - uid: 11866 + - uid: 11921 components: - rot: 3.141592653589793 rad pos: 20.5,-18.5 parent: 2 type: Transform - - uid: 11867 + - uid: 11922 components: - rot: 3.141592653589793 rad pos: 19.5,-18.5 parent: 2 type: Transform - - uid: 11868 + - uid: 11923 components: - rot: 3.141592653589793 rad pos: 18.5,-18.5 parent: 2 type: Transform - - uid: 11869 + - uid: 11924 components: - rot: 1.5707963267948966 rad pos: 18.5,1.5 parent: 2 type: Transform - - uid: 11870 + - uid: 11925 components: - rot: 1.5707963267948966 rad pos: 18.5,0.5 parent: 2 type: Transform - - uid: 11871 - components: - - rot: -1.5707963267948966 rad - pos: 57.5,58.5 - parent: 2 - type: Transform - - uid: 11872 - components: - - rot: -1.5707963267948966 rad - pos: 57.5,57.5 - parent: 2 - type: Transform - - uid: 11873 - components: - - rot: -1.5707963267948966 rad - pos: 57.5,56.5 - parent: 2 - type: Transform - - uid: 11874 + - uid: 11926 components: - rot: 1.5707963267948966 rad - pos: 51.5,58.5 + pos: 50.5,56.5 parent: 2 type: Transform - - uid: 11875 + - uid: 11927 components: - rot: 1.5707963267948966 rad - pos: 51.5,57.5 + pos: 50.5,57.5 parent: 2 type: Transform - - uid: 11876 + - uid: 11928 components: - rot: 1.5707963267948966 rad - pos: 51.5,56.5 + pos: 50.5,58.5 parent: 2 type: Transform - - uid: 11877 + - uid: 11929 components: - rot: -1.5707963267948966 rad pos: 55.5,29.5 parent: 2 type: Transform - - uid: 11878 + - uid: 11930 components: - rot: -1.5707963267948966 rad pos: 55.5,28.5 parent: 2 type: Transform - - uid: 11879 + - uid: 11931 components: - rot: 1.5707963267948966 rad pos: 52.5,29.5 parent: 2 type: Transform - - uid: 11880 + - uid: 11932 components: - rot: 1.5707963267948966 rad pos: 52.5,28.5 parent: 2 type: Transform - - uid: 11881 + - uid: 11933 components: - pos: -18.5,67.5 parent: 2 type: Transform - - uid: 11882 + - uid: 11934 components: - pos: -16.5,67.5 parent: 2 type: Transform - - uid: 11883 + - uid: 11935 components: - pos: 6.5,34.5 parent: 2 type: Transform - - uid: 11884 + - uid: 11936 components: - pos: 10.5,34.5 parent: 2 type: Transform - - uid: 11885 + - uid: 11937 components: - pos: -1.5,43.5 parent: 2 type: Transform - - uid: 11886 + - uid: 11938 components: - pos: -3.5,43.5 parent: 2 type: Transform - - uid: 11887 + - uid: 11939 components: - pos: -16.5,63.5 parent: 2 type: Transform - - uid: 11888 + - uid: 11940 components: - pos: -17.5,63.5 parent: 2 type: Transform - - uid: 11889 + - uid: 11941 components: - pos: -18.5,63.5 parent: 2 type: Transform - - uid: 11890 + - uid: 11942 components: - rot: -1.5707963267948966 rad pos: -15.5,62.5 parent: 2 type: Transform - - uid: 11891 + - uid: 11943 components: - rot: -1.5707963267948966 rad pos: -15.5,61.5 parent: 2 type: Transform - - uid: 11892 + - uid: 11944 components: - rot: 1.5707963267948966 rad pos: -19.5,62.5 parent: 2 type: Transform - - uid: 11893 + - uid: 11945 components: - rot: 1.5707963267948966 rad pos: -19.5,61.5 parent: 2 type: Transform - - uid: 11894 + - uid: 11946 components: - rot: 3.141592653589793 rad pos: -18.5,60.5 parent: 2 type: Transform - - uid: 11895 + - uid: 11947 components: - rot: 3.141592653589793 rad pos: -17.5,60.5 parent: 2 type: Transform - - uid: 11896 + - uid: 11948 components: - rot: 3.141592653589793 rad pos: -16.5,60.5 parent: 2 type: Transform - - uid: 11897 + - uid: 11949 components: - rot: -1.5707963267948966 rad pos: -40.5,-90.5 parent: 2 type: Transform - - uid: 11898 + - uid: 11950 components: - rot: -1.5707963267948966 rad pos: -40.5,-89.5 parent: 2 type: Transform - - uid: 11899 + - uid: 11951 components: - rot: 1.5707963267948966 rad pos: -43.5,-89.5 parent: 2 type: Transform - - uid: 11900 + - uid: 11952 components: - rot: 1.5707963267948966 rad pos: -43.5,-90.5 parent: 2 type: Transform - - uid: 11901 + - uid: 11953 components: - pos: -42.5,-97.5 parent: 2 type: Transform - - uid: 11902 + - uid: 11954 components: - rot: -1.5707963267948966 rad pos: -4.5,-99.5 parent: 2 type: Transform - - uid: 11903 + - uid: 11955 components: - rot: 1.5707963267948966 rad pos: 62.5,-7.5 parent: 2 type: Transform - - uid: 11904 + - uid: 11956 components: - rot: 1.5707963267948966 rad pos: 62.5,-8.5 parent: 2 type: Transform - - uid: 11905 + - uid: 11957 components: - rot: 1.5707963267948966 rad pos: 62.5,-9.5 parent: 2 type: Transform - - uid: 11906 + - uid: 11958 components: - pos: 2.5,-40.5 parent: 2 type: Transform - - uid: 11907 + - uid: 11959 components: - pos: 60.5,-64.5 parent: 2 type: Transform - - uid: 11908 + - uid: 11960 components: - pos: 64.5,-66.5 parent: 2 type: Transform - - uid: 11909 + - uid: 11961 components: - pos: 64.5,-64.5 parent: 2 type: Transform - - uid: 11910 + - uid: 11962 components: - pos: 62.5,-66.5 parent: 2 type: Transform - - uid: 11911 + - uid: 11963 components: - pos: 63.5,-66.5 parent: 2 type: Transform - - uid: 11912 + - uid: 11964 components: - pos: 59.5,-66.5 parent: 2 type: Transform - - uid: 11913 + - uid: 11965 components: - pos: 58.5,-66.5 parent: 2 type: Transform - - uid: 11914 + - uid: 11966 components: - pos: 62.5,-62.5 parent: 2 type: Transform - - uid: 11915 + - uid: 11967 components: - pos: 63.5,-62.5 parent: 2 type: Transform - - uid: 11916 + - uid: 11968 components: - pos: 59.5,-62.5 parent: 2 type: Transform - - uid: 11917 + - uid: 11969 components: - pos: 58.5,-62.5 parent: 2 type: Transform - - uid: 11918 + - uid: 11970 components: - pos: 58.5,-64.5 parent: 2 type: Transform - - uid: 11919 + - uid: 11971 components: - pos: 59.5,-64.5 parent: 2 type: Transform - - uid: 11920 + - uid: 11972 components: - pos: 62.5,-64.5 parent: 2 type: Transform - - uid: 11921 + - uid: 11973 components: - pos: 63.5,-64.5 parent: 2 type: Transform - - uid: 11922 + - uid: 11974 components: - pos: 64.5,-62.5 parent: 2 type: Transform - - uid: 11923 + - uid: 11975 components: - pos: 60.5,-62.5 parent: 2 type: Transform - - uid: 11924 + - uid: 11976 components: - pos: 50.5,-32.5 parent: 2 type: Transform - - uid: 11925 + - uid: 11977 components: - pos: 60.5,-66.5 parent: 2 type: Transform - - uid: 11926 + - uid: 11978 components: - rot: 1.5707963267948966 rad pos: 69.5,-57.5 parent: 2 type: Transform - - uid: 11927 + - uid: 11979 components: - rot: -1.5707963267948966 rad pos: 56.5,-67.5 parent: 2 type: Transform - - uid: 11928 + - uid: 11980 components: - rot: 1.5707963267948966 rad pos: 54.5,-67.5 parent: 2 type: Transform - - uid: 11929 + - uid: 11981 components: - rot: 3.141592653589793 rad pos: 45.5,-43.5 parent: 2 type: Transform - - uid: 11930 + - uid: 11982 components: - pos: -5.5,-14.5 parent: 2 type: Transform - - uid: 11931 + - uid: 11983 components: - rot: 3.141592653589793 rad pos: 25.5,-69.5 parent: 2 type: Transform - - uid: 11932 + - uid: 11984 components: - rot: 3.141592653589793 rad pos: 26.5,-69.5 parent: 2 type: Transform - - uid: 11933 + - uid: 11985 components: - pos: 50.5,-71.5 parent: 2 type: Transform - - uid: 11934 + - uid: 11986 components: - rot: 3.141592653589793 rad pos: 50.5,-73.5 parent: 2 type: Transform - - uid: 11935 + - uid: 11987 components: - pos: -37.5,-45.5 parent: 2 type: Transform - - uid: 11936 + - uid: 11988 components: - pos: -36.5,-45.5 parent: 2 type: Transform - - uid: 11937 + - uid: 11989 components: - pos: -71.5,-54.5 parent: 2 type: Transform - - uid: 11938 + - uid: 11990 components: - pos: -72.5,-54.5 parent: 2 type: Transform - - uid: 11939 + - uid: 11991 components: - pos: -73.5,-54.5 parent: 2 type: Transform - - uid: 11940 + - uid: 11992 components: - rot: 3.141592653589793 rad pos: -73.5,-53.5 parent: 2 type: Transform - - uid: 11941 + - uid: 11993 components: - rot: 3.141592653589793 rad pos: -72.5,-53.5 parent: 2 type: Transform - - uid: 11942 + - uid: 11994 components: - rot: 3.141592653589793 rad pos: -71.5,-53.5 parent: 2 type: Transform - - uid: 11943 + - uid: 11995 components: - rot: 3.141592653589793 rad pos: -70.5,-53.5 parent: 2 type: Transform - - uid: 11944 + - uid: 11996 components: - pos: -70.5,-54.5 parent: 2 type: Transform + - uid: 11997 + components: + - rot: -1.5707963267948966 rad + pos: 58.5,57.5 + parent: 2 + type: Transform + - uid: 11998 + components: + - rot: -1.5707963267948966 rad + pos: 58.5,56.5 + parent: 2 + type: Transform - proto: ChairFolding entities: - - uid: 11945 + - uid: 11999 components: - rot: -1.5707963267948966 rad pos: 28.5,1.5 parent: 2 type: Transform - - uid: 11946 + - uid: 12000 components: - rot: -1.5707963267948966 rad pos: 28.5,3.5 parent: 2 type: Transform - - uid: 11947 + - uid: 12001 components: - rot: -1.5707963267948966 rad pos: 29.5,1.5 parent: 2 type: Transform - - uid: 11948 + - uid: 12002 components: - rot: -1.5707963267948966 rad pos: 29.5,2.5 parent: 2 type: Transform - - uid: 11949 + - uid: 12003 components: - rot: -1.5707963267948966 rad pos: 29.5,-0.5 parent: 2 type: Transform - - uid: 11950 + - uid: 12004 components: - rot: -1.5707963267948966 rad pos: 28.5,-0.5 parent: 2 type: Transform - - uid: 11951 + - uid: 12005 components: - rot: -1.5707963267948966 rad pos: 28.5,0.5 parent: 2 type: Transform - - uid: 11952 + - uid: 12006 components: - rot: -1.5707963267948966 rad pos: 29.5,0.5 parent: 2 type: Transform - - uid: 11953 + - uid: 12007 components: - rot: -1.5707963267948966 rad pos: 28.5,-1.5 parent: 2 type: Transform - - uid: 11954 + - uid: 12008 components: - rot: -1.5707963267948966 rad pos: 28.5,2.5 parent: 2 type: Transform - - uid: 11955 + - uid: 12009 components: - rot: -1.5707963267948966 rad pos: 18.5,26.5 parent: 2 type: Transform - - uid: 11956 + - uid: 12010 components: - rot: 1.5707963267948966 rad pos: -25.5,53.5 parent: 2 type: Transform - - uid: 11957 + - uid: 12011 components: - pos: -27.5,-28.5 parent: 2 type: Transform - - uid: 11958 + - uid: 12012 components: - pos: -34.5,-69.5 parent: 2 type: Transform - - uid: 11959 + - uid: 12013 components: - pos: -24.5,-95.5 parent: 2 type: Transform - - uid: 11960 + - uid: 12014 components: - pos: -25.5,-95.5 parent: 2 type: Transform - - uid: 11961 + - uid: 12015 components: - pos: -19.5,-95.5 parent: 2 type: Transform - - uid: 11962 + - uid: 12016 components: - pos: -29.5,-28.5 parent: 2 type: Transform - proto: ChairOfficeDark entities: - - uid: 11963 + - uid: 12017 components: - rot: 3.141592653589793 rad pos: 4.5,-4.5 parent: 2 type: Transform - - uid: 11964 + - uid: 12018 components: - rot: 1.5707963267948966 rad pos: -25.5,54.5 parent: 2 type: Transform - - uid: 11965 + - uid: 12019 components: - rot: -1.5707963267948966 rad pos: 38.5,-3.5 parent: 2 type: Transform - - uid: 11966 + - uid: 12020 components: - rot: -1.5707963267948966 rad pos: 38.5,-4.5 parent: 2 type: Transform - - uid: 11967 + - uid: 12021 components: - rot: -1.5707963267948966 rad pos: 71.5,-36.5 parent: 2 type: Transform - - uid: 11968 + - uid: 12022 components: - rot: 3.141592653589793 rad pos: 68.5,-44.5 parent: 2 type: Transform - - uid: 11969 + - uid: 12023 components: - rot: 1.5707963267948966 rad pos: -27.5,-12.5 parent: 2 type: Transform - - uid: 11970 + - uid: 12024 components: - rot: 3.141592653589793 rad pos: 50.5,-53.5 parent: 2 type: Transform - - uid: 11971 + - uid: 12025 components: - rot: 1.5707963267948966 rad pos: -22.5,-34.5 parent: 2 type: Transform - - uid: 11972 + - uid: 12026 components: - rot: 3.141592653589793 rad pos: 21.5,-45.5 parent: 2 type: Transform - - uid: 11973 + - uid: 12027 components: - rot: -1.5707963267948966 rad pos: -16.5,25.5 parent: 2 type: Transform - - uid: 11974 + - uid: 12028 components: - rot: -1.5707963267948966 rad pos: -27.5,22.5 parent: 2 type: Transform - - uid: 11975 + - uid: 12029 components: - pos: -32.5,30.5 parent: 2 type: Transform - - uid: 11976 + - uid: 12030 components: - rot: 1.5707963267948966 rad pos: 1.5,20.5 parent: 2 type: Transform - - uid: 11977 + - uid: 12031 components: - pos: -33.5,-69.5 parent: 2 type: Transform - - uid: 11978 + - uid: 12032 components: - rot: 1.5707963267948966 rad pos: 72.5,37.5 parent: 2 type: Transform - - uid: 11979 + - uid: 12033 components: - rot: -1.5707963267948966 rad pos: -4.5,-97.5 parent: 2 type: Transform - - uid: 11980 + - uid: 12034 components: - rot: 1.5707963267948966 rad pos: -13.5,-18.5 parent: 2 type: Transform - - uid: 11981 + - uid: 12035 components: - rot: 3.141592653589793 rad pos: 62.5,-31.5 parent: 2 type: Transform - - uid: 11982 + - uid: 12036 components: - rot: 3.141592653589793 rad pos: 73.5,-32.5 parent: 2 type: Transform - - uid: 11983 + - uid: 12037 components: - rot: -1.5707963267948966 rad pos: -16.5,-22.5 @@ -73611,92 +73924,92 @@ entities: type: Transform - proto: ChairOfficeLight entities: - - uid: 11984 + - uid: 12038 components: - rot: 3.141592653589793 rad pos: 27.5,-22.5 parent: 2 type: Transform - - uid: 11985 + - uid: 12039 components: - rot: 3.141592653589793 rad pos: 29.5,-22.5 parent: 2 type: Transform - - uid: 11986 + - uid: 12040 components: - rot: 3.141592653589793 rad pos: 23.5,-22.5 parent: 2 type: Transform - - uid: 11987 + - uid: 12041 components: - rot: 3.141592653589793 rad pos: 21.5,-22.5 parent: 2 type: Transform - - uid: 11988 + - uid: 12042 components: - pos: -23.5,-70.5 parent: 2 type: Transform - - uid: 11989 + - uid: 12043 components: - rot: 3.141592653589793 rad pos: -4.5,-49.5 parent: 2 type: Transform - - uid: 11990 + - uid: 12044 components: - rot: 3.141592653589793 rad pos: 25.5,-25.5 parent: 2 type: Transform - - uid: 11991 + - uid: 12045 components: - pos: -10.5,-36.5 parent: 2 type: Transform - - uid: 11992 + - uid: 12046 components: - rot: 3.141592653589793 rad pos: 17.5,20.5 parent: 2 type: Transform - - uid: 11993 + - uid: 12047 components: - rot: 3.141592653589793 rad pos: 53.5,12.5 parent: 2 type: Transform - - uid: 11994 + - uid: 12048 components: - rot: -1.5707963267948966 rad pos: 52.5,-41.5 parent: 2 type: Transform - - uid: 11995 + - uid: 12049 components: - pos: 42.5,-39.5 parent: 2 type: Transform - - uid: 11996 + - uid: 12050 components: - pos: -26.5,15.5 parent: 2 type: Transform - - uid: 11997 + - uid: 12051 components: - pos: -23.5,12.5 parent: 2 type: Transform - - uid: 11998 + - uid: 12052 components: - rot: 1.5707963267948966 rad pos: 47.5,6.5 parent: 2 type: Transform - - uid: 11999 + - uid: 12053 components: - rot: 1.5707963267948966 rad pos: -12.5,-49.5 @@ -73704,568 +74017,580 @@ entities: type: Transform - proto: ChairPilotSeat entities: - - uid: 12000 + - uid: 12054 components: - rot: 3.141592653589793 rad pos: 25.5,-22.5 parent: 2 type: Transform - - uid: 12001 + - uid: 12055 components: - rot: 3.141592653589793 rad pos: 16.5,23.5 parent: 2 type: Transform - - uid: 12002 + - uid: 12056 components: - pos: 25.5,20.5 parent: 2 type: Transform - - uid: 12003 + - uid: 12057 components: - rot: 3.141592653589793 rad pos: 62.5,-54.5 parent: 2 type: Transform - - uid: 12004 + - uid: 12058 components: - rot: 3.141592653589793 rad pos: 31.5,-47.5 parent: 2 type: Transform - - uid: 12005 + - uid: 12059 components: - pos: 62.5,-0.5 parent: 2 type: Transform - - uid: 12006 + - uid: 12060 components: - pos: 59.5,-0.5 parent: 2 type: Transform - - uid: 12007 + - uid: 12061 components: - pos: 61.5,-0.5 parent: 2 type: Transform - - uid: 12008 + - uid: 12062 components: - pos: 60.5,-0.5 parent: 2 type: Transform - - uid: 12009 + - uid: 12063 components: - rot: -1.5707963267948966 rad pos: -54.5,-13.5 parent: 2 type: Transform - - uid: 12010 + - uid: 12064 components: - rot: -1.5707963267948966 rad pos: 31.5,-28.5 parent: 2 type: Transform - - uid: 12011 + - uid: 12065 + components: + - pos: 54.5,57.5 + parent: 2 + type: Transform + - uid: 12066 components: - rot: 1.5707963267948966 rad - pos: -52.5,-87.5 + pos: -51.5,-87.5 parent: 2 type: Transform - - uid: 12012 + - uid: 12067 components: - - pos: 54.5,58.5 + - rot: -1.5707963267948966 rad + pos: -78.5,-53.5 + parent: 2 + type: Transform + - uid: 12068 + components: + - rot: -1.5707963267948966 rad + pos: -78.5,-54.5 parent: 2 type: Transform - proto: ChairWood entities: - - uid: 12013 + - uid: 12069 components: - rot: 3.141592653589793 rad pos: 23.5,-36.5 parent: 2 type: Transform - - uid: 12014 + - uid: 12070 components: - rot: -1.5707963267948966 rad pos: 24.5,-35.5 parent: 2 type: Transform - - uid: 12015 + - uid: 12071 components: - pos: 9.5,-5.5 parent: 2 type: Transform - - uid: 12016 + - uid: 12072 components: - rot: 1.5707963267948966 rad pos: 8.5,-6.5 parent: 2 type: Transform - - uid: 12017 + - uid: 12073 components: - rot: 1.5707963267948966 rad pos: 8.5,-7.5 parent: 2 type: Transform - - uid: 12018 + - uid: 12074 components: - rot: -1.5707963267948966 rad pos: 3.5,1.5 parent: 2 type: Transform - - uid: 12019 + - uid: 12075 components: - rot: 1.5707963267948966 rad pos: 1.5,1.5 parent: 2 type: Transform - - uid: 12020 + - uid: 12076 components: - rot: -1.5707963267948966 rad pos: 11.5,-7.5 parent: 2 type: Transform - - uid: 12021 + - uid: 12077 components: - pos: 10.5,-5.5 parent: 2 type: Transform - - uid: 12022 + - uid: 12078 components: - rot: 3.141592653589793 rad pos: 10.5,-8.5 parent: 2 type: Transform - - uid: 12023 + - uid: 12079 components: - rot: 1.5707963267948966 rad pos: 10.5,7.5 parent: 2 type: Transform - - uid: 12024 + - uid: 12080 components: - rot: 3.141592653589793 rad pos: 9.5,-8.5 parent: 2 type: Transform - - uid: 12025 + - uid: 12081 components: - rot: -1.5707963267948966 rad pos: 11.5,-6.5 parent: 2 type: Transform - - uid: 12026 + - uid: 12082 components: - rot: 1.5707963267948966 rad pos: 1.5,0.5 parent: 2 type: Transform - - uid: 12027 + - uid: 12083 components: - rot: -1.5707963267948966 rad pos: 3.5,0.5 parent: 2 type: Transform - - uid: 12028 + - uid: 12084 components: - rot: -1.5707963267948966 rad pos: 12.5,8.5 parent: 2 type: Transform - - uid: 12029 + - uid: 12085 components: - rot: -1.5707963267948966 rad pos: 18.5,27.5 parent: 2 type: Transform - - uid: 12030 + - uid: 12086 components: - pos: -1.5,-16.5 parent: 2 type: Transform - - uid: 12031 + - uid: 12087 components: - pos: 11.5,12.5 parent: 2 type: Transform - - uid: 12032 + - uid: 12088 components: - pos: 12.5,12.5 parent: 2 type: Transform - - uid: 12033 + - uid: 12089 components: - rot: -1.5707963267948966 rad pos: 12.5,7.5 parent: 2 type: Transform - - uid: 12034 + - uid: 12090 components: - rot: 3.141592653589793 rad pos: 12.5,10.5 parent: 2 type: Transform - - uid: 12035 + - uid: 12091 components: - rot: 3.141592653589793 rad pos: 11.5,10.5 parent: 2 type: Transform - - uid: 12036 + - uid: 12092 components: - rot: 1.5707963267948966 rad pos: -9.5,1.5 parent: 2 type: Transform - - uid: 12037 + - uid: 12093 components: - rot: 1.5707963267948966 rad pos: -9.5,0.5 parent: 2 type: Transform - - uid: 12038 + - uid: 12094 components: - rot: 1.5707963267948966 rad pos: 10.5,8.5 parent: 2 type: Transform - - uid: 12039 + - uid: 12095 components: - rot: 1.5707963267948966 rad pos: 53.5,-26.5 parent: 2 type: Transform - - uid: 12040 + - uid: 12096 components: - rot: -1.5707963267948966 rad pos: -32.5,-67.5 parent: 2 type: Transform - - uid: 12041 + - uid: 12097 components: - rot: 3.141592653589793 rad pos: -36.5,9.5 parent: 2 type: Transform - - uid: 12042 + - uid: 12098 components: - rot: 3.141592653589793 rad pos: -35.5,9.5 parent: 2 type: Transform - - uid: 12043 + - uid: 12099 components: - rot: 3.141592653589793 rad pos: -36.5,10.5 parent: 2 type: Transform - - uid: 12044 + - uid: 12100 components: - rot: 3.141592653589793 rad pos: -35.5,10.5 parent: 2 type: Transform - - uid: 12045 + - uid: 12101 components: - rot: 3.141592653589793 rad pos: -35.5,11.5 parent: 2 type: Transform - - uid: 12046 + - uid: 12102 components: - rot: 3.141592653589793 rad pos: -36.5,11.5 parent: 2 type: Transform - - uid: 12047 + - uid: 12103 components: - rot: 3.141592653589793 rad pos: -36.5,12.5 parent: 2 type: Transform - - uid: 12048 + - uid: 12104 components: - rot: 3.141592653589793 rad pos: -35.5,12.5 parent: 2 type: Transform - - uid: 12049 + - uid: 12105 components: - rot: 3.141592653589793 rad pos: -39.5,12.5 parent: 2 type: Transform - - uid: 12050 + - uid: 12106 components: - rot: 3.141592653589793 rad pos: -40.5,11.5 parent: 2 type: Transform - - uid: 12051 + - uid: 12107 components: - rot: 3.141592653589793 rad pos: -39.5,11.5 parent: 2 type: Transform - - uid: 12052 + - uid: 12108 components: - rot: 3.141592653589793 rad pos: -40.5,10.5 parent: 2 type: Transform - - uid: 12053 + - uid: 12109 components: - rot: 3.141592653589793 rad pos: -39.5,10.5 parent: 2 type: Transform - - uid: 12054 + - uid: 12110 components: - rot: 3.141592653589793 rad pos: -40.5,9.5 parent: 2 type: Transform - - uid: 12055 + - uid: 12111 components: - rot: 3.141592653589793 rad pos: -39.5,9.5 parent: 2 type: Transform - - uid: 12056 + - uid: 12112 components: - rot: 3.141592653589793 rad pos: -40.5,12.5 parent: 2 type: Transform - - uid: 12057 + - uid: 12113 components: - rot: 3.141592653589793 rad pos: -3.5,51.5 parent: 2 type: Transform - - uid: 12058 + - uid: 12114 components: - pos: -3.5,53.5 parent: 2 type: Transform - - uid: 12059 + - uid: 12115 components: - pos: -17.5,43.5 parent: 2 type: Transform - - uid: 12060 + - uid: 12116 components: - pos: -16.5,43.5 parent: 2 type: Transform - - uid: 12061 + - uid: 12117 components: - rot: 3.141592653589793 rad pos: -17.5,40.5 parent: 2 type: Transform - - uid: 12062 + - uid: 12118 components: - rot: -1.5707963267948966 rad pos: -7.5,1.5 parent: 2 type: Transform - - uid: 12063 + - uid: 12119 components: - rot: -1.5707963267948966 rad pos: -7.5,0.5 parent: 2 type: Transform - - uid: 12064 + - uid: 12120 components: - rot: 1.5707963267948966 rad pos: -5.5,1.5 parent: 2 type: Transform - - uid: 12065 + - uid: 12121 components: - rot: 1.5707963267948966 rad pos: -5.5,0.5 parent: 2 type: Transform - - uid: 12066 + - uid: 12122 components: - rot: -1.5707963267948966 rad pos: -3.5,1.5 parent: 2 type: Transform - - uid: 12067 + - uid: 12123 components: - rot: -1.5707963267948966 rad pos: -3.5,0.5 parent: 2 type: Transform - - uid: 12068 + - uid: 12124 components: - rot: 3.141592653589793 rad pos: -16.5,40.5 parent: 2 type: Transform - - uid: 12069 + - uid: 12125 components: - rot: 1.5707963267948966 rad pos: -15.5,47.5 parent: 2 type: Transform - - uid: 12070 + - uid: 12126 components: - rot: -1.5707963267948966 rad pos: 46.5,-16.5 parent: 2 type: Transform - - uid: 12071 + - uid: 12127 components: - rot: -1.5707963267948966 rad pos: 9.5,32.5 parent: 2 type: Transform - - uid: 12072 + - uid: 12128 components: - rot: 1.5707963267948966 rad pos: 7.5,32.5 parent: 2 type: Transform - - uid: 12073 + - uid: 12129 components: - rot: 3.141592653589793 rad pos: -11.5,34.5 parent: 2 type: Transform - - uid: 12074 + - uid: 12130 components: - rot: -1.5707963267948966 rad pos: 41.5,43.5 parent: 2 type: Transform - - uid: 12075 + - uid: 12131 components: - rot: -1.5707963267948966 rad pos: 39.5,46.5 parent: 2 type: Transform - - uid: 12076 + - uid: 12132 components: - rot: -1.5707963267948966 rad pos: 39.5,45.5 parent: 2 type: Transform - - uid: 12077 + - uid: 12133 components: - rot: 1.5707963267948966 rad pos: 36.5,46.5 parent: 2 type: Transform - - uid: 12078 + - uid: 12134 components: - rot: 1.5707963267948966 rad pos: 36.5,45.5 parent: 2 type: Transform - - uid: 12079 + - uid: 12135 components: - rot: 3.141592653589793 rad pos: 42.5,47.5 parent: 2 type: Transform - - uid: 12080 + - uid: 12136 components: - rot: 3.141592653589793 rad pos: 43.5,47.5 parent: 2 type: Transform - - uid: 12081 + - uid: 12137 components: - rot: -1.5707963267948966 rad pos: 33.5,47.5 parent: 2 type: Transform - - uid: 12082 + - uid: 12138 components: - rot: -1.5707963267948966 rad pos: 33.5,46.5 parent: 2 type: Transform - - uid: 12083 + - uid: 12139 components: - rot: 1.5707963267948966 rad pos: 32.5,44.5 parent: 2 type: Transform - - uid: 12084 + - uid: 12140 components: - rot: -1.5707963267948966 rad pos: 34.5,44.5 parent: 2 type: Transform - - uid: 12085 + - uid: 12141 components: - rot: 1.5707963267948966 rad pos: 39.5,43.5 parent: 2 type: Transform - - uid: 12086 + - uid: 12142 components: - pos: -41.5,-97.5 parent: 2 type: Transform - - uid: 12087 + - uid: 12143 components: - rot: -1.5707963267948966 rad pos: 4.5,-35.5 parent: 2 type: Transform - - uid: 12088 + - uid: 12144 components: - rot: 1.5707963267948966 rad pos: 2.5,-35.5 parent: 2 type: Transform - - uid: 12089 + - uid: 12145 components: - pos: -23.5,30.5 parent: 2 type: Transform - - uid: 12090 + - uid: 12146 components: - rot: 1.5707963267948966 rad pos: 22.5,-35.5 parent: 2 type: Transform - - uid: 12091 + - uid: 12147 components: - pos: 23.5,-34.5 parent: 2 type: Transform - - uid: 12092 + - uid: 12148 components: - rot: -1.5707963267948966 rad pos: 23.5,-38.5 parent: 2 type: Transform - - uid: 12093 + - uid: 12149 components: - rot: -1.5707963267948966 rad pos: 23.5,-39.5 parent: 2 type: Transform - - uid: 12094 + - uid: 12150 components: - rot: -1.5707963267948966 rad pos: 29.5,-39.5 parent: 2 type: Transform - - uid: 12095 + - uid: 12151 components: - rot: 1.5707963267948966 rad pos: 27.5,-39.5 parent: 2 type: Transform - - uid: 12096 + - uid: 12152 components: - rot: -1.5707963267948966 rad pos: 4.5,-9.5 @@ -74273,98 +74598,98 @@ entities: type: Transform - proto: CheapLighter entities: - - uid: 12098 + - uid: 12154 components: - flags: InContainer type: MetaData - - parent: 12097 + - parent: 12153 type: Transform - canCollide: False type: Physics - - uid: 12099 + - uid: 12155 components: - pos: 1.9080955,23.554485 parent: 2 type: Transform - proto: CheapRollerBed entities: - - uid: 12100 + - uid: 12156 components: - pos: -9.460541,-47.24853 parent: 2 type: Transform - - uid: 12101 + - uid: 12157 components: - pos: -9.476166,-48.27978 parent: 2 type: Transform - proto: chem_master entities: - - uid: 12102 + - uid: 12158 components: - pos: 2.5,-45.5 parent: 2 type: Transform - - uid: 12103 + - uid: 12159 components: - pos: 2.5,-50.5 parent: 2 type: Transform - - uid: 12104 + - uid: 12160 components: - pos: 2.5,-47.5 parent: 2 type: Transform - proto: ChemDispenser entities: - - uid: 12105 + - uid: 12161 components: - pos: 4.5,-45.5 parent: 2 type: Transform - - uid: 12106 + - uid: 12162 components: - pos: 4.5,-47.5 parent: 2 type: Transform - - uid: 12107 + - uid: 12163 components: - pos: 2.5,-49.5 parent: 2 type: Transform - proto: ChemistryHotplate entities: - - uid: 12108 + - uid: 12164 components: - pos: 4.5,-50.5 parent: 2 type: Transform - proto: ChessBoard entities: - - uid: 12109 + - uid: 12165 components: - pos: 52.446415,7.1683345 parent: 2 type: Transform - - uid: 12110 + - uid: 12166 components: - rot: 3.141592653589793 rad pos: -5.5158696,-15.414865 parent: 2 type: Transform - - uid: 12111 + - uid: 12167 components: - rot: 1.5707963267948966 rad pos: 8.516274,32.607613 parent: 2 type: Transform - - uid: 12112 + - uid: 12168 components: - rot: 3.141592653589793 rad pos: -3.4812293,52.59116 parent: 2 type: Transform - - uid: 12113 + - uid: 12169 components: - rot: 3.141592653589793 rad pos: 50.48214,-72.40164 @@ -74372,7 +74697,7 @@ entities: type: Transform - proto: ChurchOrganInstrument entities: - - uid: 12114 + - uid: 12170 components: - rot: -1.5707963267948966 rad pos: -34.5,13.5 @@ -74380,51 +74705,51 @@ entities: type: Transform - proto: Cigar entities: - - uid: 12115 + - uid: 12171 components: - pos: 13.506795,-34.413578 parent: 2 type: Transform - - uid: 12116 + - uid: 12172 components: - pos: 13.55367,-32.429203 parent: 2 type: Transform - - uid: 12117 + - uid: 12173 components: - pos: 13.49117,-32.382328 parent: 2 type: Transform - - uid: 12118 + - uid: 12174 components: - pos: 13.444295,-34.351078 parent: 2 type: Transform - proto: CigarCase entities: - - uid: 12119 + - uid: 12175 components: - pos: -12.420865,-35.409706 parent: 2 type: Transform - - uid: 12120 + - uid: 12176 components: - pos: 15.66736,-87.50202 parent: 2 type: Transform - proto: Cigarette entities: - - uid: 12121 + - uid: 12177 components: - pos: 15.438844,-64.32231 parent: 2 type: Transform - - uid: 12122 + - uid: 12178 components: - pos: 63.44384,24.664883 parent: 2 type: Transform - - uid: 12123 + - uid: 12179 components: - rot: -1.5707963267948966 rad pos: 2.361197,23.616985 @@ -74432,48 +74757,48 @@ entities: type: Transform - proto: CigarGold entities: - - uid: 12124 + - uid: 12180 components: - rot: -1.5707963267948966 rad pos: 45.625916,-26.476032 parent: 2 type: Transform - - uid: 12125 + - uid: 12181 components: - pos: 65.5063,-0.5499393 parent: 2 type: Transform - proto: CigarGoldCase entities: - - uid: 12126 + - uid: 12182 components: - pos: 61.545517,-1.3427625 parent: 2 type: Transform - proto: CigPackBlack entities: - - uid: 12127 + - uid: 12183 components: - pos: 37.5,46.5 parent: 2 type: Transform - proto: CigPackBlue entities: - - uid: 12128 + - uid: 12184 components: - pos: 47.844124,50.55344 parent: 2 type: Transform - proto: CigPackMixedMedical entities: - - uid: 12129 + - uid: 12185 components: - pos: -16.642096,-35.41203 parent: 2 type: Transform - proto: CircuitImprinter entities: - - uid: 12130 + - uid: 12186 components: - pos: 44.5,-35.5 parent: 2 @@ -74485,43 +74810,43 @@ entities: type: MaterialStorage - proto: ClockworkShield entities: - - uid: 12131 + - uid: 12187 components: - pos: 57.48767,32.508053 parent: 2 type: Transform - proto: ClosetBombFilled entities: - - uid: 12133 + - uid: 12188 components: - pos: 51.5,-49.5 parent: 2 type: Transform - - uid: 12134 + - uid: 12189 components: - pos: 67.5,-31.5 parent: 2 type: Transform - - uid: 12135 + - uid: 12190 components: - pos: 12.5,23.5 parent: 2 type: Transform - proto: ClosetChefFilled entities: - - uid: 12136 + - uid: 12191 components: - pos: -5.5,14.5 parent: 2 type: Transform - proto: ClosetEmergencyFilledRandom entities: - - uid: 12137 + - uid: 12192 components: - pos: 69.5,-63.5 parent: 2 type: Transform - - uid: 12138 + - uid: 12193 components: - pos: -52.5,-80.5 parent: 2 @@ -74544,7 +74869,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12139 + - uid: 12194 components: - pos: -12.5,10.5 parent: 2 @@ -74567,7 +74892,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12140 + - uid: 12195 components: - pos: -18.5,-51.5 parent: 2 @@ -74590,7 +74915,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12141 + - uid: 12196 components: - pos: 21.5,-52.5 parent: 2 @@ -74613,7 +74938,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12142 + - uid: 12197 components: - pos: 24.5,-56.5 parent: 2 @@ -74636,7 +74961,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12143 + - uid: 12198 components: - pos: -5.5,-68.5 parent: 2 @@ -74659,7 +74984,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12144 + - uid: 12199 components: - pos: 38.5,-32.5 parent: 2 @@ -74682,7 +75007,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12145 + - uid: 12200 components: - pos: -25.5,52.5 parent: 2 @@ -74705,7 +75030,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12146 + - uid: 12201 components: - pos: 5.5,-69.5 parent: 2 @@ -74728,7 +75053,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12147 + - uid: 12202 components: - pos: 57.5,-14.5 parent: 2 @@ -74751,7 +75076,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12148 + - uid: 12203 components: - pos: 52.5,-50.5 parent: 2 @@ -74774,7 +75099,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12149 + - uid: 12204 components: - pos: -2.5,-11.5 parent: 2 @@ -74797,12 +75122,12 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12150 + - uid: 12205 components: - pos: 43.5,-74.5 parent: 2 type: Transform - - uid: 12151 + - uid: 12206 components: - pos: 11.5,-69.5 parent: 2 @@ -74825,12 +75150,12 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12152 + - uid: 12207 components: - pos: 27.5,-80.5 parent: 2 type: Transform - - uid: 12153 + - uid: 12208 components: - pos: -23.5,-31.5 parent: 2 @@ -74853,12 +75178,12 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12154 + - uid: 12209 components: - pos: 47.5,-92.5 parent: 2 type: Transform - - uid: 12155 + - uid: 12210 components: - pos: -54.5,-5.5 parent: 2 @@ -74881,12 +75206,12 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12156 + - uid: 12211 components: - pos: 31.5,-92.5 parent: 2 type: Transform - - uid: 12157 + - uid: 12212 components: - pos: -57.5,-32.5 parent: 2 @@ -74909,7 +75234,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12158 + - uid: 12213 components: - pos: 17.5,34.5 parent: 2 @@ -74932,7 +75257,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12159 + - uid: 12214 components: - pos: 63.5,-5.5 parent: 2 @@ -74955,7 +75280,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12160 + - uid: 12215 components: - pos: 18.5,-39.5 parent: 2 @@ -74978,7 +75303,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12161 + - uid: 12216 components: - pos: 3.5,-25.5 parent: 2 @@ -75001,7 +75326,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12162 + - uid: 12217 components: - pos: 47.5,-15.5 parent: 2 @@ -75024,7 +75349,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12163 + - uid: 12218 components: - pos: 16.5,-5.5 parent: 2 @@ -75047,7 +75372,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12164 + - uid: 12219 components: - pos: -31.5,-0.5 parent: 2 @@ -75070,7 +75395,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12165 + - uid: 12220 components: - pos: -17.5,38.5 parent: 2 @@ -75093,7 +75418,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12166 + - uid: 12221 components: - pos: -12.5,47.5 parent: 2 @@ -75116,7 +75441,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12167 + - uid: 12222 components: - pos: 50.5,40.5 parent: 2 @@ -75139,7 +75464,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12168 + - uid: 12223 components: - pos: 65.5,1.5 parent: 2 @@ -75162,17 +75487,17 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12169 + - uid: 12224 components: - pos: -15.5,67.5 parent: 2 type: Transform - - uid: 12170 + - uid: 12225 components: - pos: -19.5,67.5 parent: 2 type: Transform - - uid: 12171 + - uid: 12226 components: - pos: -12.5,49.5 parent: 2 @@ -75195,7 +75520,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12172 + - uid: 12227 components: - pos: -26.5,28.5 parent: 2 @@ -75218,7 +75543,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12173 + - uid: 12228 components: - pos: -36.5,-93.5 parent: 2 @@ -75241,7 +75566,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12174 + - uid: 12229 components: - pos: 9.5,-36.5 parent: 2 @@ -75264,7 +75589,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12175 + - uid: 12230 components: - pos: 74.5,-51.5 parent: 2 @@ -75287,7 +75612,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12176 + - uid: 12231 components: - pos: 42.5,-62.5 parent: 2 @@ -75310,7 +75635,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12177 + - uid: 12232 components: - pos: -10.5,-8.5 parent: 2 @@ -75333,7 +75658,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12178 + - uid: 12233 components: - pos: 41.5,-27.5 parent: 2 @@ -75356,29 +75681,29 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12179 + - uid: 12234 components: - pos: 20.5,-21.5 parent: 2 type: Transform - - uid: 12180 + - uid: 12235 components: - pos: -47.5,41.5 parent: 2 type: Transform - - uid: 12181 + - uid: 12236 components: - pos: -10.5,-30.5 parent: 2 type: Transform - - uid: 12182 + - uid: 12237 components: - pos: -23.5,-6.5 parent: 2 type: Transform - proto: ClosetFireFilled entities: - - uid: 12183 + - uid: 12238 components: - pos: -11.5,-45.5 parent: 2 @@ -75401,7 +75726,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12184 + - uid: 12239 components: - pos: -11.5,-73.5 parent: 2 @@ -75424,7 +75749,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12185 + - uid: 12240 components: - pos: 22.5,-52.5 parent: 2 @@ -75447,7 +75772,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12186 + - uid: 12241 components: - pos: 24.5,-55.5 parent: 2 @@ -75470,7 +75795,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12187 + - uid: 12242 components: - pos: -25.5,51.5 parent: 2 @@ -75493,7 +75818,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12188 + - uid: 12243 components: - pos: -12.5,-30.5 parent: 2 @@ -75516,7 +75841,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12189 + - uid: 12244 components: - pos: -2.5,-12.5 parent: 2 @@ -75539,7 +75864,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12190 + - uid: 12245 components: - pos: -52.5,-72.5 parent: 2 @@ -75562,7 +75887,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12191 + - uid: 12246 components: - pos: -23.5,-41.5 parent: 2 @@ -75585,7 +75910,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12192 + - uid: 12247 components: - pos: 22.5,-8.5 parent: 2 @@ -75608,7 +75933,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12193 + - uid: 12248 components: - pos: 62.5,-5.5 parent: 2 @@ -75631,7 +75956,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12194 + - uid: 12249 components: - pos: 19.5,-39.5 parent: 2 @@ -75654,7 +75979,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12195 + - uid: 12250 components: - pos: 16.5,-6.5 parent: 2 @@ -75677,7 +76002,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12196 + - uid: 12251 components: - pos: -32.5,-0.5 parent: 2 @@ -75700,7 +76025,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12197 + - uid: 12252 components: - pos: 2.5,-25.5 parent: 2 @@ -75723,7 +76048,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12198 + - uid: 12253 components: - pos: -11.5,47.5 parent: 2 @@ -75746,7 +76071,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12199 + - uid: 12254 components: - pos: 49.5,40.5 parent: 2 @@ -75769,7 +76094,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12200 + - uid: 12255 components: - pos: -43.5,37.5 parent: 2 @@ -75792,7 +76117,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12201 + - uid: 12256 components: - pos: -31.5,-41.5 parent: 2 @@ -75815,7 +76140,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12202 + - uid: 12257 components: - pos: -27.5,28.5 parent: 2 @@ -75838,7 +76163,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12203 + - uid: 12258 components: - pos: -35.5,-93.5 parent: 2 @@ -75861,7 +76186,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12204 + - uid: 12259 components: - pos: 9.5,-37.5 parent: 2 @@ -75884,7 +76209,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12205 + - uid: 12260 components: - pos: 74.5,-52.5 parent: 2 @@ -75907,7 +76232,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12206 + - uid: 12261 components: - pos: 64.5,-31.5 parent: 2 @@ -75930,7 +76255,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12207 + - uid: 12262 components: - pos: 35.5,-74.5 parent: 2 @@ -75953,39 +76278,39 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12208 + - uid: 12263 components: - pos: 29.5,-92.5 parent: 2 type: Transform - - uid: 12209 + - uid: 12264 components: - pos: 49.5,-92.5 parent: 2 type: Transform - - uid: 12210 + - uid: 12265 components: - pos: 28.5,-80.5 parent: 2 type: Transform - - uid: 12211 + - uid: 12266 components: - pos: -24.5,-6.5 parent: 2 type: Transform - - uid: 12212 + - uid: 12267 components: - pos: -74.5,-32.5 parent: 2 type: Transform - - uid: 12213 + - uid: 12268 components: - pos: -57.5,-56.5 parent: 2 type: Transform - proto: ClosetJanitorFilled entities: - - uid: 12214 + - uid: 12269 components: - pos: -10.5,-18.5 parent: 2 @@ -76010,7 +76335,7 @@ entities: type: EntityStorage - proto: ClosetL3JanitorFilled entities: - - uid: 12215 + - uid: 12270 components: - pos: -10.5,-17.5 parent: 2 @@ -76035,7 +76360,7 @@ entities: type: EntityStorage - proto: ClosetL3VirologyFilled entities: - - uid: 12216 + - uid: 12271 components: - pos: -18.5,-63.5 parent: 2 @@ -76058,7 +76383,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12217 + - uid: 12272 components: - pos: -22.5,-79.5 parent: 2 @@ -76083,7 +76408,7 @@ entities: type: EntityStorage - proto: ClosetMaintenance entities: - - uid: 12218 + - uid: 12273 components: - pos: -22.5,-38.5 parent: 2 @@ -76106,7 +76431,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12219 + - uid: 12274 components: - pos: -44.5,-31.5 parent: 2 @@ -76129,7 +76454,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12220 + - uid: 12275 components: - pos: -41.5,-30.5 parent: 2 @@ -76152,7 +76477,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12221 + - uid: 12276 components: - pos: 14.5,39.5 parent: 2 @@ -76175,7 +76500,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12222 + - uid: 12277 components: - pos: -19.5,56.5 parent: 2 @@ -76200,12 +76525,12 @@ entities: type: EntityStorage - proto: ClosetMaintenanceFilledRandom entities: - - uid: 12223 + - uid: 12278 components: - pos: -42.5,-32.5 parent: 2 type: Transform - - uid: 12224 + - uid: 12279 components: - pos: 12.5,-51.5 parent: 2 @@ -76228,7 +76553,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12225 + - uid: 12280 components: - pos: -5.5,-73.5 parent: 2 @@ -76251,7 +76576,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12226 + - uid: 12281 components: - pos: -19.5,58.5 parent: 2 @@ -76274,7 +76599,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12227 + - uid: 12282 components: - pos: 16.5,-72.5 parent: 2 @@ -76297,7 +76622,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12228 + - uid: 12283 components: - pos: -15.5,-12.5 parent: 2 @@ -76320,7 +76645,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12229 + - uid: 12284 components: - pos: -37.5,-67.5 parent: 2 @@ -76343,7 +76668,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12230 + - uid: 12285 components: - pos: -29.5,-57.5 parent: 2 @@ -76366,7 +76691,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12231 + - uid: 12286 components: - pos: -29.5,-39.5 parent: 2 @@ -76389,7 +76714,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12232 + - uid: 12287 components: - pos: -28.5,-67.5 parent: 2 @@ -76412,7 +76737,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12233 + - uid: 12288 components: - pos: -56.5,-32.5 parent: 2 @@ -76435,7 +76760,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12234 + - uid: 12289 components: - pos: 36.5,-12.5 parent: 2 @@ -76458,7 +76783,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12235 + - uid: 12290 components: - pos: -22.5,-28.5 parent: 2 @@ -76481,7 +76806,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12236 + - uid: 12291 components: - pos: 0.5,34.5 parent: 2 @@ -76504,7 +76829,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12237 + - uid: 12292 components: - pos: 55.5,-3.5 parent: 2 @@ -76527,7 +76852,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12238 + - uid: 12293 components: - pos: -27.5,-67.5 parent: 2 @@ -76550,7 +76875,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12239 + - uid: 12294 components: - pos: 39.5,-15.5 parent: 2 @@ -76573,7 +76898,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12240 + - uid: 12295 components: - pos: 58.5,29.5 parent: 2 @@ -76596,7 +76921,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12241 + - uid: 12296 components: - pos: -31.5,38.5 parent: 2 @@ -76619,7 +76944,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12242 + - uid: 12297 components: - pos: -12.5,29.5 parent: 2 @@ -76642,7 +76967,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12243 + - uid: 12298 components: - pos: -43.5,-94.5 parent: 2 @@ -76665,7 +76990,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12244 + - uid: 12299 components: - pos: 48.5,-35.5 parent: 2 @@ -76688,7 +77013,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12245 + - uid: 12300 components: - pos: 72.5,-55.5 parent: 2 @@ -76711,7 +77036,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12246 + - uid: 12301 components: - pos: -9.5,-8.5 parent: 2 @@ -76734,19 +77059,19 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12247 + - uid: 12302 components: - pos: 7.5,-78.5 parent: 2 type: Transform - - uid: 12248 + - uid: 12303 components: - pos: 8.5,26.5 parent: 2 type: Transform - proto: ClosetRadiationSuitFilled entities: - - uid: 12249 + - uid: 12304 components: - pos: -59.5,-23.5 parent: 2 @@ -76769,7 +77094,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12250 + - uid: 12305 components: - pos: -60.5,-23.5 parent: 2 @@ -76792,7 +77117,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12251 + - uid: 12306 components: - pos: 70.5,-35.5 parent: 2 @@ -76817,7 +77142,7 @@ entities: type: EntityStorage - proto: ClosetToolFilled entities: - - uid: 12252 + - uid: 12307 components: - pos: -26.5,-21.5 parent: 2 @@ -76840,7 +77165,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12253 + - uid: 12308 components: - pos: -22.5,-31.5 parent: 2 @@ -76850,14 +77175,14 @@ entities: type: EntityStorage - proto: ClosetWall entities: - - uid: 12254 + - uid: 12309 components: - pos: 45.5,-32.5 parent: 2 type: Transform - proto: ClosetWallMaintenanceFilledRandom entities: - - uid: 12255 + - uid: 12310 components: - pos: 53.5,-33.5 parent: 2 @@ -76880,12 +77205,12 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12256 + - uid: 12311 components: - pos: 47.5,-64.5 parent: 2 type: Transform - - uid: 12257 + - uid: 12312 components: - pos: -52.5,-26.5 parent: 2 @@ -76908,78 +77233,64 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12258 + - uid: 12313 components: - pos: 2.5,-12.5 parent: 2 type: Transform - proto: ClothingBackpack entities: - - uid: 12259 + - uid: 12314 components: - pos: -56.640278,-27.45032 parent: 2 type: Transform - proto: ClothingBackpackDuffelCaptain entities: - - uid: 12260 + - uid: 12315 components: - pos: 30.440884,-27.760664 parent: 2 type: Transform - proto: ClothingBackpackDuffelClown entities: - - uid: 12261 + - uid: 12316 components: - - pos: 53.512966,60.63899 + - pos: 53.57669,61.550056 parent: 2 type: Transform - - storageUsed: 25 - type: Storage - - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 12262 - - 12264 - - 12263 - - 12265 - - 12266 - type: ContainerContainer - - type: ItemCooldown - proto: ClothingBackpackDuffelMedical entities: - - uid: 12267 + - uid: 12317 components: - pos: -2.4848266,-48.830677 parent: 2 type: Transform - - uid: 12268 + - uid: 12318 components: - pos: -16.552103,-49.311478 parent: 2 type: Transform - proto: ClothingBackpackDuffelSecurity entities: - - uid: 12269 + - uid: 12319 components: - pos: 5.4199524,15.682768 parent: 2 type: Transform - proto: ClothingBackpackDuffelSurgeryFilled entities: - - uid: 12270 + - uid: 12320 components: - pos: -6.4692874,-100.35278 parent: 2 type: Transform - - uid: 12271 + - uid: 12321 components: - pos: -3.4849787,-66.40156 parent: 2 type: Transform - - uid: 12272 + - uid: 12322 components: - rot: 1.5707963267948966 rad pos: -14.5,-35.5 @@ -76987,7 +77298,7 @@ entities: type: Transform - proto: ClothingBackpackDuffelSyndicate entities: - - uid: 12273 + - uid: 12323 components: - pos: -46.5,62.5 parent: 2 @@ -76995,872 +77306,862 @@ entities: - type: ItemCooldown - proto: ClothingBackpackMedical entities: - - uid: 12274 + - uid: 12324 components: - pos: 0.5470823,-61.419598 parent: 2 type: Transform - proto: ClothingBackpackSatchel entities: - - uid: 12275 + - uid: 12325 components: - pos: -48.296333,5.808547 parent: 2 type: Transform - proto: ClothingBackpackSatchelMedical entities: - - uid: 12276 + - uid: 12326 components: - pos: -11.364604,-50.389603 parent: 2 type: Transform - proto: ClothingBackpackVirology entities: - - uid: 12277 + - uid: 12327 components: - pos: -31.439095,-73.39239 parent: 2 type: Transform - proto: ClothingBeltAssault entities: - - uid: 12279 + - uid: 12329 components: - flags: InContainer type: MetaData - - parent: 12278 + - parent: 12328 type: Transform - canCollide: False type: Physics - type: InsideEntityStorage - proto: ClothingBeltMedicalFilled entities: - - uid: 12281 + - uid: 12331 components: - pos: -11.470623,-49.143177 parent: 2 type: Transform - proto: ClothingBeltUtility entities: - - uid: 12282 + - uid: 12332 components: - pos: -39.52201,-20.517406 parent: 2 type: Transform - - uid: 12283 + - uid: 12333 components: - pos: 47.423275,49.588562 parent: 2 type: Transform - - uid: 12284 + - uid: 12334 components: - pos: -3.42201,34.480587 parent: 2 type: Transform - proto: ClothingBeltUtilityFilled entities: - - uid: 12285 + - uid: 12335 components: - pos: 41.37638,-39.3584 parent: 2 type: Transform - - uid: 12286 + - uid: 12336 components: - pos: -25.692995,-19.449156 parent: 2 type: Transform - - uid: 12287 + - uid: 12337 components: - pos: -30.494818,-37.432365 parent: 2 type: Transform - - uid: 12288 + - uid: 12338 components: - pos: -21.644775,-100.24527 parent: 2 type: Transform - - uid: 12289 + - uid: 12339 components: - pos: -34.48208,26.5042 parent: 2 type: Transform - proto: ClothingEyesGlasses entities: - - uid: 12290 + - uid: 12340 components: - pos: -57.484028,-27.38782 parent: 2 type: Transform - proto: ClothingEyesGlassesMeson entities: - - uid: 12291 + - uid: 12341 components: - pos: -52.538578,-12.210998 parent: 2 type: Transform - - uid: 12292 + - uid: 12342 components: - pos: -56.32557,-25.518402 parent: 2 type: Transform - - uid: 12293 + - uid: 12343 components: - pos: 2.454368,-75.40744 parent: 2 type: Transform - proto: ClothingEyesGlassesSecurity entities: - - uid: 12294 + - uid: 12344 components: - pos: 22.490807,-47.25673 parent: 2 type: Transform - proto: ClothingEyesHudBeer entities: - - uid: 12295 + - uid: 12345 components: - pos: -41.966873,-78.417305 parent: 2 type: Transform - proto: ClothingHandsGlovesBoxingBlue entities: - - uid: 12296 + - uid: 12346 components: - pos: 21.737816,3.36442 parent: 2 type: Transform - - uid: 12297 + - uid: 12347 components: - pos: -40.008175,-83.602425 parent: 2 type: Transform - proto: ClothingHandsGlovesBoxingGreen entities: - - uid: 12298 + - uid: 12348 components: - pos: 30.201283,4.7139225 parent: 2 type: Transform - proto: ClothingHandsGlovesBoxingRed entities: - - uid: 12299 + - uid: 12349 components: - pos: 26.321266,-1.3645767 parent: 2 type: Transform - - uid: 12300 + - uid: 12350 components: - pos: -44.121326,-80.72781 parent: 2 type: Transform - proto: ClothingHandsGlovesBoxingYellow entities: - - uid: 12301 + - uid: 12351 components: - pos: 30.232533,4.5889225 parent: 2 type: Transform - proto: ClothingHandsGlovesColorBlack entities: - - uid: 12302 + - uid: 12352 components: - pos: -47.515083,6.5429225 parent: 2 type: Transform - proto: ClothingHandsGlovesColorOrange entities: - - uid: 12303 + - uid: 12353 components: - pos: -57.515278,-30.528444 parent: 2 type: Transform - proto: ClothingHandsGlovesColorYellow entities: - - uid: 12304 + - uid: 12354 components: - pos: -24.5,-24.5 parent: 2 type: Transform - - uid: 12305 + - uid: 12355 components: - pos: -28.54305,-20.538445 parent: 2 type: Transform - - uid: 12306 + - uid: 12356 components: - pos: -56.97646,-35.48593 parent: 2 type: Transform - proto: ClothingHandsGlovesCombat entities: - - uid: 12307 + - uid: 12357 components: - pos: -37.5,-32.5 parent: 2 type: Transform - proto: ClothingHandsGlovesLatex entities: - - uid: 12308 + - uid: 12358 components: - pos: -19.466316,-85.552505 parent: 2 type: Transform - - uid: 12309 + - uid: 12359 components: - pos: -5.563123,-96.94655 parent: 2 type: Transform - proto: ClothingHeadFishCap entities: - - uid: 12310 + - uid: 12360 components: - pos: -24.484636,34.673782 parent: 2 type: Transform - proto: ClothingHeadHatAnimalCatBlack entities: - - uid: 12311 + - uid: 12361 components: - pos: -51.4974,8.551356 parent: 2 type: Transform - proto: ClothingHeadHatAnimalHeadslime entities: - - uid: 12312 + - uid: 12362 components: - pos: -48.252262,60.451523 parent: 2 type: Transform - proto: ClothingHeadHatBeaverHat entities: - - uid: 12313 + - uid: 12363 components: - pos: 22.537655,11.563517 parent: 2 type: Transform - proto: ClothingHeadHatBunny entities: - - uid: 12314 + - uid: 12364 components: - pos: 57.503056,-8.485766 parent: 2 type: Transform - proto: ClothingHeadHatCake entities: - - uid: 12315 + - uid: 12365 components: - pos: -23.42545,-67.41026 parent: 2 type: Transform - proto: ClothingHeadHatCardborg entities: - - uid: 12316 + - uid: 12366 components: - pos: 72.844894,-43.422203 parent: 2 type: Transform - proto: ClothingHeadHatChickenhead entities: - - uid: 12317 + - uid: 12367 components: - pos: -38.364468,56.565044 parent: 2 type: Transform - - uid: 12318 + - uid: 12368 components: - pos: 69.487785,-66.37648 parent: 2 type: Transform - proto: ClothingHeadHatCone entities: - - uid: 12319 + - uid: 12369 components: - pos: 20.465803,-52.422585 parent: 2 type: Transform - - uid: 12320 + - uid: 12370 components: - pos: -40.213425,-17.545645 parent: 2 type: Transform - - uid: 12321 + - uid: 12371 components: - pos: -28.525217,-54.052208 parent: 2 type: Transform - proto: ClothingHeadHatFedoraBrown entities: - - uid: 12322 + - uid: 12372 components: - pos: -42.4974,8.520106 parent: 2 type: Transform - proto: ClothingHeadHatFedoraGrey entities: - - uid: 12323 + - uid: 12373 components: - pos: -22.922485,11.607702 parent: 2 type: Transform - proto: ClothingHeadHatFez entities: - - uid: 12324 + - uid: 12374 components: - pos: 20.326727,12.833071 parent: 2 type: Transform - proto: ClothingHeadHatGreensoft entities: - - uid: 12325 + - uid: 12375 components: - pos: 31.51696,-61.276703 parent: 2 type: Transform - proto: ClothingHeadHatHardhatOrange entities: - - uid: 12326 + - uid: 12376 components: - pos: 15.782594,-64.08794 parent: 2 type: Transform - proto: ClothingHeadHatHetmanHat entities: - - uid: 12327 + - uid: 12377 components: - pos: -40.407463,-78.02446 parent: 2 type: Transform - proto: ClothingHeadHatHoodMoth entities: - - uid: 12328 + - uid: 12378 components: - pos: -14.455677,-96.43048 parent: 2 type: Transform - proto: ClothingHeadHatHoodNunHood entities: - - uid: 12329 + - uid: 12379 components: - pos: -38.629223,16.497232 parent: 2 type: Transform - proto: ClothingHeadHatJesterAlt entities: - - uid: 12330 + - uid: 12380 components: - pos: -15.170754,12.526345 parent: 2 type: Transform - proto: ClothingHeadHatPlaguedoctor entities: - - uid: 12331 + - uid: 12381 components: - pos: -31.265268,5.276951 parent: 2 type: Transform - proto: ClothingHeadHatPumpkin entities: - - uid: 12332 + - uid: 12382 components: - pos: -6.603641,4.509495 parent: 2 type: Transform - proto: ClothingHeadHatRichard entities: - - uid: 12333 + - uid: 12383 components: - pos: -16.484713,20.572138 parent: 2 type: Transform - proto: ClothingHeadHatSantahat entities: - - uid: 12334 + - uid: 12384 components: - pos: 70.456535,-65.50148 parent: 2 type: Transform - proto: ClothingHeadHatShrineMaidenWig entities: - - uid: 12335 + - uid: 12385 components: - pos: 73.5263,-65.23457 parent: 2 type: Transform - proto: ClothingHeadHatSquid entities: - - uid: 12336 + - uid: 12386 components: - pos: 9.466757,-12.457433 parent: 2 type: Transform - proto: ClothingHeadHatTophat entities: - - uid: 12337 + - uid: 12387 components: - pos: 22.506405,10.969767 parent: 2 type: Transform - - uid: 12338 + - uid: 12388 components: - pos: -19.575691,-87.365005 parent: 2 type: Transform - proto: ClothingHeadHatTrucker entities: - - uid: 12339 + - uid: 12389 components: - pos: -35.471638,-48.0912 parent: 2 type: Transform - proto: ClothingHeadHatUshanka entities: - - uid: 12340 + - uid: 12390 components: - pos: 20.592352,12.520571 parent: 2 type: Transform - - uid: 12341 + - uid: 12391 components: - pos: 63.56368,11.408342 parent: 2 type: Transform - - uid: 12342 + - uid: 12392 components: - pos: -39.523006,-76.44785 parent: 2 type: Transform - - uid: 12343 + - uid: 12393 components: - pos: -43.43965,-78.05615 parent: 2 type: Transform - proto: ClothingHeadHatVioletwizard entities: - - uid: 12344 + - uid: 12394 components: - pos: 18.520521,50.50226 parent: 2 type: Transform - proto: ClothingHeadHatWelding entities: - - uid: 12345 + - uid: 12395 components: - pos: -35.502888,-47.3412 parent: 2 type: Transform - - uid: 12346 + - uid: 12396 components: - pos: -12.456746,17.595669 parent: 2 type: Transform - - uid: 12347 + - uid: 12397 components: - pos: 42.55075,-32.360874 parent: 2 type: Transform - proto: ClothingHeadHatWeldingMaskFlameBlue entities: - - uid: 12348 + - uid: 12398 components: - pos: 0.64530456,23.439005 parent: 2 type: Transform - - uid: 12349 + - uid: 12399 components: - pos: -20.443554,-51.52769 parent: 2 type: Transform - proto: ClothingHeadHatWizard entities: - - uid: 12350 + - uid: 12400 components: - pos: -27.578125,55.49253 parent: 2 type: Transform - proto: ClothingHeadHelmetCosmonaut entities: - - uid: 12351 + - uid: 12401 components: - pos: -31.517996,-64.46434 parent: 2 type: Transform - - uid: 12352 + - uid: 12402 components: - pos: -37.48917,27.661566 parent: 2 type: Transform - proto: ClothingHeadHelmetEVA entities: - - uid: 12353 + - uid: 12403 components: - pos: -71.04211,-26.39878 parent: 2 type: Transform - proto: ClothingHeadHelmetScaf entities: - - uid: 12354 + - uid: 12404 components: - pos: -31.458502,-43.474 parent: 2 type: Transform - proto: ClothingHeadHelmetTemplar entities: - - uid: 12355 + - uid: 12405 components: - pos: 38.423565,-15.642361 parent: 2 type: Transform - proto: ClothingHeadNurseHat entities: - - uid: 12356 + - uid: 12406 components: - pos: 2.5095897,-65.392746 parent: 2 type: Transform - proto: ClothingHeadSafari entities: - - uid: 12357 + - uid: 12407 components: - pos: -3.5832248,52.757553 parent: 2 type: Transform - proto: ClothingMaskBat entities: - - uid: 12358 + - uid: 12408 components: - pos: -28.497562,8.541992 parent: 2 type: Transform - proto: ClothingMaskBear entities: - - uid: 12359 + - uid: 12409 components: - pos: -38.62821,28.538465 parent: 2 type: Transform - proto: ClothingMaskBee entities: - - uid: 12360 + - uid: 12410 components: - pos: -3.4901123,53.561974 parent: 2 type: Transform - proto: ClothingMaskBreathMedical entities: - - uid: 12361 + - uid: 12411 components: - pos: -16.243101,-35.3368 parent: 2 type: Transform -- proto: ClothingMaskClown - entities: - - uid: 12262 - components: - - flags: InContainer - type: MetaData - - parent: 12261 - type: Transform - - canCollide: False - type: Physics - proto: ClothingMaskFox entities: - - uid: 12362 + - uid: 12412 components: - pos: 30.331896,-28.644527 parent: 2 type: Transform - proto: ClothingMaskGas entities: - - uid: 12363 + - uid: 12413 components: - pos: -25.389828,-6.471097 parent: 2 type: Transform - - uid: 12364 + - uid: 12414 components: - pos: -35.537254,-49.709976 parent: 2 type: Transform - - uid: 12365 + - uid: 12415 components: - pos: -70.49962,-26.436932 parent: 2 type: Transform - - uid: 12366 + - uid: 12416 components: - pos: -8.705846,-15.426237 parent: 2 type: Transform - proto: ClothingMaskGasAtmos entities: - - uid: 12367 + - uid: 12417 components: - pos: 3.1338544,-75.35811 parent: 2 type: Transform - proto: ClothingMaskJackal entities: - - uid: 12368 + - uid: 12418 components: - pos: 16.67739,21.87369 parent: 2 type: Transform - proto: ClothingMaskMuzzle entities: - - uid: 12369 + - uid: 12419 components: - pos: -15.336851,-35.602425 parent: 2 type: Transform - proto: ClothingMaskNeckGaiter entities: - - uid: 12280 + - uid: 12330 components: - flags: InContainer type: MetaData - - parent: 12278 + - parent: 12328 type: Transform - canCollide: False type: Physics - type: InsideEntityStorage - proto: ClothingMaskPlague entities: - - uid: 12370 + - uid: 12420 components: - pos: -31.093393,5.386326 parent: 2 type: Transform - proto: ClothingMaskRat entities: - - uid: 12371 + - uid: 12421 components: - pos: -9.217388,-10.5028515 parent: 2 type: Transform - proto: ClothingMaskRaven entities: - - uid: 12372 + - uid: 12422 components: - pos: 12.510361,-6.449043 parent: 2 type: Transform - proto: ClothingNeckAromanticPin entities: - - uid: 12373 + - uid: 12423 components: - pos: -16.507944,41.79273 parent: 2 type: Transform - proto: ClothingNeckAsexualPin entities: - - uid: 12374 + - uid: 12424 components: - pos: -16.289194,41.51148 parent: 2 type: Transform - proto: ClothingNeckBisexualPin entities: - - uid: 12375 + - uid: 12425 components: - pos: -42.7372,8.687558 parent: 2 type: Transform - proto: ClothingNeckBling entities: - - uid: 12376 + - uid: 12426 components: - pos: 48.258717,-21.370115 parent: 2 type: Transform - proto: ClothingNeckCloakMoth entities: - - uid: 12377 + - uid: 12427 components: - pos: -8.662971,-82.55483 parent: 2 type: Transform - proto: ClothingNeckCloakTrans entities: - - uid: 12378 + - uid: 12428 components: - pos: -9.4988165,23.574131 parent: 2 type: Transform - proto: ClothingNeckIntersexPin entities: - - uid: 12379 + - uid: 12429 components: - pos: -12.691556,31.94308 parent: 2 type: Transform - proto: ClothingNeckLawyerbadge entities: - - uid: 12380 + - uid: 12430 components: - pos: 43.39902,-3.8456278 parent: 2 type: Transform - proto: ClothingNeckLesbianPin entities: - - uid: 12381 + - uid: 12431 components: - pos: -51.700592,8.465523 parent: 2 type: Transform - proto: ClothingNeckLGBTPin entities: - - uid: 12382 + - uid: 12432 components: - pos: -10.776614,43.48699 parent: 2 type: Transform - proto: ClothingNeckMantleCE entities: - - uid: 12383 + - uid: 12433 components: - pos: -35.58501,-17.148493 parent: 2 type: Transform - proto: ClothingNeckMantleCMO entities: - - uid: 12384 + - uid: 12434 components: - pos: -20.144634,-56.34305 parent: 2 type: Transform - proto: ClothingNeckMantleHOS entities: - - uid: 12385 + - uid: 12435 components: - pos: 5.905226,20.807451 parent: 2 type: Transform - proto: ClothingNeckMantleRD entities: - - uid: 12386 + - uid: 12436 components: - pos: 63.464256,-53.431217 parent: 2 type: Transform - proto: ClothingNeckNonBinaryPin entities: - - uid: 12387 + - uid: 12437 components: - pos: -21.722902,35.752502 parent: 2 type: Transform - - uid: 12388 + - uid: 12438 components: - pos: -47.78141,6.181047 parent: 2 type: Transform - proto: ClothingNeckPansexualPin entities: - - uid: 12389 + - uid: 12439 components: - pos: -1.5377516,30.493696 parent: 2 type: Transform - proto: ClothingNeckScarfStripedCentcom entities: - - uid: 12390 + - uid: 12440 components: - pos: 77.62025,-67.25297 parent: 2 type: Transform - proto: ClothingNeckScarfStripedZebra entities: - - uid: 12391 + - uid: 12441 components: - pos: -28.25746,44.644928 parent: 2 type: Transform - proto: ClothingNeckTransPin entities: - - uid: 12392 + - uid: 12442 components: - pos: 65.36391,-1.4805084 parent: 2 type: Transform - proto: ClothingOuterArmorBulletproof entities: - - uid: 12393 + - uid: 12443 components: - pos: 32.367626,30.579184 parent: 2 type: Transform - - uid: 12394 + - uid: 12444 components: - pos: 31.015066,32.43679 parent: 2 type: Transform - - uid: 12395 + - uid: 12445 components: - pos: 31.015066,32.43679 parent: 2 type: Transform - - uid: 12396 + - uid: 12446 components: - pos: 31.015066,32.43679 parent: 2 type: Transform - - uid: 12397 + - uid: 12447 components: - pos: 31.015066,32.43679 parent: 2 type: Transform - - uid: 12398 + - uid: 12448 components: - pos: 32.398876,30.266684 parent: 2 type: Transform - - uid: 12399 + - uid: 12449 components: - pos: 32.617626,30.485434 parent: 2 type: Transform - - uid: 12400 + - uid: 12450 components: - pos: 32.648876,30.157309 parent: 2 type: Transform - proto: ClothingOuterArmorReflective entities: - - uid: 12401 + - uid: 12451 components: - pos: 32.477,29.610434 parent: 2 type: Transform - proto: ClothingOuterCardborg entities: - - uid: 12402 + - uid: 12452 components: - pos: 73.548645,-43.410946 parent: 2 type: Transform - proto: ClothingOuterCoatBomber entities: - - uid: 12403 + - uid: 12453 components: - pos: 15.5274105,-50.516087 parent: 2 type: Transform - proto: ClothingOuterCoatDetective entities: - - uid: 12404 + - uid: 12454 components: - pos: -32.515205,-59.44035 parent: 2 type: Transform - proto: ClothingOuterCoatGentle entities: - - uid: 12405 + - uid: 12455 components: - pos: 59.512882,24.492107 parent: 2 type: Transform - proto: ClothingOuterCoatJensen entities: - - uid: 12097 + - uid: 12153 components: - pos: 62.5886,15.642659 parent: 2 @@ -77870,741 +78171,689 @@ entities: showEnts: False occludes: True ents: - - 12098 + - 12154 toggleable-clothing: !type:ContainerSlot showEnts: False occludes: True ent: null type: ContainerContainer - - storageUsed: 1 - type: Storage - proto: ClothingOuterDameDane entities: - - uid: 12406 + - uid: 12456 components: - pos: -30.207304,-98.49032 parent: 2 type: Transform - proto: ClothingOuterHardsuitEVA entities: - - uid: 12407 + - uid: 12457 components: - pos: -71.62023,-26.30503 parent: 2 type: Transform - proto: ClothingOuterHoodieChaplain entities: - - uid: 12408 + - uid: 12458 components: - pos: -39.238598,16.669107 parent: 2 type: Transform - proto: ClothingOuterPlagueSuit entities: - - uid: 12409 + - uid: 12459 components: - pos: -31.046518,5.058201 parent: 2 type: Transform - proto: ClothingOuterStraightjacket entities: - - uid: 12410 + - uid: 12460 components: - pos: -15.008726,-35.30555 parent: 2 type: Transform - - uid: 12411 + - uid: 12461 components: - pos: 6.437404,-57.306335 parent: 2 type: Transform - proto: ClothingOuterSuitChicken entities: - - uid: 12412 + - uid: 12462 components: - pos: -41.535904,57.643673 parent: 2 type: Transform - proto: ClothingOuterSuitMonkey entities: - - uid: 12413 + - uid: 12463 components: - pos: -23.4853,-87.30585 parent: 2 type: Transform - proto: ClothingOuterSuitShrineMaiden entities: - - uid: 12414 + - uid: 12464 components: - pos: -40.497574,63.50408 parent: 2 type: Transform - - uid: 12415 + - uid: 12465 components: - pos: 73.55755,-64.51582 parent: 2 type: Transform - proto: ClothingOuterWinterRobo entities: - - uid: 12416 + - uid: 12466 components: - pos: 77.51138,-47.408936 parent: 2 type: Transform - proto: ClothingOuterWinterViro entities: - - uid: 12417 + - uid: 12467 components: - pos: -31.470345,-74.22051 parent: 2 type: Transform - proto: ClothingOuterWizard entities: - - uid: 12418 + - uid: 12468 components: - pos: -41.58894,41.559685 parent: 2 type: Transform - proto: ClothingOuterWizardRed entities: - - uid: 12419 + - uid: 12469 components: - pos: -59.983215,-45.447025 parent: 2 type: Transform - proto: ClothingOuterWizardViolet entities: - - uid: 12420 + - uid: 12470 components: - pos: 19.504896,49.611633 parent: 2 type: Transform - proto: ClothingShoesBling entities: - - uid: 12421 + - uid: 12471 components: - pos: 47.782166,-25.351032 parent: 2 type: Transform - proto: ClothingShoesBootsJack entities: - - uid: 12422 + - uid: 12472 components: - pos: -1.4635531,17.609518 parent: 2 type: Transform - proto: ClothingShoesBootsLaceup entities: - - uid: 12423 + - uid: 12473 components: - pos: 45.797165,49.377663 parent: 2 type: Transform - proto: ClothingShoesBootsMag entities: - - uid: 12424 + - uid: 12474 components: - pos: -34.59344,-13.376695 parent: 2 type: Transform - - uid: 12425 + - uid: 12475 components: - pos: -47.52257,38.626587 parent: 2 type: Transform - - uid: 12426 + - uid: 12476 components: - pos: 33.46236,-13.4915285 parent: 2 type: Transform - - uid: 12427 + - uid: 12477 components: - pos: 27.527689,27.317041 parent: 2 type: Transform - - uid: 12428 + - uid: 12478 components: - pos: 31.527689,27.285791 parent: 2 type: Transform - - uid: 12429 + - uid: 12479 components: - pos: 31.516712,-13.514931 parent: 2 type: Transform - - uid: 12430 + - uid: 12480 components: - pos: 31.501087,-11.577431 parent: 2 type: Transform - - uid: 12431 + - uid: 12481 components: - pos: 33.563587,-11.530556 parent: 2 type: Transform - - uid: 12432 + - uid: 12482 components: - pos: 29.610462,-11.499306 parent: 2 type: Transform - - uid: 12433 + - uid: 12483 components: - pos: 29.532337,-13.577431 parent: 2 type: Transform - - uid: 12434 + - uid: 12484 components: - pos: 26.669048,29.395418 parent: 2 type: Transform -- proto: ClothingShoesClown - entities: - - uid: 12263 - components: - - flags: InContainer - type: MetaData - - parent: 12261 - type: Transform - - canCollide: False - type: Physics - proto: ClothingShoesColorWhite entities: - - uid: 12435 + - uid: 12485 components: - pos: -16.54276,-45.461185 parent: 2 type: Transform - proto: ClothingShoesDameDane entities: - - uid: 12436 + - uid: 12486 components: - pos: -22.591383,-96.25594 parent: 2 type: Transform - proto: ClothingShoesFlippers entities: - - uid: 12437 + - uid: 12487 components: - pos: -3.5418344,21.579527 parent: 2 type: Transform - proto: ClothingShoeSlippersDuck entities: - - uid: 12438 + - uid: 12488 components: - pos: 15.423054,34.567764 parent: 2 type: Transform -- proto: ClothingShoesSwat - entities: - - uid: 12440 - components: - - flags: InContainer - name: Hi-Grip combat shoes - type: MetaData - - parent: 12439 - type: Transform - - canCollide: False - type: Physics - - type: NoSlip - - type: InsideEntityStorage - proto: ClothingUnderSocksBee entities: - - uid: 12443 + - uid: 12489 components: - pos: 62.522377,-58.450882 parent: 2 type: Transform - proto: ClothingUniformJumpskirtJanimaidmini entities: - - uid: 12444 + - uid: 12490 components: - pos: -13.518242,-15.499978 parent: 2 type: Transform - proto: ClothingUniformJumpskirtOfLife entities: - - uid: 12445 + - uid: 12491 components: - pos: 62.5,53.5 parent: 2 type: Transform -- proto: ClothingUniformJumpskirtOperative - entities: - - uid: 12441 - components: - - flags: InContainer - type: MetaData - - parent: 12439 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitClown - entities: - - uid: 12264 - components: - - flags: InContainer - type: MetaData - - parent: 12261 - type: Transform - - canCollide: False - type: Physics - proto: ClothingUniformJumpsuitCossack entities: - - uid: 12446 + - uid: 12492 components: - pos: -40.657463,-77.46196 parent: 2 type: Transform - proto: ClothingUniformJumpsuitDameDane entities: - - uid: 12447 + - uid: 12493 components: - pos: -15.484091,-96.41976 parent: 2 type: Transform - proto: ClothingUniformJumpsuitMonasticRobeDark entities: - - uid: 12448 + - uid: 12494 components: - pos: -32.383476,8.575315 parent: 2 type: Transform - - uid: 12449 + - uid: 12495 components: - pos: -32.383476,8.575315 parent: 2 type: Transform - - uid: 12450 + - uid: 12496 components: - pos: -32.383476,8.575315 parent: 2 type: Transform - - uid: 12451 + - uid: 12497 components: - pos: -32.383476,8.575315 parent: 2 type: Transform - - uid: 12452 + - uid: 12498 components: - pos: -32.383476,8.575315 parent: 2 type: Transform - proto: ClothingUniformJumpsuitMonasticRobeLight entities: - - uid: 12453 + - uid: 12499 components: - pos: -22.894775,-100.24527 parent: 2 type: Transform - - uid: 12454 + - uid: 12500 components: - pos: -33.11785,8.55969 parent: 2 type: Transform - - uid: 12455 + - uid: 12501 components: - pos: -33.11785,8.55969 parent: 2 type: Transform - - uid: 12456 + - uid: 12502 components: - pos: -33.11785,8.55969 parent: 2 type: Transform - - uid: 12457 + - uid: 12503 components: - pos: -33.11785,8.55969 parent: 2 type: Transform - - uid: 12458 + - uid: 12504 components: - pos: -33.11785,8.55969 parent: 2 type: Transform -- proto: ClothingUniformJumpsuitOperative - entities: - - uid: 12442 - components: - - flags: InContainer - type: MetaData - - parent: 12439 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: ClothingUniformJumpsuitReporter entities: - - uid: 12459 + - uid: 12505 components: - pos: -27.443762,14.534213 parent: 2 type: Transform - proto: ClothingUniformJumpsuitSafari entities: - - uid: 12460 + - uid: 12506 components: - pos: -3.4738498,52.42943 parent: 2 type: Transform - proto: CluwneHorn entities: - - uid: 12265 + - uid: 12507 components: - - flags: InContainer - type: MetaData - - parent: 12261 + - rot: 1.5707963267948966 rad + pos: -1.2827566,69.184296 + parent: 2 type: Transform - - canCollide: False - type: Physics - proto: Cobweb1 entities: - - uid: 12461 + - uid: 12508 components: - pos: -42.5,-20.5 parent: 2 type: Transform - - uid: 12462 + - uid: 12509 components: - pos: -55.5,-66.5 parent: 2 type: Transform - - uid: 12463 + - uid: 12510 components: - pos: -45.5,-71.5 parent: 2 type: Transform - proto: Cobweb2 entities: - - uid: 12464 + - uid: 12511 components: - pos: -48.5,-34.5 parent: 2 type: Transform - - uid: 12465 + - uid: 12512 components: - pos: -53.5,-70.5 parent: 2 type: Transform - - uid: 12466 + - uid: 12513 components: - pos: -38.5,-71.5 parent: 2 type: Transform +- proto: CockroachTimedSpawner + entities: + - uid: 12514 + components: + - pos: -11.5,-9.5 + parent: 2 + type: Transform - proto: ComfyChair entities: - - uid: 12467 + - uid: 12515 components: - pos: -19.5,-55.5 parent: 2 type: Transform - - uid: 12468 + - uid: 12516 components: - rot: 1.5707963267948966 rad pos: 13.5,-35.5 parent: 2 type: Transform - - uid: 12469 + - uid: 12517 components: - pos: 20.5,-11.5 parent: 2 type: Transform - - uid: 12470 + - uid: 12518 components: - rot: 1.5707963267948966 rad pos: 13.5,-33.5 parent: 2 type: Transform - - uid: 12471 + - uid: 12519 components: - pos: 6.5,21.5 parent: 2 type: Transform - - uid: 12472 + - uid: 12520 components: - rot: -1.5707963267948966 rad pos: 24.5,-28.5 parent: 2 type: Transform - - uid: 12473 + - uid: 12521 components: - rot: 1.5707963267948966 rad pos: 13.5,-31.5 parent: 2 type: Transform - - uid: 12474 + - uid: 12522 components: - rot: 3.141592653589793 rad pos: 20.5,11.5 parent: 2 type: Transform - - uid: 12475 + - uid: 12523 components: - pos: 20.5,13.5 parent: 2 type: Transform - - uid: 12476 + - uid: 12524 components: - pos: -15.5,-37.5 parent: 2 type: Transform - - uid: 12477 + - uid: 12525 components: - rot: -1.5707963267948966 rad pos: 24.5,-29.5 parent: 2 type: Transform - - uid: 12478 + - uid: 12526 components: - rot: -1.5707963267948966 rad pos: 44.5,-3.5 parent: 2 type: Transform - - uid: 12479 + - uid: 12527 components: - rot: 3.141592653589793 rad pos: 33.5,-51.5 parent: 2 type: Transform - - uid: 12480 + - uid: 12528 components: - rot: 3.141592653589793 rad pos: 29.5,-51.5 parent: 2 type: Transform - - uid: 12481 + - uid: 12529 components: - pos: 32.5,-47.5 parent: 2 type: Transform - - uid: 12482 + - uid: 12530 components: - pos: 30.5,-47.5 parent: 2 type: Transform - - uid: 12483 + - uid: 12531 components: - pos: 25.5,-81.5 parent: 2 type: Transform - - uid: 12484 + - uid: 12532 components: - rot: 1.5707963267948966 rad pos: -36.5,-16.5 parent: 2 type: Transform - - uid: 12485 + - uid: 12533 components: - pos: -48.5,7.5 parent: 2 type: Transform - - uid: 12486 + - uid: 12534 components: - pos: -47.5,7.5 parent: 2 type: Transform - - uid: 12487 + - uid: 12535 components: - rot: 1.5707963267948966 rad pos: -49.5,6.5 parent: 2 type: Transform - - uid: 12488 + - uid: 12536 components: - rot: 1.5707963267948966 rad pos: -49.5,5.5 parent: 2 type: Transform - - uid: 12489 + - uid: 12537 components: - rot: 3.141592653589793 rad pos: -48.5,4.5 parent: 2 type: Transform - - uid: 12490 + - uid: 12538 components: - rot: 3.141592653589793 rad pos: -47.5,4.5 parent: 2 type: Transform - - uid: 12491 + - uid: 12539 components: - rot: -1.5707963267948966 rad pos: -46.5,6.5 parent: 2 type: Transform - - uid: 12492 + - uid: 12540 components: - rot: -1.5707963267948966 rad pos: -46.5,5.5 parent: 2 type: Transform - - uid: 12493 + - uid: 12541 components: - rot: 3.141592653589793 rad pos: 25.5,-85.5 parent: 2 type: Transform - - uid: 12494 + - uid: 12542 components: - rot: 3.141592653589793 rad pos: 67.5,7.5 parent: 2 type: Transform - - uid: 12495 + - uid: 12543 components: - pos: 67.5,11.5 parent: 2 type: Transform - - uid: 12496 + - uid: 12544 components: - pos: 44.5,33.5 parent: 2 type: Transform - - uid: 12497 + - uid: 12545 components: - pos: 43.5,33.5 parent: 2 type: Transform - - uid: 12498 + - uid: 12546 components: - pos: 42.5,33.5 parent: 2 type: Transform - - uid: 12499 + - uid: 12547 components: - rot: 1.5707963267948966 rad pos: 64.5,-0.5 parent: 2 type: Transform - - uid: 12500 + - uid: 12548 components: - rot: 1.5707963267948966 rad pos: 64.5,-1.5 parent: 2 type: Transform - - uid: 12501 + - uid: 12549 components: - rot: 3.141592653589793 rad pos: 44.5,28.5 parent: 2 type: Transform - - uid: 12502 + - uid: 12550 components: - rot: 3.141592653589793 rad pos: 45.5,28.5 parent: 2 type: Transform - - uid: 12503 + - uid: 12551 components: - rot: 3.141592653589793 rad pos: 46.5,28.5 parent: 2 type: Transform - - uid: 12504 + - uid: 12552 components: - rot: -1.5707963267948966 rad pos: -54.5,-48.5 parent: 2 type: Transform - - uid: 12505 + - uid: 12553 components: - rot: -1.5707963267948966 rad pos: -54.5,-49.5 parent: 2 type: Transform - - uid: 12506 + - uid: 12554 components: - pos: -55.5,-47.5 parent: 2 type: Transform - - uid: 12507 + - uid: 12555 components: - rot: 3.141592653589793 rad pos: -55.5,-50.5 parent: 2 type: Transform - - uid: 12508 + - uid: 12556 components: - rot: -1.5707963267948966 rad pos: -4.5,-98.5 parent: 2 type: Transform - - uid: 12509 + - uid: 12557 components: - rot: -1.5707963267948966 rad pos: -21.5,-97.5 parent: 2 type: Transform - - uid: 12510 + - uid: 12558 components: - rot: 1.5707963267948966 rad pos: -23.5,-97.5 parent: 2 type: Transform - - uid: 12511 + - uid: 12559 components: - pos: -0.5,-73.5 parent: 2 type: Transform - - uid: 12512 + - uid: 12560 components: - pos: 16.5,-79.5 parent: 2 type: Transform - - uid: 12513 + - uid: 12561 components: - pos: 14.5,-79.5 parent: 2 type: Transform - - uid: 12514 + - uid: 12562 components: - pos: 13.5,-79.5 parent: 2 type: Transform - - uid: 12515 + - uid: 12563 components: - pos: 17.5,-79.5 parent: 2 type: Transform - - uid: 12516 + - uid: 12564 components: - rot: 3.141592653589793 rad pos: 14.5,-87.5 parent: 2 type: Transform - - uid: 12517 + - uid: 12565 components: - rot: 3.141592653589793 rad pos: 13.5,-87.5 parent: 2 type: Transform - - uid: 12518 + - uid: 12566 components: - rot: 3.141592653589793 rad pos: 17.5,-87.5 parent: 2 type: Transform - - uid: 12519 + - uid: 12567 components: - rot: 3.141592653589793 rad pos: 16.5,-87.5 parent: 2 type: Transform - - uid: 12520 + - uid: 12568 components: - rot: -1.5707963267948966 rad pos: 7.5,-79.5 parent: 2 type: Transform - - uid: 12521 + - uid: 12569 components: - rot: 1.5707963267948966 rad pos: 20.5,-29.5 parent: 2 type: Transform - - uid: 12522 + - uid: 12570 components: - rot: 1.5707963267948966 rad pos: 20.5,-28.5 @@ -78612,18 +78861,18 @@ entities: type: Transform - proto: ComputerAlert entities: - - uid: 12523 + - uid: 12571 components: - pos: 27.5,-21.5 parent: 2 type: Transform - - uid: 12524 + - uid: 12572 components: - rot: 1.5707963267948966 rad pos: -55.5,-12.5 parent: 2 type: Transform - - uid: 12525 + - uid: 12573 components: - rot: 3.141592653589793 rad pos: -36.5,-46.5 @@ -78631,24 +78880,24 @@ entities: type: Transform - proto: ComputerAnalysisConsole entities: - - uid: 12526 + - uid: 12574 components: - pos: 73.5,-31.5 parent: 2 type: Transform - linkedPorts: - 21231: + 21377: - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver type: DeviceLinkSource - proto: computerBodyScanner entities: - - uid: 12527 + - uid: 12575 components: - rot: -1.5707963267948966 rad pos: 4.5,-65.5 parent: 2 type: Transform - - uid: 12528 + - uid: 12576 components: - rot: 1.5707963267948966 rad pos: -26.5,-60.5 @@ -78656,85 +78905,85 @@ entities: type: Transform - proto: ComputerBroken entities: - - uid: 12529 + - uid: 12577 components: - rot: -1.5707963267948966 rad pos: 52.5,37.5 parent: 2 type: Transform - - uid: 12530 + - uid: 12578 components: - pos: 51.5,36.5 parent: 2 type: Transform - - uid: 12531 + - uid: 12579 components: - rot: -1.5707963267948966 rad pos: 51.5,37.5 parent: 2 type: Transform - - uid: 12532 - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-87.5 - parent: 2 - type: Transform - - uid: 12533 + - uid: 12580 components: - rot: 1.5707963267948966 rad pos: -0.5,73.5 parent: 2 type: Transform - - uid: 12534 + - uid: 12581 components: - rot: -1.5707963267948966 rad pos: -2.5,73.5 parent: 2 type: Transform - - uid: 12535 + - uid: 12582 components: - rot: 1.5707963267948966 rad pos: 2.5,69.5 parent: 2 type: Transform - - uid: 12536 + - uid: 12583 components: - rot: -1.5707963267948966 rad pos: -5.5,69.5 parent: 2 type: Transform + - uid: 12584 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,-87.5 + parent: 2 + type: Transform - proto: ComputerCargoBounty entities: - - uid: 12537 + - uid: 12585 components: - pos: -42.5,25.5 parent: 2 type: Transform - proto: ComputerCargoOrders entities: - - uid: 12538 + - uid: 12586 components: - pos: -31.5,31.5 parent: 2 type: Transform - - uid: 12539 + - uid: 12587 components: - pos: 29.5,-21.5 parent: 2 type: Transform - - uid: 12540 + - uid: 12588 components: - pos: -27.5,23.5 parent: 2 type: Transform - - uid: 12541 + - uid: 12589 components: - pos: -44.5,35.5 parent: 2 type: Transform - proto: ComputerCargoShuttle entities: - - uid: 12542 + - uid: 12590 components: - rot: 3.141592653589793 rad pos: -27.5,21.5 @@ -78742,12 +78991,12 @@ entities: type: Transform - proto: ComputerComms entities: - - uid: 12543 + - uid: 12591 components: - pos: 25.5,-21.5 parent: 2 type: Transform - - uid: 12544 + - uid: 12592 components: - rot: 1.5707963267948966 rad pos: 28.5,-30.5 @@ -78755,69 +79004,69 @@ entities: type: Transform - proto: ComputerCrewMonitoring entities: - - uid: 12545 + - uid: 12593 components: - pos: 23.5,-21.5 parent: 2 type: Transform - - uid: 12546 + - uid: 12594 components: - pos: 54.5,13.5 parent: 2 type: Transform - proto: ComputerCriminalRecords entities: - - uid: 12547 + - uid: 12595 components: - rot: -1.5707963267948966 rad pos: 22.5,-45.5 parent: 2 type: Transform - - uid: 12548 + - uid: 12596 components: - pos: -16.5,26.5 parent: 2 type: Transform - - uid: 12549 + - uid: 12597 components: - pos: 23.5,23.5 parent: 2 type: Transform - proto: ComputerFrame entities: - - uid: 12550 + - uid: 12598 components: - pos: -8.5,-63.5 parent: 2 type: Transform - - uid: 12551 + - uid: 12599 components: - rot: 1.5707963267948966 rad pos: 70.5,-36.5 parent: 2 type: Transform - - uid: 12552 + - uid: 12600 components: - pos: 51.5,35.5 parent: 2 type: Transform - - uid: 12553 + - uid: 12601 components: - pos: -10.5,37.5 parent: 2 type: Transform - - uid: 12554 + - uid: 12602 components: - pos: -29.5,-96.5 parent: 2 type: Transform - - uid: 12555 + - uid: 12603 components: - rot: 1.5707963267948966 rad pos: -79.5,-54.5 parent: 2 type: Transform - - uid: 12556 + - uid: 12604 components: - rot: 1.5707963267948966 rad pos: -79.5,-53.5 @@ -78825,40 +79074,40 @@ entities: type: Transform - proto: ComputerId entities: - - uid: 12557 + - uid: 12605 components: - rot: 1.5707963267948966 rad pos: -37.5,-17.5 parent: 2 type: Transform - - uid: 12558 + - uid: 12606 components: - pos: 60.5,-53.5 parent: 2 type: Transform - - uid: 12559 + - uid: 12607 components: - rot: 3.141592653589793 rad pos: -30.5,29.5 parent: 2 type: Transform - - uid: 12560 + - uid: 12608 components: - pos: 25.5,-24.5 parent: 2 type: Transform - - uid: 12561 + - uid: 12609 components: - rot: 3.141592653589793 rad pos: 4.5,20.5 parent: 2 type: Transform - - uid: 12562 + - uid: 12610 components: - pos: -19.5,-54.5 parent: 2 type: Transform - - uid: 12563 + - uid: 12611 components: - rot: 1.5707963267948966 rad pos: 3.5,-4.5 @@ -78866,7 +79115,7 @@ entities: type: Transform - proto: ComputerMassMedia entities: - - uid: 12564 + - uid: 12612 components: - rot: -1.5707963267948966 rad pos: -22.5,12.5 @@ -78874,18 +79123,18 @@ entities: type: Transform - proto: ComputerMedicalRecords entities: - - uid: 12565 + - uid: 12613 components: - pos: -20.5,-54.5 parent: 2 type: Transform - - uid: 12566 + - uid: 12614 components: - rot: -1.5707963267948966 rad pos: -3.5,-50.5 parent: 2 type: Transform - - uid: 12567 + - uid: 12615 components: - rot: 3.141592653589793 rad pos: 47.5,5.5 @@ -78893,34 +79142,34 @@ entities: type: Transform - proto: ComputerPowerMonitoring entities: - - uid: 12568 + - uid: 12616 components: - pos: -46.5,-22.5 parent: 2 type: Transform - - uid: 12569 + - uid: 12617 components: - pos: -72.5,-31.5 parent: 2 type: Transform - - uid: 12570 + - uid: 12618 components: - pos: 21.5,-21.5 parent: 2 type: Transform - - uid: 12571 + - uid: 12619 components: - rot: 3.141592653589793 rad pos: -27.5,-13.5 parent: 2 type: Transform - - uid: 12572 + - uid: 12620 components: - rot: 1.5707963267948966 rad pos: -55.5,-13.5 parent: 2 type: Transform - - uid: 12573 + - uid: 12621 components: - rot: 3.141592653589793 rad pos: -71.5,-39.5 @@ -78928,7 +79177,7 @@ entities: type: Transform - proto: ComputerRadar entities: - - uid: 12574 + - uid: 12622 components: - rot: 1.5707963267948966 rad pos: -48.5,32.5 @@ -78936,49 +79185,55 @@ entities: type: Transform - proto: ComputerResearchAndDevelopment entities: - - uid: 12575 + - uid: 12623 components: - rot: 3.141592653589793 rad pos: 61.5,-55.5 parent: 2 type: Transform - - uid: 12576 + - uid: 12624 components: - rot: -1.5707963267948966 rad pos: 43.5,-39.5 parent: 2 type: Transform - - uid: 12577 + - uid: 12625 components: - pos: 68.5,-43.5 parent: 2 type: Transform - - uid: 12578 + - uid: 12626 components: - pos: 50.5,-52.5 parent: 2 type: Transform - - uid: 12579 + - uid: 12627 components: - rot: 3.141592653589793 rad pos: 60.5,-36.5 parent: 2 type: Transform - - uid: 12580 + - uid: 12628 components: - pos: 74.5,-31.5 parent: 2 type: Transform + - uid: 12629 + components: + - rot: 3.141592653589793 rad + pos: 52.5,-42.5 + parent: 2 + type: Transform - proto: ComputerSalvageExpedition entities: - - uid: 12581 + - uid: 12630 components: - pos: -46.5,44.5 parent: 2 type: Transform - proto: ComputerShuttleCargo entities: - - uid: 12582 + - uid: 12631 components: - rot: 1.5707963267948966 rad pos: -48.5,21.5 @@ -78986,66 +79241,66 @@ entities: type: Transform - proto: ComputerShuttleSalvage entities: - - uid: 12583 + - uid: 12632 components: - pos: -47.5,44.5 parent: 2 type: Transform - proto: ComputerSolarControl entities: - - uid: 12584 + - uid: 12633 components: - rot: 1.5707963267948966 rad pos: -2.5,-77.5 parent: 2 type: Transform - - uid: 12585 + - uid: 12634 components: - pos: 72.5,38.5 parent: 2 type: Transform - proto: ComputerStationRecords entities: - - uid: 12586 + - uid: 12635 components: - rot: -1.5707963267948966 rad pos: 5.5,-4.5 parent: 2 type: Transform - - uid: 12587 + - uid: 12636 components: - rot: 1.5707963267948966 rad pos: 2.5,-57.5 parent: 2 type: Transform - - uid: 12588 + - uid: 12637 components: - pos: 18.5,-10.5 parent: 2 type: Transform - - uid: 12589 + - uid: 12638 components: - pos: 24.5,-24.5 parent: 2 type: Transform - - uid: 12590 + - uid: 12639 components: - rot: -1.5707963267948966 rad pos: 26.5,20.5 parent: 2 type: Transform - - uid: 12591 + - uid: 12640 components: - pos: 47.5,7.5 parent: 2 type: Transform - - uid: 12592 + - uid: 12641 components: - rot: 3.141592653589793 rad pos: 20.5,-47.5 parent: 2 type: Transform - - uid: 12593 + - uid: 12642 components: - rot: 3.141592653589793 rad pos: -16.5,-23.5 @@ -79053,63 +79308,57 @@ entities: type: Transform - proto: ComputerSurveillanceCameraMonitor entities: - - uid: 12594 + - uid: 12643 components: - pos: 26.5,-24.5 parent: 2 type: Transform - - uid: 12595 + - uid: 12644 components: - rot: 3.141592653589793 rad pos: 18.5,-12.5 parent: 2 type: Transform - - uid: 12596 + - uid: 12645 components: - rot: 1.5707963267948966 rad pos: 24.5,20.5 parent: 2 type: Transform - - uid: 12597 + - uid: 12646 components: - pos: 53.5,13.5 parent: 2 type: Transform - - uid: 12598 - components: - - rot: 3.141592653589793 rad - pos: 52.5,-42.5 - parent: 2 - type: Transform - - uid: 12599 + - uid: 12647 components: - rot: 1.5707963267948966 rad pos: -55.5,-14.5 parent: 2 type: Transform - - uid: 12600 + - uid: 12648 components: - pos: -23.5,-69.5 parent: 2 type: Transform - - uid: 12601 + - uid: 12649 components: - pos: -11.5,-14.5 parent: 2 type: Transform - - uid: 12602 + - uid: 12650 components: - rot: 1.5707963267948966 rad pos: -21.5,-49.5 parent: 2 type: Transform - - uid: 12603 + - uid: 12651 components: - rot: 3.141592653589793 rad pos: -37.5,-46.5 parent: 2 type: Transform - - uid: 12604 + - uid: 12652 components: - rot: 1.5707963267948966 rad pos: -27.5,15.5 @@ -79117,1067 +79366,1067 @@ entities: type: Transform - proto: ComputerTechnologyDiskTerminal entities: - - uid: 12605 + - uid: 12653 components: - pos: 56.5,-47.5 parent: 2 type: Transform - proto: ComputerTelevision entities: - - uid: 12606 + - uid: 12654 components: - pos: -6.5,-48.5 parent: 2 type: Transform - - uid: 12607 + - uid: 12655 components: - pos: -28.5,43.5 parent: 2 type: Transform - - uid: 12608 + - uid: 12656 components: - pos: 15.5,9.5 parent: 2 type: Transform - - uid: 12609 + - uid: 12657 components: - pos: -22.5,31.5 parent: 2 type: Transform - - uid: 12610 + - uid: 12658 components: - pos: -18.5,35.5 parent: 2 type: Transform - - uid: 12611 + - uid: 12659 components: - pos: -11.5,35.5 parent: 2 type: Transform - - uid: 12612 + - uid: 12660 components: - pos: -21.5,39.5 parent: 2 type: Transform - proto: ComputerTelevisionCircuitboard entities: - - uid: 12613 + - uid: 12661 components: - pos: 41.546516,-53.695484 parent: 2 type: Transform - - uid: 12614 + - uid: 12662 components: - pos: -8.937697,37.5244 parent: 2 type: Transform - - uid: 12615 + - uid: 12663 components: - pos: -9.312697,37.696274 parent: 2 type: Transform - proto: ContainmentFieldGenerator entities: - - uid: 12616 + - uid: 12664 components: - pos: -70.5,-9.5 parent: 2 type: Transform - - uid: 12617 + - uid: 12665 components: - pos: -62.5,-9.5 parent: 2 type: Transform - - uid: 12618 + - uid: 12666 components: - pos: -62.5,-17.5 parent: 2 type: Transform - - uid: 12619 + - uid: 12667 components: - pos: -70.5,-17.5 parent: 2 type: Transform - - uid: 12620 + - uid: 12668 components: - pos: -74.5,-26.5 parent: 2 type: Transform - - uid: 12621 + - uid: 12669 components: - pos: -73.5,-26.5 parent: 2 type: Transform - - uid: 12622 + - uid: 12670 components: - pos: -74.5,-23.5 parent: 2 type: Transform - - uid: 12623 + - uid: 12671 components: - pos: -73.5,-23.5 parent: 2 type: Transform - proto: ConveyorBelt entities: - - uid: 12624 + - uid: 12672 components: - rot: 1.5707963267948966 rad pos: 16.5,-55.5 parent: 2 type: Transform - links: - - 25600 + - 25836 type: DeviceLinkSink - - uid: 12625 + - uid: 12673 components: - pos: 18.5,-56.5 parent: 2 type: Transform - links: - - 25600 + - 25836 type: DeviceLinkSink - - uid: 12626 + - uid: 12674 components: - rot: 1.5707963267948966 rad pos: 17.5,-55.5 parent: 2 type: Transform - links: - - 25600 + - 25836 type: DeviceLinkSink - - uid: 12627 + - uid: 12675 components: - rot: 1.5707963267948966 rad pos: 15.5,-55.5 parent: 2 type: Transform - links: - - 25600 + - 25836 type: DeviceLinkSink - - uid: 12628 + - uid: 12676 components: - pos: 18.5,-55.5 parent: 2 type: Transform - links: - - 25600 + - 25836 type: DeviceLinkSink - - uid: 12629 + - uid: 12677 components: - rot: -1.5707963267948966 rad pos: -12.5,-10.5 parent: 2 type: Transform - links: - - 25613 + - 25849 type: DeviceLinkSink - - uid: 12630 + - uid: 12678 components: - pos: 15.5,-54.5 parent: 2 type: Transform - links: - - 25600 + - 25836 type: DeviceLinkSink - - uid: 12631 + - uid: 12679 components: - pos: 18.5,-57.5 parent: 2 type: Transform - links: - - 25600 + - 25836 type: DeviceLinkSink - - uid: 12632 + - uid: 12680 components: - rot: -1.5707963267948966 rad pos: 17.5,-54.5 parent: 2 type: Transform - links: - - 25600 + - 25836 type: DeviceLinkSink - - uid: 12633 + - uid: 12681 components: - rot: -1.5707963267948966 rad pos: 16.5,-54.5 parent: 2 type: Transform - links: - - 25600 + - 25836 type: DeviceLinkSink - - uid: 12634 + - uid: 12682 components: - rot: -1.5707963267948966 rad pos: 18.5,-54.5 parent: 2 type: Transform - links: - - 25600 + - 25836 type: DeviceLinkSink - - uid: 12635 + - uid: 12683 components: - rot: -1.5707963267948966 rad pos: -14.5,-10.5 parent: 2 type: Transform - links: - - 25613 + - 25849 type: DeviceLinkSink - - uid: 12636 + - uid: 12684 components: - rot: -1.5707963267948966 rad pos: -13.5,-10.5 parent: 2 type: Transform - links: - - 25613 + - 25849 type: DeviceLinkSink - - uid: 12637 + - uid: 12685 components: - rot: 3.141592653589793 rad pos: -11.5,-10.5 parent: 2 type: Transform - links: - - 25613 + - 25849 type: DeviceLinkSink - - uid: 12638 + - uid: 12686 components: - rot: 1.5707963267948966 rad pos: -25.5,25.5 parent: 2 type: Transform - links: - - 25601 + - 25837 type: DeviceLinkSink - - uid: 12639 + - uid: 12687 components: - rot: 1.5707963267948966 rad pos: -26.5,25.5 parent: 2 type: Transform - links: - - 25601 + - 25837 type: DeviceLinkSink - - uid: 12640 + - uid: 12688 components: - rot: 1.5707963267948966 rad pos: -27.5,25.5 parent: 2 type: Transform - links: - - 25601 + - 25837 type: DeviceLinkSink - - uid: 12641 + - uid: 12689 components: - rot: 1.5707963267948966 rad pos: -28.5,25.5 parent: 2 type: Transform - links: - - 25601 + - 25837 type: DeviceLinkSink - - uid: 12642 + - uid: 12690 components: - rot: 1.5707963267948966 rad pos: -30.5,25.5 parent: 2 type: Transform - links: - - 25601 + - 25837 type: DeviceLinkSink - - uid: 12643 + - uid: 12691 components: - rot: 1.5707963267948966 rad pos: -29.5,25.5 parent: 2 type: Transform - links: - - 25601 + - 25837 type: DeviceLinkSink - - uid: 12644 + - uid: 12692 components: - rot: 1.5707963267948966 rad pos: -35.5,25.5 parent: 2 type: Transform - links: - - 25605 + - 25841 type: DeviceLinkSink - - uid: 12645 + - uid: 12693 components: - rot: 1.5707963267948966 rad pos: -34.5,25.5 parent: 2 type: Transform - links: - - 25605 + - 25841 type: DeviceLinkSink - - uid: 12646 + - uid: 12694 components: - rot: 1.5707963267948966 rad pos: -36.5,25.5 parent: 2 type: Transform - links: - - 25605 + - 25841 type: DeviceLinkSink - - uid: 12647 + - uid: 12695 components: - rot: 1.5707963267948966 rad pos: -37.5,25.5 parent: 2 type: Transform - links: - - 25605 + - 25841 type: DeviceLinkSink - - uid: 12648 + - uid: 12696 components: - rot: 1.5707963267948966 rad pos: -38.5,25.5 parent: 2 type: Transform - links: - - 25605 + - 25841 type: DeviceLinkSink - - uid: 12649 + - uid: 12697 components: - rot: 1.5707963267948966 rad pos: -48.5,19.5 parent: 2 type: Transform - links: - - 25604 + - 25840 type: DeviceLinkSink - - uid: 12650 + - uid: 12698 components: - rot: 1.5707963267948966 rad pos: -49.5,19.5 parent: 2 type: Transform - links: - - 25604 + - 25840 type: DeviceLinkSink - - uid: 12651 + - uid: 12699 components: - rot: 1.5707963267948966 rad pos: -50.5,19.5 parent: 2 type: Transform - links: - - 25604 + - 25840 type: DeviceLinkSink - - uid: 12652 + - uid: 12700 components: - rot: 1.5707963267948966 rad pos: -51.5,19.5 parent: 2 type: Transform - links: - - 25604 + - 25840 type: DeviceLinkSink - - uid: 12653 + - uid: 12701 components: - rot: 1.5707963267948966 rad pos: -48.5,23.5 parent: 2 type: Transform - links: - - 25603 + - 25839 type: DeviceLinkSink - - uid: 12654 + - uid: 12702 components: - rot: 1.5707963267948966 rad pos: -49.5,23.5 parent: 2 type: Transform - links: - - 25603 + - 25839 type: DeviceLinkSink - - uid: 12655 + - uid: 12703 components: - rot: 1.5707963267948966 rad pos: -50.5,23.5 parent: 2 type: Transform - links: - - 25603 + - 25839 type: DeviceLinkSink - - uid: 12656 + - uid: 12704 components: - rot: 1.5707963267948966 rad pos: -51.5,23.5 parent: 2 type: Transform - links: - - 25603 + - 25839 type: DeviceLinkSink - - uid: 12657 + - uid: 12705 components: - rot: 1.5707963267948966 rad pos: -52.5,19.5 parent: 2 type: Transform - links: - - 25604 + - 25840 type: DeviceLinkSink - - uid: 12658 + - uid: 12706 components: - rot: 1.5707963267948966 rad pos: -53.5,19.5 parent: 2 type: Transform - links: - - 25604 + - 25840 type: DeviceLinkSink - - uid: 12659 + - uid: 12707 components: - rot: 1.5707963267948966 rad pos: -47.5,19.5 parent: 2 type: Transform - links: - - 25604 + - 25840 type: DeviceLinkSink - - uid: 12660 + - uid: 12708 components: - rot: 1.5707963267948966 rad pos: -46.5,19.5 parent: 2 type: Transform - links: - - 25604 + - 25840 type: DeviceLinkSink - - uid: 12661 + - uid: 12709 components: - rot: 1.5707963267948966 rad pos: -47.5,23.5 parent: 2 type: Transform - links: - - 25603 + - 25839 type: DeviceLinkSink - - uid: 12662 + - uid: 12710 components: - rot: 1.5707963267948966 rad pos: -46.5,23.5 parent: 2 type: Transform - links: - - 25603 + - 25839 type: DeviceLinkSink - - uid: 12663 + - uid: 12711 components: - rot: 1.5707963267948966 rad pos: -53.5,23.5 parent: 2 type: Transform - links: - - 25603 + - 25839 type: DeviceLinkSink - - uid: 12664 + - uid: 12712 components: - rot: 1.5707963267948966 rad pos: -52.5,23.5 parent: 2 type: Transform - links: - - 25603 + - 25839 type: DeviceLinkSink - - uid: 12665 + - uid: 12713 components: - rot: 3.141592653589793 rad pos: -42.5,14.5 parent: 2 type: Transform - links: - - 25602 + - 25838 type: DeviceLinkSink - - uid: 12666 + - uid: 12714 components: - rot: 1.5707963267948966 rad pos: -51.5,30.5 parent: 2 type: Transform - links: - - 25607 + - 25843 type: DeviceLinkSink - - uid: 12667 + - uid: 12715 components: - rot: 1.5707963267948966 rad pos: -52.5,30.5 parent: 2 type: Transform - links: - - 25607 + - 25843 type: DeviceLinkSink - - uid: 12668 + - uid: 12716 components: - rot: 1.5707963267948966 rad pos: -50.5,30.5 parent: 2 type: Transform - links: - - 25607 + - 25843 type: DeviceLinkSink - - uid: 12669 + - uid: 12717 components: - rot: 1.5707963267948966 rad pos: -49.5,30.5 parent: 2 type: Transform - links: - - 25607 + - 25843 type: DeviceLinkSink - - uid: 12670 + - uid: 12718 components: - rot: 1.5707963267948966 rad pos: -48.5,30.5 parent: 2 type: Transform - links: - - 25607 + - 25843 type: DeviceLinkSink - - uid: 12671 + - uid: 12719 components: - rot: 1.5707963267948966 rad pos: -52.5,34.5 parent: 2 type: Transform - links: - - 25608 + - 25844 type: DeviceLinkSink - - uid: 12672 + - uid: 12720 components: - rot: 1.5707963267948966 rad pos: -51.5,34.5 parent: 2 type: Transform - links: - - 25608 + - 25844 type: DeviceLinkSink - - uid: 12673 + - uid: 12721 components: - rot: 1.5707963267948966 rad pos: -50.5,34.5 parent: 2 type: Transform - links: - - 25608 + - 25844 type: DeviceLinkSink - - uid: 12674 + - uid: 12722 components: - rot: 1.5707963267948966 rad pos: -49.5,34.5 parent: 2 type: Transform - links: - - 25608 + - 25844 type: DeviceLinkSink - - uid: 12675 + - uid: 12723 components: - rot: 1.5707963267948966 rad pos: -48.5,34.5 parent: 2 type: Transform - links: - - 25608 + - 25844 type: DeviceLinkSink - - uid: 12676 + - uid: 12724 components: - rot: 1.5707963267948966 rad pos: -53.5,34.5 parent: 2 type: Transform - links: - - 25608 + - 25844 type: DeviceLinkSink - - uid: 12677 + - uid: 12725 components: - rot: 1.5707963267948966 rad pos: -53.5,30.5 parent: 2 type: Transform - links: - - 25607 + - 25843 type: DeviceLinkSink - - uid: 12678 + - uid: 12726 components: - rot: 1.5707963267948966 rad pos: -47.5,34.5 parent: 2 type: Transform - links: - - 25608 + - 25844 type: DeviceLinkSink - - uid: 12679 + - uid: 12727 components: - rot: 1.5707963267948966 rad pos: -47.5,30.5 parent: 2 type: Transform - links: - - 25607 + - 25843 type: DeviceLinkSink - - uid: 12680 + - uid: 12728 components: - rot: -1.5707963267948966 rad pos: -12.5,27.5 parent: 2 type: Transform - links: - - 25606 + - 25842 type: DeviceLinkSink - - uid: 12681 + - uid: 12729 components: - pos: -10.5,28.5 parent: 2 type: Transform - links: - - 25606 + - 25842 type: DeviceLinkSink - - uid: 12682 + - uid: 12730 components: - rot: -1.5707963267948966 rad pos: -9.5,28.5 parent: 2 type: Transform - links: - - 25606 + - 25842 type: DeviceLinkSink - - uid: 12683 + - uid: 12731 components: - rot: 3.141592653589793 rad pos: -42.5,15.5 parent: 2 type: Transform - links: - - 25602 + - 25838 type: DeviceLinkSink - - uid: 12684 + - uid: 12732 components: - rot: 3.141592653589793 rad pos: -42.5,17.5 parent: 2 type: Transform - links: - - 25602 + - 25838 type: DeviceLinkSink - - uid: 12685 + - uid: 12733 components: - rot: 3.141592653589793 rad pos: -42.5,13.5 parent: 2 type: Transform - links: - - 25602 + - 25838 type: DeviceLinkSink - - uid: 12686 + - uid: 12734 components: - pos: -47.5,13.5 parent: 2 type: Transform - links: - - 25609 + - 25845 type: DeviceLinkSink - - uid: 12687 + - uid: 12735 components: - pos: -47.5,14.5 parent: 2 type: Transform - links: - - 25609 + - 25845 type: DeviceLinkSink - - uid: 12688 + - uid: 12736 components: - pos: -47.5,12.5 parent: 2 type: Transform - links: - - 25609 + - 25845 type: DeviceLinkSink - - uid: 12689 + - uid: 12737 components: - rot: 1.5707963267948966 rad pos: -8.5,22.5 parent: 2 type: Transform - links: - - 25606 + - 25842 type: DeviceLinkSink - - uid: 12690 + - uid: 12738 components: - rot: 1.5707963267948966 rad pos: -7.5,22.5 parent: 2 type: Transform - links: - - 25606 + - 25842 type: DeviceLinkSink - - uid: 12691 + - uid: 12739 components: - rot: 1.5707963267948966 rad pos: -6.5,22.5 parent: 2 type: Transform - links: - - 25606 + - 25842 type: DeviceLinkSink - - uid: 12692 + - uid: 12740 components: - rot: 1.5707963267948966 rad pos: 43.5,37.5 parent: 2 type: Transform - links: - - 25610 + - 25846 type: DeviceLinkSink - - uid: 12693 + - uid: 12741 components: - rot: 1.5707963267948966 rad pos: 44.5,37.5 parent: 2 type: Transform - links: - - 25610 + - 25846 type: DeviceLinkSink - - uid: 12694 + - uid: 12742 components: - rot: 1.5707963267948966 rad pos: 45.5,37.5 parent: 2 type: Transform - links: - - 25610 + - 25846 type: DeviceLinkSink - - uid: 12695 + - uid: 12743 components: - pos: 46.5,37.5 parent: 2 type: Transform - links: - - 25610 + - 25846 type: DeviceLinkSink - - uid: 12696 + - uid: 12744 components: - rot: 1.5707963267948966 rad pos: 46.5,36.5 parent: 2 type: Transform - links: - - 25610 + - 25846 type: DeviceLinkSink - - uid: 12697 + - uid: 12745 components: - rot: 1.5707963267948966 rad pos: 47.5,36.5 parent: 2 type: Transform - links: - - 25610 + - 25846 type: DeviceLinkSink - - uid: 12698 + - uid: 12746 components: - rot: 3.141592653589793 rad pos: 48.5,36.5 parent: 2 type: Transform - links: - - 25610 + - 25846 type: DeviceLinkSink - - uid: 12699 + - uid: 12747 components: - rot: 3.141592653589793 rad pos: 48.5,37.5 parent: 2 type: Transform - links: - - 25610 + - 25846 type: DeviceLinkSink - - uid: 12700 + - uid: 12748 components: - rot: 1.5707963267948966 rad pos: -9.5,22.5 parent: 2 type: Transform - links: - - 25606 + - 25842 type: DeviceLinkSink - - uid: 12701 + - uid: 12749 components: - pos: -9.5,27.5 parent: 2 type: Transform - links: - - 25606 + - 25842 type: DeviceLinkSink - - uid: 12702 + - uid: 12750 components: - pos: -9.5,26.5 parent: 2 type: Transform - links: - - 25606 + - 25842 type: DeviceLinkSink - - uid: 12703 + - uid: 12751 components: - pos: -9.5,25.5 parent: 2 type: Transform - links: - - 25606 + - 25842 type: DeviceLinkSink - - uid: 12704 + - uid: 12752 components: - pos: -9.5,24.5 parent: 2 type: Transform - links: - - 25606 + - 25842 type: DeviceLinkSink - - uid: 12705 + - uid: 12753 components: - pos: -9.5,23.5 parent: 2 type: Transform - links: - - 25606 + - 25842 type: DeviceLinkSink - type: ActiveConveyor - - uid: 12706 + - uid: 12754 components: - rot: 3.141592653589793 rad pos: -10.5,22.5 parent: 2 type: Transform - links: - - 25606 + - 25842 type: DeviceLinkSink - - uid: 12707 + - uid: 12755 components: - rot: 1.5707963267948966 rad pos: -10.5,23.5 parent: 2 type: Transform - links: - - 25606 + - 25842 type: DeviceLinkSink - - uid: 12708 + - uid: 12756 components: - rot: -1.5707963267948966 rad pos: -10.5,27.5 parent: 2 type: Transform - links: - - 25606 + - 25842 type: DeviceLinkSink - - uid: 12709 + - uid: 12757 components: - rot: -1.5707963267948966 rad pos: -11.5,27.5 parent: 2 type: Transform - links: - - 25606 + - 25842 type: DeviceLinkSink - - uid: 12710 + - uid: 12758 components: - rot: 3.141592653589793 rad pos: 48.5,38.5 parent: 2 type: Transform - links: - - 25610 + - 25846 type: DeviceLinkSink - - uid: 12711 + - uid: 12759 components: - rot: 3.141592653589793 rad pos: -37.5,-99.5 parent: 2 type: Transform - links: - - 25611 - - 25612 + - 25847 + - 25848 type: DeviceLinkSink - - uid: 12712 + - uid: 12760 components: - rot: 3.141592653589793 rad pos: -37.5,-98.5 parent: 2 type: Transform - links: - - 25611 - - 25612 + - 25847 + - 25848 type: DeviceLinkSink - - uid: 12713 + - uid: 12761 components: - rot: 3.141592653589793 rad pos: -37.5,-100.5 parent: 2 type: Transform - links: - - 25611 - - 25612 + - 25847 + - 25848 type: DeviceLinkSink - - uid: 12714 + - uid: 12762 components: - rot: 3.141592653589793 rad pos: -37.5,-101.5 parent: 2 type: Transform - links: - - 25611 - - 25612 + - 25847 + - 25848 type: DeviceLinkSink - - uid: 12715 + - uid: 12763 components: - rot: 3.141592653589793 rad pos: -37.5,-102.5 parent: 2 type: Transform - links: - - 25611 - - 25612 + - 25847 + - 25848 type: DeviceLinkSink - - uid: 12716 + - uid: 12764 components: - rot: 3.141592653589793 rad pos: -37.5,-103.5 parent: 2 type: Transform - links: - - 25611 - - 25612 + - 25847 + - 25848 type: DeviceLinkSink - - uid: 12717 + - uid: 12765 components: - rot: 3.141592653589793 rad pos: -37.5,-104.5 parent: 2 type: Transform - links: - - 25611 - - 25612 + - 25847 + - 25848 type: DeviceLinkSink - - uid: 12718 + - uid: 12766 components: - rot: -1.5707963267948966 rad pos: -37.5,-105.5 parent: 2 type: Transform - links: - - 25611 - - 25612 + - 25847 + - 25848 type: DeviceLinkSink - - uid: 12719 + - uid: 12767 components: - rot: -1.5707963267948966 rad pos: -36.5,-105.5 parent: 2 type: Transform - links: - - 25611 - - 25612 + - 25847 + - 25848 type: DeviceLinkSink - - uid: 12720 + - uid: 12768 components: - rot: 3.141592653589793 rad pos: -38.5,-105.5 parent: 2 type: Transform - links: - - 25611 - - 25612 + - 25847 + - 25848 type: DeviceLinkSink - - uid: 12721 + - uid: 12769 components: - rot: 1.5707963267948966 rad pos: -38.5,-104.5 parent: 2 type: Transform - links: - - 25611 - - 25612 + - 25847 + - 25848 type: DeviceLinkSink - - uid: 12722 + - uid: 12770 components: - rot: 3.141592653589793 rad pos: -11.5,-11.5 parent: 2 type: Transform - links: - - 25613 + - 25849 type: DeviceLinkSink - - uid: 12723 + - uid: 12771 components: - rot: 3.141592653589793 rad pos: -11.5,-12.5 parent: 2 type: Transform - links: - - 25613 + - 25849 type: DeviceLinkSink - - uid: 12724 + - uid: 12772 components: - rot: 3.141592653589793 rad pos: -42.5,16.5 parent: 2 type: Transform - links: - - 25602 + - 25838 type: DeviceLinkSink - - uid: 12725 + - uid: 12773 components: - pos: -16.5,10.5 parent: 2 type: Transform - invokeCounter: 2 links: - - 25614 + - 25850 type: DeviceLinkSink - - uid: 12726 + - uid: 12774 components: - pos: -16.5,9.5 parent: 2 type: Transform - invokeCounter: 2 links: - - 25614 + - 25850 type: DeviceLinkSink - - uid: 12727 + - uid: 12775 components: - pos: -16.5,8.5 parent: 2 type: Transform - invokeCounter: 2 links: - - 25614 + - 25850 type: DeviceLinkSink - proto: ConveyorBeltAssembly entities: - - uid: 12728 + - uid: 12776 components: - pos: -27.603226,-31.351301 parent: 2 type: Transform - proto: CounterWoodFrame entities: - - uid: 12729 + - uid: 12777 components: - pos: -47.5,-64.5 parent: 2 type: Transform - proto: CrateAirlockKit entities: - - uid: 12730 + - uid: 12778 components: - pos: 44.5,-7.5 parent: 2 type: Transform - proto: CrateArtifactContainer entities: - - uid: 12731 + - uid: 12779 components: - pos: 73.5,-36.5 parent: 2 @@ -80202,12 +80451,12 @@ entities: type: EntityStorage - proto: CrateCoffin entities: - - uid: 12732 + - uid: 12780 components: - pos: -31.5,10.5 parent: 2 type: Transform - - uid: 12733 + - uid: 12781 components: - pos: -32.5,10.5 parent: 2 @@ -80230,7 +80479,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12734 + - uid: 12782 components: - pos: -31.5,8.5 parent: 2 @@ -80253,14 +80502,14 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12735 + - uid: 12783 components: - pos: -55.5,-67.5 parent: 2 type: Transform - proto: CrateEmergencyFire entities: - - uid: 12736 + - uid: 12784 components: - pos: -39.5,-15.5 parent: 2 @@ -80283,7 +80532,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12737 + - uid: 12785 components: - pos: -38.5,23.5 parent: 2 @@ -80332,44 +80581,44 @@ entities: type: PlaceableSurface - proto: CrateEmptySpawner entities: - - uid: 12738 + - uid: 12786 components: - pos: -43.5,23.5 parent: 2 type: Transform - - uid: 12739 + - uid: 12787 components: - pos: -44.5,22.5 parent: 2 type: Transform - - uid: 12740 + - uid: 12788 components: - pos: -40.5,20.5 parent: 2 type: Transform - - uid: 12741 + - uid: 12789 components: - pos: -38.5,19.5 parent: 2 type: Transform - - uid: 12742 + - uid: 12790 components: - pos: 6.5,49.5 parent: 2 type: Transform - - uid: 12743 + - uid: 12791 components: - pos: -35.5,-96.5 parent: 2 type: Transform - - uid: 12744 + - uid: 12792 components: - pos: -36.5,-96.5 parent: 2 type: Transform - proto: CrateEngineeringAMEJar entities: - - uid: 12745 + - uid: 12793 components: - pos: -50.5,-13.5 parent: 2 @@ -80394,7 +80643,7 @@ entities: type: EntityStorage - proto: CrateEngineeringAMEShielding entities: - - uid: 12746 + - uid: 12794 components: - pos: -50.5,-14.5 parent: 2 @@ -80417,7 +80666,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12747 + - uid: 12795 components: - pos: -50.5,-12.5 parent: 2 @@ -80442,7 +80691,7 @@ entities: type: EntityStorage - proto: CrateEngineeringCableLV entities: - - uid: 12748 + - uid: 12796 components: - pos: -42.5,-15.5 parent: 2 @@ -80467,7 +80716,7 @@ entities: type: EntityStorage - proto: CrateEngineeringElectricalSupplies entities: - - uid: 12749 + - uid: 12797 components: - pos: 22.5,-49.5 parent: 2 @@ -80492,24 +80741,24 @@ entities: type: EntityStorage - proto: CrateFilledSpawner entities: - - uid: 12750 + - uid: 12798 components: - pos: -31.5,-48.5 parent: 2 type: Transform - - uid: 12751 + - uid: 12799 components: - pos: 72.5,-56.5 parent: 2 type: Transform - - uid: 12752 + - uid: 12800 components: - pos: 71.5,-62.5 parent: 2 type: Transform - proto: CrateFoodCooking entities: - - uid: 12753 + - uid: 12801 components: - pos: -47.5,-80.5 parent: 2 @@ -80534,7 +80783,7 @@ entities: type: EntityStorage - proto: CrateFunBoardGames entities: - - uid: 12754 + - uid: 12802 components: - pos: 63.5,6.5 parent: 2 @@ -80559,14 +80808,14 @@ entities: type: EntityStorage - proto: CrateFunToyBox entities: - - uid: 12755 + - uid: 12803 components: - pos: 1.5,-19.5 parent: 2 type: Transform - proto: CrateHydroponicsSeeds entities: - - uid: 12756 + - uid: 12804 components: - pos: 12.5,-52.5 parent: 2 @@ -80591,7 +80840,7 @@ entities: type: EntityStorage - proto: CrateHydroponicsSeedsExotic entities: - - uid: 12757 + - uid: 12805 components: - pos: -47.5,-70.5 parent: 2 @@ -80616,21 +80865,21 @@ entities: type: EntityStorage - proto: CrateMaterialGlass entities: - - uid: 12758 + - uid: 12806 components: - pos: 43.5,-7.5 parent: 2 type: Transform - proto: CrateMindShieldImplants entities: - - uid: 12762 + - uid: 12807 components: - pos: 29.5,29.5 parent: 2 type: Transform - proto: CrateMousetrapBoxes entities: - - uid: 12759 + - uid: 12808 components: - pos: 60.5,42.5 parent: 2 @@ -80655,7 +80904,7 @@ entities: type: EntityStorage - proto: CratePirate entities: - - uid: 12760 + - uid: 12809 components: - pos: 3.5,-11.5 parent: 2 @@ -80680,7 +80929,7 @@ entities: type: EntityStorage - proto: CrateScience entities: - - uid: 12761 + - uid: 12810 components: - pos: 73.5,-34.5 parent: 2 @@ -80705,14 +80954,14 @@ entities: type: EntityStorage - proto: CrateSecurityNonlethal entities: - - uid: 22351 + - uid: 12811 components: - pos: 29.5,28.5 parent: 2 type: Transform - proto: CrateServiceJanitorialSupplies entities: - - uid: 12763 + - uid: 12812 components: - pos: -9.5,-21.5 parent: 2 @@ -80737,7 +80986,7 @@ entities: type: EntityStorage - proto: CrateServiceSmokeables entities: - - uid: 12764 + - uid: 12813 components: - pos: 56.5,59.5 parent: 2 @@ -80762,7 +81011,7 @@ entities: type: EntityStorage - proto: CrateStoneGrave entities: - - uid: 12765 + - uid: 12814 components: - pos: -32.5,4.5 parent: 2 @@ -80787,63 +81036,63 @@ entities: type: EntityStorage - proto: CrateTrashCart entities: - - uid: 12766 + - uid: 12815 components: - pos: 19.5,-49.5 parent: 2 type: Transform - - uid: 12767 + - uid: 12816 components: - pos: -38.5,-93.5 parent: 2 type: Transform - - uid: 12768 + - uid: 12817 components: - pos: -10.5,14.5 parent: 2 type: Transform - - uid: 12769 + - uid: 12818 components: - pos: -52.5,-34.5 parent: 2 type: Transform - proto: CrateTrashCartFilled entities: - - uid: 12770 + - uid: 12819 components: - pos: 1.5,-12.5 parent: 2 type: Transform - - uid: 12771 + - uid: 12820 components: - pos: 18.5,-49.5 parent: 2 type: Transform - - uid: 12772 + - uid: 12821 components: - pos: 5.5,-17.5 parent: 2 type: Transform - - uid: 12773 + - uid: 12822 components: - pos: -40.5,-3.5 parent: 2 type: Transform - proto: CrateTrashCartJani entities: - - uid: 12774 + - uid: 12823 components: - pos: -15.5,-8.5 parent: 2 type: Transform - proto: CrateWoodenGrave entities: - - uid: 12775 + - uid: 12824 components: - pos: -10.5,55.5 parent: 2 type: Transform - - uid: 12776 + - uid: 12825 components: - pos: -30.5,4.5 parent: 2 @@ -80866,39 +81115,39 @@ entities: - 0 - 0 type: EntityStorage - - uid: 12777 + - uid: 12826 components: - pos: -32.5,6.5 parent: 2 type: Transform - proto: CrayonBox entities: - - uid: 12778 + - uid: 12827 components: - pos: -29.428709,8.545935 parent: 2 type: Transform - - uid: 12779 + - uid: 12828 components: - rot: 3.141592653589793 rad pos: 54.561592,-64.4996 parent: 2 type: Transform - - uid: 12780 + - uid: 12829 components: - pos: 0.5708022,-23.573645 parent: 2 type: Transform - proto: CrayonMime entities: - - uid: 12781 + - uid: 12830 components: - pos: -28.463287,46.56972 parent: 2 type: Transform - proto: Crematorium entities: - - uid: 12782 + - uid: 12831 components: - pos: -33.5,11.5 parent: 2 @@ -80923,142 +81172,142 @@ entities: type: EntityStorage - proto: CrewMonitoringComputerCircuitboard entities: - - uid: 12783 + - uid: 12832 components: - pos: 53.35249,35.65033 parent: 2 type: Transform - - uid: 12784 + - uid: 12833 components: - pos: -12.410412,37.664482 parent: 2 type: Transform - proto: CrewMonitoringServer entities: - - uid: 12785 + - uid: 12834 components: - pos: 8.5,-58.5 parent: 2 type: Transform - proto: CrewMonitoringServerMachineCircuitboard entities: - - uid: 12786 + - uid: 12835 components: - pos: -12.176037,37.430107 parent: 2 type: Transform - proto: Crowbar entities: - - uid: 12787 + - uid: 12836 components: - pos: 73.47424,-38.51016 parent: 2 type: Transform - - uid: 12788 + - uid: 12837 components: - pos: -29.495306,-23.60064 parent: 2 type: Transform - - uid: 12789 + - uid: 12838 components: - pos: 40.56214,-53.476734 parent: 2 type: Transform - - uid: 12790 + - uid: 12839 components: - pos: -56.61051,-70.40599 parent: 2 type: Transform - - uid: 12791 + - uid: 12840 components: - pos: -23.432364,-28.473803 parent: 2 type: Transform - - uid: 12792 + - uid: 12841 components: - pos: -36.564224,18.558977 parent: 2 type: Transform - - uid: 12793 + - uid: 12842 components: - rot: 6.283185307179586 rad pos: 57.539654,47.47334 parent: 2 type: Transform - - uid: 12794 + - uid: 12843 components: - pos: -9.421157,-15.518739 parent: 2 type: Transform - - uid: 12795 + - uid: 12844 components: - pos: 62.5,6.5 parent: 2 type: Transform - proto: CrowbarRed entities: - - uid: 12796 + - uid: 12845 components: - pos: 52.637024,11.413784 parent: 2 type: Transform - - uid: 12797 + - uid: 12846 components: - pos: -16.370653,65.49348 parent: 2 type: Transform - - uid: 12798 + - uid: 12847 components: - pos: 2.5771694,-21.302826 parent: 2 type: Transform - proto: CryoPod entities: - - uid: 12799 + - uid: 12848 components: - pos: -24.5,-59.5 parent: 2 type: Transform - proto: CryoxadoneBeakerSmall entities: - - uid: 12800 + - uid: 12849 components: - pos: -26.756777,-59.261105 parent: 2 type: Transform - proto: CultAltarSpawner entities: - - uid: 12801 + - uid: 12850 components: - pos: -56.5,-62.5 parent: 2 type: Transform - proto: d10Dice entities: - - uid: 12803 + - uid: 12851 components: - pos: 9.458234,-7.2284737 parent: 2 type: Transform - - uid: 12804 + - uid: 12852 components: - pos: -29.44911,-46.43667 parent: 2 type: Transform - proto: d6Dice entities: - - uid: 12805 + - uid: 12853 components: - pos: -1.2845753,31.100819 parent: 2 type: Transform - - uid: 12806 + - uid: 12854 components: - rot: 1.5707963267948966 rad pos: 54.383816,29.301033 parent: 2 type: Transform - - uid: 12807 + - uid: 12855 components: - rot: 1.5707963267948966 rad pos: 54.165066,28.926033 @@ -81066,14 +81315,14 @@ entities: type: Transform - proto: d8Dice entities: - - uid: 12808 + - uid: 12856 components: - pos: 10.036359,-7.0722237 parent: 2 type: Transform - proto: DefibrillatorCabinet entities: - - uid: 12809 + - uid: 12857 components: - rot: 1.5707963267948966 rad pos: 19.5,21.5 @@ -81081,95 +81330,95 @@ entities: type: Transform - proto: DefibrillatorCabinetFilled entities: - - uid: 12810 + - uid: 12858 components: - rot: 1.5707963267948966 rad pos: -26.5,-72.5 parent: 2 type: Transform - - uid: 12811 + - uid: 12859 components: - pos: 44.5,16.5 parent: 2 type: Transform - - uid: 12812 + - uid: 12860 components: - pos: -1.5,-58.5 parent: 2 type: Transform - - uid: 12813 + - uid: 12861 components: - pos: -4.5,-58.5 parent: 2 type: Transform - - uid: 12814 + - uid: 12862 components: - pos: -7.5,-58.5 parent: 2 type: Transform - - uid: 12815 + - uid: 12863 components: - rot: -1.5707963267948966 rad pos: -30.5,-38.5 parent: 2 type: Transform - - uid: 12816 + - uid: 12864 components: - pos: -32.5,-8.5 parent: 2 type: Transform - - uid: 12817 + - uid: 12865 components: - pos: -28.5,20.5 parent: 2 type: Transform - - uid: 12818 + - uid: 12866 components: - pos: -9.5,47.5 parent: 2 type: Transform - - uid: 12819 + - uid: 12867 components: - rot: -1.5707963267948966 rad pos: 33.5,18.5 parent: 2 type: Transform - - uid: 12820 + - uid: 12868 components: - pos: -5.5,-51.5 parent: 2 type: Transform - - uid: 12821 + - uid: 12869 components: - pos: 29.5,-3.5 parent: 2 type: Transform - - uid: 12822 + - uid: 12870 components: - pos: 33.5,-70.5 parent: 2 type: Transform - - uid: 12823 + - uid: 12871 components: - pos: 56.5,-43.5 parent: 2 type: Transform - - uid: 12824 + - uid: 12872 components: - pos: 6.5,-24.5 parent: 2 type: Transform - - uid: 12825 + - uid: 12873 components: - pos: 32.5,-23.5 parent: 2 type: Transform - - uid: 12826 + - uid: 12874 components: - pos: -48.5,45.5 parent: 2 type: Transform - - uid: 12827 + - uid: 12875 components: - rot: -1.5707963267948966 rad pos: 66.5,-10.5 @@ -81177,73 +81426,73 @@ entities: type: Transform - proto: DeployableBarrier entities: - - uid: 12828 + - uid: 12876 components: - pos: 29.5,25.5 parent: 2 type: Transform - - uid: 12829 + - uid: 12877 components: - pos: -16.5,27.5 parent: 2 type: Transform - - uid: 12830 + - uid: 12878 components: - pos: 62.5,7.5 parent: 2 type: Transform - proto: DeskBell entities: - - uid: 12831 + - uid: 12879 components: - pos: 26.493649,19.578499 parent: 2 type: Transform missingComponents: - Item - - uid: 12832 + - uid: 12880 components: - pos: -26.393543,22.737104 parent: 2 type: Transform missingComponents: - Item - - uid: 12833 + - uid: 12881 components: - pos: 2.482698,4.566377 parent: 2 type: Transform missingComponents: - Item - - uid: 12834 + - uid: 12882 components: - pos: 7.4455647,7.463886 parent: 2 type: Transform missingComponents: - Item - - uid: 12835 + - uid: 12883 components: - pos: 15.491525,13.615058 parent: 2 type: Transform missingComponents: - Item - - uid: 12836 + - uid: 12884 components: - pos: -2.9507003,-48.39704 parent: 2 type: Transform missingComponents: - Item - - uid: 12837 + - uid: 12885 components: - pos: 42.281975,-40.51448 parent: 2 type: Transform missingComponents: - Item - - uid: 12838 + - uid: 12886 components: - pos: 51.51352,-39.9676 parent: 2 @@ -81252,688 +81501,688 @@ entities: - Item - proto: DiceBag entities: - - uid: 12839 + - uid: 12887 components: - pos: 10.645734,-7.4315987 parent: 2 type: Transform - - uid: 12840 + - uid: 12888 components: - pos: 23.269382,-29.34838 parent: 2 type: Transform - - uid: 12841 + - uid: 12889 components: - pos: -0.45645034,30.694569 parent: 2 type: Transform - - uid: 12842 + - uid: 12890 components: - pos: -16.724815,61.696495 parent: 2 type: Transform - - uid: 12843 + - uid: 12891 components: - pos: -18.55294,62.55587 parent: 2 type: Transform - proto: DiseaseDiagnoser entities: - - uid: 12844 + - uid: 12892 components: - pos: -22.5,-75.5 parent: 2 type: Transform - proto: DisposalBend entities: - - uid: 12845 + - uid: 12893 components: - rot: 1.5707963267948966 rad pos: -0.5,1.5 parent: 2 type: Transform - - uid: 12846 + - uid: 12894 components: - pos: 21.5,-29.5 parent: 2 type: Transform - - uid: 12847 + - uid: 12895 components: - rot: 1.5707963267948966 rad pos: -19.5,-60.5 parent: 2 type: Transform - - uid: 12848 + - uid: 12896 components: - pos: 34.5,8.5 parent: 2 type: Transform - - uid: 12849 + - uid: 12897 components: - rot: 1.5707963267948966 rad pos: -14.5,-9.5 parent: 2 type: Transform - - uid: 12850 + - uid: 12898 components: - rot: 1.5707963267948966 rad pos: 16.5,-18.5 parent: 2 type: Transform - - uid: 12851 + - uid: 12899 components: - pos: 0.5,0.5 parent: 2 type: Transform - - uid: 12852 + - uid: 12900 components: - rot: 1.5707963267948966 rad pos: 0.5,2.5 parent: 2 type: Transform - - uid: 12853 + - uid: 12901 components: - rot: 3.141592653589793 rad pos: 8.5,13.5 parent: 2 type: Transform - - uid: 12854 + - uid: 12902 components: - rot: 1.5707963267948966 rad pos: 17.5,7.5 parent: 2 type: Transform - - uid: 12855 + - uid: 12903 components: - rot: -1.5707963267948966 rad pos: 22.5,7.5 parent: 2 type: Transform - - uid: 12856 + - uid: 12904 components: - rot: 1.5707963267948966 rad pos: 22.5,8.5 parent: 2 type: Transform - - uid: 12857 + - uid: 12905 components: - rot: -1.5707963267948966 rad pos: 20.5,-25.5 parent: 2 type: Transform - - uid: 12858 + - uid: 12906 components: - pos: 36.5,-17.5 parent: 2 type: Transform - - uid: 12859 + - uid: 12907 components: - pos: 1.5,-53.5 parent: 2 type: Transform - - uid: 12860 + - uid: 12908 components: - rot: -1.5707963267948966 rad pos: 34.5,-6.5 parent: 2 type: Transform - - uid: 12861 + - uid: 12909 components: - pos: 18.5,-49.5 parent: 2 type: Transform - - uid: 12862 + - uid: 12910 components: - rot: 3.141592653589793 rad pos: 15.5,-45.5 parent: 2 type: Transform - - uid: 12863 + - uid: 12911 components: - rot: 3.141592653589793 rad pos: -4.5,-12.5 parent: 2 type: Transform - - uid: 12864 + - uid: 12912 components: - rot: 1.5707963267948966 rad pos: -15.5,-53.5 parent: 2 type: Transform - - uid: 12865 + - uid: 12913 components: - rot: -1.5707963267948966 rad pos: -15.5,-54.5 parent: 2 type: Transform - - uid: 12866 + - uid: 12914 components: - rot: 1.5707963267948966 rad pos: -17.5,-54.5 parent: 2 type: Transform - - uid: 12867 + - uid: 12915 components: - pos: 18.5,1.5 parent: 2 type: Transform - - uid: 12868 + - uid: 12916 components: - rot: 3.141592653589793 rad pos: 10.5,-3.5 parent: 2 type: Transform - - uid: 12869 + - uid: 12917 components: - rot: -1.5707963267948966 rad pos: 0.5,1.5 parent: 2 type: Transform - - uid: 12870 + - uid: 12918 components: - rot: 3.141592653589793 rad pos: 0.5,-0.5 parent: 2 type: Transform - - uid: 12871 + - uid: 12919 components: - pos: 12.5,13.5 parent: 2 type: Transform - - uid: 12872 + - uid: 12920 components: - rot: 3.141592653589793 rad pos: 22.5,-11.5 parent: 2 type: Transform - - uid: 12873 + - uid: 12921 components: - rot: 3.141592653589793 rad pos: 18.5,-6.5 parent: 2 type: Transform - - uid: 12874 + - uid: 12922 components: - rot: 3.141592653589793 rad pos: -23.5,-84.5 parent: 2 type: Transform - - uid: 12875 + - uid: 12923 components: - rot: -1.5707963267948966 rad pos: 17.5,0.5 parent: 2 type: Transform - - uid: 12876 + - uid: 12924 components: - pos: 17.5,-45.5 parent: 2 type: Transform - - uid: 12877 + - uid: 12925 components: - rot: -1.5707963267948966 rad pos: 24.5,-18.5 parent: 2 type: Transform - - uid: 12878 + - uid: 12926 components: - rot: -1.5707963267948966 rad pos: -17.5,-60.5 parent: 2 type: Transform - - uid: 12879 + - uid: 12927 components: - rot: -1.5707963267948966 rad pos: 13.5,-0.5 parent: 2 type: Transform - - uid: 12880 + - uid: 12928 components: - rot: 1.5707963267948966 rad pos: -23.5,-73.5 parent: 2 type: Transform - - uid: 12881 + - uid: 12929 components: - pos: 15.5,19.5 parent: 2 type: Transform - - uid: 12882 + - uid: 12930 components: - pos: -3.5,-12.5 parent: 2 type: Transform - - uid: 12883 + - uid: 12931 components: - pos: 15.5,-25.5 parent: 2 type: Transform - - uid: 12884 + - uid: 12932 components: - rot: 3.141592653589793 rad pos: 17.5,-49.5 parent: 2 type: Transform - - uid: 12885 + - uid: 12933 components: - rot: -1.5707963267948966 rad pos: 34.5,16.5 parent: 2 type: Transform - - uid: 12886 + - uid: 12934 components: - pos: 29.5,17.5 parent: 2 type: Transform - - uid: 12887 + - uid: 12935 components: - rot: 3.141592653589793 rad pos: 29.5,16.5 parent: 2 type: Transform - - uid: 12888 + - uid: 12936 components: - pos: 41.5,6.5 parent: 2 type: Transform - - uid: 12889 + - uid: 12937 components: - rot: 3.141592653589793 rad pos: 52.5,-13.5 parent: 2 type: Transform - - uid: 12890 + - uid: 12938 components: - pos: 54.5,-13.5 parent: 2 type: Transform - - uid: 12891 + - uid: 12939 components: - pos: 49.5,-43.5 parent: 2 type: Transform - - uid: 12892 + - uid: 12940 components: - rot: -1.5707963267948966 rad pos: 49.5,-50.5 parent: 2 type: Transform - - uid: 12893 + - uid: 12941 components: - pos: 67.5,-45.5 parent: 2 type: Transform - - uid: 12894 + - uid: 12942 components: - pos: 49.5,-55.5 parent: 2 type: Transform - - uid: 12895 + - uid: 12943 components: - rot: -1.5707963267948966 rad pos: -6.5,-66.5 parent: 2 type: Transform - - uid: 12896 + - uid: 12944 components: - rot: 3.141592653589793 rad pos: -23.5,-15.5 parent: 2 type: Transform - - uid: 12897 + - uid: 12945 components: - rot: 3.141592653589793 rad pos: 25.5,-60.5 parent: 2 type: Transform - - uid: 12898 + - uid: 12946 components: - pos: 39.5,-60.5 parent: 2 type: Transform - - uid: 12899 + - uid: 12947 components: - rot: 3.141592653589793 rad pos: -19.5,-43.5 parent: 2 type: Transform - - uid: 12900 + - uid: 12948 components: - rot: -1.5707963267948966 rad pos: 39.5,-73.5 parent: 2 type: Transform - - uid: 12901 + - uid: 12949 components: - rot: -1.5707963267948966 rad pos: -13.5,-6.5 parent: 2 type: Transform - - uid: 12902 + - uid: 12950 components: - pos: -13.5,8.5 parent: 2 type: Transform - - uid: 12903 + - uid: 12951 components: - rot: -1.5707963267948966 rad pos: -19.5,6.5 parent: 2 type: Transform - - uid: 12904 + - uid: 12952 components: - rot: 3.141592653589793 rad pos: -25.5,-6.5 parent: 2 type: Transform - - uid: 12905 + - uid: 12953 components: - rot: 3.141592653589793 rad pos: -32.5,-13.5 parent: 2 type: Transform - - uid: 12906 + - uid: 12954 components: - pos: -32.5,-10.5 parent: 2 type: Transform - - uid: 12907 + - uid: 12955 components: - rot: 3.141592653589793 rad pos: -36.5,-10.5 parent: 2 type: Transform - - uid: 12908 + - uid: 12956 components: - pos: -36.5,-5.5 parent: 2 type: Transform - - uid: 12909 + - uid: 12957 components: - rot: 3.141592653589793 rad pos: -38.5,-5.5 parent: 2 type: Transform - - uid: 12910 + - uid: 12958 components: - rot: 1.5707963267948966 rad pos: -19.5,-75.5 parent: 2 type: Transform - - uid: 12911 + - uid: 12959 components: - rot: -1.5707963267948966 rad pos: -19.5,-77.5 parent: 2 type: Transform - - uid: 12912 + - uid: 12960 components: - rot: 1.5707963267948966 rad pos: -36.5,-77.5 parent: 2 type: Transform - - uid: 12913 + - uid: 12961 components: - rot: 3.141592653589793 rad pos: -42.5,23.5 parent: 2 type: Transform - - uid: 12914 + - uid: 12962 components: - rot: 1.5707963267948966 rad pos: -42.5,19.5 parent: 2 type: Transform - - uid: 12915 + - uid: 12963 components: - rot: 1.5707963267948966 rad pos: -45.5,5.5 parent: 2 type: Transform - - uid: 12916 + - uid: 12964 components: - rot: 3.141592653589793 rad pos: -45.5,-0.5 parent: 2 type: Transform - - uid: 12917 + - uid: 12965 components: - pos: 2.5,-61.5 parent: 2 type: Transform - - uid: 12918 + - uid: 12966 components: - rot: 1.5707963267948966 rad pos: -13.5,-61.5 parent: 2 type: Transform - - uid: 12919 + - uid: 12967 components: - rot: -1.5707963267948966 rad pos: -13.5,-67.5 parent: 2 type: Transform - - uid: 12920 + - uid: 12968 components: - rot: -1.5707963267948966 rad pos: -12.5,5.5 parent: 2 type: Transform - - uid: 12921 + - uid: 12969 components: - rot: -1.5707963267948966 rad pos: -45.5,11.5 parent: 2 type: Transform - - uid: 12922 + - uid: 12970 components: - rot: 1.5707963267948966 rad pos: -45.5,18.5 parent: 2 type: Transform - - uid: 12923 + - uid: 12971 components: - rot: -1.5707963267948966 rad pos: 20.5,-40.5 parent: 2 type: Transform - - uid: 12924 + - uid: 12972 components: - rot: 1.5707963267948966 rad pos: 19.5,-40.5 parent: 2 type: Transform - - uid: 12925 + - uid: 12973 components: - rot: 1.5707963267948966 rad pos: -19.5,29.5 parent: 2 type: Transform - - uid: 12926 + - uid: 12974 components: - rot: -1.5707963267948966 rad pos: -15.5,29.5 parent: 2 type: Transform - - uid: 12927 + - uid: 12975 components: - rot: 3.141592653589793 rad pos: -17.5,44.5 parent: 2 type: Transform - - uid: 12928 + - uid: 12976 components: - pos: -4.5,44.5 parent: 2 type: Transform - - uid: 12929 + - uid: 12977 components: - pos: -13.5,50.5 parent: 2 type: Transform - - uid: 12930 + - uid: 12978 components: - rot: 1.5707963267948966 rad pos: -17.5,50.5 parent: 2 type: Transform - - uid: 12931 + - uid: 12979 components: - rot: -1.5707963267948966 rad pos: 75.5,-47.5 parent: 2 type: Transform - - uid: 12932 + - uid: 12980 components: - pos: -5.5,-13.5 parent: 2 type: Transform - - uid: 12933 + - uid: 12981 components: - rot: 3.141592653589793 rad pos: -10.5,-13.5 parent: 2 type: Transform - - uid: 12934 + - uid: 12982 components: - rot: 3.141592653589793 rad pos: -18.5,-14.5 parent: 2 type: Transform - - uid: 12935 + - uid: 12983 components: - rot: -1.5707963267948966 rad pos: -12.5,-14.5 parent: 2 type: Transform - - uid: 12936 + - uid: 12984 components: - pos: -18.5,-4.5 parent: 2 type: Transform - - uid: 12937 + - uid: 12985 components: - rot: 3.141592653589793 rad pos: -24.5,-4.5 parent: 2 type: Transform - - uid: 12938 + - uid: 12986 components: - rot: 1.5707963267948966 rad pos: -24.5,8.5 parent: 2 type: Transform - - uid: 12939 + - uid: 12987 components: - rot: -1.5707963267948966 rad pos: -20.5,8.5 parent: 2 type: Transform - - uid: 12940 + - uid: 12988 components: - pos: -20.5,20.5 parent: 2 type: Transform - - uid: 12941 + - uid: 12989 components: - rot: 1.5707963267948966 rad pos: -25.5,20.5 parent: 2 type: Transform - - uid: 12942 + - uid: 12990 components: - rot: -1.5707963267948966 rad pos: -25.5,19.5 parent: 2 type: Transform - - uid: 12943 + - uid: 12991 components: - rot: 1.5707963267948966 rad pos: -46.5,11.5 parent: 2 type: Transform - - uid: 12944 + - uid: 12992 components: - rot: 3.141592653589793 rad pos: -46.5,0.5 parent: 2 type: Transform - - uid: 12945 + - uid: 12993 components: - pos: -26.5,0.5 parent: 2 type: Transform - - uid: 12946 + - uid: 12994 components: - rot: 3.141592653589793 rad pos: -26.5,-5.5 parent: 2 type: Transform - - uid: 12947 + - uid: 12995 components: - pos: -20.5,-5.5 parent: 2 type: Transform - - uid: 12948 + - uid: 12996 components: - rot: 3.141592653589793 rad pos: -20.5,-25.5 parent: 2 type: Transform - - uid: 12949 + - uid: 12997 components: - rot: -1.5707963267948966 rad pos: 30.5,-86.5 parent: 2 type: Transform - - uid: 12950 + - uid: 12998 components: - rot: 1.5707963267948966 rad pos: 24.5,-73.5 parent: 2 type: Transform - - uid: 12951 + - uid: 12999 components: - rot: 3.141592653589793 rad pos: 15.5,17.5 parent: 2 type: Transform - - uid: 12952 + - uid: 13000 components: - pos: -67.5,-41.5 parent: 2 type: Transform - - uid: 12953 + - uid: 13001 components: - rot: 3.141592653589793 rad pos: -67.5,-42.5 parent: 2 type: Transform - - uid: 12954 + - uid: 13002 components: - rot: -1.5707963267948966 rad pos: 12.5,2.5 parent: 2 type: Transform - - uid: 12955 + - uid: 13003 components: - rot: 1.5707963267948966 rad pos: 13.5,0.5 parent: 2 type: Transform - - uid: 12956 + - uid: 13004 components: - rot: 3.141592653589793 rad pos: -43.5,-38.5 parent: 2 type: Transform - - uid: 12957 + - uid: 13005 components: - rot: 3.141592653589793 rad pos: 3.5,-3.5 parent: 2 type: Transform - - uid: 12958 + - uid: 13006 components: - rot: 3.141592653589793 rad pos: 3.5,-5.5 @@ -81941,159 +82190,159 @@ entities: type: Transform - proto: DisposalJunction entities: - - uid: 12959 + - uid: 13007 components: - rot: -1.5707963267948966 rad pos: 19.5,-43.5 parent: 2 type: Transform - - uid: 12960 + - uid: 13008 components: - rot: -1.5707963267948966 rad pos: 25.5,8.5 parent: 2 type: Transform - - uid: 12961 + - uid: 13009 components: - rot: 1.5707963267948966 rad pos: -7.5,0.5 parent: 2 type: Transform - - uid: 12962 + - uid: 13010 components: - rot: -1.5707963267948966 rad pos: 6.5,2.5 parent: 2 type: Transform - - uid: 12963 + - uid: 13011 components: - rot: -1.5707963267948966 rad pos: -0.5,0.5 parent: 2 type: Transform - - uid: 12964 + - uid: 13012 components: - rot: 3.141592653589793 rad pos: 24.5,-10.5 parent: 2 type: Transform - - uid: 12965 + - uid: 13013 components: - rot: -1.5707963267948966 rad pos: 18.5,-29.5 parent: 2 type: Transform - - uid: 12966 + - uid: 13014 components: - rot: 3.141592653589793 rad pos: 34.5,6.5 parent: 2 type: Transform - - uid: 12967 + - uid: 13015 components: - rot: 1.5707963267948966 rad pos: -13.5,-43.5 parent: 2 type: Transform - - uid: 12968 + - uid: 13016 components: - rot: 1.5707963267948966 rad pos: -5.5,-53.5 parent: 2 type: Transform - - uid: 12969 + - uid: 13017 components: - rot: 3.141592653589793 rad pos: 16.5,-29.5 parent: 2 type: Transform - - uid: 12970 + - uid: 13018 components: - rot: -1.5707963267948966 rad pos: 18.5,7.5 parent: 2 type: Transform - - uid: 12971 + - uid: 13019 components: - rot: 1.5707963267948966 rad pos: -4.5,-27.5 parent: 2 type: Transform - - uid: 12972 + - uid: 13020 components: - rot: -1.5707963267948966 rad pos: 36.5,-43.5 parent: 2 type: Transform - - uid: 12973 + - uid: 13021 components: - rot: -1.5707963267948966 rad pos: 41.5,1.5 parent: 2 type: Transform - - uid: 12974 + - uid: 13022 components: - rot: -1.5707963267948966 rad pos: 46.5,-43.5 parent: 2 type: Transform - - uid: 12975 + - uid: 13023 components: - rot: 3.141592653589793 rad pos: 49.5,-45.5 parent: 2 type: Transform - - uid: 12976 + - uid: 13024 components: - rot: 3.141592653589793 rad pos: 49.5,-47.5 parent: 2 type: Transform - - uid: 12977 + - uid: 13025 components: - rot: 3.141592653589793 rad pos: 67.5,-47.5 parent: 2 type: Transform - - uid: 12978 + - uid: 13026 components: - rot: 1.5707963267948966 rad pos: -23.5,-13.5 parent: 2 type: Transform - - uid: 12979 + - uid: 13027 components: - pos: -19.5,-13.5 parent: 2 type: Transform - - uid: 12980 + - uid: 13028 components: - pos: -25.5,-0.5 parent: 2 type: Transform - - uid: 12981 + - uid: 13029 components: - pos: -19.5,23.5 parent: 2 type: Transform - - uid: 12982 + - uid: 13030 components: - rot: 1.5707963267948966 rad pos: -6.5,-61.5 parent: 2 type: Transform - - uid: 12983 + - uid: 13031 components: - pos: -15.5,37.5 parent: 2 type: Transform - - uid: 12984 + - uid: 13032 components: - rot: 1.5707963267948966 rad pos: 30.5,-73.5 parent: 2 type: Transform - - uid: 12985 + - uid: 13033 components: - rot: -1.5707963267948966 rad pos: 2.5,-27.5 @@ -82101,150 +82350,150 @@ entities: type: Transform - proto: DisposalJunctionFlipped entities: - - uid: 12986 + - uid: 13034 components: - rot: 1.5707963267948966 rad pos: -9.5,0.5 parent: 2 type: Transform - - uid: 12987 + - uid: 13035 components: - rot: -1.5707963267948966 rad pos: -0.5,-43.5 parent: 2 type: Transform - - uid: 12988 + - uid: 13036 components: - pos: 24.5,-17.5 parent: 2 type: Transform - - uid: 12989 + - uid: 13037 components: - rot: 1.5707963267948966 rad pos: 21.5,17.5 parent: 2 type: Transform - - uid: 12990 + - uid: 13038 components: - rot: -1.5707963267948966 rad pos: 3.5,-0.5 parent: 2 type: Transform - - uid: 12991 + - uid: 13039 components: - pos: 36.5,-18.5 parent: 2 type: Transform - - uid: 12992 + - uid: 13040 components: - pos: 16.5,-25.5 parent: 2 type: Transform - - uid: 12993 + - uid: 13041 components: - rot: 1.5707963267948966 rad pos: -5.5,-25.5 parent: 2 type: Transform - - uid: 12994 + - uid: 13042 components: - rot: 3.141592653589793 rad pos: -0.5,-45.5 parent: 2 type: Transform - - uid: 12995 + - uid: 13043 components: - pos: 34.5,1.5 parent: 2 type: Transform - - uid: 12996 + - uid: 13044 components: - rot: 3.141592653589793 rad pos: -17.5,-57.5 parent: 2 type: Transform - - uid: 12997 + - uid: 13045 components: - pos: 12.5,5.5 parent: 2 type: Transform - - uid: 12998 + - uid: 13046 components: - rot: -1.5707963267948966 rad pos: 10.5,-0.5 parent: 2 type: Transform - - uid: 12999 + - uid: 13047 components: - rot: -1.5707963267948966 rad pos: 6.5,-0.5 parent: 2 type: Transform - - uid: 13000 + - uid: 13048 components: - rot: -1.5707963267948966 rad pos: 24.5,-6.5 parent: 2 type: Transform - - uid: 13001 + - uid: 13049 components: - rot: 3.141592653589793 rad pos: 24.5,-11.5 parent: 2 type: Transform - - uid: 13002 + - uid: 13050 components: - rot: 3.141592653589793 rad pos: -4.5,-33.5 parent: 2 type: Transform - - uid: 13003 + - uid: 13051 components: - rot: -1.5707963267948966 rad pos: 6.5,-43.5 parent: 2 type: Transform - - uid: 13004 + - uid: 13052 components: - pos: 17.5,1.5 parent: 2 type: Transform - - uid: 13005 + - uid: 13053 components: - rot: 1.5707963267948966 rad pos: -10.5,-27.5 parent: 2 type: Transform - - uid: 13006 + - uid: 13054 components: - rot: -1.5707963267948966 rad pos: 25.5,-43.5 parent: 2 type: Transform - - uid: 13007 + - uid: 13055 components: - rot: 3.141592653589793 rad pos: -23.5,-75.5 parent: 2 type: Transform - - uid: 13008 + - uid: 13056 components: - rot: -1.5707963267948966 rad pos: 29.5,-60.5 parent: 2 type: Transform - - uid: 13009 + - uid: 13057 components: - pos: -13.5,5.5 parent: 2 type: Transform - - uid: 13010 + - uid: 13058 components: - rot: 1.5707963267948966 rad pos: -22.5,23.5 parent: 2 type: Transform - - uid: 13011 + - uid: 13059 components: - rot: -1.5707963267948966 rad pos: -3.5,-61.5 @@ -82252,6497 +82501,6497 @@ entities: type: Transform - proto: DisposalMachineFrame entities: - - uid: 13012 + - uid: 13060 components: - pos: 46.5,44.5 parent: 2 type: Transform - - uid: 13013 + - uid: 13061 components: - pos: -57.5,-41.5 parent: 2 type: Transform - - uid: 13014 + - uid: 13062 components: - pos: -22.5,-24.5 parent: 2 type: Transform - - uid: 13015 + - uid: 13063 components: - pos: -19.5,-99.5 parent: 2 type: Transform - proto: DisposalPipe entities: - - uid: 13016 + - uid: 13064 components: - rot: 3.141592653589793 rad pos: 2.5,-25.5 parent: 2 type: Transform - - uid: 13017 + - uid: 13065 components: - rot: 3.141592653589793 rad pos: 2.5,-26.5 parent: 2 type: Transform - - uid: 13018 + - uid: 13066 components: - rot: 3.141592653589793 rad pos: 2.5,-24.5 parent: 2 type: Transform - - uid: 13019 + - uid: 13067 components: - rot: 1.5707963267948966 rad pos: -6.5,-9.5 parent: 2 type: Transform - - uid: 13020 + - uid: 13068 components: - pos: 12.5,6.5 parent: 2 type: Transform - - uid: 13021 + - uid: 13069 components: - rot: -1.5707963267948966 rad pos: 1.5,2.5 parent: 2 type: Transform - - uid: 13022 + - uid: 13070 components: - pos: 36.5,-25.5 parent: 2 type: Transform - - uid: 13023 + - uid: 13071 components: - pos: 36.5,-22.5 parent: 2 type: Transform - - uid: 13024 + - uid: 13072 components: - rot: -1.5707963267948966 rad pos: 25.5,-6.5 parent: 2 type: Transform - - uid: 13025 + - uid: 13073 components: - pos: 16.5,-42.5 parent: 2 type: Transform - - uid: 13026 + - uid: 13074 components: - pos: 16.5,-41.5 parent: 2 type: Transform - - uid: 13027 + - uid: 13075 components: - rot: -1.5707963267948966 rad pos: 20.5,-43.5 parent: 2 type: Transform - - uid: 13028 + - uid: 13076 components: - rot: 1.5707963267948966 rad pos: 13.5,-43.5 parent: 2 type: Transform - - uid: 13029 + - uid: 13077 components: - rot: 1.5707963267948966 rad pos: 12.5,-43.5 parent: 2 type: Transform - - uid: 13030 + - uid: 13078 components: - rot: 1.5707963267948966 rad pos: 8.5,-43.5 parent: 2 type: Transform - - uid: 13031 + - uid: 13079 components: - rot: 1.5707963267948966 rad pos: 4.5,-43.5 parent: 2 type: Transform - - uid: 13032 + - uid: 13080 components: - rot: -1.5707963267948966 rad pos: 0.5,-43.5 parent: 2 type: Transform - - uid: 13033 + - uid: 13081 components: - rot: -1.5707963267948966 rad pos: 17.5,-29.5 parent: 2 type: Transform - - uid: 13034 + - uid: 13082 components: - pos: 21.5,-33.5 parent: 2 type: Transform - - uid: 13035 + - uid: 13083 components: - rot: 1.5707963267948966 rad pos: -13.5,-27.5 parent: 2 type: Transform - - uid: 13036 + - uid: 13084 components: - rot: -1.5707963267948966 rad pos: 31.5,-17.5 parent: 2 type: Transform - - uid: 13037 + - uid: 13085 components: - pos: 21.5,-30.5 parent: 2 type: Transform - - uid: 13038 + - uid: 13086 components: - pos: 21.5,-31.5 parent: 2 type: Transform - - uid: 13039 + - uid: 13087 components: - rot: -1.5707963267948966 rad pos: 33.5,-17.5 parent: 2 type: Transform - - uid: 13040 + - uid: 13088 components: - rot: -1.5707963267948966 rad pos: 32.5,8.5 parent: 2 type: Transform - - uid: 13041 + - uid: 13089 components: - rot: -1.5707963267948966 rad pos: -6.5,-43.5 parent: 2 type: Transform - - uid: 13042 + - uid: 13090 components: - rot: -1.5707963267948966 rad pos: -8.5,-43.5 parent: 2 type: Transform - - uid: 13043 + - uid: 13091 components: - pos: -13.5,-45.5 parent: 2 type: Transform - - uid: 13044 + - uid: 13092 components: - pos: -17.5,-55.5 parent: 2 type: Transform - - uid: 13045 + - uid: 13093 components: - rot: -1.5707963267948966 rad pos: -18.5,-60.5 parent: 2 type: Transform - - uid: 13046 + - uid: 13094 components: - pos: -19.5,-61.5 parent: 2 type: Transform - - uid: 13047 + - uid: 13095 components: - rot: 1.5707963267948966 rad pos: -6.5,-53.5 parent: 2 type: Transform - - uid: 13048 + - uid: 13096 components: - rot: -1.5707963267948966 rad pos: 11.5,-0.5 parent: 2 type: Transform - - uid: 13049 + - uid: 13097 components: - rot: 1.5707963267948966 rad pos: 8.5,2.5 parent: 2 type: Transform - - uid: 13050 + - uid: 13098 components: - rot: 3.141592653589793 rad pos: -4.5,-1.5 parent: 2 type: Transform - - uid: 13051 + - uid: 13099 components: - rot: 3.141592653589793 rad pos: 8.5,14.5 parent: 2 type: Transform - - uid: 13052 + - uid: 13100 components: - pos: 19.5,-41.5 parent: 2 type: Transform - - uid: 13053 + - uid: 13101 components: - pos: -9.5,1.5 parent: 2 type: Transform - - uid: 13054 + - uid: 13102 components: - pos: -9.5,4.5 parent: 2 type: Transform - - uid: 13055 + - uid: 13103 components: - pos: -9.5,3.5 parent: 2 type: Transform - - uid: 13056 + - uid: 13104 components: - pos: -9.5,2.5 parent: 2 type: Transform - - uid: 13057 + - uid: 13105 components: - rot: -1.5707963267948966 rad pos: 10.5,13.5 parent: 2 type: Transform - - uid: 13058 + - uid: 13106 components: - pos: 24.5,-9.5 parent: 2 type: Transform - - uid: 13059 + - uid: 13107 components: - rot: 1.5707963267948966 rad pos: 23.5,-6.5 parent: 2 type: Transform - - uid: 13060 + - uid: 13108 components: - pos: 24.5,-7.5 parent: 2 type: Transform - - uid: 13061 + - uid: 13109 components: - rot: -1.5707963267948966 rad pos: 3.5,2.5 parent: 2 type: Transform - - uid: 13062 + - uid: 13110 components: - rot: 1.5707963267948966 rad pos: -5.5,0.5 parent: 2 type: Transform - - uid: 13063 + - uid: 13111 components: - pos: -23.5,-74.5 parent: 2 type: Transform - - uid: 13064 + - uid: 13112 components: - pos: 12.5,11.5 parent: 2 type: Transform - - uid: 13065 + - uid: 13113 components: - rot: -1.5707963267948966 rad pos: -14.5,-43.5 parent: 2 type: Transform - - uid: 13066 + - uid: 13114 components: - rot: 1.5707963267948966 rad pos: -8.5,0.5 parent: 2 type: Transform - - uid: 13067 + - uid: 13115 components: - rot: 1.5707963267948966 rad pos: -8.5,-27.5 parent: 2 type: Transform - - uid: 13068 + - uid: 13116 components: - rot: 1.5707963267948966 rad pos: -9.5,-9.5 parent: 2 type: Transform - - uid: 13069 + - uid: 13117 components: - rot: 1.5707963267948966 rad pos: -2.5,0.5 parent: 2 type: Transform - - uid: 13070 + - uid: 13118 components: - rot: -1.5707963267948966 rad pos: 21.5,7.5 parent: 2 type: Transform - - uid: 13071 + - uid: 13119 components: - pos: 36.5,-24.5 parent: 2 type: Transform - - uid: 13072 + - uid: 13120 components: - pos: 34.5,-4.5 parent: 2 type: Transform - - uid: 13073 + - uid: 13121 components: - pos: 34.5,-2.5 parent: 2 type: Transform - - uid: 13074 + - uid: 13122 components: - rot: 3.141592653589793 rad pos: 34.5,5.5 parent: 2 type: Transform - - uid: 13075 + - uid: 13123 components: - rot: -1.5707963267948966 rad pos: 39.5,6.5 parent: 2 type: Transform - - uid: 13076 + - uid: 13124 components: - rot: -1.5707963267948966 rad pos: 28.5,-6.5 parent: 2 type: Transform - - uid: 13077 + - uid: 13125 components: - rot: -1.5707963267948966 rad pos: 26.5,-6.5 parent: 2 type: Transform - - uid: 13078 + - uid: 13126 components: - rot: 1.5707963267948966 rad pos: 11.5,-43.5 parent: 2 type: Transform - - uid: 13079 + - uid: 13127 components: - rot: 1.5707963267948966 rad pos: 9.5,-43.5 parent: 2 type: Transform - - uid: 13080 + - uid: 13128 components: - rot: 1.5707963267948966 rad pos: 10.5,-43.5 parent: 2 type: Transform - - uid: 13081 + - uid: 13129 components: - rot: 1.5707963267948966 rad pos: 7.5,-43.5 parent: 2 type: Transform - - uid: 13082 + - uid: 13130 components: - rot: 1.5707963267948966 rad pos: 5.5,-43.5 parent: 2 type: Transform - - uid: 13083 + - uid: 13131 components: - rot: -1.5707963267948966 rad pos: 1.5,-43.5 parent: 2 type: Transform - - uid: 13084 + - uid: 13132 components: - pos: 6.5,-44.5 parent: 2 type: Transform - - uid: 13085 + - uid: 13133 components: - pos: 21.5,-32.5 parent: 2 type: Transform - - uid: 13086 + - uid: 13134 components: - rot: 1.5707963267948966 rad pos: 20.5,-18.5 parent: 2 type: Transform - - uid: 13087 + - uid: 13135 components: - pos: 24.5,-13.5 parent: 2 type: Transform - - uid: 13088 + - uid: 13136 components: - rot: 1.5707963267948966 rad pos: 22.5,17.5 parent: 2 type: Transform - - uid: 13089 + - uid: 13137 components: - rot: -1.5707963267948966 rad pos: 28.5,17.5 parent: 2 type: Transform - - uid: 13090 + - uid: 13138 components: - pos: 25.5,15.5 parent: 2 type: Transform - - uid: 13091 + - uid: 13139 components: - rot: 1.5707963267948966 rad pos: 21.5,-6.5 parent: 2 type: Transform - - uid: 13092 + - uid: 13140 components: - rot: -1.5707963267948966 rad pos: 26.5,8.5 parent: 2 type: Transform - - uid: 13093 + - uid: 13141 components: - rot: -1.5707963267948966 rad pos: 11.5,2.5 parent: 2 type: Transform - - uid: 13094 + - uid: 13142 components: - pos: 6.5,4.5 parent: 2 type: Transform - - uid: 13095 + - uid: 13143 components: - rot: 1.5707963267948966 rad pos: -17.5,-27.5 parent: 2 type: Transform - - uid: 13096 + - uid: 13144 components: - rot: 1.5707963267948966 rad pos: -15.5,-27.5 parent: 2 type: Transform - - uid: 13097 + - uid: 13145 components: - rot: 1.5707963267948966 rad pos: -16.5,-27.5 parent: 2 type: Transform - - uid: 13098 + - uid: 13146 components: - rot: 1.5707963267948966 rad pos: -6.5,-27.5 parent: 2 type: Transform - - uid: 13099 + - uid: 13147 components: - rot: 1.5707963267948966 rad pos: -5.5,-27.5 parent: 2 type: Transform - - uid: 13100 + - uid: 13148 components: - rot: 1.5707963267948966 rad pos: -14.5,-27.5 parent: 2 type: Transform - - uid: 13101 + - uid: 13149 components: - rot: -1.5707963267948966 rad pos: -5.5,-33.5 parent: 2 type: Transform - - uid: 13102 + - uid: 13150 components: - pos: -19.5,-63.5 parent: 2 type: Transform - - uid: 13103 + - uid: 13151 components: - rot: 1.5707963267948966 rad pos: 8.5,-27.5 parent: 2 type: Transform - - uid: 13104 + - uid: 13152 components: - rot: 1.5707963267948966 rad pos: 7.5,-27.5 parent: 2 type: Transform - - uid: 13105 + - uid: 13153 components: - rot: 1.5707963267948966 rad pos: 5.5,-27.5 parent: 2 type: Transform - - uid: 13106 + - uid: 13154 components: - rot: 1.5707963267948966 rad pos: 3.5,-27.5 parent: 2 type: Transform - - uid: 13107 + - uid: 13155 components: - pos: -23.5,-77.5 parent: 2 type: Transform - - uid: 13108 + - uid: 13156 components: - rot: 1.5707963267948966 rad pos: 1.5,-27.5 parent: 2 type: Transform - - uid: 13109 + - uid: 13157 components: - rot: 1.5707963267948966 rad pos: -0.5,-27.5 parent: 2 type: Transform - - uid: 13110 + - uid: 13158 components: - rot: 1.5707963267948966 rad pos: -2.5,-27.5 parent: 2 type: Transform - - uid: 13111 + - uid: 13159 components: - rot: 1.5707963267948966 rad pos: 2.5,-0.5 parent: 2 type: Transform - - uid: 13112 + - uid: 13160 components: - pos: 18.5,-2.5 parent: 2 type: Transform - - uid: 13113 + - uid: 13161 components: - rot: -1.5707963267948966 rad pos: 27.5,17.5 parent: 2 type: Transform - - uid: 13114 + - uid: 13162 components: - rot: 3.141592653589793 rad pos: 16.5,-34.5 parent: 2 type: Transform - - uid: 13115 + - uid: 13163 components: - rot: 3.141592653589793 rad pos: 16.5,-32.5 parent: 2 type: Transform - - uid: 13116 + - uid: 13164 components: - rot: 3.141592653589793 rad pos: 16.5,-30.5 parent: 2 type: Transform - - uid: 13117 + - uid: 13165 components: - rot: 3.141592653589793 rad pos: 16.5,-28.5 parent: 2 type: Transform - - uid: 13118 + - uid: 13166 components: - rot: -1.5707963267948966 rad pos: 28.5,8.5 parent: 2 type: Transform - - uid: 13119 + - uid: 13167 components: - rot: 1.5707963267948966 rad pos: 7.5,-0.5 parent: 2 type: Transform - - uid: 13120 + - uid: 13168 components: - rot: 3.141592653589793 rad pos: 18.5,-26.5 parent: 2 type: Transform - - uid: 13121 + - uid: 13169 components: - pos: 18.5,-3.5 parent: 2 type: Transform - - uid: 13122 + - uid: 13170 components: - rot: 1.5707963267948966 rad pos: 0.5,-27.5 parent: 2 type: Transform - - uid: 13123 + - uid: 13171 components: - rot: 1.5707963267948966 rad pos: -1.5,-27.5 parent: 2 type: Transform - - uid: 13124 + - uid: 13172 components: - rot: 3.141592653589793 rad pos: 16.5,-33.5 parent: 2 type: Transform - - uid: 13125 + - uid: 13173 components: - rot: 3.141592653589793 rad pos: 16.5,-31.5 parent: 2 type: Transform - - uid: 13126 + - uid: 13174 components: - rot: -1.5707963267948966 rad pos: 26.5,-17.5 parent: 2 type: Transform - - uid: 13127 + - uid: 13175 components: - rot: 1.5707963267948966 rad pos: 5.5,-0.5 parent: 2 type: Transform - - uid: 13128 + - uid: 13176 components: - rot: 1.5707963267948966 rad pos: -12.5,-53.5 parent: 2 type: Transform - - uid: 13129 + - uid: 13177 components: - rot: 1.5707963267948966 rad pos: 6.5,-27.5 parent: 2 type: Transform - - uid: 13130 + - uid: 13178 components: - pos: 24.5,-15.5 parent: 2 type: Transform - - uid: 13131 + - uid: 13179 components: - rot: 1.5707963267948966 rad pos: 22.5,-18.5 parent: 2 type: Transform - - uid: 13132 + - uid: 13180 components: - rot: 1.5707963267948966 rad pos: 18.5,-18.5 parent: 2 type: Transform - - uid: 13133 + - uid: 13181 components: - pos: 12.5,7.5 parent: 2 type: Transform - - uid: 13134 + - uid: 13182 components: - rot: 3.141592653589793 rad pos: 17.5,3.5 parent: 2 type: Transform - - uid: 13135 + - uid: 13183 components: - rot: 1.5707963267948966 rad pos: -1.5,0.5 parent: 2 type: Transform - - uid: 13136 + - uid: 13184 components: - rot: 1.5707963267948966 rad pos: -3.5,0.5 parent: 2 type: Transform - - uid: 13137 + - uid: 13185 components: - pos: 10.5,-2.5 parent: 2 type: Transform - - uid: 13138 + - uid: 13186 components: - rot: -1.5707963267948966 rad pos: 14.5,0.5 parent: 2 type: Transform - - uid: 13139 + - uid: 13187 components: - rot: -1.5707963267948966 rad pos: 16.5,0.5 parent: 2 type: Transform - - uid: 13140 + - uid: 13188 components: - rot: 3.141592653589793 rad pos: -4.5,-7.5 parent: 2 type: Transform - - uid: 13141 + - uid: 13189 components: - rot: 3.141592653589793 rad pos: -3.5,-18.5 parent: 2 type: Transform - - uid: 13142 + - uid: 13190 components: - rot: 3.141592653589793 rad pos: 18.5,-51.5 parent: 2 type: Transform - - uid: 13143 + - uid: 13191 components: - rot: 3.141592653589793 rad pos: 18.5,-50.5 parent: 2 type: Transform - - uid: 13144 + - uid: 13192 components: - rot: 3.141592653589793 rad pos: 15.5,-42.5 parent: 2 type: Transform - - uid: 13145 + - uid: 13193 components: - pos: -4.5,-42.5 parent: 2 type: Transform - - uid: 13146 + - uid: 13194 components: - pos: -4.5,-40.5 parent: 2 type: Transform - - uid: 13147 + - uid: 13195 components: - pos: -4.5,-38.5 parent: 2 type: Transform - - uid: 13148 + - uid: 13196 components: - pos: -4.5,-36.5 parent: 2 type: Transform - - uid: 13149 + - uid: 13197 components: - pos: -4.5,-34.5 parent: 2 type: Transform - - uid: 13150 + - uid: 13198 components: - pos: -4.5,-32.5 parent: 2 type: Transform - - uid: 13151 + - uid: 13199 components: - pos: -4.5,-30.5 parent: 2 type: Transform - - uid: 13152 + - uid: 13200 components: - rot: -1.5707963267948966 rad pos: -17.5,-43.5 parent: 2 type: Transform - - uid: 13153 + - uid: 13201 components: - rot: -1.5707963267948966 rad pos: -16.5,-43.5 parent: 2 type: Transform - - uid: 13154 + - uid: 13202 components: - rot: 1.5707963267948966 rad pos: 11.5,-27.5 parent: 2 type: Transform - - uid: 13155 + - uid: 13203 components: - rot: 1.5707963267948966 rad pos: 9.5,-27.5 parent: 2 type: Transform - - uid: 13156 + - uid: 13204 components: - rot: 1.5707963267948966 rad pos: 10.5,-27.5 parent: 2 type: Transform - - uid: 13157 + - uid: 13205 components: - rot: 1.5707963267948966 rad pos: -9.5,-27.5 parent: 2 type: Transform - - uid: 13158 + - uid: 13206 components: - rot: 1.5707963267948966 rad pos: -7.5,-27.5 parent: 2 type: Transform - - uid: 13159 + - uid: 13207 components: - rot: 1.5707963267948966 rad pos: 15.5,-27.5 parent: 2 type: Transform - - uid: 13160 + - uid: 13208 components: - rot: 1.5707963267948966 rad pos: 14.5,-27.5 parent: 2 type: Transform - - uid: 13161 + - uid: 13209 components: - rot: 1.5707963267948966 rad pos: 13.5,-27.5 parent: 2 type: Transform - - uid: 13162 + - uid: 13210 components: - rot: 1.5707963267948966 rad pos: -12.5,-27.5 parent: 2 type: Transform - - uid: 13163 + - uid: 13211 components: - rot: 1.5707963267948966 rad pos: -11.5,-27.5 parent: 2 type: Transform - - uid: 13164 + - uid: 13212 components: - pos: 17.5,-48.5 parent: 2 type: Transform - - uid: 13165 + - uid: 13213 components: - rot: -1.5707963267948966 rad pos: 1.5,-0.5 parent: 2 type: Transform - - uid: 13166 + - uid: 13214 components: - rot: -1.5707963267948966 rad pos: 2.5,2.5 parent: 2 type: Transform - - uid: 13167 + - uid: 13215 components: - rot: -1.5707963267948966 rad pos: 11.5,13.5 parent: 2 type: Transform - - uid: 13168 + - uid: 13216 components: - pos: 12.5,12.5 parent: 2 type: Transform - - uid: 13169 + - uid: 13217 components: - rot: 1.5707963267948966 rad pos: 23.5,17.5 parent: 2 type: Transform - - uid: 13170 + - uid: 13218 components: - rot: -1.5707963267948966 rad pos: 35.5,-17.5 parent: 2 type: Transform - - uid: 13171 + - uid: 13219 components: - pos: 36.5,-19.5 parent: 2 type: Transform - - uid: 13172 + - uid: 13220 components: - rot: -1.5707963267948966 rad pos: 30.5,8.5 parent: 2 type: Transform - - uid: 13173 + - uid: 13221 components: - rot: -1.5707963267948966 rad pos: 27.5,8.5 parent: 2 type: Transform - - uid: 13174 + - uid: 13222 components: - rot: -1.5707963267948966 rad pos: 29.5,8.5 parent: 2 type: Transform - - uid: 13175 + - uid: 13223 components: - rot: -1.5707963267948966 rad pos: 31.5,8.5 parent: 2 type: Transform - - uid: 13176 + - uid: 13224 components: - rot: -1.5707963267948966 rad pos: 26.5,-10.5 parent: 2 type: Transform - - uid: 13177 + - uid: 13225 components: - rot: 1.5707963267948966 rad pos: 23.5,-11.5 parent: 2 type: Transform - - uid: 13178 + - uid: 13226 components: - rot: -1.5707963267948966 rad pos: 20.5,7.5 parent: 2 type: Transform - - uid: 13179 + - uid: 13227 components: - rot: -1.5707963267948966 rad pos: 19.5,7.5 parent: 2 type: Transform - - uid: 13180 + - uid: 13228 components: - rot: -1.5707963267948966 rad pos: 23.5,8.5 parent: 2 type: Transform - - uid: 13181 + - uid: 13229 components: - rot: -1.5707963267948966 rad pos: 24.5,8.5 parent: 2 type: Transform - - uid: 13182 + - uid: 13230 components: - pos: 25.5,9.5 parent: 2 type: Transform - - uid: 13183 + - uid: 13231 components: - pos: 25.5,10.5 parent: 2 type: Transform - - uid: 13184 + - uid: 13232 components: - pos: 25.5,11.5 parent: 2 type: Transform - - uid: 13185 + - uid: 13233 components: - pos: 25.5,12.5 parent: 2 type: Transform - - uid: 13186 + - uid: 13234 components: - pos: 25.5,13.5 parent: 2 type: Transform - - uid: 13187 + - uid: 13235 components: - pos: 25.5,14.5 parent: 2 type: Transform - - uid: 13188 + - uid: 13236 components: - pos: 25.5,16.5 parent: 2 type: Transform - - uid: 13189 + - uid: 13237 components: - rot: -1.5707963267948966 rad pos: 26.5,17.5 parent: 2 type: Transform - - uid: 13190 + - uid: 13238 components: - rot: -1.5707963267948966 rad pos: 24.5,17.5 parent: 2 type: Transform - - uid: 13191 + - uid: 13239 components: - pos: 21.5,18.5 parent: 2 type: Transform - - uid: 13192 + - uid: 13240 components: - pos: 21.5,19.5 parent: 2 type: Transform - - uid: 13193 + - uid: 13241 components: - pos: 24.5,-12.5 parent: 2 type: Transform - - uid: 13194 + - uid: 13242 components: - rot: 1.5707963267948966 rad pos: 19.5,-18.5 parent: 2 type: Transform - - uid: 13195 + - uid: 13243 components: - rot: 1.5707963267948966 rad pos: 17.5,-18.5 parent: 2 type: Transform - - uid: 13196 + - uid: 13244 components: - pos: 16.5,-20.5 parent: 2 type: Transform - - uid: 13197 + - uid: 13245 components: - pos: 16.5,-21.5 parent: 2 type: Transform - - uid: 13198 + - uid: 13246 components: - pos: 16.5,-22.5 parent: 2 type: Transform - - uid: 13199 + - uid: 13247 components: - pos: 16.5,-23.5 parent: 2 type: Transform - - uid: 13200 + - uid: 13248 components: - pos: 16.5,-24.5 parent: 2 type: Transform - - uid: 13201 + - uid: 13249 components: - rot: -1.5707963267948966 rad pos: 17.5,-25.5 parent: 2 type: Transform - - uid: 13202 + - uid: 13250 components: - rot: -1.5707963267948966 rad pos: 19.5,-25.5 parent: 2 type: Transform - - uid: 13203 + - uid: 13251 components: - pos: 20.5,-24.5 parent: 2 type: Transform - - uid: 13204 + - uid: 13252 components: - rot: -1.5707963267948966 rad pos: 25.5,-17.5 parent: 2 type: Transform - - uid: 13205 + - uid: 13253 components: - rot: -1.5707963267948966 rad pos: 27.5,-17.5 parent: 2 type: Transform - - uid: 13206 + - uid: 13254 components: - rot: -1.5707963267948966 rad pos: 29.5,-17.5 parent: 2 type: Transform - - uid: 13207 + - uid: 13255 components: - rot: -1.5707963267948966 rad pos: 28.5,-17.5 parent: 2 type: Transform - - uid: 13208 + - uid: 13256 components: - rot: -1.5707963267948966 rad pos: 30.5,-17.5 parent: 2 type: Transform - - uid: 13209 + - uid: 13257 components: - rot: -1.5707963267948966 rad pos: 32.5,-17.5 parent: 2 type: Transform - - uid: 13210 + - uid: 13258 components: - rot: 3.141592653589793 rad pos: 16.5,-26.5 parent: 2 type: Transform - - uid: 13211 + - uid: 13259 components: - rot: -1.5707963267948966 rad pos: 19.5,-29.5 parent: 2 type: Transform - - uid: 13212 + - uid: 13260 components: - rot: -1.5707963267948966 rad pos: 20.5,-29.5 parent: 2 type: Transform - - uid: 13213 + - uid: 13261 components: - rot: -1.5707963267948966 rad pos: 34.5,-17.5 parent: 2 type: Transform - - uid: 13214 + - uid: 13262 components: - rot: 3.141592653589793 rad pos: 36.5,-20.5 parent: 2 type: Transform - - uid: 13215 + - uid: 13263 components: - rot: 3.141592653589793 rad pos: 36.5,-21.5 parent: 2 type: Transform - - uid: 13216 + - uid: 13264 components: - rot: -1.5707963267948966 rad pos: 33.5,8.5 parent: 2 type: Transform - - uid: 13217 + - uid: 13265 components: - rot: 3.141592653589793 rad pos: -4.5,-10.5 parent: 2 type: Transform - - uid: 13218 + - uid: 13266 components: - rot: -1.5707963267948966 rad pos: 7.5,-25.5 parent: 2 type: Transform - - uid: 13219 + - uid: 13267 components: - pos: -7.5,-1.5 parent: 2 type: Transform - - uid: 13220 + - uid: 13268 components: - rot: -1.5707963267948966 rad pos: 20.5,17.5 parent: 2 type: Transform - - uid: 13221 + - uid: 13269 components: - rot: -1.5707963267948966 rad pos: 19.5,17.5 parent: 2 type: Transform - - uid: 13222 + - uid: 13270 components: - rot: -1.5707963267948966 rad pos: -4.5,-25.5 parent: 2 type: Transform - - uid: 13223 + - uid: 13271 components: - pos: 16.5,-35.5 parent: 2 type: Transform - - uid: 13224 + - uid: 13272 components: - pos: 16.5,-36.5 parent: 2 type: Transform - - uid: 13225 + - uid: 13273 components: - pos: 16.5,-37.5 parent: 2 type: Transform - - uid: 13226 + - uid: 13274 components: - pos: 16.5,-38.5 parent: 2 type: Transform - - uid: 13227 + - uid: 13275 components: - pos: 16.5,-39.5 parent: 2 type: Transform - - uid: 13228 + - uid: 13276 components: - pos: 16.5,-40.5 parent: 2 type: Transform - - uid: 13229 + - uid: 13277 components: - rot: 3.141592653589793 rad pos: 1.5,-58.5 parent: 2 type: Transform - - uid: 13230 + - uid: 13278 components: - rot: 3.141592653589793 rad pos: 1.5,-57.5 parent: 2 type: Transform - - uid: 13231 + - uid: 13279 components: - rot: 3.141592653589793 rad pos: 1.5,-56.5 parent: 2 type: Transform - - uid: 13232 + - uid: 13280 components: - rot: 3.141592653589793 rad pos: 1.5,-55.5 parent: 2 type: Transform - - uid: 13233 + - uid: 13281 components: - rot: 3.141592653589793 rad pos: 1.5,-54.5 parent: 2 type: Transform - - uid: 13234 + - uid: 13282 components: - rot: -1.5707963267948966 rad pos: 0.5,-53.5 parent: 2 type: Transform - - uid: 13235 + - uid: 13283 components: - rot: -1.5707963267948966 rad pos: -1.5,-45.5 parent: 2 type: Transform - - uid: 13236 + - uid: 13284 components: - rot: 3.141592653589793 rad pos: -0.5,-52.5 parent: 2 type: Transform - - uid: 13237 + - uid: 13285 components: - rot: 3.141592653589793 rad pos: -0.5,-51.5 parent: 2 type: Transform - - uid: 13238 + - uid: 13286 components: - rot: 3.141592653589793 rad pos: -0.5,-50.5 parent: 2 type: Transform - - uid: 13239 + - uid: 13287 components: - rot: 3.141592653589793 rad pos: -0.5,-48.5 parent: 2 type: Transform - - uid: 13240 + - uid: 13288 components: - rot: 3.141592653589793 rad pos: -0.5,-47.5 parent: 2 type: Transform - - uid: 13241 + - uid: 13289 components: - pos: -0.5,-44.5 parent: 2 type: Transform - - uid: 13242 + - uid: 13290 components: - rot: -1.5707963267948966 rad pos: 27.5,-6.5 parent: 2 type: Transform - - uid: 13243 + - uid: 13291 components: - rot: -1.5707963267948966 rad pos: 29.5,-6.5 parent: 2 type: Transform - - uid: 13244 + - uid: 13292 components: - rot: -1.5707963267948966 rad pos: 30.5,-6.5 parent: 2 type: Transform - - uid: 13245 + - uid: 13293 components: - rot: -1.5707963267948966 rad pos: 31.5,-6.5 parent: 2 type: Transform - - uid: 13246 + - uid: 13294 components: - rot: -1.5707963267948966 rad pos: 32.5,-6.5 parent: 2 type: Transform - - uid: 13247 + - uid: 13295 components: - rot: -1.5707963267948966 rad pos: 33.5,-6.5 parent: 2 type: Transform - - uid: 13248 + - uid: 13296 components: - rot: 3.141592653589793 rad pos: 34.5,7.5 parent: 2 type: Transform - - uid: 13249 + - uid: 13297 components: - rot: -1.5707963267948966 rad pos: 35.5,6.5 parent: 2 type: Transform - - uid: 13250 + - uid: 13298 components: - rot: -1.5707963267948966 rad pos: 36.5,6.5 parent: 2 type: Transform - - uid: 13251 + - uid: 13299 components: - rot: -1.5707963267948966 rad pos: 37.5,6.5 parent: 2 type: Transform - - uid: 13252 + - uid: 13300 components: - rot: -1.5707963267948966 rad pos: 38.5,6.5 parent: 2 type: Transform - - uid: 13253 + - uid: 13301 components: - rot: -1.5707963267948966 rad pos: 40.5,6.5 parent: 2 type: Transform - - uid: 13254 + - uid: 13302 components: - rot: 3.141592653589793 rad pos: 34.5,3.5 parent: 2 type: Transform - - uid: 13255 + - uid: 13303 components: - pos: 34.5,-0.5 parent: 2 type: Transform - - uid: 13256 + - uid: 13304 components: - pos: 34.5,-1.5 parent: 2 type: Transform - - uid: 13257 + - uid: 13305 components: - pos: 36.5,-27.5 parent: 2 type: Transform - - uid: 13258 + - uid: 13306 components: - pos: 36.5,-28.5 parent: 2 type: Transform - - uid: 13259 + - uid: 13307 components: - rot: 3.141592653589793 rad pos: 15.5,-44.5 parent: 2 type: Transform - - uid: 13260 + - uid: 13308 components: - rot: 1.5707963267948966 rad pos: 16.5,-45.5 parent: 2 type: Transform - - uid: 13261 + - uid: 13309 components: - pos: 17.5,-46.5 parent: 2 type: Transform - - uid: 13262 + - uid: 13310 components: - rot: 1.5707963267948966 rad pos: 17.5,-43.5 parent: 2 type: Transform - - uid: 13263 + - uid: 13311 components: - rot: 1.5707963267948966 rad pos: 18.5,-43.5 parent: 2 type: Transform - - uid: 13264 + - uid: 13312 components: - pos: 19.5,-42.5 parent: 2 type: Transform - - uid: 13265 + - uid: 13313 components: - pos: 18.5,-27.5 parent: 2 type: Transform - - uid: 13266 + - uid: 13314 components: - pos: -23.5,-80.5 parent: 2 type: Transform - - uid: 13267 + - uid: 13315 components: - rot: -1.5707963267948966 rad pos: -2.5,-25.5 parent: 2 type: Transform - - uid: 13268 + - uid: 13316 components: - rot: -1.5707963267948966 rad pos: -3.5,-25.5 parent: 2 type: Transform - - uid: 13269 + - uid: 13317 components: - rot: 3.141592653589793 rad pos: -4.5,-2.5 parent: 2 type: Transform - - uid: 13270 + - uid: 13318 components: - rot: -1.5707963267948966 rad pos: -1.5,-25.5 parent: 2 type: Transform - - uid: 13271 + - uid: 13319 components: - rot: 3.141592653589793 rad pos: 15.5,-33.5 parent: 2 type: Transform - - uid: 13272 + - uid: 13320 components: - rot: -1.5707963267948966 rad pos: -1.5,-43.5 parent: 2 type: Transform - - uid: 13273 + - uid: 13321 components: - rot: -1.5707963267948966 rad pos: -2.5,-43.5 parent: 2 type: Transform - - uid: 13274 + - uid: 13322 components: - rot: -1.5707963267948966 rad pos: -3.5,-43.5 parent: 2 type: Transform - - uid: 13275 + - uid: 13323 components: - rot: -1.5707963267948966 rad pos: -5.5,-43.5 parent: 2 type: Transform - - uid: 13276 + - uid: 13324 components: - rot: -1.5707963267948966 rad pos: -7.5,-43.5 parent: 2 type: Transform - - uid: 13277 + - uid: 13325 components: - rot: -1.5707963267948966 rad pos: -9.5,-43.5 parent: 2 type: Transform - - uid: 13278 + - uid: 13326 components: - rot: -1.5707963267948966 rad pos: -10.5,-43.5 parent: 2 type: Transform - - uid: 13279 + - uid: 13327 components: - rot: -1.5707963267948966 rad pos: -11.5,-43.5 parent: 2 type: Transform - - uid: 13280 + - uid: 13328 components: - rot: -1.5707963267948966 rad pos: -12.5,-43.5 parent: 2 type: Transform - - uid: 13281 + - uid: 13329 components: - pos: -13.5,-44.5 parent: 2 type: Transform - - uid: 13282 + - uid: 13330 components: - pos: -13.5,-46.5 parent: 2 type: Transform - - uid: 13283 + - uid: 13331 components: - pos: -13.5,-47.5 parent: 2 type: Transform - - uid: 13284 + - uid: 13332 components: - pos: -13.5,-48.5 parent: 2 type: Transform - - uid: 13285 + - uid: 13333 components: - pos: -13.5,-49.5 parent: 2 type: Transform - - uid: 13286 + - uid: 13334 components: - pos: -13.5,-50.5 parent: 2 type: Transform - - uid: 13287 + - uid: 13335 components: - pos: -13.5,-51.5 parent: 2 type: Transform - - uid: 13288 + - uid: 13336 components: - pos: -13.5,-52.5 parent: 2 type: Transform - - uid: 13289 + - uid: 13337 components: - rot: 1.5707963267948966 rad pos: -14.5,-53.5 parent: 2 type: Transform - - uid: 13290 + - uid: 13338 components: - rot: 1.5707963267948966 rad pos: -16.5,-54.5 parent: 2 type: Transform - - uid: 13291 + - uid: 13339 components: - pos: -17.5,-56.5 parent: 2 type: Transform - - uid: 13292 + - uid: 13340 components: - rot: 3.141592653589793 rad pos: -17.5,-58.5 parent: 2 type: Transform - - uid: 13293 + - uid: 13341 components: - rot: 3.141592653589793 rad pos: -17.5,-59.5 parent: 2 type: Transform - - uid: 13294 + - uid: 13342 components: - rot: 1.5707963267948966 rad pos: -18.5,-57.5 parent: 2 type: Transform - - uid: 13295 + - uid: 13343 components: - rot: 1.5707963267948966 rad pos: -19.5,-57.5 parent: 2 type: Transform - - uid: 13296 + - uid: 13344 components: - pos: -19.5,-69.5 parent: 2 type: Transform - - uid: 13297 + - uid: 13345 components: - pos: -19.5,-70.5 parent: 2 type: Transform - - uid: 13298 + - uid: 13346 components: - pos: -19.5,-71.5 parent: 2 type: Transform - - uid: 13299 + - uid: 13347 components: - pos: -19.5,-72.5 parent: 2 type: Transform - - uid: 13300 + - uid: 13348 components: - rot: 1.5707963267948966 rad pos: -18.5,-73.5 parent: 2 type: Transform - - uid: 13301 + - uid: 13349 components: - rot: 1.5707963267948966 rad pos: -21.5,-73.5 parent: 2 type: Transform - - uid: 13302 + - uid: 13350 components: - rot: -1.5707963267948966 rad pos: -22.5,-73.5 parent: 2 type: Transform - - uid: 13303 + - uid: 13351 components: - pos: -23.5,-82.5 parent: 2 type: Transform - - uid: 13304 + - uid: 13352 components: - rot: 1.5707963267948966 rad pos: -9.5,-53.5 parent: 2 type: Transform - - uid: 13305 + - uid: 13353 components: - rot: 1.5707963267948966 rad pos: -2.5,-53.5 parent: 2 type: Transform - - uid: 13306 + - uid: 13354 components: - pos: 18.5,-4.5 parent: 2 type: Transform - - uid: 13307 + - uid: 13355 components: - rot: -1.5707963267948966 rad pos: 9.5,13.5 parent: 2 type: Transform - - uid: 13308 + - uid: 13356 components: - rot: -1.5707963267948966 rad pos: 1.5,-25.5 parent: 2 type: Transform - - uid: 13309 + - uid: 13357 components: - pos: 30.5,-77.5 parent: 2 type: Transform - - uid: 13310 + - uid: 13358 components: - pos: -4.5,-29.5 parent: 2 type: Transform - - uid: 13311 + - uid: 13359 components: - rot: 3.141592653589793 rad pos: 17.5,6.5 parent: 2 type: Transform - - uid: 13312 + - uid: 13360 components: - pos: 12.5,10.5 parent: 2 type: Transform - - uid: 13313 + - uid: 13361 components: - pos: 18.5,-0.5 parent: 2 type: Transform - - uid: 13314 + - uid: 13362 components: - pos: 12.5,9.5 parent: 2 type: Transform - - uid: 13315 + - uid: 13363 components: - pos: 12.5,3.5 parent: 2 type: Transform - - uid: 13316 + - uid: 13364 components: - rot: 3.141592653589793 rad pos: 17.5,4.5 parent: 2 type: Transform - - uid: 13317 + - uid: 13365 components: - rot: 3.141592653589793 rad pos: 17.5,2.5 parent: 2 type: Transform - - uid: 13318 + - uid: 13366 components: - pos: 18.5,-1.5 parent: 2 type: Transform - - uid: 13319 + - uid: 13367 components: - rot: -1.5707963267948966 rad pos: 15.5,0.5 parent: 2 type: Transform - - uid: 13320 + - uid: 13368 components: - pos: 10.5,-1.5 parent: 2 type: Transform - - uid: 13321 + - uid: 13369 components: - pos: 6.5,-1.5 parent: 2 type: Transform - - uid: 13322 + - uid: 13370 components: - rot: 1.5707963267948966 rad pos: 8.5,-0.5 parent: 2 type: Transform - - uid: 13323 + - uid: 13371 components: - rot: -1.5707963267948966 rad pos: 2.5,-25.5 parent: 2 type: Transform - - uid: 13324 + - uid: 13372 components: - rot: 1.5707963267948966 rad pos: 4.5,2.5 parent: 2 type: Transform - - uid: 13325 + - uid: 13373 components: - rot: 1.5707963267948966 rad pos: 5.5,2.5 parent: 2 type: Transform - - uid: 13326 + - uid: 13374 components: - rot: 1.5707963267948966 rad pos: -11.5,-53.5 parent: 2 type: Transform - - uid: 13327 + - uid: 13375 components: - rot: 1.5707963267948966 rad pos: -22.5,-84.5 parent: 2 type: Transform - - uid: 13328 + - uid: 13376 components: - pos: -23.5,-83.5 parent: 2 type: Transform - - uid: 13329 + - uid: 13377 components: - pos: -23.5,-78.5 parent: 2 type: Transform - - uid: 13330 + - uid: 13378 components: - rot: 1.5707963267948966 rad pos: 7.5,2.5 parent: 2 type: Transform - - uid: 13331 + - uid: 13379 components: - rot: -1.5707963267948966 rad pos: 11.5,-25.5 parent: 2 type: Transform - - uid: 13332 + - uid: 13380 components: - pos: 24.5,-16.5 parent: 2 type: Transform - - uid: 13333 + - uid: 13381 components: - rot: -1.5707963267948966 rad pos: -15.5,-43.5 parent: 2 type: Transform - - uid: 13334 + - uid: 13382 components: - rot: -1.5707963267948966 rad pos: 11.5,2.5 parent: 2 type: Transform - - uid: 13335 + - uid: 13383 components: - rot: 1.5707963267948966 rad pos: 22.5,-6.5 parent: 2 type: Transform - - uid: 13336 + - uid: 13384 components: - pos: 24.5,-8.5 parent: 2 type: Transform - - uid: 13337 + - uid: 13385 components: - rot: -1.5707963267948966 rad pos: 25.5,-10.5 parent: 2 type: Transform - - uid: 13338 + - uid: 13386 components: - pos: 16.5,-19.5 parent: 2 type: Transform - - uid: 13339 + - uid: 13387 components: - rot: -1.5707963267948966 rad pos: 6.5,-25.5 parent: 2 type: Transform - - uid: 13340 + - uid: 13388 components: - rot: -1.5707963267948966 rad pos: 5.5,-25.5 parent: 2 type: Transform - - uid: 13341 + - uid: 13389 components: - rot: -1.5707963267948966 rad pos: -0.5,-25.5 parent: 2 type: Transform - - uid: 13342 + - uid: 13390 components: - pos: -7.5,-0.5 parent: 2 type: Transform - - uid: 13343 + - uid: 13391 components: - rot: 3.141592653589793 rad pos: -5.5,-22.5 parent: 2 type: Transform - - uid: 13344 + - uid: 13392 components: - rot: -1.5707963267948966 rad pos: 10.5,-25.5 parent: 2 type: Transform - - uid: 13345 + - uid: 13393 components: - rot: 3.141592653589793 rad pos: -0.5,-49.5 parent: 2 type: Transform - - uid: 13346 + - uid: 13394 components: - rot: 3.141592653589793 rad pos: -0.5,-46.5 parent: 2 type: Transform - - uid: 13347 + - uid: 13395 components: - rot: 3.141592653589793 rad pos: 15.5,-28.5 parent: 2 type: Transform - - uid: 13348 + - uid: 13396 components: - pos: 18.5,-5.5 parent: 2 type: Transform - - uid: 13349 + - uid: 13397 components: - rot: 3.141592653589793 rad pos: 18.5,8.5 parent: 2 type: Transform - - uid: 13350 + - uid: 13398 components: - rot: 1.5707963267948966 rad pos: 19.5,-6.5 parent: 2 type: Transform - - uid: 13351 + - uid: 13399 components: - rot: -1.5707963267948966 rad pos: 4.5,-25.5 parent: 2 type: Transform - - uid: 13352 + - uid: 13400 components: - rot: 1.5707963267948966 rad pos: 4.5,-0.5 parent: 2 type: Transform - - uid: 13353 + - uid: 13401 components: - rot: 3.141592653589793 rad pos: -4.5,-5.5 parent: 2 type: Transform - - uid: 13354 + - uid: 13402 components: - rot: 3.141592653589793 rad pos: -3.5,-25.5 parent: 2 type: Transform - - uid: 13355 + - uid: 13403 components: - rot: 1.5707963267948966 rad pos: 12.5,-27.5 parent: 2 type: Transform - - uid: 13356 + - uid: 13404 components: - pos: 18.5,-28.5 parent: 2 type: Transform - - uid: 13357 + - uid: 13405 components: - pos: -23.5,-79.5 parent: 2 type: Transform - - uid: 13358 + - uid: 13406 components: - rot: 1.5707963267948966 rad pos: -24.5,-75.5 parent: 2 type: Transform - - uid: 13359 + - uid: 13407 components: - rot: 1.5707963267948966 rad pos: -7.5,-53.5 parent: 2 type: Transform - - uid: 13360 + - uid: 13408 components: - rot: 1.5707963267948966 rad pos: 9.5,-0.5 parent: 2 type: Transform - - uid: 13361 + - uid: 13409 components: - rot: 1.5707963267948966 rad pos: -5.5,-9.5 parent: 2 type: Transform - - uid: 13362 + - uid: 13410 components: - pos: 6.5,3.5 parent: 2 type: Transform - - uid: 13363 + - uid: 13411 components: - rot: -1.5707963267948966 rad pos: 3.5,-25.5 parent: 2 type: Transform - - uid: 13364 + - uid: 13412 components: - pos: 18.5,0.5 parent: 2 type: Transform - - uid: 13365 + - uid: 13413 components: - rot: 3.141592653589793 rad pos: 3.5,-1.5 parent: 2 type: Transform - - uid: 13366 + - uid: 13414 components: - rot: 3.141592653589793 rad pos: -3.5,-24.5 parent: 2 type: Transform - - uid: 13367 + - uid: 13415 components: - rot: 1.5707963267948966 rad pos: 15.5,-43.5 parent: 2 type: Transform - - uid: 13368 + - uid: 13416 components: - rot: 3.141592653589793 rad pos: -5.5,-21.5 parent: 2 type: Transform - - uid: 13369 + - uid: 13417 components: - rot: 1.5707963267948966 rad pos: 11.5,-3.5 parent: 2 type: Transform - - uid: 13370 + - uid: 13418 components: - rot: -1.5707963267948966 rad pos: 8.5,-25.5 parent: 2 type: Transform - - uid: 13371 + - uid: 13419 components: - rot: 1.5707963267948966 rad pos: 20.5,-6.5 parent: 2 type: Transform - - uid: 13372 + - uid: 13420 components: - rot: 3.141592653589793 rad pos: 15.5,-41.5 parent: 2 type: Transform - - uid: 13373 + - uid: 13421 components: - pos: -5.5,-54.5 parent: 2 type: Transform - - uid: 13374 + - uid: 13422 components: - rot: -1.5707963267948966 rad pos: 2.5,-43.5 parent: 2 type: Transform - - uid: 13375 + - uid: 13423 components: - pos: -4.5,-35.5 parent: 2 type: Transform - - uid: 13376 + - uid: 13424 components: - pos: -4.5,-31.5 parent: 2 type: Transform - - uid: 13377 + - uid: 13425 components: - pos: -4.5,-28.5 parent: 2 type: Transform - - uid: 13378 + - uid: 13426 components: - pos: -19.5,-65.5 parent: 2 type: Transform - - uid: 13379 + - uid: 13427 components: - pos: 36.5,-26.5 parent: 2 type: Transform - - uid: 13380 + - uid: 13428 components: - pos: 36.5,-23.5 parent: 2 type: Transform - - uid: 13381 + - uid: 13429 components: - pos: 34.5,-5.5 parent: 2 type: Transform - - uid: 13382 + - uid: 13430 components: - pos: 34.5,0.5 parent: 2 type: Transform - - uid: 13383 + - uid: 13431 components: - rot: 3.141592653589793 rad pos: 34.5,2.5 parent: 2 type: Transform - - uid: 13384 + - uid: 13432 components: - rot: 3.141592653589793 rad pos: 34.5,4.5 parent: 2 type: Transform - - uid: 13385 + - uid: 13433 components: - pos: 34.5,-3.5 parent: 2 type: Transform - - uid: 13386 + - uid: 13434 components: - rot: 1.5707963267948966 rad pos: 14.5,-43.5 parent: 2 type: Transform - - uid: 13387 + - uid: 13435 components: - rot: 1.5707963267948966 rad pos: 3.5,-43.5 parent: 2 type: Transform - - uid: 13388 + - uid: 13436 components: - rot: 1.5707963267948966 rad pos: 22.5,-43.5 parent: 2 type: Transform - - uid: 13389 + - uid: 13437 components: - rot: 3.141592653589793 rad pos: -3.5,-19.5 parent: 2 type: Transform - - uid: 13390 + - uid: 13438 components: - rot: 3.141592653589793 rad pos: -4.5,-6.5 parent: 2 type: Transform - - uid: 13391 + - uid: 13439 components: - rot: 1.5707963267948966 rad pos: 21.5,-18.5 parent: 2 type: Transform - - uid: 13392 + - uid: 13440 components: - rot: 1.5707963267948966 rad pos: 23.5,-18.5 parent: 2 type: Transform - - uid: 13393 + - uid: 13441 components: - pos: 24.5,-14.5 parent: 2 type: Transform - - uid: 13394 + - uid: 13442 components: - rot: 1.5707963267948966 rad pos: 9.5,2.5 parent: 2 type: Transform - - uid: 13395 + - uid: 13443 components: - rot: 1.5707963267948966 rad pos: 26.5,-43.5 parent: 2 type: Transform - - uid: 13396 + - uid: 13444 components: - rot: 1.5707963267948966 rad pos: -20.5,-73.5 parent: 2 type: Transform - - uid: 13397 + - uid: 13445 components: - pos: -23.5,-76.5 parent: 2 type: Transform - - uid: 13398 + - uid: 13446 components: - pos: -19.5,-64.5 parent: 2 type: Transform - - uid: 13399 + - uid: 13447 components: - pos: -19.5,-62.5 parent: 2 type: Transform - - uid: 13400 + - uid: 13448 components: - pos: -19.5,-66.5 parent: 2 type: Transform - - uid: 13401 + - uid: 13449 components: - pos: -19.5,-68.5 parent: 2 type: Transform - - uid: 13402 + - uid: 13450 components: - pos: -19.5,-67.5 parent: 2 type: Transform - - uid: 13403 + - uid: 13451 components: - rot: 3.141592653589793 rad pos: -3.5,-20.5 parent: 2 type: Transform - - uid: 13404 + - uid: 13452 components: - rot: 3.141592653589793 rad pos: 15.5,-26.5 parent: 2 type: Transform - - uid: 13405 + - uid: 13453 components: - rot: 1.5707963267948966 rad pos: -6.5,0.5 parent: 2 type: Transform - - uid: 13406 + - uid: 13454 components: - rot: 3.141592653589793 rad pos: -5.5,-23.5 parent: 2 type: Transform - - uid: 13407 + - uid: 13455 components: - rot: 3.141592653589793 rad pos: -5.5,-24.5 parent: 2 type: Transform - - uid: 13408 + - uid: 13456 components: - rot: -1.5707963267948966 rad pos: 13.5,5.5 parent: 2 type: Transform - - uid: 13409 + - uid: 13457 components: - pos: 12.5,8.5 parent: 2 type: Transform - - uid: 13410 + - uid: 13458 components: - rot: 3.141592653589793 rad pos: 17.5,5.5 parent: 2 type: Transform - - uid: 13411 + - uid: 13459 components: - pos: 17.5,9.5 parent: 2 type: Transform - - uid: 13412 + - uid: 13460 components: - pos: 12.5,4.5 parent: 2 type: Transform - - uid: 13413 + - uid: 13461 components: - rot: -1.5707963267948966 rad pos: 12.5,-0.5 parent: 2 type: Transform - - uid: 13414 + - uid: 13462 components: - pos: -4.5,-41.5 parent: 2 type: Transform - - uid: 13415 + - uid: 13463 components: - pos: -4.5,-39.5 parent: 2 type: Transform - - uid: 13416 + - uid: 13464 components: - pos: -4.5,-37.5 parent: 2 type: Transform - - uid: 13417 + - uid: 13465 components: - rot: 1.5707963267948966 rad pos: 4.5,-27.5 parent: 2 type: Transform - - uid: 13418 + - uid: 13466 components: - rot: -1.5707963267948966 rad pos: -18.5,-43.5 parent: 2 type: Transform - - uid: 13419 + - uid: 13467 components: - rot: 1.5707963267948966 rad pos: 33.5,-43.5 parent: 2 type: Transform - - uid: 13420 + - uid: 13468 components: - rot: 3.141592653589793 rad pos: -6.5,-65.5 parent: 2 type: Transform - - uid: 13421 + - uid: 13469 components: - rot: 1.5707963267948966 rad pos: -7.5,-66.5 parent: 2 type: Transform - - uid: 13422 + - uid: 13470 components: - rot: 3.141592653589793 rad pos: 18.5,-52.5 parent: 2 type: Transform - - uid: 13423 + - uid: 13471 components: - pos: -10.5,-24.5 parent: 2 type: Transform - - uid: 13424 + - uid: 13472 components: - pos: -10.5,-25.5 parent: 2 type: Transform - - uid: 13425 + - uid: 13473 components: - pos: -10.5,-26.5 parent: 2 type: Transform - - uid: 13426 + - uid: 13474 components: - rot: 1.5707963267948966 rad pos: 21.5,-43.5 parent: 2 type: Transform - - uid: 13427 + - uid: 13475 components: - rot: 3.141592653589793 rad pos: 25.5,-46.5 parent: 2 type: Transform - - uid: 13428 + - uid: 13476 components: - rot: 3.141592653589793 rad pos: 25.5,-45.5 parent: 2 type: Transform - - uid: 13429 + - uid: 13477 components: - rot: 3.141592653589793 rad pos: 25.5,-44.5 parent: 2 type: Transform - - uid: 13430 + - uid: 13478 components: - rot: 1.5707963267948966 rad pos: 24.5,-43.5 parent: 2 type: Transform - - uid: 13431 + - uid: 13479 components: - rot: 1.5707963267948966 rad pos: 23.5,-43.5 parent: 2 type: Transform - - uid: 13432 + - uid: 13480 components: - rot: 1.5707963267948966 rad pos: 32.5,-43.5 parent: 2 type: Transform - - uid: 13433 + - uid: 13481 components: - rot: 1.5707963267948966 rad pos: 31.5,-43.5 parent: 2 type: Transform - - uid: 13434 + - uid: 13482 components: - rot: 1.5707963267948966 rad pos: 30.5,-43.5 parent: 2 type: Transform - - uid: 13435 + - uid: 13483 components: - rot: 1.5707963267948966 rad pos: 29.5,-43.5 parent: 2 type: Transform - - uid: 13436 + - uid: 13484 components: - rot: 1.5707963267948966 rad pos: 28.5,-43.5 parent: 2 type: Transform - - uid: 13437 + - uid: 13485 components: - rot: 1.5707963267948966 rad pos: 27.5,-43.5 parent: 2 type: Transform - - uid: 13438 + - uid: 13486 components: - rot: 1.5707963267948966 rad pos: 34.5,-43.5 parent: 2 type: Transform - - uid: 13439 + - uid: 13487 components: - rot: 1.5707963267948966 rad pos: -13.5,-9.5 parent: 2 type: Transform - - uid: 13440 + - uid: 13488 components: - rot: 1.5707963267948966 rad pos: -1.5,-53.5 parent: 2 type: Transform - - uid: 13441 + - uid: 13489 components: - rot: 1.5707963267948966 rad pos: -8.5,-53.5 parent: 2 type: Transform - - uid: 13442 + - uid: 13490 components: - rot: 1.5707963267948966 rad pos: -10.5,-53.5 parent: 2 type: Transform - - uid: 13443 + - uid: 13491 components: - rot: 1.5707963267948966 rad pos: -4.5,-53.5 parent: 2 type: Transform - - uid: 13444 + - uid: 13492 components: - rot: 1.5707963267948966 rad pos: -3.5,-53.5 parent: 2 type: Transform - - uid: 13445 + - uid: 13493 components: - pos: 36.5,-29.5 parent: 2 type: Transform - - uid: 13446 + - uid: 13494 components: - pos: 36.5,-30.5 parent: 2 type: Transform - - uid: 13447 + - uid: 13495 components: - pos: 36.5,-31.5 parent: 2 type: Transform - - uid: 13448 + - uid: 13496 components: - pos: 36.5,-32.5 parent: 2 type: Transform - - uid: 13449 + - uid: 13497 components: - pos: 36.5,-33.5 parent: 2 type: Transform - - uid: 13450 + - uid: 13498 components: - pos: 36.5,-34.5 parent: 2 type: Transform - - uid: 13451 + - uid: 13499 components: - pos: 36.5,-35.5 parent: 2 type: Transform - - uid: 13452 + - uid: 13500 components: - pos: 36.5,-36.5 parent: 2 type: Transform - - uid: 13453 + - uid: 13501 components: - pos: 36.5,-37.5 parent: 2 type: Transform - - uid: 13454 + - uid: 13502 components: - pos: 36.5,-38.5 parent: 2 type: Transform - - uid: 13455 + - uid: 13503 components: - pos: 36.5,-39.5 parent: 2 type: Transform - - uid: 13456 + - uid: 13504 components: - pos: 36.5,-40.5 parent: 2 type: Transform - - uid: 13457 + - uid: 13505 components: - pos: 36.5,-41.5 parent: 2 type: Transform - - uid: 13458 + - uid: 13506 components: - pos: 36.5,-42.5 parent: 2 type: Transform - - uid: 13459 + - uid: 13507 components: - rot: -1.5707963267948966 rad pos: 35.5,-43.5 parent: 2 type: Transform - - uid: 13460 + - uid: 13508 components: - rot: -1.5707963267948966 rad pos: 37.5,-43.5 parent: 2 type: Transform - - uid: 13461 + - uid: 13509 components: - rot: -1.5707963267948966 rad pos: 38.5,-43.5 parent: 2 type: Transform - - uid: 13462 + - uid: 13510 components: - rot: -1.5707963267948966 rad pos: 39.5,-43.5 parent: 2 type: Transform - - uid: 13463 + - uid: 13511 components: - rot: -1.5707963267948966 rad pos: 40.5,-43.5 parent: 2 type: Transform - - uid: 13464 + - uid: 13512 components: - rot: -1.5707963267948966 rad pos: 41.5,-43.5 parent: 2 type: Transform - - uid: 13465 + - uid: 13513 components: - rot: -1.5707963267948966 rad pos: 35.5,1.5 parent: 2 type: Transform - - uid: 13466 + - uid: 13514 components: - rot: -1.5707963267948966 rad pos: 36.5,1.5 parent: 2 type: Transform - - uid: 13467 + - uid: 13515 components: - rot: -1.5707963267948966 rad pos: 37.5,1.5 parent: 2 type: Transform - - uid: 13468 + - uid: 13516 components: - rot: -1.5707963267948966 rad pos: 38.5,1.5 parent: 2 type: Transform - - uid: 13469 + - uid: 13517 components: - rot: -1.5707963267948966 rad pos: 39.5,1.5 parent: 2 type: Transform - - uid: 13470 + - uid: 13518 components: - rot: -1.5707963267948966 rad pos: 17.5,17.5 parent: 2 type: Transform - - uid: 13471 + - uid: 13519 components: - rot: -1.5707963267948966 rad pos: 18.5,17.5 parent: 2 type: Transform - - uid: 13472 + - uid: 13520 components: - rot: -1.5707963267948966 rad pos: 16.5,17.5 parent: 2 type: Transform - - uid: 13473 + - uid: 13521 components: - pos: 15.5,18.5 parent: 2 type: Transform - - uid: 13474 + - uid: 13522 components: - rot: 1.5707963267948966 rad pos: -10.5,0.5 parent: 2 type: Transform - - uid: 13475 + - uid: 13523 components: - rot: 1.5707963267948966 rad pos: -11.5,0.5 parent: 2 type: Transform - - uid: 13476 + - uid: 13524 components: - rot: 1.5707963267948966 rad pos: -12.5,0.5 parent: 2 type: Transform - - uid: 13477 + - uid: 13525 components: - rot: 3.141592653589793 rad pos: 15.5,-34.5 parent: 2 type: Transform - - uid: 13478 + - uid: 13526 components: - rot: 3.141592653589793 rad pos: -3.5,-21.5 parent: 2 type: Transform - - uid: 13479 + - uid: 13527 components: - rot: -1.5707963267948966 rad pos: 12.5,-25.5 parent: 2 type: Transform - - uid: 13480 + - uid: 13528 components: - rot: -1.5707963267948966 rad pos: 13.5,-25.5 parent: 2 type: Transform - - uid: 13481 + - uid: 13529 components: - rot: 3.141592653589793 rad pos: -4.5,-8.5 parent: 2 type: Transform - - uid: 13482 + - uid: 13530 components: - rot: -1.5707963267948966 rad pos: 0.5,-25.5 parent: 2 type: Transform - - uid: 13483 + - uid: 13531 components: - rot: 1.5707963267948966 rad pos: -8.5,-9.5 parent: 2 type: Transform - - uid: 13484 + - uid: 13532 components: - rot: 1.5707963267948966 rad pos: -11.5,-9.5 parent: 2 type: Transform - - uid: 13485 + - uid: 13533 components: - rot: 1.5707963267948966 rad pos: -10.5,-9.5 parent: 2 type: Transform - - uid: 13486 + - uid: 13534 components: - rot: 1.5707963267948966 rad pos: -12.5,-9.5 parent: 2 type: Transform - - uid: 13487 + - uid: 13535 components: - pos: -4.5,-0.5 parent: 2 type: Transform - - uid: 13488 + - uid: 13536 components: - rot: 3.141592653589793 rad pos: 15.5,-32.5 parent: 2 type: Transform - - uid: 13489 + - uid: 13537 components: - rot: 3.141592653589793 rad pos: -4.5,-11.5 parent: 2 type: Transform - - uid: 13490 + - uid: 13538 components: - rot: 3.141592653589793 rad pos: 15.5,-29.5 parent: 2 type: Transform - - uid: 13491 + - uid: 13539 components: - rot: 3.141592653589793 rad pos: 15.5,-36.5 parent: 2 type: Transform - - uid: 13492 + - uid: 13540 components: - rot: 3.141592653589793 rad pos: 15.5,-35.5 parent: 2 type: Transform - - uid: 13493 + - uid: 13541 components: - rot: 3.141592653589793 rad pos: 15.5,-27.5 parent: 2 type: Transform - - uid: 13494 + - uid: 13542 components: - rot: -1.5707963267948966 rad pos: 9.5,-25.5 parent: 2 type: Transform - - uid: 13495 + - uid: 13543 components: - rot: -1.5707963267948966 rad pos: 14.5,-25.5 parent: 2 type: Transform - - uid: 13496 + - uid: 13544 components: - rot: 3.141592653589793 rad pos: -3.5,-14.5 parent: 2 type: Transform - - uid: 13497 + - uid: 13545 components: - rot: 3.141592653589793 rad pos: -3.5,-17.5 parent: 2 type: Transform - - uid: 13498 + - uid: 13546 components: - rot: 3.141592653589793 rad pos: -3.5,-15.5 parent: 2 type: Transform - - uid: 13499 + - uid: 13547 components: - pos: 17.5,-47.5 parent: 2 type: Transform - - uid: 13500 + - uid: 13548 components: - rot: 1.5707963267948966 rad pos: 33.5,16.5 parent: 2 type: Transform - - uid: 13501 + - uid: 13549 components: - rot: 1.5707963267948966 rad pos: 32.5,16.5 parent: 2 type: Transform - - uid: 13502 + - uid: 13550 components: - rot: 1.5707963267948966 rad pos: 31.5,16.5 parent: 2 type: Transform - - uid: 13503 + - uid: 13551 components: - rot: 1.5707963267948966 rad pos: 30.5,16.5 parent: 2 type: Transform - - uid: 13504 + - uid: 13552 components: - rot: 3.141592653589793 rad pos: 41.5,5.5 parent: 2 type: Transform - - uid: 13505 + - uid: 13553 components: - rot: 3.141592653589793 rad pos: 41.5,4.5 parent: 2 type: Transform - - uid: 13506 + - uid: 13554 components: - rot: 3.141592653589793 rad pos: 41.5,3.5 parent: 2 type: Transform - - uid: 13507 + - uid: 13555 components: - rot: 3.141592653589793 rad pos: 41.5,2.5 parent: 2 type: Transform - - uid: 13508 + - uid: 13556 components: - rot: -1.5707963267948966 rad pos: 40.5,1.5 parent: 2 type: Transform - - uid: 13509 + - uid: 13557 components: - rot: -1.5707963267948966 rad pos: 42.5,1.5 parent: 2 type: Transform - - uid: 13510 + - uid: 13558 components: - rot: -1.5707963267948966 rad pos: 43.5,1.5 parent: 2 type: Transform - - uid: 13511 + - uid: 13559 components: - rot: -1.5707963267948966 rad pos: 44.5,1.5 parent: 2 type: Transform - - uid: 13512 + - uid: 13560 components: - rot: -1.5707963267948966 rad pos: 45.5,1.5 parent: 2 type: Transform - - uid: 13513 + - uid: 13561 components: - rot: -1.5707963267948966 rad pos: 46.5,1.5 parent: 2 type: Transform - - uid: 13514 + - uid: 13562 components: - rot: -1.5707963267948966 rad pos: 47.5,1.5 parent: 2 type: Transform - - uid: 13515 + - uid: 13563 components: - rot: -1.5707963267948966 rad pos: 48.5,1.5 parent: 2 type: Transform - - uid: 13516 + - uid: 13564 components: - rot: -1.5707963267948966 rad pos: 49.5,1.5 parent: 2 type: Transform - - uid: 13517 + - uid: 13565 components: - rot: -1.5707963267948966 rad pos: 50.5,1.5 parent: 2 type: Transform - - uid: 13518 + - uid: 13566 components: - rot: -1.5707963267948966 rad pos: 51.5,1.5 parent: 2 type: Transform - - uid: 13519 + - uid: 13567 components: - rot: 3.141592653589793 rad pos: 52.5,2.5 parent: 2 type: Transform - - uid: 13520 + - uid: 13568 components: - rot: 3.141592653589793 rad pos: 52.5,0.5 parent: 2 type: Transform - - uid: 13521 + - uid: 13569 components: - rot: 3.141592653589793 rad pos: 52.5,-0.5 parent: 2 type: Transform - - uid: 13522 + - uid: 13570 components: - rot: 3.141592653589793 rad pos: 52.5,-1.5 parent: 2 type: Transform - - uid: 13523 + - uid: 13571 components: - rot: 3.141592653589793 rad pos: 52.5,-2.5 parent: 2 type: Transform - - uid: 13524 + - uid: 13572 components: - rot: 3.141592653589793 rad pos: 52.5,-3.5 parent: 2 type: Transform - - uid: 13525 + - uid: 13573 components: - rot: 3.141592653589793 rad pos: 52.5,-4.5 parent: 2 type: Transform - - uid: 13526 + - uid: 13574 components: - rot: 3.141592653589793 rad pos: 52.5,-5.5 parent: 2 type: Transform - - uid: 13527 + - uid: 13575 components: - rot: 3.141592653589793 rad pos: 52.5,-6.5 parent: 2 type: Transform - - uid: 13528 + - uid: 13576 components: - rot: 3.141592653589793 rad pos: 52.5,-7.5 parent: 2 type: Transform - - uid: 13529 + - uid: 13577 components: - rot: 3.141592653589793 rad pos: 52.5,-8.5 parent: 2 type: Transform - - uid: 13530 + - uid: 13578 components: - pos: 25.5,-47.5 parent: 2 type: Transform - - uid: 13531 + - uid: 13579 components: - pos: 25.5,-48.5 parent: 2 type: Transform - - uid: 13532 + - uid: 13580 components: - pos: 25.5,-49.5 parent: 2 type: Transform - - uid: 13533 + - uid: 13581 components: - pos: 25.5,-50.5 parent: 2 type: Transform - - uid: 13534 + - uid: 13582 components: - pos: 25.5,-51.5 parent: 2 type: Transform - - uid: 13535 + - uid: 13583 components: - pos: 25.5,-52.5 parent: 2 type: Transform - - uid: 13536 + - uid: 13584 components: - rot: 3.141592653589793 rad pos: 15.5,-37.5 parent: 2 type: Transform - - uid: 13537 + - uid: 13585 components: - pos: 25.5,-54.5 parent: 2 type: Transform - - uid: 13538 + - uid: 13586 components: - pos: 25.5,-55.5 parent: 2 type: Transform - - uid: 13539 + - uid: 13587 components: - pos: 25.5,-56.5 parent: 2 type: Transform - - uid: 13540 + - uid: 13588 components: - pos: 25.5,-57.5 parent: 2 type: Transform - - uid: 13541 + - uid: 13589 components: - pos: 25.5,-58.5 parent: 2 type: Transform - - uid: 13542 + - uid: 13590 components: - rot: 3.141592653589793 rad pos: -3.5,-16.5 parent: 2 type: Transform - - uid: 13543 + - uid: 13591 components: - rot: 3.141592653589793 rad pos: 15.5,-43.5 parent: 2 type: Transform - - uid: 13544 + - uid: 13592 components: - pos: 52.5,-9.5 parent: 2 type: Transform - - uid: 13545 + - uid: 13593 components: - pos: 52.5,-10.5 parent: 2 type: Transform - - uid: 13546 + - uid: 13594 components: - pos: 52.5,-11.5 parent: 2 type: Transform - - uid: 13547 + - uid: 13595 components: - pos: 52.5,-12.5 parent: 2 type: Transform - - uid: 13548 + - uid: 13596 components: - rot: -1.5707963267948966 rad pos: 53.5,-13.5 parent: 2 type: Transform - - uid: 13549 + - uid: 13597 components: - rot: -1.5707963267948966 rad pos: 42.5,-43.5 parent: 2 type: Transform - - uid: 13550 + - uid: 13598 components: - rot: -1.5707963267948966 rad pos: 43.5,-43.5 parent: 2 type: Transform - - uid: 13551 + - uid: 13599 components: - rot: -1.5707963267948966 rad pos: 44.5,-43.5 parent: 2 type: Transform - - uid: 13552 + - uid: 13600 components: - rot: -1.5707963267948966 rad pos: 45.5,-43.5 parent: 2 type: Transform - - uid: 13553 + - uid: 13601 components: - rot: -1.5707963267948966 rad pos: 47.5,-43.5 parent: 2 type: Transform - - uid: 13554 + - uid: 13602 components: - rot: -1.5707963267948966 rad pos: 48.5,-43.5 parent: 2 type: Transform - - uid: 13555 + - uid: 13603 components: - pos: 49.5,-44.5 parent: 2 type: Transform - - uid: 13556 + - uid: 13604 components: - rot: 3.141592653589793 rad pos: 49.5,-46.5 parent: 2 type: Transform - - uid: 13557 + - uid: 13605 components: - rot: 1.5707963267948966 rad pos: 50.5,-47.5 parent: 2 type: Transform - - uid: 13558 + - uid: 13606 components: - pos: 49.5,-48.5 parent: 2 type: Transform - - uid: 13559 + - uid: 13607 components: - pos: 49.5,-49.5 parent: 2 type: Transform - - uid: 13560 + - uid: 13608 components: - rot: -1.5707963267948966 rad pos: 50.5,-45.5 parent: 2 type: Transform - - uid: 13561 + - uid: 13609 components: - rot: -1.5707963267948966 rad pos: 51.5,-45.5 parent: 2 type: Transform - - uid: 13562 + - uid: 13610 components: - rot: -1.5707963267948966 rad pos: 52.5,-45.5 parent: 2 type: Transform - - uid: 13563 + - uid: 13611 components: - rot: -1.5707963267948966 rad pos: 53.5,-45.5 parent: 2 type: Transform - - uid: 13564 + - uid: 13612 components: - rot: -1.5707963267948966 rad pos: 54.5,-45.5 parent: 2 type: Transform - - uid: 13565 + - uid: 13613 components: - rot: -1.5707963267948966 rad pos: 55.5,-45.5 parent: 2 type: Transform - - uid: 13566 + - uid: 13614 components: - rot: -1.5707963267948966 rad pos: 56.5,-45.5 parent: 2 type: Transform - - uid: 13567 + - uid: 13615 components: - rot: -1.5707963267948966 rad pos: 57.5,-45.5 parent: 2 type: Transform - - uid: 13568 + - uid: 13616 components: - rot: -1.5707963267948966 rad pos: 58.5,-45.5 parent: 2 type: Transform - - uid: 13569 + - uid: 13617 components: - rot: -1.5707963267948966 rad pos: 59.5,-45.5 parent: 2 type: Transform - - uid: 13570 + - uid: 13618 components: - rot: -1.5707963267948966 rad pos: 60.5,-45.5 parent: 2 type: Transform - - uid: 13571 + - uid: 13619 components: - rot: -1.5707963267948966 rad pos: 61.5,-45.5 parent: 2 type: Transform - - uid: 13572 + - uid: 13620 components: - rot: -1.5707963267948966 rad pos: 62.5,-45.5 parent: 2 type: Transform - - uid: 13573 + - uid: 13621 components: - rot: -1.5707963267948966 rad pos: 63.5,-45.5 parent: 2 type: Transform - - uid: 13574 + - uid: 13622 components: - rot: 3.141592653589793 rad pos: 46.5,-42.5 parent: 2 type: Transform - - uid: 13575 + - uid: 13623 components: - rot: 3.141592653589793 rad pos: 46.5,-41.5 parent: 2 type: Transform - - uid: 13576 + - uid: 13624 components: - rot: 3.141592653589793 rad pos: 46.5,-40.5 parent: 2 type: Transform - - uid: 13577 + - uid: 13625 components: - rot: 3.141592653589793 rad pos: 46.5,-39.5 parent: 2 type: Transform - - uid: 13578 + - uid: 13626 components: - rot: 3.141592653589793 rad pos: 46.5,-38.5 parent: 2 type: Transform - - uid: 13579 + - uid: 13627 components: - rot: 3.141592653589793 rad pos: 46.5,-37.5 parent: 2 type: Transform - - uid: 13580 + - uid: 13628 components: - rot: 3.141592653589793 rad pos: 46.5,-36.5 parent: 2 type: Transform - - uid: 13581 + - uid: 13629 components: - rot: -1.5707963267948966 rad pos: 64.5,-45.5 parent: 2 type: Transform - - uid: 13582 + - uid: 13630 components: - rot: -1.5707963267948966 rad pos: 65.5,-45.5 parent: 2 type: Transform - - uid: 13583 + - uid: 13631 components: - rot: -1.5707963267948966 rad pos: 66.5,-45.5 parent: 2 type: Transform - - uid: 13584 + - uid: 13632 components: - pos: 67.5,-46.5 parent: 2 type: Transform - - uid: 13585 + - uid: 13633 components: - pos: 67.5,-48.5 parent: 2 type: Transform - - uid: 13586 + - uid: 13634 components: - pos: 49.5,-56.5 parent: 2 type: Transform - - uid: 13587 + - uid: 13635 components: - pos: 49.5,-57.5 parent: 2 type: Transform - - uid: 13588 + - uid: 13636 components: - pos: 49.5,-58.5 parent: 2 type: Transform - - uid: 13589 + - uid: 13637 components: - pos: 49.5,-59.5 parent: 2 type: Transform - - uid: 13590 + - uid: 13638 components: - rot: 3.141592653589793 rad pos: -3.5,-13.5 parent: 2 type: Transform - - uid: 13591 + - uid: 13639 components: - pos: 29.5,-61.5 parent: 2 type: Transform - - uid: 13592 + - uid: 13640 components: - rot: 3.141592653589793 rad pos: 25.5,-59.5 parent: 2 type: Transform - - uid: 13593 + - uid: 13641 components: - rot: 1.5707963267948966 rad pos: 26.5,-60.5 parent: 2 type: Transform - - uid: 13594 + - uid: 13642 components: - rot: 1.5707963267948966 rad pos: 27.5,-60.5 parent: 2 type: Transform - - uid: 13595 + - uid: 13643 components: - rot: 1.5707963267948966 rad pos: 28.5,-60.5 parent: 2 type: Transform - - uid: 13596 + - uid: 13644 components: - rot: 1.5707963267948966 rad pos: 30.5,-60.5 parent: 2 type: Transform - - uid: 13597 + - uid: 13645 components: - rot: 1.5707963267948966 rad pos: 31.5,-60.5 parent: 2 type: Transform - - uid: 13598 + - uid: 13646 components: - rot: 1.5707963267948966 rad pos: 32.5,-60.5 parent: 2 type: Transform - - uid: 13599 + - uid: 13647 components: - rot: 1.5707963267948966 rad pos: 33.5,-60.5 parent: 2 type: Transform - - uid: 13600 + - uid: 13648 components: - rot: 1.5707963267948966 rad pos: 34.5,-60.5 parent: 2 type: Transform - - uid: 13601 + - uid: 13649 components: - rot: 1.5707963267948966 rad pos: 35.5,-60.5 parent: 2 type: Transform - - uid: 13602 + - uid: 13650 components: - rot: 1.5707963267948966 rad pos: 36.5,-60.5 parent: 2 type: Transform - - uid: 13603 + - uid: 13651 components: - rot: 3.141592653589793 rad pos: -23.5,-14.5 parent: 2 type: Transform - - uid: 13604 + - uid: 13652 components: - rot: 1.5707963267948966 rad pos: -22.5,-13.5 parent: 2 type: Transform - - uid: 13605 + - uid: 13653 components: - rot: 1.5707963267948966 rad pos: -21.5,-13.5 parent: 2 type: Transform - - uid: 13606 + - uid: 13654 components: - rot: 1.5707963267948966 rad pos: -20.5,-13.5 parent: 2 type: Transform - - uid: 13607 + - uid: 13655 components: - pos: -19.5,-14.5 parent: 2 type: Transform - - uid: 13608 + - uid: 13656 components: - pos: -19.5,-15.5 parent: 2 type: Transform - - uid: 13609 + - uid: 13657 components: - pos: -19.5,-16.5 parent: 2 type: Transform - - uid: 13610 + - uid: 13658 components: - pos: -19.5,-17.5 parent: 2 type: Transform - - uid: 13611 + - uid: 13659 components: - pos: -19.5,-18.5 parent: 2 type: Transform - - uid: 13612 + - uid: 13660 components: - pos: -19.5,-19.5 parent: 2 type: Transform - - uid: 13613 + - uid: 13661 components: - pos: -19.5,-20.5 parent: 2 type: Transform - - uid: 13614 + - uid: 13662 components: - pos: -19.5,-21.5 parent: 2 type: Transform - - uid: 13615 + - uid: 13663 components: - pos: -19.5,-22.5 parent: 2 type: Transform - - uid: 13616 + - uid: 13664 components: - pos: -19.5,-23.5 parent: 2 type: Transform - - uid: 13617 + - uid: 13665 components: - pos: -19.5,-24.5 parent: 2 type: Transform - - uid: 13618 + - uid: 13666 components: - pos: -19.5,-25.5 parent: 2 type: Transform - - uid: 13619 + - uid: 13667 components: - pos: -19.5,-26.5 parent: 2 type: Transform - - uid: 13620 + - uid: 13668 components: - rot: 1.5707963267948966 rad pos: -18.5,-27.5 parent: 2 type: Transform - - uid: 13621 + - uid: 13669 components: - pos: -19.5,-28.5 parent: 2 type: Transform - - uid: 13622 + - uid: 13670 components: - pos: -19.5,-29.5 parent: 2 type: Transform - - uid: 13623 + - uid: 13671 components: - pos: -19.5,-30.5 parent: 2 type: Transform - - uid: 13624 + - uid: 13672 components: - pos: -19.5,-31.5 parent: 2 type: Transform - - uid: 13625 + - uid: 13673 components: - pos: -19.5,-32.5 parent: 2 type: Transform - - uid: 13626 + - uid: 13674 components: - rot: -1.5707963267948966 rad pos: -24.5,-13.5 parent: 2 type: Transform - - uid: 13627 + - uid: 13675 components: - rot: -1.5707963267948966 rad pos: -25.5,-13.5 parent: 2 type: Transform - - uid: 13628 + - uid: 13676 components: - rot: -1.5707963267948966 rad pos: -26.5,-13.5 parent: 2 type: Transform - - uid: 13629 + - uid: 13677 components: - rot: -1.5707963267948966 rad pos: -27.5,-13.5 parent: 2 type: Transform - - uid: 13630 + - uid: 13678 components: - rot: -1.5707963267948966 rad pos: -28.5,-13.5 parent: 2 type: Transform - - uid: 13631 + - uid: 13679 components: - rot: -1.5707963267948966 rad pos: -29.5,-13.5 parent: 2 type: Transform - - uid: 13632 + - uid: 13680 components: - rot: -1.5707963267948966 rad pos: -30.5,-13.5 parent: 2 type: Transform - - uid: 13633 + - uid: 13681 components: - rot: -1.5707963267948966 rad pos: -31.5,-13.5 parent: 2 type: Transform - - uid: 13634 + - uid: 13682 components: - rot: 3.141592653589793 rad pos: 15.5,-39.5 parent: 2 type: Transform - - uid: 13635 + - uid: 13683 components: - rot: 1.5707963267948966 rad pos: 37.5,-60.5 parent: 2 type: Transform - - uid: 13636 + - uid: 13684 components: - rot: 1.5707963267948966 rad pos: 38.5,-60.5 parent: 2 type: Transform - - uid: 13637 + - uid: 13685 components: - pos: 39.5,-61.5 parent: 2 type: Transform - - uid: 13638 + - uid: 13686 components: - pos: 39.5,-62.5 parent: 2 type: Transform - - uid: 13639 + - uid: 13687 components: - pos: 39.5,-63.5 parent: 2 type: Transform - - uid: 13640 + - uid: 13688 components: - pos: 39.5,-64.5 parent: 2 type: Transform - - uid: 13641 + - uid: 13689 components: - pos: 39.5,-65.5 parent: 2 type: Transform - - uid: 13642 + - uid: 13690 components: - pos: 39.5,-66.5 parent: 2 type: Transform - - uid: 13643 + - uid: 13691 components: - pos: 39.5,-67.5 parent: 2 type: Transform - - uid: 13644 + - uid: 13692 components: - pos: 39.5,-68.5 parent: 2 type: Transform - - uid: 13645 + - uid: 13693 components: - rot: 3.141592653589793 rad pos: -19.5,-33.5 parent: 2 type: Transform - - uid: 13646 + - uid: 13694 components: - rot: 3.141592653589793 rad pos: -19.5,-34.5 parent: 2 type: Transform - - uid: 13647 + - uid: 13695 components: - rot: 3.141592653589793 rad pos: -19.5,-35.5 parent: 2 type: Transform - - uid: 13648 + - uid: 13696 components: - rot: 3.141592653589793 rad pos: -19.5,-36.5 parent: 2 type: Transform - - uid: 13649 + - uid: 13697 components: - rot: 3.141592653589793 rad pos: -19.5,-37.5 parent: 2 type: Transform - - uid: 13650 + - uid: 13698 components: - rot: 3.141592653589793 rad pos: -19.5,-38.5 parent: 2 type: Transform - - uid: 13651 + - uid: 13699 components: - rot: 3.141592653589793 rad pos: -19.5,-39.5 parent: 2 type: Transform - - uid: 13652 + - uid: 13700 components: - rot: 3.141592653589793 rad pos: -19.5,-40.5 parent: 2 type: Transform - - uid: 13653 + - uid: 13701 components: - rot: 3.141592653589793 rad pos: -19.5,-41.5 parent: 2 type: Transform - - uid: 13654 + - uid: 13702 components: - rot: 3.141592653589793 rad pos: -19.5,-42.5 parent: 2 type: Transform - - uid: 13655 + - uid: 13703 components: - pos: 30.5,-80.5 parent: 2 type: Transform - - uid: 13656 + - uid: 13704 components: - pos: 30.5,-78.5 parent: 2 type: Transform - - uid: 13657 + - uid: 13705 components: - pos: 30.5,-79.5 parent: 2 type: Transform - - uid: 13658 + - uid: 13706 components: - pos: 39.5,-69.5 parent: 2 type: Transform - - uid: 13659 + - uid: 13707 components: - pos: 39.5,-70.5 parent: 2 type: Transform - - uid: 13660 + - uid: 13708 components: - pos: 39.5,-71.5 parent: 2 type: Transform - - uid: 13661 + - uid: 13709 components: - pos: 39.5,-72.5 parent: 2 type: Transform - - uid: 13662 + - uid: 13710 components: - rot: 1.5707963267948966 rad pos: 25.5,-73.5 parent: 2 type: Transform - - uid: 13663 + - uid: 13711 components: - pos: 30.5,-83.5 parent: 2 type: Transform - - uid: 13664 + - uid: 13712 components: - pos: 30.5,-84.5 parent: 2 type: Transform - - uid: 13665 + - uid: 13713 components: - rot: 1.5707963267948966 rad pos: 29.5,-86.5 parent: 2 type: Transform - - uid: 13666 + - uid: 13714 components: - pos: 30.5,-85.5 parent: 2 type: Transform - - uid: 13667 + - uid: 13715 components: - pos: -13.5,1.5 parent: 2 type: Transform - - uid: 13668 + - uid: 13716 components: - pos: -13.5,-0.5 parent: 2 type: Transform - - uid: 13669 + - uid: 13717 components: - pos: -13.5,-1.5 parent: 2 type: Transform - - uid: 13670 + - uid: 13718 components: - pos: -13.5,-2.5 parent: 2 type: Transform - - uid: 13671 + - uid: 13719 components: - pos: -13.5,-3.5 parent: 2 type: Transform - - uid: 13672 + - uid: 13720 components: - pos: -13.5,-4.5 parent: 2 type: Transform - - uid: 13673 + - uid: 13721 components: - pos: -13.5,-5.5 parent: 2 type: Transform - - uid: 13674 + - uid: 13722 components: - pos: -13.5,2.5 parent: 2 type: Transform - - uid: 13675 + - uid: 13723 components: - pos: -13.5,3.5 parent: 2 type: Transform - - uid: 13676 + - uid: 13724 components: - pos: -13.5,4.5 parent: 2 type: Transform - - uid: 13677 + - uid: 13725 components: - pos: -13.5,6.5 parent: 2 type: Transform - - uid: 13678 + - uid: 13726 components: - pos: -13.5,7.5 parent: 2 type: Transform - - uid: 13679 + - uid: 13727 components: - rot: -1.5707963267948966 rad pos: -14.5,-6.5 parent: 2 type: Transform - - uid: 13680 + - uid: 13728 components: - rot: -1.5707963267948966 rad pos: -15.5,-6.5 parent: 2 type: Transform - - uid: 13681 + - uid: 13729 components: - rot: -1.5707963267948966 rad pos: -16.5,-6.5 parent: 2 type: Transform - - uid: 13682 + - uid: 13730 components: - rot: -1.5707963267948966 rad pos: -17.5,-6.5 parent: 2 type: Transform - - uid: 13683 + - uid: 13731 components: - rot: -1.5707963267948966 rad pos: -18.5,-6.5 parent: 2 type: Transform - - uid: 13684 + - uid: 13732 components: - pos: -19.5,-12.5 parent: 2 type: Transform - - uid: 13685 + - uid: 13733 components: - pos: -19.5,-11.5 parent: 2 type: Transform - - uid: 13686 + - uid: 13734 components: - pos: -19.5,-10.5 parent: 2 type: Transform - - uid: 13687 + - uid: 13735 components: - pos: -19.5,-9.5 parent: 2 type: Transform - - uid: 13688 + - uid: 13736 components: - pos: -19.5,-8.5 parent: 2 type: Transform - - uid: 13689 + - uid: 13737 components: - pos: -19.5,-7.5 parent: 2 type: Transform - - uid: 13690 + - uid: 13738 components: - rot: -1.5707963267948966 rad pos: -14.5,8.5 parent: 2 type: Transform - - uid: 13691 + - uid: 13739 components: - rot: -1.5707963267948966 rad pos: -15.5,8.5 parent: 2 type: Transform - - uid: 13692 + - uid: 13740 components: - rot: -1.5707963267948966 rad pos: -17.5,8.5 parent: 2 type: Transform - - uid: 13693 + - uid: 13741 components: - rot: -1.5707963267948966 rad pos: -18.5,8.5 parent: 2 type: Transform - - uid: 13694 + - uid: 13742 components: - rot: 3.141592653589793 rad pos: -19.5,7.5 parent: 2 type: Transform - - uid: 13695 + - uid: 13743 components: - rot: -1.5707963267948966 rad pos: -20.5,6.5 parent: 2 type: Transform - - uid: 13696 + - uid: 13744 components: - rot: -1.5707963267948966 rad pos: -21.5,6.5 parent: 2 type: Transform - - uid: 13697 + - uid: 13745 components: - rot: -1.5707963267948966 rad pos: -22.5,6.5 parent: 2 type: Transform - - uid: 13698 + - uid: 13746 components: - rot: -1.5707963267948966 rad pos: -23.5,6.5 parent: 2 type: Transform - - uid: 13699 + - uid: 13747 components: - rot: -1.5707963267948966 rad pos: -24.5,6.5 parent: 2 type: Transform - - uid: 13700 + - uid: 13748 components: - rot: -1.5707963267948966 rad pos: -20.5,-6.5 parent: 2 type: Transform - - uid: 13701 + - uid: 13749 components: - rot: -1.5707963267948966 rad pos: -21.5,-6.5 parent: 2 type: Transform - - uid: 13702 + - uid: 13750 components: - rot: -1.5707963267948966 rad pos: -22.5,-6.5 parent: 2 type: Transform - - uid: 13703 + - uid: 13751 components: - rot: -1.5707963267948966 rad pos: -23.5,-6.5 parent: 2 type: Transform - - uid: 13704 + - uid: 13752 components: - rot: -1.5707963267948966 rad pos: -24.5,-6.5 parent: 2 type: Transform - - uid: 13705 + - uid: 13753 components: - pos: -25.5,5.5 parent: 2 type: Transform - - uid: 13706 + - uid: 13754 components: - pos: -25.5,4.5 parent: 2 type: Transform - - uid: 13707 + - uid: 13755 components: - pos: -25.5,3.5 parent: 2 type: Transform - - uid: 13708 + - uid: 13756 components: - pos: -25.5,2.5 parent: 2 type: Transform - - uid: 13709 + - uid: 13757 components: - pos: -25.5,1.5 parent: 2 type: Transform - - uid: 13710 + - uid: 13758 components: - pos: -25.5,0.5 parent: 2 type: Transform - - uid: 13711 + - uid: 13759 components: - pos: -25.5,-1.5 parent: 2 type: Transform - - uid: 13712 + - uid: 13760 components: - pos: -25.5,-2.5 parent: 2 type: Transform - - uid: 13713 + - uid: 13761 components: - pos: -25.5,-3.5 parent: 2 type: Transform - - uid: 13714 + - uid: 13762 components: - pos: -25.5,-4.5 parent: 2 type: Transform - - uid: 13715 + - uid: 13763 components: - pos: -25.5,-5.5 parent: 2 type: Transform - - uid: 13716 + - uid: 13764 components: - pos: -19.5,9.5 parent: 2 type: Transform - - uid: 13717 + - uid: 13765 components: - pos: -19.5,10.5 parent: 2 type: Transform - - uid: 13718 + - uid: 13766 components: - pos: -19.5,11.5 parent: 2 type: Transform - - uid: 13719 + - uid: 13767 components: - pos: -19.5,12.5 parent: 2 type: Transform - - uid: 13720 + - uid: 13768 components: - rot: 1.5707963267948966 rad pos: -26.5,6.5 parent: 2 type: Transform - - uid: 13721 + - uid: 13769 components: - rot: 3.141592653589793 rad pos: -32.5,-12.5 parent: 2 type: Transform - - uid: 13722 + - uid: 13770 components: - rot: 3.141592653589793 rad pos: -32.5,-11.5 parent: 2 type: Transform - - uid: 13723 + - uid: 13771 components: - rot: -1.5707963267948966 rad pos: -33.5,-10.5 parent: 2 type: Transform - - uid: 13724 + - uid: 13772 components: - rot: -1.5707963267948966 rad pos: -34.5,-10.5 parent: 2 type: Transform - - uid: 13725 + - uid: 13773 components: - rot: -1.5707963267948966 rad pos: -35.5,-10.5 parent: 2 type: Transform - - uid: 13726 + - uid: 13774 components: - pos: -36.5,-9.5 parent: 2 type: Transform - - uid: 13727 + - uid: 13775 components: - pos: -36.5,-8.5 parent: 2 type: Transform - - uid: 13728 + - uid: 13776 components: - pos: -36.5,-7.5 parent: 2 type: Transform - - uid: 13729 + - uid: 13777 components: - pos: -36.5,-6.5 parent: 2 type: Transform - - uid: 13730 + - uid: 13778 components: - rot: -1.5707963267948966 rad pos: -37.5,-5.5 parent: 2 type: Transform - - uid: 13731 + - uid: 13779 components: - rot: -1.5707963267948966 rad pos: -26.5,-0.5 parent: 2 type: Transform - - uid: 13732 + - uid: 13780 components: - rot: -1.5707963267948966 rad pos: -27.5,-0.5 parent: 2 type: Transform - - uid: 13733 + - uid: 13781 components: - rot: -1.5707963267948966 rad pos: -28.5,-0.5 parent: 2 type: Transform - - uid: 13734 + - uid: 13782 components: - rot: -1.5707963267948966 rad pos: -29.5,-0.5 parent: 2 type: Transform - - uid: 13735 + - uid: 13783 components: - rot: -1.5707963267948966 rad pos: -30.5,-0.5 parent: 2 type: Transform - - uid: 13736 + - uid: 13784 components: - rot: -1.5707963267948966 rad pos: -0.5,-75.5 parent: 2 type: Transform - - uid: 13737 + - uid: 13785 components: - rot: -1.5707963267948966 rad pos: -1.5,-75.5 parent: 2 type: Transform - - uid: 13738 + - uid: 13786 components: - rot: -1.5707963267948966 rad pos: -2.5,-75.5 parent: 2 type: Transform - - uid: 13739 + - uid: 13787 components: - rot: -1.5707963267948966 rad pos: -3.5,-75.5 parent: 2 type: Transform - - uid: 13740 + - uid: 13788 components: - rot: -1.5707963267948966 rad pos: -4.5,-75.5 parent: 2 type: Transform - - uid: 13741 + - uid: 13789 components: - rot: -1.5707963267948966 rad pos: -5.5,-75.5 parent: 2 type: Transform - - uid: 13742 + - uid: 13790 components: - rot: -1.5707963267948966 rad pos: -6.5,-75.5 parent: 2 type: Transform - - uid: 13743 + - uid: 13791 components: - rot: -1.5707963267948966 rad pos: -7.5,-75.5 parent: 2 type: Transform - - uid: 13744 + - uid: 13792 components: - rot: -1.5707963267948966 rad pos: -8.5,-75.5 parent: 2 type: Transform - - uid: 13745 + - uid: 13793 components: - rot: -1.5707963267948966 rad pos: -9.5,-75.5 parent: 2 type: Transform - - uid: 13746 + - uid: 13794 components: - rot: -1.5707963267948966 rad pos: -10.5,-75.5 parent: 2 type: Transform - - uid: 13747 + - uid: 13795 components: - rot: -1.5707963267948966 rad pos: -11.5,-75.5 parent: 2 type: Transform - - uid: 13748 + - uid: 13796 components: - rot: -1.5707963267948966 rad pos: -12.5,-75.5 parent: 2 type: Transform - - uid: 13749 + - uid: 13797 components: - rot: -1.5707963267948966 rad pos: -13.5,-75.5 parent: 2 type: Transform - - uid: 13750 + - uid: 13798 components: - rot: -1.5707963267948966 rad pos: -14.5,-75.5 parent: 2 type: Transform - - uid: 13751 + - uid: 13799 components: - rot: -1.5707963267948966 rad pos: -15.5,-75.5 parent: 2 type: Transform - - uid: 13752 + - uid: 13800 components: - rot: -1.5707963267948966 rad pos: -16.5,-75.5 parent: 2 type: Transform - - uid: 13753 + - uid: 13801 components: - rot: -1.5707963267948966 rad pos: -17.5,-75.5 parent: 2 type: Transform - - uid: 13754 + - uid: 13802 components: - rot: -1.5707963267948966 rad pos: -18.5,-75.5 parent: 2 type: Transform - - uid: 13755 + - uid: 13803 components: - rot: 3.141592653589793 rad pos: -19.5,-76.5 parent: 2 type: Transform - - uid: 13756 + - uid: 13804 components: - rot: 1.5707963267948966 rad pos: -20.5,-77.5 parent: 2 type: Transform - - uid: 13757 + - uid: 13805 components: - rot: 1.5707963267948966 rad pos: -21.5,-77.5 parent: 2 type: Transform - - uid: 13758 + - uid: 13806 components: - rot: 1.5707963267948966 rad pos: -22.5,-77.5 parent: 2 type: Transform - - uid: 13759 + - uid: 13807 components: - rot: 1.5707963267948966 rad pos: -23.5,-77.5 parent: 2 type: Transform - - uid: 13760 + - uid: 13808 components: - rot: 1.5707963267948966 rad pos: -24.5,-77.5 parent: 2 type: Transform - - uid: 13761 + - uid: 13809 components: - rot: 1.5707963267948966 rad pos: -25.5,-77.5 parent: 2 type: Transform - - uid: 13762 + - uid: 13810 components: - rot: 1.5707963267948966 rad pos: -26.5,-77.5 parent: 2 type: Transform - - uid: 13763 + - uid: 13811 components: - rot: 1.5707963267948966 rad pos: -27.5,-77.5 parent: 2 type: Transform - - uid: 13764 + - uid: 13812 components: - rot: 1.5707963267948966 rad pos: -28.5,-77.5 parent: 2 type: Transform - - uid: 13765 + - uid: 13813 components: - rot: 1.5707963267948966 rad pos: -29.5,-77.5 parent: 2 type: Transform - - uid: 13766 + - uid: 13814 components: - rot: 1.5707963267948966 rad pos: -30.5,-77.5 parent: 2 type: Transform - - uid: 13767 + - uid: 13815 components: - rot: 1.5707963267948966 rad pos: -31.5,-77.5 parent: 2 type: Transform - - uid: 13768 + - uid: 13816 components: - rot: 1.5707963267948966 rad pos: -32.5,-77.5 parent: 2 type: Transform - - uid: 13769 + - uid: 13817 components: - rot: 1.5707963267948966 rad pos: -33.5,-77.5 parent: 2 type: Transform - - uid: 13770 + - uid: 13818 components: - rot: 1.5707963267948966 rad pos: -34.5,-77.5 parent: 2 type: Transform - - uid: 13771 + - uid: 13819 components: - rot: 1.5707963267948966 rad pos: -35.5,-77.5 parent: 2 type: Transform - - uid: 13772 + - uid: 13820 components: - pos: -36.5,-78.5 parent: 2 type: Transform - - uid: 13773 + - uid: 13821 components: - pos: -36.5,-79.5 parent: 2 type: Transform - - uid: 13774 + - uid: 13822 components: - rot: 3.141592653589793 rad pos: -19.5,13.5 parent: 2 type: Transform - - uid: 13775 + - uid: 13823 components: - rot: 3.141592653589793 rad pos: -19.5,14.5 parent: 2 type: Transform - - uid: 13776 + - uid: 13824 components: - rot: 3.141592653589793 rad pos: -19.5,15.5 parent: 2 type: Transform - - uid: 13777 + - uid: 13825 components: - rot: 3.141592653589793 rad pos: -19.5,16.5 parent: 2 type: Transform - - uid: 13778 + - uid: 13826 components: - rot: 3.141592653589793 rad pos: -19.5,17.5 parent: 2 type: Transform - - uid: 13779 + - uid: 13827 components: - rot: 3.141592653589793 rad pos: -19.5,18.5 parent: 2 type: Transform - - uid: 13780 + - uid: 13828 components: - rot: 3.141592653589793 rad pos: -19.5,19.5 parent: 2 type: Transform - - uid: 13781 + - uid: 13829 components: - rot: 3.141592653589793 rad pos: -19.5,20.5 parent: 2 type: Transform - - uid: 13782 + - uid: 13830 components: - rot: 3.141592653589793 rad pos: -19.5,21.5 parent: 2 type: Transform - - uid: 13783 + - uid: 13831 components: - rot: 3.141592653589793 rad pos: -19.5,22.5 parent: 2 type: Transform - - uid: 13784 + - uid: 13832 components: - rot: -1.5707963267948966 rad pos: -20.5,23.5 parent: 2 type: Transform - - uid: 13785 + - uid: 13833 components: - rot: -1.5707963267948966 rad pos: -21.5,23.5 parent: 2 type: Transform - - uid: 13786 + - uid: 13834 components: - rot: 3.141592653589793 rad pos: -22.5,24.5 parent: 2 type: Transform - - uid: 13787 + - uid: 13835 components: - rot: -1.5707963267948966 rad pos: -41.5,19.5 parent: 2 type: Transform - - uid: 13788 + - uid: 13836 components: - rot: -1.5707963267948966 rad pos: -35.5,19.5 parent: 2 type: Transform - - uid: 13789 + - uid: 13837 components: - rot: 1.5707963267948966 rad pos: -23.5,23.5 parent: 2 type: Transform - - uid: 13790 + - uid: 13838 components: - rot: 1.5707963267948966 rad pos: -24.5,23.5 parent: 2 type: Transform - - uid: 13791 + - uid: 13839 components: - rot: 1.5707963267948966 rad pos: -25.5,23.5 parent: 2 type: Transform - - uid: 13792 + - uid: 13840 components: - rot: 1.5707963267948966 rad pos: -26.5,23.5 parent: 2 type: Transform - - uid: 13793 + - uid: 13841 components: - rot: 1.5707963267948966 rad pos: -27.5,23.5 parent: 2 type: Transform - - uid: 13794 + - uid: 13842 components: - rot: 1.5707963267948966 rad pos: -28.5,23.5 parent: 2 type: Transform - - uid: 13795 + - uid: 13843 components: - rot: 1.5707963267948966 rad pos: -29.5,23.5 parent: 2 type: Transform - - uid: 13796 + - uid: 13844 components: - rot: 1.5707963267948966 rad pos: -30.5,23.5 parent: 2 type: Transform - - uid: 13797 + - uid: 13845 components: - rot: 1.5707963267948966 rad pos: -31.5,23.5 parent: 2 type: Transform - - uid: 13798 + - uid: 13846 components: - rot: 1.5707963267948966 rad pos: -32.5,23.5 parent: 2 type: Transform - - uid: 13799 + - uid: 13847 components: - rot: 1.5707963267948966 rad pos: -33.5,23.5 parent: 2 type: Transform - - uid: 13800 + - uid: 13848 components: - rot: 1.5707963267948966 rad pos: -34.5,23.5 parent: 2 type: Transform - - uid: 13801 + - uid: 13849 components: - rot: 1.5707963267948966 rad pos: -35.5,23.5 parent: 2 type: Transform - - uid: 13802 + - uid: 13850 components: - rot: 1.5707963267948966 rad pos: -36.5,23.5 parent: 2 type: Transform - - uid: 13803 + - uid: 13851 components: - rot: 1.5707963267948966 rad pos: -37.5,23.5 parent: 2 type: Transform - - uid: 13804 + - uid: 13852 components: - rot: 1.5707963267948966 rad pos: -38.5,23.5 parent: 2 type: Transform - - uid: 13805 + - uid: 13853 components: - rot: 3.141592653589793 rad pos: -46.5,10.5 parent: 2 type: Transform - - uid: 13806 + - uid: 13854 components: - rot: 1.5707963267948966 rad pos: -40.5,23.5 parent: 2 type: Transform - - uid: 13807 + - uid: 13855 components: - rot: 1.5707963267948966 rad pos: -41.5,23.5 parent: 2 type: Transform - - uid: 13808 + - uid: 13856 components: - rot: 3.141592653589793 rad pos: -42.5,24.5 parent: 2 type: Transform - - uid: 13809 + - uid: 13857 components: - rot: 3.141592653589793 rad pos: -42.5,25.5 parent: 2 type: Transform - - uid: 13810 + - uid: 13858 components: - rot: 3.141592653589793 rad pos: -42.5,26.5 parent: 2 type: Transform - - uid: 13811 + - uid: 13859 components: - rot: -1.5707963267948966 rad pos: -38.5,19.5 parent: 2 type: Transform - - uid: 13812 + - uid: 13860 components: - pos: -42.5,18.5 parent: 2 type: Transform - - uid: 13813 + - uid: 13861 components: - pos: -42.5,17.5 parent: 2 type: Transform - - uid: 13814 + - uid: 13862 components: - pos: -42.5,15.5 parent: 2 type: Transform - - uid: 13815 + - uid: 13863 components: - pos: -42.5,16.5 parent: 2 type: Transform - - uid: 13816 + - uid: 13864 components: - rot: 3.141592653589793 rad pos: -5.5,-19.5 parent: 2 type: Transform - - uid: 13817 + - uid: 13865 components: - rot: 3.141592653589793 rad pos: -5.5,-17.5 parent: 2 type: Transform - - uid: 13818 + - uid: 13866 components: - rot: -1.5707963267948966 rad pos: -44.5,5.5 parent: 2 type: Transform - - uid: 13819 + - uid: 13867 components: - pos: -45.5,4.5 parent: 2 type: Transform - - uid: 13820 + - uid: 13868 components: - pos: -45.5,3.5 parent: 2 type: Transform - - uid: 13821 + - uid: 13869 components: - pos: -45.5,2.5 parent: 2 type: Transform - - uid: 13822 + - uid: 13870 components: - pos: -45.5,1.5 parent: 2 type: Transform - - uid: 13823 + - uid: 13871 components: - pos: -45.5,0.5 parent: 2 type: Transform - - uid: 13824 + - uid: 13872 components: - rot: -1.5707963267948966 rad pos: -31.5,-0.5 parent: 2 type: Transform - - uid: 13825 + - uid: 13873 components: - rot: -1.5707963267948966 rad pos: -32.5,-0.5 parent: 2 type: Transform - - uid: 13826 + - uid: 13874 components: - rot: -1.5707963267948966 rad pos: -33.5,-0.5 parent: 2 type: Transform - - uid: 13827 + - uid: 13875 components: - rot: -1.5707963267948966 rad pos: -34.5,-0.5 parent: 2 type: Transform - - uid: 13828 + - uid: 13876 components: - rot: -1.5707963267948966 rad pos: -35.5,-0.5 parent: 2 type: Transform - - uid: 13829 + - uid: 13877 components: - rot: -1.5707963267948966 rad pos: -36.5,-0.5 parent: 2 type: Transform - - uid: 13830 + - uid: 13878 components: - rot: -1.5707963267948966 rad pos: -37.5,-0.5 parent: 2 type: Transform - - uid: 13831 + - uid: 13879 components: - rot: -1.5707963267948966 rad pos: -38.5,-0.5 parent: 2 type: Transform - - uid: 13832 + - uid: 13880 components: - rot: -1.5707963267948966 rad pos: -39.5,-0.5 parent: 2 type: Transform - - uid: 13833 + - uid: 13881 components: - rot: -1.5707963267948966 rad pos: -40.5,-0.5 parent: 2 type: Transform - - uid: 13834 + - uid: 13882 components: - rot: -1.5707963267948966 rad pos: -41.5,-0.5 parent: 2 type: Transform - - uid: 13835 + - uid: 13883 components: - rot: -1.5707963267948966 rad pos: -42.5,-0.5 parent: 2 type: Transform - - uid: 13836 + - uid: 13884 components: - rot: -1.5707963267948966 rad pos: -43.5,-0.5 parent: 2 type: Transform - - uid: 13837 + - uid: 13885 components: - rot: -1.5707963267948966 rad pos: -44.5,-0.5 parent: 2 type: Transform - - uid: 13838 + - uid: 13886 components: - rot: 3.141592653589793 rad pos: -5.5,-20.5 parent: 2 type: Transform - - uid: 13839 + - uid: 13887 components: - rot: 3.141592653589793 rad pos: -5.5,-18.5 parent: 2 type: Transform - - uid: 13840 + - uid: 13888 components: - rot: -1.5707963267948966 rad pos: -42.5,18.5 parent: 2 type: Transform - - uid: 13841 + - uid: 13889 components: - rot: 3.141592653589793 rad pos: -3.5,-22.5 parent: 2 type: Transform - - uid: 13842 + - uid: 13890 components: - rot: 3.141592653589793 rad pos: -3.5,-23.5 parent: 2 type: Transform - - uid: 13843 + - uid: 13891 components: - rot: 1.5707963267948966 rad pos: -7.5,-9.5 parent: 2 type: Transform - - uid: 13844 + - uid: 13892 components: - rot: 1.5707963267948966 rad pos: 28.5,-86.5 parent: 2 type: Transform - - uid: 13845 + - uid: 13893 components: - rot: 3.141592653589793 rad pos: 15.5,-30.5 parent: 2 type: Transform - - uid: 13846 + - uid: 13894 components: - rot: 3.141592653589793 rad pos: 25.5,-53.5 parent: 2 type: Transform - - uid: 13847 + - uid: 13895 components: - rot: 3.141592653589793 rad pos: 18.5,-53.5 parent: 2 type: Transform - - uid: 13848 + - uid: 13896 components: - rot: 3.141592653589793 rad pos: 15.5,-40.5 parent: 2 type: Transform - - uid: 13849 + - uid: 13897 components: - rot: 3.141592653589793 rad pos: 15.5,-38.5 parent: 2 type: Transform - - uid: 13850 + - uid: 13898 components: - pos: -5.5,-55.5 parent: 2 type: Transform - - uid: 13851 + - uid: 13899 components: - pos: -5.5,-56.5 parent: 2 type: Transform - - uid: 13852 + - uid: 13900 components: - pos: -5.5,-57.5 parent: 2 type: Transform - - uid: 13853 + - uid: 13901 components: - pos: -5.5,-58.5 parent: 2 type: Transform - - uid: 13854 + - uid: 13902 components: - pos: -5.5,-59.5 parent: 2 type: Transform - - uid: 13855 + - uid: 13903 components: - pos: -5.5,-60.5 parent: 2 type: Transform - - uid: 13856 + - uid: 13904 components: - pos: -6.5,-62.5 parent: 2 type: Transform - - uid: 13857 + - uid: 13905 components: - pos: -6.5,-63.5 parent: 2 type: Transform - - uid: 13858 + - uid: 13906 components: - pos: -6.5,-64.5 parent: 2 type: Transform - - uid: 13859 + - uid: 13907 components: - rot: 1.5707963267948966 rad pos: -8.5,-66.5 parent: 2 type: Transform - - uid: 13860 + - uid: 13908 components: - rot: 3.141592653589793 rad pos: -3.5,-66.5 parent: 2 type: Transform - - uid: 13861 + - uid: 13909 components: - rot: 3.141592653589793 rad pos: -3.5,-65.5 parent: 2 type: Transform - - uid: 13862 + - uid: 13910 components: - rot: 3.141592653589793 rad pos: -3.5,-64.5 parent: 2 type: Transform - - uid: 13863 + - uid: 13911 components: - rot: 3.141592653589793 rad pos: -3.5,-63.5 parent: 2 type: Transform - - uid: 13864 + - uid: 13912 components: - rot: 3.141592653589793 rad pos: -3.5,-62.5 parent: 2 type: Transform - - uid: 13865 + - uid: 13913 components: - rot: -1.5707963267948966 rad pos: -4.5,-61.5 parent: 2 type: Transform - - uid: 13866 + - uid: 13914 components: - rot: -1.5707963267948966 rad pos: -2.5,-61.5 parent: 2 type: Transform - - uid: 13867 + - uid: 13915 components: - rot: -1.5707963267948966 rad pos: -1.5,-61.5 parent: 2 type: Transform - - uid: 13868 + - uid: 13916 components: - rot: -1.5707963267948966 rad pos: -0.5,-61.5 parent: 2 type: Transform - - uid: 13869 + - uid: 13917 components: - rot: -1.5707963267948966 rad pos: 0.5,-61.5 parent: 2 type: Transform - - uid: 13870 + - uid: 13918 components: - rot: -1.5707963267948966 rad pos: 1.5,-61.5 parent: 2 type: Transform - - uid: 13871 + - uid: 13919 components: - pos: 2.5,-62.5 parent: 2 type: Transform - - uid: 13872 + - uid: 13920 components: - rot: -1.5707963267948966 rad pos: -7.5,-61.5 parent: 2 type: Transform - - uid: 13873 + - uid: 13921 components: - rot: -1.5707963267948966 rad pos: -8.5,-61.5 parent: 2 type: Transform - - uid: 13874 + - uid: 13922 components: - rot: -1.5707963267948966 rad pos: -9.5,-61.5 parent: 2 type: Transform - - uid: 13875 + - uid: 13923 components: - rot: -1.5707963267948966 rad pos: -10.5,-61.5 parent: 2 type: Transform - - uid: 13876 + - uid: 13924 components: - rot: -1.5707963267948966 rad pos: -11.5,-61.5 parent: 2 type: Transform - - uid: 13877 + - uid: 13925 components: - rot: -1.5707963267948966 rad pos: -12.5,-61.5 parent: 2 type: Transform - - uid: 13878 + - uid: 13926 components: - pos: -13.5,-62.5 parent: 2 type: Transform - - uid: 13879 + - uid: 13927 components: - rot: 3.141592653589793 rad pos: -13.5,-63.5 parent: 2 type: Transform - - uid: 13880 + - uid: 13928 components: - rot: 3.141592653589793 rad pos: -13.5,-64.5 parent: 2 type: Transform - - uid: 13881 + - uid: 13929 components: - rot: 3.141592653589793 rad pos: -13.5,-65.5 parent: 2 type: Transform - - uid: 13882 + - uid: 13930 components: - rot: 3.141592653589793 rad pos: -13.5,-66.5 parent: 2 type: Transform - - uid: 13883 + - uid: 13931 components: - rot: 1.5707963267948966 rad pos: -14.5,-67.5 parent: 2 type: Transform - - uid: 13884 + - uid: 13932 components: - rot: 1.5707963267948966 rad pos: -15.5,-67.5 parent: 2 type: Transform - - uid: 13885 + - uid: 13933 components: - rot: 3.141592653589793 rad pos: -3.5,-26.5 parent: 2 type: Transform - - uid: 13886 + - uid: 13934 components: - rot: 3.141592653589793 rad pos: -12.5,6.5 parent: 2 type: Transform - - uid: 13887 + - uid: 13935 components: - rot: 3.141592653589793 rad pos: -12.5,7.5 parent: 2 type: Transform - - uid: 13888 + - uid: 13936 components: - pos: -45.5,12.5 parent: 2 type: Transform - - uid: 13889 + - uid: 13937 components: - pos: -45.5,13.5 parent: 2 type: Transform - - uid: 13890 + - uid: 13938 components: - rot: 1.5707963267948966 rad pos: -44.5,18.5 parent: 2 type: Transform - - uid: 13891 + - uid: 13939 components: - rot: -1.5707963267948966 rad pos: -39.5,23.5 parent: 2 type: Transform - - uid: 13892 + - uid: 13940 components: - pos: -45.5,14.5 parent: 2 type: Transform - - uid: 13893 + - uid: 13941 components: - pos: -45.5,15.5 parent: 2 type: Transform - - uid: 13894 + - uid: 13942 components: - pos: -45.5,16.5 parent: 2 type: Transform - - uid: 13895 + - uid: 13943 components: - pos: -45.5,17.5 parent: 2 type: Transform - - uid: 13896 + - uid: 13944 components: - rot: -1.5707963267948966 rad pos: -43.5,18.5 parent: 2 type: Transform - - uid: 13897 + - uid: 13945 components: - pos: -19.5,24.5 parent: 2 type: Transform - - uid: 13898 + - uid: 13946 components: - pos: -19.5,25.5 parent: 2 type: Transform - - uid: 13899 + - uid: 13947 components: - pos: -19.5,26.5 parent: 2 type: Transform - - uid: 13900 + - uid: 13948 components: - pos: -19.5,27.5 parent: 2 type: Transform - - uid: 13901 + - uid: 13949 components: - pos: -19.5,28.5 parent: 2 type: Transform - - uid: 13902 + - uid: 13950 components: - rot: 1.5707963267948966 rad pos: -18.5,29.5 parent: 2 type: Transform - - uid: 13903 + - uid: 13951 components: - rot: 1.5707963267948966 rad pos: -17.5,29.5 parent: 2 type: Transform - - uid: 13904 + - uid: 13952 components: - rot: 1.5707963267948966 rad pos: -16.5,29.5 parent: 2 type: Transform - - uid: 13905 + - uid: 13953 components: - rot: 3.141592653589793 rad pos: -15.5,30.5 parent: 2 type: Transform - - uid: 13906 + - uid: 13954 components: - rot: 3.141592653589793 rad pos: -15.5,31.5 parent: 2 type: Transform - - uid: 13907 + - uid: 13955 components: - rot: 3.141592653589793 rad pos: -15.5,32.5 parent: 2 type: Transform - - uid: 13908 + - uid: 13956 components: - rot: 3.141592653589793 rad pos: -15.5,33.5 parent: 2 type: Transform - - uid: 13909 + - uid: 13957 components: - rot: 3.141592653589793 rad pos: -15.5,34.5 parent: 2 type: Transform - - uid: 13910 + - uid: 13958 components: - rot: 3.141592653589793 rad pos: -15.5,35.5 parent: 2 type: Transform - - uid: 13911 + - uid: 13959 components: - rot: 3.141592653589793 rad pos: -15.5,36.5 parent: 2 type: Transform - - uid: 13912 + - uid: 13960 components: - rot: -1.5707963267948966 rad pos: -16.5,37.5 parent: 2 type: Transform - - uid: 13913 + - uid: 13961 components: - pos: -15.5,38.5 parent: 2 type: Transform - - uid: 13914 + - uid: 13962 components: - pos: -15.5,39.5 parent: 2 type: Transform - - uid: 13915 + - uid: 13963 components: - pos: -15.5,40.5 parent: 2 type: Transform - - uid: 13916 + - uid: 13964 components: - pos: -15.5,41.5 parent: 2 type: Transform - - uid: 13917 + - uid: 13965 components: - pos: -15.5,42.5 parent: 2 type: Transform - - uid: 13918 + - uid: 13966 components: - pos: -15.5,43.5 parent: 2 type: Transform - - uid: 13919 + - uid: 13967 components: - rot: -1.5707963267948966 rad pos: -14.5,44.5 parent: 2 type: Transform - - uid: 13920 + - uid: 13968 components: - rot: -1.5707963267948966 rad pos: -13.5,44.5 parent: 2 type: Transform - - uid: 13921 + - uid: 13969 components: - rot: -1.5707963267948966 rad pos: -12.5,44.5 parent: 2 type: Transform - - uid: 13922 + - uid: 13970 components: - rot: -1.5707963267948966 rad pos: -11.5,44.5 parent: 2 type: Transform - - uid: 13923 + - uid: 13971 components: - rot: -1.5707963267948966 rad pos: -16.5,44.5 parent: 2 type: Transform - - uid: 13924 + - uid: 13972 components: - rot: 3.141592653589793 rad pos: -17.5,45.5 parent: 2 type: Transform - - uid: 13925 + - uid: 13973 components: - rot: 3.141592653589793 rad pos: -17.5,46.5 parent: 2 type: Transform - - uid: 13926 + - uid: 13974 components: - rot: 3.141592653589793 rad pos: -17.5,47.5 parent: 2 type: Transform - - uid: 13927 + - uid: 13975 components: - rot: 3.141592653589793 rad pos: -17.5,48.5 parent: 2 type: Transform - - uid: 13928 + - uid: 13976 components: - rot: 3.141592653589793 rad pos: -17.5,49.5 parent: 2 type: Transform - - uid: 13929 + - uid: 13977 components: - rot: -1.5707963267948966 rad pos: -5.5,44.5 parent: 2 type: Transform - - uid: 13930 + - uid: 13978 components: - rot: -1.5707963267948966 rad pos: -6.5,44.5 parent: 2 type: Transform - - uid: 13931 + - uid: 13979 components: - rot: -1.5707963267948966 rad pos: -7.5,44.5 parent: 2 type: Transform - - uid: 13932 + - uid: 13980 components: - rot: -1.5707963267948966 rad pos: -8.5,44.5 parent: 2 type: Transform - - uid: 13933 + - uid: 13981 components: - rot: -1.5707963267948966 rad pos: -9.5,44.5 parent: 2 type: Transform - - uid: 13934 + - uid: 13982 components: - rot: -1.5707963267948966 rad pos: -10.5,44.5 parent: 2 type: Transform - - uid: 13935 + - uid: 13983 components: - rot: -1.5707963267948966 rad pos: -14.5,50.5 parent: 2 type: Transform - - uid: 13936 + - uid: 13984 components: - rot: -1.5707963267948966 rad pos: -16.5,50.5 parent: 2 type: Transform - - uid: 13937 + - uid: 13985 components: - rot: -1.5707963267948966 rad pos: -15.5,50.5 parent: 2 type: Transform - - uid: 13938 + - uid: 13986 components: - pos: -37.5,-94.5 parent: 2 type: Transform - - uid: 13939 + - uid: 13987 components: - rot: -1.5707963267948966 rad pos: -39.5,-95.5 parent: 2 type: Transform - - uid: 13940 + - uid: 13988 components: - rot: -1.5707963267948966 rad pos: -40.5,-95.5 parent: 2 type: Transform - - uid: 13941 + - uid: 13989 components: - rot: 3.141592653589793 rad pos: -41.5,-94.5 parent: 2 type: Transform - - uid: 13942 + - uid: 13990 components: - rot: 3.141592653589793 rad pos: -41.5,-93.5 parent: 2 type: Transform - - uid: 13943 + - uid: 13991 components: - rot: 3.141592653589793 rad pos: -41.5,-92.5 parent: 2 type: Transform - - uid: 13944 + - uid: 13992 components: - rot: 3.141592653589793 rad pos: -41.5,-91.5 parent: 2 type: Transform - - uid: 13945 + - uid: 13993 components: - rot: 3.141592653589793 rad pos: -41.5,-90.5 parent: 2 type: Transform - - uid: 13946 + - uid: 13994 components: - rot: 3.141592653589793 rad pos: -41.5,-89.5 parent: 2 type: Transform - - uid: 13947 + - uid: 13995 components: - rot: 3.141592653589793 rad pos: -41.5,-88.5 parent: 2 type: Transform - - uid: 13948 + - uid: 13996 components: - rot: 1.5707963267948966 rad pos: 68.5,-47.5 parent: 2 type: Transform - - uid: 13949 + - uid: 13997 components: - rot: 1.5707963267948966 rad pos: 69.5,-47.5 parent: 2 type: Transform - - uid: 13950 + - uid: 13998 components: - rot: 1.5707963267948966 rad pos: 70.5,-47.5 parent: 2 type: Transform - - uid: 13951 + - uid: 13999 components: - rot: 1.5707963267948966 rad pos: 71.5,-47.5 parent: 2 type: Transform - - uid: 13952 + - uid: 14000 components: - rot: 1.5707963267948966 rad pos: 72.5,-47.5 parent: 2 type: Transform - - uid: 13953 + - uid: 14001 components: - rot: 1.5707963267948966 rad pos: 73.5,-47.5 parent: 2 type: Transform - - uid: 13954 + - uid: 14002 components: - rot: 1.5707963267948966 rad pos: 74.5,-47.5 parent: 2 type: Transform - - uid: 13955 + - uid: 14003 components: - rot: 3.141592653589793 rad pos: 75.5,-46.5 parent: 2 type: Transform - - uid: 13956 + - uid: 14004 components: - rot: 3.141592653589793 rad pos: 75.5,-45.5 parent: 2 type: Transform - - uid: 13957 + - uid: 14005 components: - rot: 3.141592653589793 rad pos: 75.5,-44.5 parent: 2 type: Transform - - uid: 13958 + - uid: 14006 components: - rot: 3.141592653589793 rad pos: 75.5,-43.5 parent: 2 type: Transform - - uid: 13959 + - uid: 14007 components: - rot: 3.141592653589793 rad pos: 75.5,-42.5 parent: 2 type: Transform - - uid: 13960 + - uid: 14008 components: - rot: 3.141592653589793 rad pos: 75.5,-41.5 parent: 2 type: Transform - - uid: 13961 + - uid: 14009 components: - rot: 3.141592653589793 rad pos: 75.5,-40.5 parent: 2 type: Transform - - uid: 13962 + - uid: 14010 components: - rot: 3.141592653589793 rad pos: 75.5,-39.5 parent: 2 type: Transform - - uid: 13963 + - uid: 14011 components: - rot: 3.141592653589793 rad pos: 75.5,-38.5 parent: 2 type: Transform - - uid: 13964 + - uid: 14012 components: - rot: 3.141592653589793 rad pos: 75.5,-37.5 parent: 2 type: Transform - - uid: 13965 + - uid: 14013 components: - rot: 3.141592653589793 rad pos: 75.5,-36.5 parent: 2 type: Transform - - uid: 13966 + - uid: 14014 components: - rot: 3.141592653589793 rad pos: 75.5,-35.5 parent: 2 type: Transform - - uid: 13967 + - uid: 14015 components: - rot: 3.141592653589793 rad pos: 75.5,-34.5 parent: 2 type: Transform - - uid: 13968 + - uid: 14016 components: - rot: 3.141592653589793 rad pos: 75.5,-33.5 parent: 2 type: Transform - - uid: 13969 + - uid: 14017 components: - rot: 3.141592653589793 rad pos: -4.5,-3.5 parent: 2 type: Transform - - uid: 13970 + - uid: 14018 components: - rot: 3.141592653589793 rad pos: -4.5,-4.5 parent: 2 type: Transform - - uid: 13971 + - uid: 14019 components: - rot: 3.141592653589793 rad pos: 15.5,-31.5 parent: 2 type: Transform - - uid: 13972 + - uid: 14020 components: - pos: -42.5,14.5 parent: 2 type: Transform - - uid: 13973 + - uid: 14021 components: - rot: 1.5707963267948966 rad pos: -53.5,-64.5 parent: 2 type: Transform - - uid: 13974 + - uid: 14022 components: - pos: 30.5,-81.5 parent: 2 type: Transform - - uid: 13975 + - uid: 14023 components: - rot: 3.141592653589793 rad pos: -5.5,-16.5 parent: 2 type: Transform - - uid: 13976 + - uid: 14024 components: - rot: 3.141592653589793 rad pos: -5.5,-15.5 parent: 2 type: Transform - - uid: 13977 + - uid: 14025 components: - rot: 3.141592653589793 rad pos: -5.5,-14.5 parent: 2 type: Transform - - uid: 13978 + - uid: 14026 components: - rot: -1.5707963267948966 rad pos: -6.5,-13.5 parent: 2 type: Transform - - uid: 13979 + - uid: 14027 components: - rot: -1.5707963267948966 rad pos: -7.5,-13.5 parent: 2 type: Transform - - uid: 13980 + - uid: 14028 components: - rot: -1.5707963267948966 rad pos: -8.5,-13.5 parent: 2 type: Transform - - uid: 13981 + - uid: 14029 components: - rot: -1.5707963267948966 rad pos: -9.5,-13.5 parent: 2 type: Transform - - uid: 13982 + - uid: 14030 components: - pos: -12.5,-13.5 parent: 2 type: Transform - - uid: 13983 + - uid: 14031 components: - rot: -1.5707963267948966 rad pos: -13.5,-14.5 parent: 2 type: Transform - - uid: 13984 + - uid: 14032 components: - rot: -1.5707963267948966 rad pos: -14.5,-14.5 parent: 2 type: Transform - - uid: 13985 + - uid: 14033 components: - rot: -1.5707963267948966 rad pos: -15.5,-14.5 parent: 2 type: Transform - - uid: 13986 + - uid: 14034 components: - rot: -1.5707963267948966 rad pos: -16.5,-14.5 parent: 2 type: Transform - - uid: 13987 + - uid: 14035 components: - rot: -1.5707963267948966 rad pos: -17.5,-14.5 parent: 2 type: Transform - - uid: 13988 + - uid: 14036 components: - rot: 3.141592653589793 rad pos: -18.5,-13.5 parent: 2 type: Transform - - uid: 13989 + - uid: 14037 components: - rot: 3.141592653589793 rad pos: -18.5,-12.5 parent: 2 type: Transform - - uid: 13990 + - uid: 14038 components: - rot: 3.141592653589793 rad pos: -18.5,-11.5 parent: 2 type: Transform - - uid: 13991 + - uid: 14039 components: - rot: 3.141592653589793 rad pos: -18.5,-10.5 parent: 2 type: Transform - - uid: 13992 + - uid: 14040 components: - rot: 3.141592653589793 rad pos: -18.5,-9.5 parent: 2 type: Transform - - uid: 13993 + - uid: 14041 components: - rot: 3.141592653589793 rad pos: -18.5,-8.5 parent: 2 type: Transform - - uid: 13994 + - uid: 14042 components: - rot: 3.141592653589793 rad pos: -18.5,-7.5 parent: 2 type: Transform - - uid: 13995 + - uid: 14043 components: - rot: 3.141592653589793 rad pos: -18.5,-6.5 parent: 2 type: Transform - - uid: 13996 + - uid: 14044 components: - rot: 3.141592653589793 rad pos: -18.5,-5.5 parent: 2 type: Transform - - uid: 13997 + - uid: 14045 components: - rot: -1.5707963267948966 rad pos: -19.5,-4.5 parent: 2 type: Transform - - uid: 13998 + - uid: 14046 components: - rot: -1.5707963267948966 rad pos: -20.5,-4.5 parent: 2 type: Transform - - uid: 13999 + - uid: 14047 components: - rot: -1.5707963267948966 rad pos: -21.5,-4.5 parent: 2 type: Transform - - uid: 14000 + - uid: 14048 components: - rot: -1.5707963267948966 rad pos: -22.5,-4.5 parent: 2 type: Transform - - uid: 14001 + - uid: 14049 components: - rot: -1.5707963267948966 rad pos: -23.5,-4.5 parent: 2 type: Transform - - uid: 14002 + - uid: 14050 components: - rot: 3.141592653589793 rad pos: -24.5,-3.5 parent: 2 type: Transform - - uid: 14003 + - uid: 14051 components: - rot: 3.141592653589793 rad pos: -24.5,-2.5 parent: 2 type: Transform - - uid: 14004 + - uid: 14052 components: - rot: 3.141592653589793 rad pos: -24.5,-1.5 parent: 2 type: Transform - - uid: 14005 + - uid: 14053 components: - rot: 3.141592653589793 rad pos: -24.5,-0.5 parent: 2 type: Transform - - uid: 14006 + - uid: 14054 components: - rot: 3.141592653589793 rad pos: -24.5,0.5 parent: 2 type: Transform - - uid: 14007 + - uid: 14055 components: - rot: 3.141592653589793 rad pos: -24.5,1.5 parent: 2 type: Transform - - uid: 14008 + - uid: 14056 components: - rot: 3.141592653589793 rad pos: -24.5,2.5 parent: 2 type: Transform - - uid: 14009 + - uid: 14057 components: - rot: 3.141592653589793 rad pos: -24.5,3.5 parent: 2 type: Transform - - uid: 14010 + - uid: 14058 components: - rot: 3.141592653589793 rad pos: -24.5,4.5 parent: 2 type: Transform - - uid: 14011 + - uid: 14059 components: - rot: 3.141592653589793 rad pos: -24.5,5.5 parent: 2 type: Transform - - uid: 14012 + - uid: 14060 components: - rot: 3.141592653589793 rad pos: -24.5,6.5 parent: 2 type: Transform - - uid: 14013 + - uid: 14061 components: - rot: 3.141592653589793 rad pos: -24.5,7.5 parent: 2 type: Transform - - uid: 14014 + - uid: 14062 components: - rot: 1.5707963267948966 rad pos: -23.5,8.5 parent: 2 type: Transform - - uid: 14015 + - uid: 14063 components: - rot: 1.5707963267948966 rad pos: -22.5,8.5 parent: 2 type: Transform - - uid: 14016 + - uid: 14064 components: - rot: 1.5707963267948966 rad pos: -21.5,8.5 parent: 2 type: Transform - - uid: 14017 + - uid: 14065 components: - rot: 3.141592653589793 rad pos: -20.5,9.5 parent: 2 type: Transform - - uid: 14018 + - uid: 14066 components: - rot: 3.141592653589793 rad pos: -20.5,10.5 parent: 2 type: Transform - - uid: 14019 + - uid: 14067 components: - rot: 3.141592653589793 rad pos: -20.5,11.5 parent: 2 type: Transform - - uid: 14020 + - uid: 14068 components: - rot: 3.141592653589793 rad pos: -20.5,12.5 parent: 2 type: Transform - - uid: 14021 + - uid: 14069 components: - rot: 3.141592653589793 rad pos: -20.5,13.5 parent: 2 type: Transform - - uid: 14022 + - uid: 14070 components: - rot: 3.141592653589793 rad pos: -20.5,14.5 parent: 2 type: Transform - - uid: 14023 + - uid: 14071 components: - rot: 3.141592653589793 rad pos: -20.5,15.5 parent: 2 type: Transform - - uid: 14024 + - uid: 14072 components: - rot: 3.141592653589793 rad pos: -20.5,16.5 parent: 2 type: Transform - - uid: 14025 + - uid: 14073 components: - rot: 3.141592653589793 rad pos: -20.5,17.5 parent: 2 type: Transform - - uid: 14026 + - uid: 14074 components: - rot: 3.141592653589793 rad pos: -20.5,18.5 parent: 2 type: Transform - - uid: 14027 + - uid: 14075 components: - rot: 3.141592653589793 rad pos: -20.5,19.5 parent: 2 type: Transform - - uid: 14028 + - uid: 14076 components: - rot: -1.5707963267948966 rad pos: -21.5,20.5 parent: 2 type: Transform - - uid: 14029 + - uid: 14077 components: - rot: -1.5707963267948966 rad pos: -22.5,20.5 parent: 2 type: Transform - - uid: 14030 + - uid: 14078 components: - rot: -1.5707963267948966 rad pos: -23.5,20.5 parent: 2 type: Transform - - uid: 14031 + - uid: 14079 components: - rot: -1.5707963267948966 rad pos: -24.5,20.5 parent: 2 type: Transform - - uid: 14032 + - uid: 14080 components: - rot: -1.5707963267948966 rad pos: -26.5,19.5 parent: 2 type: Transform - - uid: 14033 + - uid: 14081 components: - rot: -1.5707963267948966 rad pos: -27.5,19.5 parent: 2 type: Transform - - uid: 14034 + - uid: 14082 components: - rot: -1.5707963267948966 rad pos: -28.5,19.5 parent: 2 type: Transform - - uid: 14035 + - uid: 14083 components: - rot: -1.5707963267948966 rad pos: -29.5,19.5 parent: 2 type: Transform - - uid: 14036 + - uid: 14084 components: - rot: -1.5707963267948966 rad pos: -30.5,19.5 parent: 2 type: Transform - - uid: 14037 + - uid: 14085 components: - rot: -1.5707963267948966 rad pos: -31.5,19.5 parent: 2 type: Transform - - uid: 14038 + - uid: 14086 components: - rot: -1.5707963267948966 rad pos: -32.5,19.5 parent: 2 type: Transform - - uid: 14039 + - uid: 14087 components: - rot: -1.5707963267948966 rad pos: -33.5,19.5 parent: 2 type: Transform - - uid: 14040 + - uid: 14088 components: - rot: -1.5707963267948966 rad pos: -34.5,19.5 parent: 2 type: Transform - - uid: 14041 + - uid: 14089 components: - rot: -1.5707963267948966 rad pos: -36.5,19.5 parent: 2 type: Transform - - uid: 14042 + - uid: 14090 components: - rot: -1.5707963267948966 rad pos: -39.5,19.5 parent: 2 type: Transform - - uid: 14043 + - uid: 14091 components: - rot: -1.5707963267948966 rad pos: -40.5,19.5 parent: 2 type: Transform - - uid: 14044 + - uid: 14092 components: - rot: -1.5707963267948966 rad pos: -37.5,19.5 parent: 2 type: Transform - - uid: 14045 + - uid: 14093 components: - rot: 3.141592653589793 rad pos: -46.5,9.5 parent: 2 type: Transform - - uid: 14046 + - uid: 14094 components: - rot: 3.141592653589793 rad pos: -46.5,8.5 parent: 2 type: Transform - - uid: 14047 + - uid: 14095 components: - rot: 3.141592653589793 rad pos: -46.5,7.5 parent: 2 type: Transform - - uid: 14048 + - uid: 14096 components: - rot: 3.141592653589793 rad pos: -46.5,6.5 parent: 2 type: Transform - - uid: 14049 + - uid: 14097 components: - rot: 3.141592653589793 rad pos: -46.5,5.5 parent: 2 type: Transform - - uid: 14050 + - uid: 14098 components: - rot: 3.141592653589793 rad pos: -46.5,4.5 parent: 2 type: Transform - - uid: 14051 + - uid: 14099 components: - rot: 3.141592653589793 rad pos: -46.5,3.5 parent: 2 type: Transform - - uid: 14052 + - uid: 14100 components: - rot: 3.141592653589793 rad pos: -46.5,2.5 parent: 2 type: Transform - - uid: 14053 + - uid: 14101 components: - rot: 3.141592653589793 rad pos: -46.5,1.5 parent: 2 type: Transform - - uid: 14054 + - uid: 14102 components: - rot: 1.5707963267948966 rad pos: -45.5,0.5 parent: 2 type: Transform - - uid: 14055 + - uid: 14103 components: - rot: 1.5707963267948966 rad pos: -44.5,0.5 parent: 2 type: Transform - - uid: 14056 + - uid: 14104 components: - rot: 1.5707963267948966 rad pos: -43.5,0.5 parent: 2 type: Transform - - uid: 14057 + - uid: 14105 components: - rot: 1.5707963267948966 rad pos: -42.5,0.5 parent: 2 type: Transform - - uid: 14058 + - uid: 14106 components: - rot: 1.5707963267948966 rad pos: -41.5,0.5 parent: 2 type: Transform - - uid: 14059 + - uid: 14107 components: - rot: 1.5707963267948966 rad pos: -40.5,0.5 parent: 2 type: Transform - - uid: 14060 + - uid: 14108 components: - rot: 1.5707963267948966 rad pos: -39.5,0.5 parent: 2 type: Transform - - uid: 14061 + - uid: 14109 components: - rot: 1.5707963267948966 rad pos: -38.5,0.5 parent: 2 type: Transform - - uid: 14062 + - uid: 14110 components: - rot: 1.5707963267948966 rad pos: -37.5,0.5 parent: 2 type: Transform - - uid: 14063 + - uid: 14111 components: - rot: 1.5707963267948966 rad pos: -36.5,0.5 parent: 2 type: Transform - - uid: 14064 + - uid: 14112 components: - rot: 1.5707963267948966 rad pos: -35.5,0.5 parent: 2 type: Transform - - uid: 14065 + - uid: 14113 components: - rot: 1.5707963267948966 rad pos: -34.5,0.5 parent: 2 type: Transform - - uid: 14066 + - uid: 14114 components: - rot: 1.5707963267948966 rad pos: -33.5,0.5 parent: 2 type: Transform - - uid: 14067 + - uid: 14115 components: - rot: 1.5707963267948966 rad pos: -32.5,0.5 parent: 2 type: Transform - - uid: 14068 + - uid: 14116 components: - rot: 1.5707963267948966 rad pos: -31.5,0.5 parent: 2 type: Transform - - uid: 14069 + - uid: 14117 components: - rot: 1.5707963267948966 rad pos: -30.5,0.5 parent: 2 type: Transform - - uid: 14070 + - uid: 14118 components: - rot: 1.5707963267948966 rad pos: -29.5,0.5 parent: 2 type: Transform - - uid: 14071 + - uid: 14119 components: - rot: 1.5707963267948966 rad pos: -28.5,0.5 parent: 2 type: Transform - - uid: 14072 + - uid: 14120 components: - rot: 1.5707963267948966 rad pos: -27.5,0.5 parent: 2 type: Transform - - uid: 14073 + - uid: 14121 components: - pos: -26.5,-0.5 parent: 2 type: Transform - - uid: 14074 + - uid: 14122 components: - pos: -26.5,-1.5 parent: 2 type: Transform - - uid: 14075 + - uid: 14123 components: - pos: -26.5,-2.5 parent: 2 type: Transform - - uid: 14076 + - uid: 14124 components: - pos: -26.5,-3.5 parent: 2 type: Transform - - uid: 14077 + - uid: 14125 components: - pos: -26.5,-4.5 parent: 2 type: Transform - - uid: 14078 + - uid: 14126 components: - rot: 1.5707963267948966 rad pos: -25.5,-5.5 parent: 2 type: Transform - - uid: 14079 + - uid: 14127 components: - rot: 1.5707963267948966 rad pos: -24.5,-5.5 parent: 2 type: Transform - - uid: 14080 + - uid: 14128 components: - rot: 1.5707963267948966 rad pos: -23.5,-5.5 parent: 2 type: Transform - - uid: 14081 + - uid: 14129 components: - rot: 1.5707963267948966 rad pos: -22.5,-5.5 parent: 2 type: Transform - - uid: 14082 + - uid: 14130 components: - rot: 1.5707963267948966 rad pos: -21.5,-5.5 parent: 2 type: Transform - - uid: 14083 + - uid: 14131 components: - pos: -20.5,-6.5 parent: 2 type: Transform - - uid: 14084 + - uid: 14132 components: - pos: -20.5,-7.5 parent: 2 type: Transform - - uid: 14085 + - uid: 14133 components: - pos: -20.5,-8.5 parent: 2 type: Transform - - uid: 14086 + - uid: 14134 components: - pos: -20.5,-9.5 parent: 2 type: Transform - - uid: 14087 + - uid: 14135 components: - pos: -20.5,-10.5 parent: 2 type: Transform - - uid: 14088 + - uid: 14136 components: - pos: -20.5,-11.5 parent: 2 type: Transform - - uid: 14089 + - uid: 14137 components: - pos: -20.5,-12.5 parent: 2 type: Transform - - uid: 14090 + - uid: 14138 components: - pos: -20.5,-13.5 parent: 2 type: Transform - - uid: 14091 + - uid: 14139 components: - pos: -20.5,-14.5 parent: 2 type: Transform - - uid: 14092 + - uid: 14140 components: - pos: -20.5,-15.5 parent: 2 type: Transform - - uid: 14093 + - uid: 14141 components: - pos: -20.5,-16.5 parent: 2 type: Transform - - uid: 14094 + - uid: 14142 components: - pos: -20.5,-17.5 parent: 2 type: Transform - - uid: 14095 + - uid: 14143 components: - pos: -20.5,-18.5 parent: 2 type: Transform - - uid: 14096 + - uid: 14144 components: - pos: -20.5,-19.5 parent: 2 type: Transform - - uid: 14097 + - uid: 14145 components: - pos: -20.5,-20.5 parent: 2 type: Transform - - uid: 14098 + - uid: 14146 components: - pos: -20.5,-21.5 parent: 2 type: Transform - - uid: 14099 + - uid: 14147 components: - pos: -20.5,-22.5 parent: 2 type: Transform - - uid: 14100 + - uid: 14148 components: - pos: -20.5,-23.5 parent: 2 type: Transform - - uid: 14101 + - uid: 14149 components: - pos: -20.5,-24.5 parent: 2 type: Transform - - uid: 14102 + - uid: 14150 components: - rot: 1.5707963267948966 rad pos: -19.5,-25.5 parent: 2 type: Transform - - uid: 14103 + - uid: 14151 components: - rot: 1.5707963267948966 rad pos: -18.5,-25.5 parent: 2 type: Transform - - uid: 14104 + - uid: 14152 components: - rot: 1.5707963267948966 rad pos: -17.5,-25.5 parent: 2 type: Transform - - uid: 14105 + - uid: 14153 components: - rot: 1.5707963267948966 rad pos: -16.5,-25.5 parent: 2 type: Transform - - uid: 14106 + - uid: 14154 components: - rot: 1.5707963267948966 rad pos: -15.5,-25.5 parent: 2 type: Transform - - uid: 14107 + - uid: 14155 components: - rot: 1.5707963267948966 rad pos: -14.5,-25.5 parent: 2 type: Transform - - uid: 14108 + - uid: 14156 components: - rot: 1.5707963267948966 rad pos: -13.5,-25.5 parent: 2 type: Transform - - uid: 14109 + - uid: 14157 components: - rot: 1.5707963267948966 rad pos: -12.5,-25.5 parent: 2 type: Transform - - uid: 14110 + - uid: 14158 components: - rot: 1.5707963267948966 rad pos: -11.5,-25.5 parent: 2 type: Transform - - uid: 14111 + - uid: 14159 components: - rot: 1.5707963267948966 rad pos: -10.5,-25.5 parent: 2 type: Transform - - uid: 14112 + - uid: 14160 components: - rot: 1.5707963267948966 rad pos: -9.5,-25.5 parent: 2 type: Transform - - uid: 14113 + - uid: 14161 components: - rot: 1.5707963267948966 rad pos: -8.5,-25.5 parent: 2 type: Transform - - uid: 14114 + - uid: 14162 components: - rot: 1.5707963267948966 rad pos: -7.5,-25.5 parent: 2 type: Transform - - uid: 14115 + - uid: 14163 components: - rot: 1.5707963267948966 rad pos: -6.5,-25.5 parent: 2 type: Transform - - uid: 14116 + - uid: 14164 components: - rot: -1.5707963267948966 rad pos: -41.5,18.5 parent: 2 type: Transform - - uid: 14117 + - uid: 14165 components: - pos: 30.5,-74.5 parent: 2 type: Transform - - uid: 14118 + - uid: 14166 components: - rot: 1.5707963267948966 rad pos: 26.5,-73.5 parent: 2 type: Transform - - uid: 14119 + - uid: 14167 components: - rot: 1.5707963267948966 rad pos: 27.5,-73.5 parent: 2 type: Transform - - uid: 14120 + - uid: 14168 components: - rot: 1.5707963267948966 rad pos: 28.5,-73.5 parent: 2 type: Transform - - uid: 14121 + - uid: 14169 components: - rot: 1.5707963267948966 rad pos: 29.5,-73.5 parent: 2 type: Transform - - uid: 14122 + - uid: 14170 components: - pos: 30.5,-76.5 parent: 2 type: Transform - - uid: 14123 + - uid: 14171 components: - pos: 30.5,-75.5 parent: 2 type: Transform - - uid: 14124 + - uid: 14172 components: - pos: 30.5,-82.5 parent: 2 type: Transform - - uid: 14125 + - uid: 14173 components: - rot: 1.5707963267948966 rad pos: 31.5,-73.5 parent: 2 type: Transform - - uid: 14126 + - uid: 14174 components: - rot: 1.5707963267948966 rad pos: 32.5,-73.5 parent: 2 type: Transform - - uid: 14127 + - uid: 14175 components: - rot: 1.5707963267948966 rad pos: 33.5,-73.5 parent: 2 type: Transform - - uid: 14128 + - uid: 14176 components: - rot: 1.5707963267948966 rad pos: 34.5,-73.5 parent: 2 type: Transform - - uid: 14129 + - uid: 14177 components: - rot: 1.5707963267948966 rad pos: 35.5,-73.5 parent: 2 type: Transform - - uid: 14130 + - uid: 14178 components: - rot: 1.5707963267948966 rad pos: 36.5,-73.5 parent: 2 type: Transform - - uid: 14131 + - uid: 14179 components: - rot: 1.5707963267948966 rad pos: 37.5,-73.5 parent: 2 type: Transform - - uid: 14132 + - uid: 14180 components: - rot: 1.5707963267948966 rad pos: 38.5,-73.5 parent: 2 type: Transform - - uid: 14133 + - uid: 14181 components: - rot: -1.5707963267948966 rad pos: 10.5,2.5 parent: 2 type: Transform - - uid: 14134 + - uid: 14182 components: - pos: -23.5,-81.5 parent: 2 type: Transform - - uid: 14135 + - uid: 14183 components: - rot: 1.5707963267948966 rad pos: -75.5,-41.5 parent: 2 type: Transform - - uid: 14136 + - uid: 14184 components: - rot: 1.5707963267948966 rad pos: -74.5,-41.5 parent: 2 type: Transform - - uid: 14137 + - uid: 14185 components: - rot: 1.5707963267948966 rad pos: -73.5,-41.5 parent: 2 type: Transform - - uid: 14138 + - uid: 14186 components: - rot: 1.5707963267948966 rad pos: -72.5,-41.5 parent: 2 type: Transform - - uid: 14139 + - uid: 14187 components: - rot: 1.5707963267948966 rad pos: -71.5,-41.5 parent: 2 type: Transform - - uid: 14140 + - uid: 14188 components: - rot: 1.5707963267948966 rad pos: -70.5,-41.5 parent: 2 type: Transform - - uid: 14141 + - uid: 14189 components: - rot: 1.5707963267948966 rad pos: -69.5,-41.5 parent: 2 type: Transform - - uid: 14142 + - uid: 14190 components: - rot: 1.5707963267948966 rad pos: -68.5,-41.5 parent: 2 type: Transform - - uid: 14143 + - uid: 14191 components: - rot: 1.5707963267948966 rad pos: -16.5,8.5 parent: 2 type: Transform - - uid: 14144 + - uid: 14192 components: - pos: -43.5,-36.5 parent: 2 type: Transform - - uid: 14145 + - uid: 14193 components: - pos: -43.5,-37.5 parent: 2 type: Transform - - uid: 14146 + - uid: 14194 components: - pos: 3.5,-3.5 parent: 2 type: Transform - - uid: 14147 + - uid: 14195 components: - pos: 3.5,-2.5 parent: 2 type: Transform - - uid: 14148 + - uid: 14196 components: - pos: 3.5,-4.5 parent: 2 type: Transform - - uid: 14149 + - uid: 14197 components: - rot: 1.5707963267948966 rad pos: 4.5,-5.5 @@ -88750,417 +88999,417 @@ entities: type: Transform - proto: DisposalRouterFlipped entities: - - uid: 14150 + - uid: 14198 components: - rot: -1.5707963267948966 rad pos: 18.5,-25.5 parent: 2 type: Transform - - uid: 14151 + - uid: 14199 components: - rot: 1.5707963267948966 rad pos: -13.5,-53.5 parent: 2 type: Transform - - uid: 14152 + - uid: 14200 components: - pos: -13.5,0.5 parent: 2 type: Transform - - uid: 14153 + - uid: 14201 components: - pos: -19.5,8.5 parent: 2 type: Transform - proto: DisposalTrunk entities: - - uid: 14154 + - uid: 14202 components: - rot: -1.5707963267948966 rad pos: 5.5,-5.5 parent: 2 type: Transform - - uid: 14155 + - uid: 14203 components: - pos: 2.5,-23.5 parent: 2 type: Transform - - uid: 14156 + - uid: 14204 components: - rot: 1.5707963267948966 rad pos: -20.5,-57.5 parent: 2 type: Transform - - uid: 14157 + - uid: 14205 components: - pos: 52.5,3.5 parent: 2 type: Transform - - uid: 14158 + - uid: 14206 components: - pos: -9.5,5.5 parent: 2 type: Transform - - uid: 14159 + - uid: 14207 components: - rot: -1.5707963267948966 rad pos: 12.5,-3.5 parent: 2 type: Transform - - uid: 14160 + - uid: 14208 components: - rot: 1.5707963267948966 rad pos: -6.5,-33.5 parent: 2 type: Transform - - uid: 14161 + - uid: 14209 components: - pos: 21.5,20.5 parent: 2 type: Transform - - uid: 14162 + - uid: 14210 components: - rot: 3.141592653589793 rad pos: 6.5,-2.5 parent: 2 type: Transform - - uid: 14163 + - uid: 14211 components: - pos: 22.5,-10.5 parent: 2 type: Transform - - uid: 14164 + - uid: 14212 components: - rot: -1.5707963267948966 rad pos: 37.5,-18.5 parent: 2 type: Transform - - uid: 14165 + - uid: 14213 components: - rot: 3.141592653589793 rad pos: 1.5,-59.5 parent: 2 type: Transform - - uid: 14166 + - uid: 14214 components: - pos: 6.5,5.5 parent: 2 type: Transform - - uid: 14167 + - uid: 14215 components: - rot: -1.5707963267948966 rad pos: -17.5,-73.5 parent: 2 type: Transform - - uid: 14168 + - uid: 14216 components: - pos: 8.5,15.5 parent: 2 type: Transform - - uid: 14169 + - uid: 14217 components: - pos: 18.5,9.5 parent: 2 type: Transform - - uid: 14170 + - uid: 14218 components: - rot: -1.5707963267948966 rad pos: 27.5,-10.5 parent: 2 type: Transform - - uid: 14171 + - uid: 14219 components: - rot: 3.141592653589793 rad pos: -7.5,-2.5 parent: 2 type: Transform - - uid: 14172 + - uid: 14220 components: - rot: -1.5707963267948966 rad pos: -21.5,-84.5 parent: 2 type: Transform - - uid: 14173 + - uid: 14221 components: - rot: 1.5707963267948966 rad pos: -25.5,-75.5 parent: 2 type: Transform - - uid: 14174 + - uid: 14222 components: - rot: -1.5707963267948966 rad pos: 14.5,5.5 parent: 2 type: Transform - - uid: 14175 + - uid: 14223 components: - rot: 1.5707963267948966 rad pos: -2.5,-45.5 parent: 2 type: Transform - - uid: 14176 + - uid: 14224 components: - rot: 3.141592653589793 rad pos: 18.5,-54.5 parent: 2 type: Transform - - uid: 14177 + - uid: 14225 components: - pos: -10.5,-23.5 parent: 2 type: Transform - - uid: 14178 + - uid: 14226 components: - rot: 1.5707963267948966 rad pos: 14.5,19.5 parent: 2 type: Transform - - uid: 14179 + - uid: 14227 components: - pos: 34.5,17.5 parent: 2 type: Transform - - uid: 14180 + - uid: 14228 components: - rot: 3.141592653589793 rad pos: -14.5,-10.5 parent: 2 type: Transform - - uid: 14181 + - uid: 14229 components: - rot: 3.141592653589793 rad pos: 54.5,-14.5 parent: 2 type: Transform - - uid: 14182 + - uid: 14230 components: - rot: -1.5707963267948966 rad pos: 51.5,-47.5 parent: 2 type: Transform - - uid: 14183 + - uid: 14231 components: - pos: 46.5,-35.5 parent: 2 type: Transform - - uid: 14184 + - uid: 14232 components: - rot: 3.141592653589793 rad pos: 67.5,-49.5 parent: 2 type: Transform - - uid: 14185 + - uid: 14233 components: - rot: 1.5707963267948966 rad pos: 48.5,-50.5 parent: 2 type: Transform - - uid: 14186 + - uid: 14234 components: - rot: 1.5707963267948966 rad pos: 48.5,-55.5 parent: 2 type: Transform - - uid: 14187 + - uid: 14235 components: - rot: 3.141592653589793 rad pos: 49.5,-60.5 parent: 2 type: Transform - - uid: 14188 + - uid: 14236 components: - rot: 1.5707963267948966 rad pos: -27.5,6.5 parent: 2 type: Transform - - uid: 14189 + - uid: 14237 components: - rot: 3.141592653589793 rad pos: 29.5,-62.5 parent: 2 type: Transform - - uid: 14190 + - uid: 14238 components: - rot: -1.5707963267948966 rad pos: -22.5,-15.5 parent: 2 type: Transform - - uid: 14191 + - uid: 14239 components: - rot: 3.141592653589793 rad pos: 24.5,-74.5 parent: 2 type: Transform - - uid: 14192 + - uid: 14240 components: - pos: -38.5,-4.5 parent: 2 type: Transform - - uid: 14193 + - uid: 14241 components: - rot: -1.5707963267948966 rad pos: 0.5,-75.5 parent: 2 type: Transform - - uid: 14194 + - uid: 14242 components: - rot: 3.141592653589793 rad pos: -36.5,-80.5 parent: 2 type: Transform - - uid: 14195 + - uid: 14243 components: - pos: -22.5,25.5 parent: 2 type: Transform - - uid: 14196 + - uid: 14244 components: - pos: -42.5,27.5 parent: 2 type: Transform - - uid: 14197 + - uid: 14245 components: - rot: -1.5707963267948966 rad pos: -43.5,5.5 parent: 2 type: Transform - - uid: 14198 + - uid: 14246 components: - rot: 1.5707963267948966 rad pos: 27.5,-86.5 parent: 2 type: Transform - - uid: 14199 + - uid: 14247 components: - pos: 20.5,-23.5 parent: 2 type: Transform - - uid: 14200 + - uid: 14248 components: - rot: 1.5707963267948966 rad pos: -9.5,-66.5 parent: 2 type: Transform - - uid: 14201 + - uid: 14249 components: - rot: 3.141592653589793 rad pos: -3.5,-67.5 parent: 2 type: Transform - - uid: 14202 + - uid: 14250 components: - rot: 3.141592653589793 rad pos: 2.5,-63.5 parent: 2 type: Transform - - uid: 14203 + - uid: 14251 components: - rot: 1.5707963267948966 rad pos: -16.5,-67.5 parent: 2 type: Transform - - uid: 14204 + - uid: 14252 components: - pos: -12.5,8.5 parent: 2 type: Transform - - uid: 14205 + - uid: 14253 components: - pos: 20.5,-39.5 parent: 2 type: Transform - - uid: 14206 + - uid: 14254 components: - rot: 1.5707963267948966 rad pos: -17.5,37.5 parent: 2 type: Transform - - uid: 14207 + - uid: 14255 components: - rot: 3.141592653589793 rad pos: -4.5,43.5 parent: 2 type: Transform - - uid: 14208 + - uid: 14256 components: - rot: 3.141592653589793 rad pos: -13.5,49.5 parent: 2 type: Transform - - uid: 14209 + - uid: 14257 components: - pos: -37.5,-93.5 parent: 2 type: Transform - - uid: 14210 + - uid: 14258 components: - pos: 75.5,-32.5 parent: 2 type: Transform - - uid: 14211 + - uid: 14259 components: - rot: 1.5707963267948966 rad pos: -54.5,-64.5 parent: 2 type: Transform - - uid: 14212 + - uid: 14260 components: - rot: -1.5707963267948966 rad pos: -52.5,-64.5 parent: 2 type: Transform - - uid: 14213 + - uid: 14261 components: - pos: -10.5,-12.5 parent: 2 type: Transform - - uid: 14214 + - uid: 14262 components: - pos: -12.5,-12.5 parent: 2 type: Transform - - uid: 14215 + - uid: 14263 components: - rot: 3.141592653589793 rad pos: -42.5,13.5 parent: 2 type: Transform - - uid: 14216 + - uid: 14264 components: - rot: -1.5707963267948966 rad pos: -40.5,18.5 parent: 2 type: Transform - - uid: 14217 + - uid: 14265 components: - rot: 3.141592653589793 rad pos: 6.5,-45.5 parent: 2 type: Transform - - uid: 14218 + - uid: 14266 components: - rot: 1.5707963267948966 rad pos: -76.5,-41.5 parent: 2 type: Transform - - uid: 14219 + - uid: 14267 components: - rot: -1.5707963267948966 rad pos: -66.5,-42.5 parent: 2 type: Transform - - uid: 14220 + - uid: 14268 components: - pos: -43.5,-35.5 parent: 2 type: Transform - - uid: 14221 + - uid: 14269 components: - rot: -1.5707963267948966 rad pos: -42.5,-38.5 parent: 2 type: Transform - - uid: 14222 + - uid: 14270 components: - rot: -1.5707963267948966 rad pos: 4.5,-3.5 @@ -89168,550 +89417,550 @@ entities: type: Transform - proto: DisposalUnit entities: - - uid: 14223 + - uid: 14271 components: - pos: 2.5,-23.5 parent: 2 type: Transform - - uid: 14224 + - uid: 14272 components: - pos: 5.5,-5.5 parent: 2 type: Transform - - uid: 14225 + - uid: 14273 components: - pos: 6.5,-45.5 parent: 2 type: Transform - - uid: 14226 + - uid: 14274 components: - pos: -6.5,-33.5 parent: 2 type: Transform - - uid: 14227 + - uid: 14275 components: - pos: 6.5,5.5 parent: 2 type: Transform - - uid: 14228 + - uid: 14276 components: - pos: 22.5,-10.5 parent: 2 type: Transform - - uid: 14229 + - uid: 14277 components: - pos: 27.5,-10.5 parent: 2 type: Transform - - uid: 14230 + - uid: 14278 components: - pos: 21.5,20.5 parent: 2 type: Transform - - uid: 14231 + - uid: 14279 components: - pos: 37.5,-18.5 parent: 2 type: Transform - - uid: 14232 + - uid: 14280 components: - pos: 1.5,-59.5 parent: 2 type: Transform - - uid: 14233 + - uid: 14281 components: - pos: -2.5,-45.5 parent: 2 type: Transform - - uid: 14234 + - uid: 14282 components: - pos: -10.5,-23.5 parent: 2 type: Transform - - uid: 14235 + - uid: 14283 components: - pos: -20.5,-57.5 parent: 2 type: Transform - - uid: 14236 + - uid: 14284 components: - pos: -17.5,-73.5 parent: 2 type: Transform - - uid: 14237 + - uid: 14285 components: - pos: 12.5,-3.5 parent: 2 type: Transform - - uid: 14238 + - uid: 14286 components: - pos: -7.5,-2.5 parent: 2 type: Transform - - uid: 14239 + - uid: 14287 components: - pos: -9.5,5.5 parent: 2 type: Transform - - uid: 14240 + - uid: 14288 components: - pos: -21.5,-84.5 parent: 2 type: Transform - - uid: 14241 + - uid: 14289 components: - pos: 8.5,15.5 parent: 2 type: Transform - - uid: 14242 + - uid: 14290 components: - pos: 6.5,-2.5 parent: 2 type: Transform - - uid: 14243 + - uid: 14291 components: - pos: 20.5,-23.5 parent: 2 type: Transform - - uid: 14244 + - uid: 14292 components: - pos: -25.5,-75.5 parent: 2 type: Transform - - uid: 14245 + - uid: 14293 components: - pos: 18.5,9.5 parent: 2 type: Transform - - uid: 14246 + - uid: 14294 components: - pos: 14.5,5.5 parent: 2 type: Transform - - uid: 14247 + - uid: 14295 components: - pos: -10.5,-12.5 parent: 2 type: Transform - type: Timer - - uid: 14248 + - uid: 14296 components: - name: cargo type: MetaData - pos: -12.5,-12.5 parent: 2 type: Transform - - uid: 14249 + - uid: 14297 components: - pos: 14.5,19.5 parent: 2 type: Transform - - uid: 14250 + - uid: 14298 components: - pos: 34.5,17.5 parent: 2 type: Transform - - uid: 14251 + - uid: 14299 components: - pos: 52.5,3.5 parent: 2 type: Transform - - uid: 14252 + - uid: 14300 components: - pos: 54.5,-14.5 parent: 2 type: Transform - - uid: 14253 + - uid: 14301 components: - pos: 46.5,-35.5 parent: 2 type: Transform - - uid: 14254 + - uid: 14302 components: - pos: 51.5,-47.5 parent: 2 type: Transform - - uid: 14255 + - uid: 14303 components: - pos: 67.5,-49.5 parent: 2 type: Transform - - uid: 14256 + - uid: 14304 components: - pos: 49.5,-60.5 parent: 2 type: Transform - - uid: 14257 + - uid: 14305 components: - pos: 48.5,-55.5 parent: 2 type: Transform - - uid: 14258 + - uid: 14306 components: - pos: 48.5,-50.5 parent: 2 type: Transform - - uid: 14259 + - uid: 14307 components: - pos: -22.5,-15.5 parent: 2 type: Transform - - uid: 14260 + - uid: 14308 components: - pos: 29.5,-62.5 parent: 2 type: Transform - - uid: 14261 + - uid: 14309 components: - pos: 24.5,-74.5 parent: 2 type: Transform - - uid: 14262 + - uid: 14310 components: - pos: 27.5,-86.5 parent: 2 type: Transform - - uid: 14263 + - uid: 14311 components: - pos: -27.5,6.5 parent: 2 type: Transform - - uid: 14264 + - uid: 14312 components: - pos: -38.5,-4.5 parent: 2 type: Transform - - uid: 14265 + - uid: 14313 components: - name: suspicious disposal unit type: MetaData - pos: 0.5,-75.5 parent: 2 type: Transform - - uid: 14266 + - uid: 14314 components: - pos: -22.5,25.5 parent: 2 type: Transform - - uid: 14267 + - uid: 14315 components: - pos: -42.5,27.5 parent: 2 type: Transform - - uid: 14268 + - uid: 14316 components: - pos: -43.5,5.5 parent: 2 type: Transform - - uid: 14269 + - uid: 14317 components: - pos: -9.5,-66.5 parent: 2 type: Transform - - uid: 14270 + - uid: 14318 components: - pos: -16.5,-67.5 parent: 2 type: Transform - - uid: 14271 + - uid: 14319 components: - pos: -3.5,-67.5 parent: 2 type: Transform - - uid: 14272 + - uid: 14320 components: - pos: 2.5,-63.5 parent: 2 type: Transform - - uid: 14273 + - uid: 14321 components: - pos: -12.5,8.5 parent: 2 type: Transform - - uid: 14274 + - uid: 14322 components: - pos: 20.5,-39.5 parent: 2 type: Transform - - uid: 14275 + - uid: 14323 components: - pos: -17.5,37.5 parent: 2 type: Transform - - uid: 14276 + - uid: 14324 components: - pos: -4.5,43.5 parent: 2 type: Transform - - uid: 14277 + - uid: 14325 components: - pos: -13.5,49.5 parent: 2 type: Transform - - uid: 14278 + - uid: 14326 components: - pos: -40.5,18.5 parent: 2 type: Transform - - uid: 14279 + - uid: 14327 components: - pos: 75.5,-32.5 parent: 2 type: Transform - - uid: 14280 + - uid: 14328 components: - pos: -54.5,-64.5 parent: 2 type: Transform - - uid: 14281 + - uid: 14329 components: - pos: -52.5,-64.5 parent: 2 type: Transform - - uid: 14282 + - uid: 14330 components: - pos: -36.5,-80.5 parent: 2 type: Transform - - uid: 14283 + - uid: 14331 components: - pos: -66.5,-42.5 parent: 2 type: Transform - - uid: 14284 + - uid: 14332 components: - pos: -42.5,-38.5 parent: 2 type: Transform - proto: DisposalYJunction entities: - - uid: 14285 + - uid: 14333 components: - pos: 25.5,17.5 parent: 2 type: Transform - - uid: 14286 + - uid: 14334 components: - rot: 3.141592653589793 rad pos: -3.5,-27.5 parent: 2 type: Transform - - uid: 14287 + - uid: 14335 components: - rot: 3.141592653589793 rad pos: 16.5,-43.5 parent: 2 type: Transform - - uid: 14288 + - uid: 14336 components: - rot: -1.5707963267948966 rad pos: -4.5,-9.5 parent: 2 type: Transform - - uid: 14289 + - uid: 14337 components: - pos: -4.5,0.5 parent: 2 type: Transform - - uid: 14290 + - uid: 14338 components: - rot: -1.5707963267948966 rad pos: 16.5,-27.5 parent: 2 type: Transform - - uid: 14291 + - uid: 14339 components: - rot: 3.141592653589793 rad pos: -0.5,-53.5 parent: 2 type: Transform - - uid: 14292 + - uid: 14340 components: - rot: 3.141592653589793 rad pos: -4.5,-43.5 parent: 2 type: Transform - - uid: 14293 + - uid: 14341 components: - rot: 3.141592653589793 rad pos: -19.5,-73.5 parent: 2 type: Transform - - uid: 14294 + - uid: 14342 components: - rot: -1.5707963267948966 rad pos: 52.5,1.5 parent: 2 type: Transform - - uid: 14295 + - uid: 14343 components: - rot: 1.5707963267948966 rad pos: -19.5,-27.5 parent: 2 type: Transform - - uid: 14296 + - uid: 14344 components: - pos: -19.5,-6.5 parent: 2 type: Transform - - uid: 14297 + - uid: 14345 components: - pos: -25.5,6.5 parent: 2 type: Transform - - uid: 14298 + - uid: 14346 components: - rot: 3.141592653589793 rad pos: -5.5,-61.5 parent: 2 type: Transform - - uid: 14299 + - uid: 14347 components: - pos: -15.5,44.5 parent: 2 type: Transform - proto: DogBed entities: - - uid: 14300 + - uid: 14348 components: - pos: 3.5,-7.5 parent: 2 type: Transform - - uid: 14301 + - uid: 14349 components: - pos: 62.5,51.5 parent: 2 type: Transform - - uid: 14302 + - uid: 14350 components: - name: fox bed type: MetaData - pos: 32.5,-28.5 parent: 2 type: Transform - - uid: 14303 + - uid: 14351 components: - name: racoon bed type: MetaData - pos: -33.5,31.5 parent: 2 type: Transform - - uid: 14304 + - uid: 14352 components: - pos: 26.5,23.5 parent: 2 type: Transform - proto: DonkpocketBoxSpawner entities: - - uid: 14305 + - uid: 14353 components: - pos: -9.5,41.5 parent: 2 type: Transform - - uid: 14306 + - uid: 14354 components: - pos: -10.5,41.5 parent: 2 type: Transform - proto: DoorElectronics entities: - - uid: 14307 + - uid: 14355 components: - pos: -9.437697,39.446274 parent: 2 type: Transform - - uid: 14308 + - uid: 14356 components: - pos: -9.640822,39.74315 parent: 2 type: Transform - - uid: 14309 + - uid: 14357 components: - pos: -43.560223,-27.412916 parent: 2 type: Transform - proto: DoubleEmergencyOxygenTankFilled entities: - - uid: 14310 + - uid: 14358 components: - pos: -36.45104,-33.42174 parent: 2 type: Transform - proto: Dresser entities: - - uid: 14311 + - uid: 14359 components: - pos: 22.5,14.5 parent: 2 type: Transform - - uid: 14312 + - uid: 14360 components: - pos: 32.5,-27.5 parent: 2 type: Transform - - uid: 14313 + - uid: 14361 components: - pos: -26.5,46.5 parent: 2 type: Transform - - uid: 14314 + - uid: 14362 components: - pos: 7.5,22.5 parent: 2 type: Transform - - uid: 14315 + - uid: 14363 components: - pos: -42.5,11.5 parent: 2 type: Transform - - uid: 14316 + - uid: 14364 components: - pos: -51.5,15.5 parent: 2 type: Transform - - uid: 14317 + - uid: 14365 components: - pos: -52.5,6.5 parent: 2 type: Transform - - uid: 14318 + - uid: 14366 components: - pos: -31.5,12.5 parent: 2 type: Transform - - uid: 14319 + - uid: 14367 components: - pos: -24.5,31.5 parent: 2 type: Transform - - uid: 14320 + - uid: 14368 components: - pos: 54.5,32.5 parent: 2 type: Transform - - uid: 14321 + - uid: 14369 components: - pos: -19.5,35.5 parent: 2 type: Transform - - uid: 14322 + - uid: 14370 components: - pos: -10.5,32.5 parent: 2 type: Transform - - uid: 14323 + - uid: 14371 components: - pos: -20.5,39.5 parent: 2 type: Transform - - uid: 14324 + - uid: 14372 components: - pos: -37.5,-20.5 parent: 2 type: Transform - proto: Drill entities: - - uid: 14325 + - uid: 14373 components: - rot: -1.5707963267948966 rad pos: -7.0942874,-100.40229 @@ -89719,370 +89968,396 @@ entities: type: Transform - proto: DrinkAntifreeze entities: - - uid: 14326 + - uid: 14374 components: - pos: -25.524792,55.598667 parent: 2 type: Transform + - uid: 14375 + components: + - pos: 40.348606,63.75022 + parent: 2 + type: Transform - proto: DrinkBeerBottleFull entities: - - uid: 14327 + - uid: 14376 components: - pos: 16.20447,-64.18169 parent: 2 type: Transform - - uid: 14328 + - uid: 14377 components: - pos: 16.48572,-64.21294 parent: 2 type: Transform - - uid: 14329 + - uid: 14378 components: - pos: -56.96358,-25.301325 parent: 2 type: Transform - proto: DrinkBlackRussianGlass entities: - - uid: 14330 + - uid: 14379 components: - pos: 65.5063,-0.9249393 parent: 2 type: Transform - proto: DrinkBloodyMaryGlass entities: - - uid: 14331 + - uid: 14380 components: - pos: 61.61879,-53.35289 parent: 2 type: Transform +- proto: DrinkBlueCuracaoGlass + entities: + - uid: 14381 + components: + - pos: 38.58298,63.859596 + parent: 2 + type: Transform - proto: DrinkBottleOfNothingFull entities: - - uid: 14332 + - uid: 14382 components: - pos: -28.300186,46.612503 parent: 2 type: Transform - proto: DrinkBottleWhiskey entities: - - uid: 14333 + - uid: 14383 components: - pos: -10.628431,-32.17821 parent: 2 type: Transform - proto: DrinkBottleWine entities: - - uid: 14334 + - uid: 14384 components: - pos: -37.38547,16.742819 parent: 2 type: Transform - proto: DrinkCarrotJuice entities: - - uid: 14335 + - uid: 14385 components: - pos: -20.541529,49.622677 parent: 2 type: Transform - proto: DrinkDetFlask entities: - - uid: 14336 + - uid: 14386 components: - pos: 20.044777,-12.206265 parent: 2 type: Transform - proto: DrinkDoctorsDelightGlass entities: - - uid: 14337 + - uid: 14387 components: - pos: -18.294592,-56.251144 parent: 2 type: Transform +- proto: DrinkDriestMartiniGlass + entities: + - uid: 14388 + components: + - pos: 39.42673,62.828346 + parent: 2 + type: Transform +- proto: DrinkGinGlass + entities: + - uid: 14389 + components: + - pos: 39.55173,64.4221 + parent: 2 + type: Transform - proto: DrinkGlass entities: - - uid: 14338 + - uid: 14390 components: - pos: 37.335964,-5.423753 parent: 2 type: Transform - - uid: 14339 + - uid: 14391 components: - pos: 42.510113,-48.4107 parent: 2 type: Transform - - uid: 14340 + - uid: 14392 components: - pos: 42.510113,-48.4107 parent: 2 type: Transform - - uid: 14341 + - uid: 14393 components: - pos: -29.533712,-69.34898 parent: 2 type: Transform - proto: DrinkGoldenCup entities: - - uid: 14342 + - uid: 14394 components: - pos: 48.422813,-25.09548 parent: 2 type: Transform - proto: DrinkGoldschlagerBottleFull entities: - - uid: 14343 + - uid: 14395 components: - pos: 47.41234,-30.196692 parent: 2 type: Transform - proto: DrinkGrapeJuice entities: - - uid: 14344 + - uid: 14396 components: - pos: -21.385279,49.66955 parent: 2 type: Transform - proto: DrinkGrogGlass entities: - - uid: 14345 + - uid: 14397 components: - pos: -42.795,-78.417305 parent: 2 type: Transform - - uid: 14346 + - uid: 14398 components: - pos: -40.300255,-77.37566 parent: 2 type: Transform - - uid: 14347 + - uid: 14399 components: - pos: -41.117695,-78.40168 parent: 2 type: Transform - proto: DrinkHippiesDelightGlass entities: - - uid: 14348 + - uid: 14400 components: - pos: -22.44165,-100.292145 parent: 2 type: Transform - proto: DrinkHotCoffee entities: - - uid: 14349 + - uid: 14401 components: - pos: -26.93719,14.6217785 parent: 2 type: Transform - proto: DrinkIrishCoffeeGlass entities: - - uid: 14350 + - uid: 14402 components: - pos: 31.04821,-61.292328 parent: 2 type: Transform - proto: DrinkLongIslandIcedTeaGlass entities: - - uid: 14351 + - uid: 14403 components: - pos: 23.326912,-28.451742 parent: 2 type: Transform - proto: DrinkMilkCarton entities: - - uid: 14352 + - uid: 14404 components: - pos: 4.089875,7.6089945 parent: 2 type: Transform - - uid: 14353 + - uid: 14405 components: - pos: 4.246125,7.3902445 parent: 2 type: Transform - proto: DrinkMugBlack entities: - - uid: 14354 + - uid: 14406 components: - pos: 53.58285,-67.465065 parent: 2 type: Transform - proto: DrinkMugOne entities: - - uid: 14355 + - uid: 14407 components: - pos: 47.469124,50.58469 parent: 2 type: Transform - - uid: 14356 + - uid: 14408 components: - pos: -31.248182,29.795187 parent: 2 type: Transform - proto: DrinkShaker entities: - - uid: 14357 + - uid: 14409 components: - pos: 18.551043,13.384511 parent: 2 type: Transform - - uid: 14358 + - uid: 14410 components: - pos: 18.316668,13.478261 parent: 2 type: Transform - - uid: 14359 + - uid: 14411 components: - pos: 18.582293,13.603261 parent: 2 type: Transform - proto: DrinkSpaceMountainWindGlass entities: - - uid: 14360 + - uid: 14412 components: - pos: 38.7514,49.607887 parent: 2 type: Transform - proto: DrinkSpaceUpGlass entities: - - uid: 14361 + - uid: 14413 components: - pos: 38.377674,49.717262 parent: 2 type: Transform - proto: DrinkToxinsSpecialGlass entities: - - uid: 14362 + - uid: 14414 components: - pos: -9.4857435,-36.467285 parent: 2 type: Transform - proto: DrinkVodkaTonicGlass entities: - - uid: 14363 + - uid: 14415 components: - pos: 43.581966,-2.7850537 parent: 2 type: Transform - proto: DrinkWaterBottleFull entities: - - uid: 14364 + - uid: 14416 components: - pos: -14.530239,-37.26908 parent: 2 type: Transform - proto: DrinkWaterCup entities: - - uid: 14365 + - uid: 14417 components: - pos: -9.380106,-35.52635 parent: 2 type: Transform - - uid: 14366 + - uid: 14418 components: - pos: -9.380106,-35.52635 parent: 2 type: Transform - - uid: 14367 + - uid: 14419 components: - pos: -9.380106,-35.52635 parent: 2 type: Transform - - uid: 14368 + - uid: 14420 components: - pos: -9.380106,-35.52635 parent: 2 type: Transform - - uid: 14369 + - uid: 14421 components: - pos: -9.380106,-35.52635 parent: 2 type: Transform - - uid: 14370 + - uid: 14422 components: - pos: -9.380106,-35.52635 parent: 2 type: Transform - proto: DrinkWhiskeyBottleFull entities: - - uid: 14371 + - uid: 14423 components: - pos: -14.464556,-39.286304 parent: 2 type: Transform - proto: DrinkWhiskeyGlass entities: - - uid: 14372 + - uid: 14424 components: - pos: -29.929981,15.531138 parent: 2 type: Transform - - uid: 14373 + - uid: 14425 components: - pos: 15.324228,-79.460625 parent: 2 type: Transform - proto: DrinkWhiskeySodaGlass entities: - - uid: 14374 + - uid: 14426 components: - pos: 7.0699005,20.752857 parent: 2 type: Transform - proto: Dropper entities: - - uid: 14375 + - uid: 14427 components: - pos: 7.590159,-45.315723 parent: 2 type: Transform - - uid: 14376 + - uid: 14428 components: - pos: 7.480784,-45.628223 parent: 2 type: Transform - - uid: 14377 + - uid: 14429 components: - pos: 7.449534,-45.440723 parent: 2 type: Transform - proto: EggplantSeeds entities: - - uid: 14378 + - uid: 14430 components: - pos: 11.993146,54.637722 parent: 2 type: Transform - - uid: 14379 + - uid: 14431 components: - pos: 11.993146,54.637722 parent: 2 type: Transform - - uid: 14380 + - uid: 14432 components: - pos: 11.993146,54.637722 parent: 2 type: Transform - - uid: 14381 + - uid: 14433 components: - pos: 11.993146,54.637722 parent: 2 type: Transform - - uid: 14382 + - uid: 14434 components: - pos: 11.993146,54.637722 parent: 2 type: Transform - - uid: 14383 + - uid: 14435 components: - pos: 11.993146,54.637722 parent: 2 type: Transform - proto: EmergencyLight entities: - - uid: 14384 + - uid: 14436 components: - pos: -70.5,-37.5 parent: 2 type: Transform - - uid: 14385 + - uid: 14437 components: - rot: -1.5707963267948966 rad pos: -44.5,7.5 @@ -90091,7 +90366,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14386 + - uid: 14438 components: - rot: 3.141592653589793 rad pos: 22.5,-25.5 @@ -90100,7 +90375,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14387 + - uid: 14439 components: - rot: 3.141592653589793 rad pos: 29.5,-25.5 @@ -90109,7 +90384,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14388 + - uid: 14440 components: - pos: 30.5,-41.5 parent: 2 @@ -90117,7 +90392,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14389 + - uid: 14441 components: - pos: -12.5,-52.5 parent: 2 @@ -90125,7 +90400,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14390 + - uid: 14442 components: - rot: 1.5707963267948966 rad pos: -25.5,-76.5 @@ -90134,7 +90409,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14391 + - uid: 14443 components: - rot: -1.5707963267948966 rad pos: 26.5,-50.5 @@ -90143,7 +90418,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14392 + - uid: 14444 components: - pos: 29.5,-4.5 parent: 2 @@ -90151,7 +90426,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14393 + - uid: 14445 components: - rot: 1.5707963267948966 rad pos: 40.5,6.5 @@ -90160,7 +90435,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14394 + - uid: 14446 components: - pos: 54.5,-5.5 parent: 2 @@ -90168,7 +90443,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14395 + - uid: 14447 components: - rot: 3.141592653589793 rad pos: -23.5,-62.5 @@ -90177,7 +90452,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14396 + - uid: 14448 components: - rot: 1.5707963267948966 rad pos: -13.5,52.5 @@ -90186,7 +90461,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14397 + - uid: 14449 components: - pos: -5.5,59.5 parent: 2 @@ -90194,7 +90469,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14398 + - uid: 14450 components: - pos: -10.5,-59.5 parent: 2 @@ -90202,7 +90477,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14399 + - uid: 14451 components: - pos: -61.5,-23.5 parent: 2 @@ -90210,7 +90485,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14400 + - uid: 14452 components: - rot: -1.5707963267948966 rad pos: -52.5,-15.5 @@ -90219,7 +90494,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14401 + - uid: 14453 components: - pos: 15.5,-52.5 parent: 2 @@ -90227,7 +90502,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14402 + - uid: 14454 components: - rot: 1.5707963267948966 rad pos: 17.5,-4.5 @@ -90236,7 +90511,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14403 + - uid: 14455 components: - rot: -1.5707963267948966 rad pos: -18.5,28.5 @@ -90245,7 +90520,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14404 + - uid: 14456 components: - rot: 1.5707963267948966 rad pos: -16.5,36.5 @@ -90254,7 +90529,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14405 + - uid: 14457 components: - rot: -1.5707963267948966 rad pos: 65.5,-12.5 @@ -90263,7 +90538,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14406 + - uid: 14458 components: - pos: -2.5,46.5 parent: 2 @@ -90271,7 +90546,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14407 + - uid: 14459 components: - rot: 1.5707963267948966 rad pos: -22.5,54.5 @@ -90280,7 +90555,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14408 + - uid: 14460 components: - pos: -5.5,3.5 parent: 2 @@ -90288,7 +90563,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14409 + - uid: 14461 components: - pos: 8.5,3.5 parent: 2 @@ -90296,7 +90571,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14410 + - uid: 14462 components: - rot: 1.5707963267948966 rad pos: -0.5,8.5 @@ -90305,7 +90580,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14411 + - uid: 14463 components: - pos: 14.5,14.5 parent: 2 @@ -90313,7 +90588,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14412 + - uid: 14464 components: - pos: -20.5,-4.5 parent: 2 @@ -90321,7 +90596,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14413 + - uid: 14465 components: - pos: -16.5,4.5 parent: 2 @@ -90329,7 +90604,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14414 + - uid: 14466 components: - rot: -1.5707963267948966 rad pos: -18.5,-12.5 @@ -90338,7 +90613,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14415 + - uid: 14467 components: - pos: 30.5,8.5 parent: 2 @@ -90346,7 +90621,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14416 + - uid: 14468 components: - pos: 23.5,18.5 parent: 2 @@ -90354,7 +90629,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14417 + - uid: 14469 components: - pos: 10.5,-41.5 parent: 2 @@ -90362,7 +90637,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14418 + - uid: 14470 components: - pos: 38.5,-41.5 parent: 2 @@ -90370,7 +90645,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14419 + - uid: 14471 components: - pos: -14.5,-41.5 parent: 2 @@ -90378,7 +90653,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14420 + - uid: 14472 components: - rot: -1.5707963267948966 rad pos: -34.5,-42.5 @@ -90387,7 +90662,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14421 + - uid: 14473 components: - rot: 1.5707963267948966 rad pos: -35.5,-52.5 @@ -90396,7 +90671,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14422 + - uid: 14474 components: - rot: -1.5707963267948966 rad pos: -23.5,-16.5 @@ -90405,7 +90680,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14423 + - uid: 14475 components: - pos: -12.5,-25.5 parent: 2 @@ -90413,7 +90688,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14424 + - uid: 14476 components: - rot: -1.5707963267948966 rad pos: -31.5,-14.5 @@ -90422,7 +90697,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14425 + - uid: 14477 components: - rot: 3.141592653589793 rad pos: -45.5,-6.5 @@ -90431,7 +90706,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14426 + - uid: 14478 components: - pos: -17.5,-69.5 parent: 2 @@ -90439,7 +90714,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14427 + - uid: 14479 components: - rot: 3.141592653589793 rad pos: 30.5,-18.5 @@ -90448,7 +90723,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14428 + - uid: 14480 components: - rot: 3.141592653589793 rad pos: 20.5,-18.5 @@ -90457,7 +90732,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14429 + - uid: 14481 components: - rot: -1.5707963267948966 rad pos: 18.5,4.5 @@ -90466,7 +90741,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14430 + - uid: 14482 components: - pos: 37.5,-25.5 parent: 2 @@ -90474,7 +90749,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14431 + - uid: 14483 components: - rot: -1.5707963267948966 rad pos: 42.5,-26.5 @@ -90483,7 +90758,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14432 + - uid: 14484 components: - rot: 3.141592653589793 rad pos: 40.5,0.5 @@ -90492,7 +90767,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14433 + - uid: 14485 components: - rot: -1.5707963267948966 rad pos: 54.5,1.5 @@ -90501,7 +90776,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14434 + - uid: 14486 components: - rot: -1.5707963267948966 rad pos: 65.5,-35.5 @@ -90510,7 +90785,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14435 + - uid: 14487 components: - pos: 60.5,-51.5 parent: 2 @@ -90518,7 +90793,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14436 + - uid: 14488 components: - pos: 53.5,-51.5 parent: 2 @@ -90526,7 +90801,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14437 + - uid: 14489 components: - rot: -1.5707963267948966 rad pos: 46.5,-47.5 @@ -90535,7 +90810,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14438 + - uid: 14490 components: - rot: -1.5707963267948966 rad pos: 46.5,-38.5 @@ -90544,7 +90819,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14439 + - uid: 14491 components: - rot: -1.5707963267948966 rad pos: 16.5,-27.5 @@ -90553,7 +90828,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14440 + - uid: 14492 components: - rot: 1.5707963267948966 rad pos: 34.5,-27.5 @@ -90562,7 +90837,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14441 + - uid: 14493 components: - pos: 4.5,-25.5 parent: 2 @@ -90570,7 +90845,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14442 + - uid: 14494 components: - pos: -2.5,-25.5 parent: 2 @@ -90578,7 +90853,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14443 + - uid: 14495 components: - pos: 5.5,-41.5 parent: 2 @@ -90586,7 +90861,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14444 + - uid: 14496 components: - rot: -1.5707963267948966 rad pos: -18.5,-35.5 @@ -90595,7 +90870,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14445 + - uid: 14497 components: - rot: 3.141592653589793 rad pos: -30.5,-35.5 @@ -90604,7 +90879,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14446 + - uid: 14498 components: - rot: 1.5707963267948966 rad pos: -55.5,-10.5 @@ -90613,7 +90888,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14447 + - uid: 14499 components: - rot: -1.5707963267948966 rad pos: -64.5,-26.5 @@ -90622,7 +90897,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14448 + - uid: 14500 components: - pos: -71.5,-23.5 parent: 2 @@ -90630,7 +90905,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14449 + - uid: 14501 components: - rot: 3.141592653589793 rad pos: -35.5,-0.5 @@ -90639,7 +90914,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14450 + - uid: 14502 components: - rot: -1.5707963267948966 rad pos: 30.5,23.5 @@ -90648,7 +90923,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14451 + - uid: 14503 components: - rot: 3.141592653589793 rad pos: 30.5,14.5 @@ -90657,7 +90932,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14452 + - uid: 14504 components: - rot: 1.5707963267948966 rad pos: 20.5,20.5 @@ -90666,7 +90941,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14453 + - uid: 14505 components: - rot: -1.5707963267948966 rad pos: -2.5,8.5 @@ -90675,7 +90950,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14454 + - uid: 14506 components: - rot: 3.141592653589793 rad pos: -27.5,-14.5 @@ -90684,7 +90959,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14455 + - uid: 14507 components: - rot: 3.141592653589793 rad pos: -34.5,-13.5 @@ -90693,7 +90968,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14456 + - uid: 14508 components: - rot: 1.5707963267948966 rad pos: 4.5,20.5 @@ -90702,7 +90977,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14457 + - uid: 14509 components: - pos: 45.5,-71.5 parent: 2 @@ -90710,7 +90985,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14458 + - uid: 14510 components: - rot: -1.5707963267948966 rad pos: 40.5,-61.5 @@ -90719,7 +90994,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14459 + - uid: 14511 components: - pos: 27.5,-58.5 parent: 2 @@ -90727,7 +91002,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14460 + - uid: 14512 components: - rot: 1.5707963267948966 rad pos: -25.5,20.5 @@ -90736,7 +91011,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14461 + - uid: 14513 components: - rot: -1.5707963267948966 rad pos: -36.5,20.5 @@ -90745,7 +91020,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14462 + - uid: 14514 components: - rot: 3.141592653589793 rad pos: -44.5,28.5 @@ -90754,7 +91029,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14463 + - uid: 14515 components: - rot: 1.5707963267948966 rad pos: -38.5,30.5 @@ -90763,7 +91038,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14464 + - uid: 14516 components: - rot: 3.141592653589793 rad pos: -34.5,28.5 @@ -90772,7 +91047,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14465 + - uid: 14517 components: - pos: -17.5,7.5 parent: 2 @@ -90780,7 +91055,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14466 + - uid: 14518 components: - rot: -1.5707963267948966 rad pos: -3.5,-30.5 @@ -90789,7 +91064,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14467 + - uid: 14519 components: - rot: 1.5707963267948966 rad pos: 70.5,-35.5 @@ -90798,7 +91073,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14468 + - uid: 14520 components: - rot: 3.141592653589793 rad pos: 74.5,-49.5 @@ -90807,7 +91082,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14469 + - uid: 14521 components: - pos: 60.5,-43.5 parent: 2 @@ -90815,7 +91090,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14470 + - uid: 14522 components: - pos: 6.5,-29.5 parent: 2 @@ -90823,7 +91098,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14471 + - uid: 14523 components: - pos: 30.5,-71.5 parent: 2 @@ -90831,7 +91106,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14472 + - uid: 14524 components: - rot: 3.141592653589793 rad pos: 18.5,-86.5 @@ -90840,7 +91115,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14473 + - uid: 14525 components: - rot: -1.5707963267948966 rad pos: 31.5,-83.5 @@ -90849,7 +91124,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14474 + - uid: 14526 components: - rot: -1.5707963267948966 rad pos: 49.5,-84.5 @@ -90858,7 +91133,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14475 + - uid: 14527 components: - rot: -1.5707963267948966 rad pos: 26.5,23.5 @@ -90867,96 +91142,96 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 14476 + - uid: 14528 components: - pos: -59.5,-36.5 parent: 2 type: Transform - - uid: 14477 + - uid: 14529 components: - pos: 25.5,-34.5 parent: 2 type: Transform - proto: EmergencyOxygenTankFilled entities: - - uid: 14478 + - uid: 14530 components: - pos: -2.5493312,-73.46234 parent: 2 type: Transform - proto: EmergencyRollerBed entities: - - uid: 14479 + - uid: 14531 components: - pos: -20.356709,-75.42545 parent: 2 type: Transform - proto: Emitter entities: - - uid: 14480 + - uid: 14532 components: - pos: -55.5,-8.5 parent: 2 type: Transform - - uid: 14481 + - uid: 14533 components: - pos: -62.5,-6.5 parent: 2 type: Transform - - uid: 14482 + - uid: 14534 components: - rot: -1.5707963267948966 rad pos: -59.5,-9.5 parent: 2 type: Transform - - uid: 14483 + - uid: 14535 components: - rot: 1.5707963267948966 rad pos: -73.5,-9.5 parent: 2 type: Transform - - uid: 14484 + - uid: 14536 components: - pos: -70.5,-6.5 parent: 2 type: Transform - - uid: 14485 + - uid: 14537 components: - rot: 1.5707963267948966 rad pos: -73.5,-17.5 parent: 2 type: Transform - - uid: 14486 + - uid: 14538 components: - rot: 3.141592653589793 rad pos: -70.5,-20.5 parent: 2 type: Transform - - uid: 14487 + - uid: 14539 components: - rot: 3.141592653589793 rad pos: -62.5,-20.5 parent: 2 type: Transform - - uid: 14488 + - uid: 14540 components: - rot: -1.5707963267948966 rad pos: -59.5,-17.5 parent: 2 type: Transform - - uid: 14489 + - uid: 14541 components: - rot: 3.141592653589793 rad pos: -61.5,-30.5 parent: 2 type: Transform - - uid: 14490 + - uid: 14542 components: - rot: 1.5707963267948966 rad pos: -55.5,-7.5 parent: 2 type: Transform - - uid: 14491 + - uid: 14543 components: - rot: 3.141592653589793 rad pos: -60.5,-30.5 @@ -90964,104 +91239,104 @@ entities: type: Transform - proto: EncryptionKeyCargo entities: - - uid: 14493 + - uid: 14545 components: - flags: InContainer type: MetaData - - parent: 14492 + - parent: 14544 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyCommand entities: - - uid: 14495 + - uid: 14547 components: - flags: InContainer type: MetaData - - parent: 14494 + - parent: 14546 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyCommon entities: - - uid: 14497 + - uid: 14549 components: - flags: InContainer type: MetaData - - parent: 14496 + - parent: 14548 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyEngineering entities: - - uid: 14499 + - uid: 14551 components: - flags: InContainer type: MetaData - - parent: 14498 + - parent: 14550 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyMedical entities: - - uid: 14501 + - uid: 14553 components: - flags: InContainer type: MetaData - - parent: 14500 + - parent: 14552 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyRobo entities: - - uid: 14503 + - uid: 14555 components: - flags: InContainer type: MetaData - - parent: 14502 + - parent: 14554 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyScience entities: - - uid: 14504 + - uid: 14556 components: - flags: InContainer type: MetaData - - parent: 14502 + - parent: 14554 type: Transform - canCollide: False type: Physics - proto: EncryptionKeySecurity entities: - - uid: 14506 + - uid: 14558 components: - flags: InContainer type: MetaData - - parent: 14505 + - parent: 14557 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyService entities: - - uid: 14508 + - uid: 14560 components: - flags: InContainer type: MetaData - - parent: 14507 + - parent: 14559 type: Transform - canCollide: False type: Physics - proto: ExosuitFabricator entities: - - uid: 14509 + - uid: 14561 components: - pos: 69.5,-43.5 parent: 2 type: Transform - proto: ExplosivesSignMed entities: - - uid: 14510 + - uid: 14562 components: - rot: 1.5707963267948966 rad pos: 67.5,-32.5 @@ -91069,186 +91344,186 @@ entities: type: Transform - proto: ExtendedEmergencyOxygenTankFilled entities: - - uid: 14511 + - uid: 14563 components: - pos: -70.53087,-25.890057 parent: 2 type: Transform - - uid: 14512 + - uid: 14564 components: - pos: -40.389053,32.87297 parent: 2 type: Transform - - uid: 14513 + - uid: 14565 components: - pos: 3.7780228,-75.4205 parent: 2 type: Transform - proto: ExtinguisherCabinetFilled entities: - - uid: 14514 + - uid: 14566 components: - pos: -20.5,64.5 parent: 2 type: Transform - - uid: 14515 + - uid: 14567 components: - pos: -1.5,47.5 parent: 2 type: Transform - - uid: 14516 + - uid: 14568 components: - pos: -20.5,53.5 parent: 2 type: Transform - - uid: 14517 + - uid: 14569 components: - pos: -13.5,32.5 parent: 2 type: Transform - - uid: 14518 + - uid: 14570 components: - pos: -1.5,8.5 parent: 2 type: Transform - - uid: 14519 + - uid: 14571 components: - pos: -33.5,-39.5 parent: 2 type: Transform - - uid: 14520 + - uid: 14572 components: - pos: -15.5,-2.5 parent: 2 type: Transform - - uid: 14521 + - uid: 14573 components: - pos: -17.5,-17.5 parent: 2 type: Transform - - uid: 14522 + - uid: 14574 components: - pos: -21.5,-30.5 parent: 2 type: Transform - - uid: 14523 + - uid: 14575 components: - pos: -2.5,-29.5 parent: 2 type: Transform - - uid: 14524 + - uid: 14576 components: - pos: 52.5,-46.5 parent: 2 type: Transform - - uid: 14525 + - uid: 14577 components: - pos: -10.5,-47.5 parent: 2 type: Transform - - uid: 14526 + - uid: 14578 components: - pos: 19.5,18.5 parent: 2 type: Transform - - uid: 14527 + - uid: 14579 components: - pos: 3.5,13.5 parent: 2 type: Transform - - uid: 14528 + - uid: 14580 components: - pos: -6.5,-17.5 parent: 2 type: Transform - - uid: 14529 + - uid: 14581 components: - pos: 23.5,-51.5 parent: 2 type: Transform - - uid: 14530 + - uid: 14582 components: - pos: 77.5,-48.5 parent: 2 type: Transform - - uid: 14531 + - uid: 14583 components: - pos: 76.5,-38.5 parent: 2 type: Transform - proto: FaxMachineBase entities: - - uid: 14532 + - uid: 14584 components: - pos: -28.5,-9.5 parent: 2 type: Transform - name: engineering fax type: FaxMachine - - uid: 14533 + - uid: 14585 components: - pos: -34.5,23.5 parent: 2 type: Transform - name: cargo fax type: FaxMachine - - uid: 14534 + - uid: 14586 components: - pos: 40.5,-39.5 parent: 2 type: Transform - name: science fax type: FaxMachine - - uid: 14535 + - uid: 14587 components: - pos: -16.5,-61.5 parent: 2 type: Transform - name: medbay fax type: FaxMachine - - uid: 14536 + - uid: 14588 components: - pos: -25.5,-35.5 parent: 2 type: Transform - name: atmos fax type: FaxMachine - - uid: 14537 + - uid: 14589 components: - pos: 18.5,-14.5 parent: 2 type: Transform - name: detective fax type: FaxMachine - - uid: 14538 + - uid: 14590 components: - pos: 22.5,23.5 parent: 2 type: Transform - name: security fax type: FaxMachine - - uid: 14539 + - uid: 14591 components: - pos: 12.5,-5.5 parent: 2 type: Transform - name: library fax type: FaxMachine - - uid: 14540 + - uid: 14592 components: - pos: -22.5,-98.5 parent: 2 type: Transform - name: maint fax type: FaxMachine - - uid: 14541 + - uid: 14593 components: - pos: -12.5,-19.5 parent: 2 type: Transform - name: janitorial fax type: FaxMachine - - uid: 14542 + - uid: 14594 components: - pos: -1.5,-6.5 parent: 2 @@ -91257,57 +91532,57 @@ entities: type: FaxMachine - proto: FaxMachineCaptain entities: - - uid: 14543 + - uid: 14595 components: - pos: 30.5,-29.5 parent: 2 type: Transform - proto: FenceMetalCorner entities: - - uid: 14544 + - uid: 14596 components: - rot: 3.141592653589793 rad pos: 61.5,47.5 parent: 2 type: Transform - - uid: 14545 + - uid: 14597 components: - rot: -1.5707963267948966 rad pos: -44.5,-84.5 parent: 2 type: Transform - - uid: 14546 + - uid: 14598 components: - rot: 1.5707963267948966 rad pos: -39.5,-80.5 parent: 2 type: Transform - - uid: 14547 + - uid: 14599 components: - rot: 3.141592653589793 rad pos: -44.5,-80.5 parent: 2 type: Transform - - uid: 14548 + - uid: 14600 components: - pos: -39.5,-84.5 parent: 2 type: Transform - proto: FenceMetalGate entities: - - uid: 14549 + - uid: 14601 components: - rot: 3.141592653589793 rad pos: -52.5,-30.5 parent: 2 type: Transform - - uid: 14550 + - uid: 14602 components: - rot: 3.141592653589793 rad pos: 62.5,47.5 parent: 2 type: Transform - - uid: 14551 + - uid: 14603 components: - rot: 3.141592653589793 rad pos: -41.5,-84.5 @@ -91319,98 +91594,98 @@ entities: type: Physics - proto: FenceMetalStraight entities: - - uid: 14552 + - uid: 14604 components: - pos: 61.5,49.5 parent: 2 type: Transform - - uid: 14553 + - uid: 14605 components: - rot: 1.5707963267948966 rad pos: 63.5,47.5 parent: 2 type: Transform - - uid: 14554 + - uid: 14606 components: - pos: 61.5,48.5 parent: 2 type: Transform - - uid: 14555 + - uid: 14607 components: - rot: 3.141592653589793 rad pos: -39.5,-82.5 parent: 2 type: Transform - - uid: 14556 + - uid: 14608 components: - rot: 3.141592653589793 rad pos: -39.5,-81.5 parent: 2 type: Transform - - uid: 14557 + - uid: 14609 components: - rot: -1.5707963267948966 rad pos: -42.5,-80.5 parent: 2 type: Transform - - uid: 14558 + - uid: 14610 components: - rot: -1.5707963267948966 rad pos: -43.5,-80.5 parent: 2 type: Transform - - uid: 14559 + - uid: 14611 components: - pos: -44.5,-82.5 parent: 2 type: Transform - - uid: 14560 + - uid: 14612 components: - rot: -1.5707963267948966 rad pos: -40.5,-84.5 parent: 2 type: Transform - - uid: 14561 + - uid: 14613 components: - rot: -1.5707963267948966 rad pos: -40.5,-80.5 parent: 2 type: Transform - - uid: 14562 + - uid: 14614 components: - rot: 1.5707963267948966 rad pos: -42.5,-84.5 parent: 2 type: Transform - - uid: 14563 + - uid: 14615 components: - rot: 1.5707963267948966 rad pos: -43.5,-84.5 parent: 2 type: Transform - - uid: 14564 + - uid: 14616 components: - pos: -44.5,-83.5 parent: 2 type: Transform - - uid: 14565 + - uid: 14617 components: - rot: -1.5707963267948966 rad pos: -41.5,-80.5 parent: 2 type: Transform - - uid: 14566 + - uid: 14618 components: - pos: -44.5,-81.5 parent: 2 type: Transform - - uid: 14567 + - uid: 14619 components: - rot: 3.141592653589793 rad pos: -39.5,-83.5 parent: 2 type: Transform - - uid: 14568 + - uid: 14620 components: - rot: -1.5707963267948966 rad pos: -51.5,-30.5 @@ -91418,2110 +91693,2110 @@ entities: type: Transform - proto: FigureSpawner entities: - - uid: 14569 + - uid: 14621 components: - pos: 9.5,-6.5 parent: 2 type: Transform - - uid: 14570 + - uid: 14622 components: - pos: 10.5,-6.5 parent: 2 type: Transform - - uid: 14571 + - uid: 14623 components: - pos: -0.5,31.5 parent: 2 type: Transform - - uid: 14572 + - uid: 14624 components: - pos: -1.5,30.5 parent: 2 type: Transform - proto: filingCabinet entities: - - uid: 14573 + - uid: 14625 components: - pos: 17.5,-14.5 parent: 2 type: Transform - - uid: 14574 + - uid: 14626 components: - pos: 62.5,-3.5 parent: 2 type: Transform - proto: filingCabinetDrawer entities: - - uid: 14575 + - uid: 14627 components: - pos: -24.5,-69.5 parent: 2 type: Transform - - uid: 14576 + - uid: 14628 components: - pos: 58.5,31.5 parent: 2 type: Transform - - uid: 14577 + - uid: 14629 components: - pos: 63.5,-3.5 parent: 2 type: Transform - proto: filingCabinetDrawerRandom entities: - - uid: 14578 + - uid: 14630 components: - pos: 41.5,-3.5 parent: 2 type: Transform - - uid: 14579 + - uid: 14631 components: - pos: -22.5,13.5 parent: 2 type: Transform - proto: filingCabinetRandom entities: - - uid: 14580 + - uid: 14632 components: - pos: 41.5,-2.5 parent: 2 type: Transform - - uid: 14581 + - uid: 14633 components: - pos: -23.5,13.5 parent: 2 type: Transform - proto: filingCabinetTallRandom entities: - - uid: 14582 + - uid: 14634 components: - pos: 57.5,-40.5 parent: 2 type: Transform - proto: FireAlarm entities: - - uid: 14583 + - uid: 14635 components: - pos: -6.5,-44.5 parent: 2 type: Transform - devices: - - 811 - - 15028 - - 15029 - - 14678 - - 14677 - - 14699 - - 14676 - - 14675 - - 14674 - - 14873 - - 14874 - - 14919 - - 14993 - - 14992 - - 14994 - - 14764 - - 14799 + - 813 + - 15079 + - 15080 + - 14730 + - 14729 + - 14751 + - 14728 + - 14727 + - 14726 + - 14924 + - 14925 + - 14970 + - 15044 + - 15043 + - 15045 + - 14816 + - 14850 type: DeviceList - - uid: 14584 + - uid: 14636 components: - pos: 30.5,-40.5 parent: 2 type: Transform - devices: - - 14970 + - 15021 + - 15020 + - 15019 + - 14973 + - 14895 + - 14917 + - 15108 + - 14984 + - 14910 + - 14909 - 14969 - - 14968 - - 14922 - - 14844 - - 14866 - - 15057 - - 14933 - - 14859 - - 14858 - - 14918 - - 14920 - - 14925 - - 14960 - - 14897 - - 14686 - - 816 + - 14971 + - 14976 + - 15011 - 14948 - - 14946 - - 14788 + - 14738 + - 818 + - 14999 + - 14997 + - 14840 type: DeviceList - - uid: 14585 + - uid: 14637 components: - rot: -1.5707963267948966 rad pos: -20.5,58.5 parent: 2 type: Transform - devices: - - 15110 - - 15105 - - 15106 - - 15099 - - 15098 - - 15097 - - 15102 - - 15101 - - 857 - - 15089 - - 15088 + - 15161 + - 15156 + - 15157 + - 15150 + - 15149 + - 15148 + - 15153 + - 15152 + - 859 + - 15140 + - 15139 type: DeviceList - - uid: 14586 + - uid: 14638 components: - rot: -1.5707963267948966 rad pos: -11.5,62.5 parent: 2 type: Transform - devices: - - 15105 - - 15106 - - 15108 - - 15103 - - 15104 - - 15100 - - 15078 - - 858 + - 15156 + - 15157 + - 15159 + - 15154 + - 15155 + - 15151 + - 15129 + - 860 type: DeviceList - - uid: 14587 + - uid: 14639 components: - pos: -29.5,-15.5 parent: 2 type: Transform - devices: - - 870 - - 14981 - - 14996 - - 14997 - - 15010 - - 15009 - - 14753 - - 15011 - - 15012 + - 872 + - 15032 + - 15047 + - 15048 + - 15061 + - 15060 + - 14805 + - 15062 + - 15063 type: DeviceList - - uid: 14588 + - uid: 14640 components: - rot: 1.5707963267948966 rad pos: 51.5,12.5 parent: 2 type: Transform - devices: - - 852 - - 14815 - - 14814 - - 14813 - - 14812 - - 14811 - - 14816 - - 14817 - - 14818 - - 14952 - - 14951 - - 14959 - - 15035 - - 14954 + - 854 + - 14866 + - 14865 + - 14864 + - 14863 + - 14862 + - 14867 + - 14868 + - 14869 + - 15003 + - 15002 + - 15010 + - 15086 + - 15005 type: DeviceList - - uid: 14589 + - uid: 14641 components: - pos: 28.5,-57.5 parent: 2 type: Transform - devices: - - 851 - - 14986 - - 14985 - - 14987 - - 14671 - - 14859 - - 14933 - - 15057 - - 15062 + - 853 + - 15037 + - 15036 + - 15038 + - 14723 + - 14910 + - 14984 + - 15108 + - 15113 type: DeviceList - - uid: 14590 + - uid: 14642 components: - rot: -1.5707963267948966 rad pos: -17.5,20.5 parent: 2 type: Transform - devices: - - 888 - - 15019 - - 15018 - - 15020 - - 15021 - - 15022 - - 14958 - - 15083 - - 15084 - - 15023 + - 890 + - 15070 + - 15069 + - 15071 + - 15072 + - 15073 + - 15009 + - 15134 + - 15135 + - 15074 type: DeviceList - - uid: 14591 + - uid: 14643 components: - pos: 65.5,-42.5 parent: 2 type: Transform - devices: - - 896 - - 14965 - - 14821 - - 14820 - - 14712 - - 14966 - - 15076 - - 15077 + - 898 + - 15016 + - 14872 + - 14871 + - 14764 + - 15017 + - 15127 + - 15128 type: DeviceList - - uid: 14592 + - uid: 14644 components: - rot: 1.5707963267948966 rad pos: -30.5,-11.5 parent: 2 type: Transform - devices: - - 15056 - - 14752 - - 14753 - - 917 + - 15107 + - 14804 + - 14805 + - 919 type: DeviceList - - uid: 14593 + - uid: 14645 components: - rot: 3.141592653589793 rad pos: -38.5,-14.5 parent: 2 type: Transform - devices: - - 892 - - 14999 - - 14998 - - 15012 - - 15011 + - 894 + - 15050 + - 15049 + - 15063 + - 15062 + - 15117 - 15066 - - 15015 - - 14754 + - 14806 type: DeviceList - - uid: 14594 + - uid: 14646 components: - pos: 8.5,18.5 parent: 2 type: Transform - devices: - - 15071 - - 14769 - - 14770 - - 14939 - - 14940 - - 14688 - - 14702 - - 14895 - - 840 + - 15122 + - 14821 + - 14822 + - 14990 + - 14991 + - 14740 + - 14754 + - 14946 + - 842 type: DeviceList - - uid: 14595 + - uid: 14647 components: - pos: -4.5,60.5 parent: 2 type: Transform - devices: - - 15103 - - 15104 - - 15109 - - 15096 - - 15095 - - 15094 - - 859 + - 15154 + - 15155 + - 15160 + - 15147 + - 15146 + - 15145 + - 861 type: DeviceList - - uid: 14596 + - uid: 14648 components: - rot: -1.5707963267948966 rad pos: 47.5,-36.5 parent: 2 type: Transform - devices: - - 894 - - 14711 - - 14961 - - 14714 - - 14713 + - 896 + - 14763 + - 15012 + - 14766 + - 14765 type: DeviceList - - uid: 14597 + - uid: 14649 components: - pos: 6.5,4.5 parent: 2 type: Transform - devices: - - 14944 + - 14995 + - 14955 + - 14996 + - 14961 + - 14903 + - 14941 + - 14939 + - 14947 + - 14882 + - 14881 + - 14915 + - 14880 + - 14911 - 14904 - - 14945 - - 14910 - - 14852 - 14890 - - 14888 - - 14896 - - 14831 - - 14830 - - 14864 - - 14829 - - 14860 - - 14853 - - 14839 - - 14705 - - 838 + - 14757 + - 840 type: DeviceList - - uid: 14598 + - uid: 14650 components: - pos: -9.5,4.5 parent: 2 type: Transform - devices: - - 15058 - - 15049 - - 15050 - - 15047 - - 15048 - - 14709 - - 14867 - - 14913 - - 14868 - - 14888 - - 14890 - - 14852 - - 14838 - - 14887 - - 14851 - - 837 + - 15109 + - 15100 + - 15101 + - 15098 + - 15099 + - 14761 + - 14918 + - 14964 + - 14919 + - 14939 + - 14941 + - 14903 + - 14889 + - 14938 + - 14902 + - 839 type: DeviceList - - uid: 14599 + - uid: 14651 components: - pos: -15.5,-3.5 parent: 2 type: Transform - devices: - - 861 - - 15039 - - 15038 - - 15040 - - 14982 - - 14979 - - 14917 - - 15051 - - 15049 - - 15050 - - 15047 - - 15048 - - 14696 + - 863 + - 15090 + - 15089 + - 15091 + - 15033 + - 15030 + - 14968 + - 15102 + - 15100 + - 15101 + - 15098 + - 15099 + - 14748 type: DeviceList - - uid: 14600 + - uid: 14652 components: - pos: 22.5,24.5 parent: 2 type: Transform - devices: - - 15070 - - 15055 - - 15054 - - 15053 - - 14949 - - 847 + - 15121 + - 15106 + - 15105 + - 15104 + - 15000 + - 849 type: DeviceList - - uid: 14601 + - uid: 14653 components: - pos: 6.5,11.5 parent: 2 type: Transform - devices: - - 14939 - - 14940 - - 14886 - - 14906 - - 14837 - - 14944 - - 14904 - - 14945 - - 841 - - 14914 - - 14910 + - 14990 + - 14991 + - 14937 + - 14957 + - 14888 + - 14995 + - 14955 + - 14996 + - 843 + - 14965 + - 14961 type: DeviceList - - uid: 14602 + - uid: 14654 components: - rot: 1.5707963267948966 rad pos: -26.5,-15.5 parent: 2 type: Transform - devices: - - 868 - - 15056 - - 14865 - - 14869 - - 15009 - - 15010 - - 14752 + - 870 + - 15107 + - 14916 + - 14920 + - 15060 + - 15061 + - 14804 type: DeviceList - - uid: 14603 + - uid: 14655 components: - pos: -13.5,-40.5 parent: 2 type: Transform - devices: - - 14849 - - 14848 - - 14847 - - 14947 - - 14674 - - 14675 - - 14676 - - 14699 - - 14677 - - 14678 - - 14920 - - 14918 - - 14858 - - 812 - - 14941 - - 14942 - - 14943 + - 14900 + - 14899 + - 14898 + - 14998 + - 14726 + - 14727 + - 14728 + - 14751 + - 14729 + - 14730 + - 14971 + - 14969 + - 14909 + - 814 + - 14992 + - 14993 + - 14994 type: DeviceList - - uid: 14604 + - uid: 14656 components: - rot: 3.141592653589793 rad pos: 4.5,-51.5 parent: 2 type: Transform - devices: - - 829 - - 15030 - - 14846 - - 15029 - - 15028 + - 831 + - 15081 + - 14897 + - 15080 + - 15079 type: DeviceList - - uid: 14605 + - uid: 14657 components: - pos: -16.5,-24.5 parent: 2 type: Transform - devices: - - 15001 - - 876 - - 14727 - - 14708 - - 14983 - - 14901 - - 14825 - - 14937 - - 15008 - - 14980 - - 15007 - - 15043 - - 15044 - - 15045 + - 15052 + - 878 + - 14779 + - 14760 + - 15034 + - 14952 + - 14876 + - 14988 + - 15059 + - 15031 + - 15058 + - 15094 + - 15095 + - 15096 type: DeviceList - - uid: 14606 + - uid: 14658 components: - pos: -16.5,-58.5 parent: 2 type: Transform - devices: - - 14877 - - 15031 - - 15032 - - 14876 - - 14875 - - 14903 - - 14988 - - 14989 - - 14995 - - 15036 - - 15060 - - 15061 - - 15059 - - 15065 - - 815 - - 14680 - - 14693 + - 14928 + - 15082 + - 15083 + - 14927 + - 14926 + - 14954 + - 15039 + - 15040 + - 15046 + - 15087 + - 15111 + - 15112 + - 15110 + - 15116 + - 817 + - 14732 + - 14745 type: DeviceList - - uid: 14607 + - uid: 14659 components: - rot: -1.5707963267948966 rad pos: 41.5,-61.5 parent: 2 type: Transform - devices: - - 854 - - 14986 - - 14985 - - 14987 - - 14984 - - 14832 - - 14990 - - 14991 + - 856 + - 15037 + - 15036 + - 15038 + - 15035 + - 14883 + - 15041 + - 15042 type: DeviceList - - uid: 14608 + - uid: 14660 components: - pos: -7.5,-24.5 parent: 2 type: Transform - devices: - - 835 - - 15043 - - 15044 - - 15045 - - 14685 - - 14938 - - 14905 - - 14899 - - 14870 - - 14900 - - 14936 - - 14941 - - 14942 - - 14943 + - 837 + - 15094 + - 15095 + - 15096 + - 14737 + - 14989 + - 14956 + - 14950 + - 14921 + - 14951 + - 14987 + - 14992 + - 14993 + - 14994 type: DeviceList - - uid: 14609 + - uid: 14661 components: - pos: 27.5,-15.5 parent: 2 type: Transform - devices: - - 14885 - - 14872 - - 14911 - - 14927 - - 14828 - - 14924 - - 14850 - - 14889 - - 14856 - - 14857 - - 878 + - 14936 + - 14923 + - 14962 + - 14978 + - 14879 + - 14975 + - 14901 + - 14940 + - 14907 + - 14908 + - 880 type: DeviceList - - uid: 14610 + - uid: 14662 components: - pos: 24.5,-3.5 parent: 2 type: Transform - devices: - - 862 - - 14935 - - 14916 - - 14854 - - 14836 - - 14863 - - 14891 - - 14828 - - 14924 - - 14850 + - 864 + - 14986 + - 14967 + - 14905 + - 14887 + - 14914 + - 14942 + - 14879 + - 14975 + - 14901 type: DeviceList - - uid: 14611 + - uid: 14663 components: - rot: -1.5707963267948966 rad pos: 19.5,-3.5 parent: 2 type: Transform - devices: - - 863 - - 14829 - - 14860 - - 14853 - - 14839 - - 14833 - - 14893 - - 14894 - - 14912 - - 14935 - - 14916 - - 14854 + - 865 + - 14880 + - 14911 + - 14904 + - 14890 + - 14884 + - 14944 + - 14945 + - 14963 + - 14986 + - 14967 + - 14905 type: DeviceList - - uid: 14612 + - uid: 14664 components: - pos: 12.5,-24.5 parent: 2 type: Transform - devices: - - 833 - - 14667 - - 14908 - - 14827 - - 14902 - - 14885 - - 14872 - - 14911 - - 14897 - - 14960 - - 14925 - - 14663 + - 835 + - 14719 + - 14959 + - 14878 + - 14953 + - 14936 + - 14923 + - 14962 + - 14948 + - 15011 + - 14976 + - 14715 type: DeviceList - - uid: 14613 + - uid: 14665 components: - pos: 37.5,-24.5 parent: 2 type: Transform - devices: - - 14666 - - 14662 - - 14661 - - 819 - - 14668 - - 14889 - - 14856 - - 14857 - - 14922 - - 14844 - - 14866 + - 14718 + - 14714 + - 14713 + - 821 + - 14720 + - 14940 + - 14907 + - 14908 + - 14973 + - 14895 + - 14917 type: DeviceList - - uid: 14614 + - uid: 14666 components: - pos: 33.5,9.5 parent: 2 type: Transform - devices: - - 865 + - 867 + - 14981 + - 14887 + - 14914 + - 14942 + - 14929 + - 14912 + - 14943 + - 14933 + - 14958 + - 15092 - 14930 - - 14836 - - 14863 - - 14891 - - 14878 - - 14861 - - 14892 - - 14882 - - 14907 - - 15041 - - 14879 type: DeviceList - - uid: 14615 + - uid: 14667 components: - pos: 56.5,-4.5 parent: 2 type: Transform - devices: - - 14717 - - 850 - - 14975 - - 14957 - - 14956 - - 14955 - - 15063 - - 14974 + - 14769 + - 852 + - 15026 + - 15008 + - 15007 + - 15006 + - 15114 + - 15025 type: DeviceList - - uid: 14616 + - uid: 14668 components: - pos: 40.5,3.5 parent: 2 type: Transform - devices: - - 848 - - 15029 - - 15028 - - 829 - - 14882 - - 14907 - - 15041 - - 14923 - - 14955 - - 14956 - - 14957 - - 15112 - - 15111 + - 850 + - 15080 + - 15079 + - 831 + - 14933 + - 14958 + - 15092 + - 14974 + - 15006 + - 15007 + - 15008 + - 15163 + - 15162 type: DeviceList - - uid: 14617 + - uid: 14669 components: - rot: -1.5707963267948966 rad pos: -2.5,-10.5 parent: 2 type: Transform - devices: - - 836 - - 14938 - - 14905 - - 14899 - - 14868 - - 14913 - - 14867 + - 838 + - 14989 + - 14956 + - 14950 + - 14919 + - 14964 + - 14918 type: DeviceList - - uid: 14618 + - uid: 14670 components: - pos: -31.5,2.5 parent: 2 type: Transform - devices: - - 881 - - 14917 - - 14979 - - 14982 - - 14694 - - 15025 - - 15024 - - 15026 - - 15027 - - 15034 + - 883 + - 14968 + - 15030 + - 15033 + - 14746 + - 15076 + - 15075 + - 15077 + - 15078 + - 15085 type: DeviceList - - uid: 14619 + - uid: 14671 components: - pos: -48.5,9.5 parent: 2 type: Transform - devices: - - 15037 - - 15033 - - 882 - - 15026 - - 15027 - - 15034 + - 15088 + - 15084 + - 884 + - 15077 + - 15078 + - 15085 type: DeviceList - - uid: 14620 + - uid: 14672 components: - rot: -1.5707963267948966 rad pos: -52.5,-10.5 parent: 2 type: Transform - devices: - - 891 - - 15005 - - 15004 - - 14729 - - 14730 + - 893 + - 15056 + - 15055 + - 14781 + - 14782 type: DeviceList - - uid: 14621 + - uid: 14673 components: - pos: -58.5,-22.5 parent: 2 type: Transform - devices: - - 890 - - 15016 - - 15046 - - 14725 - - 15004 - - 15005 + - 892 + - 15067 + - 15097 + - 14777 + - 15055 + - 15056 type: DeviceList - - uid: 14622 + - uid: 14674 components: - rot: -1.5707963267948966 rad pos: -29.5,-35.5 parent: 2 type: Transform - devices: - - 874 - - 15002 - - 15003 - - 14976 - - 14977 - - 14720 - - 14719 - - 14724 - - 14723 + - 876 + - 15053 + - 15054 + - 15027 + - 15028 + - 14772 + - 14771 + - 14776 + - 14775 type: DeviceList - - uid: 14623 + - uid: 14675 components: - pos: 52.5,-38.5 parent: 2 type: Transform - devices: - - 856 - - 14961 - - 14964 - - 14973 - - 14962 - - 14963 - - 14967 - - 14971 - - 14972 - - 15074 - - 15075 + - 858 + - 15012 + - 15015 + - 15024 + - 15013 + - 15014 + - 15018 + - 15022 + - 15023 + - 15125 + - 15126 type: DeviceList - - uid: 14624 + - uid: 14676 components: - pos: 22.5,9.5 parent: 2 type: Transform - devices: - - 864 - - 14682 - - 14672 - - 14670 - - 14750 - - 14894 + - 866 + - 14734 + - 14724 + - 14722 + - 14802 + - 14945 + - 14963 + - 14929 - 14912 - - 14878 - - 14861 - - 14892 + - 14943 type: DeviceList - - uid: 14625 + - uid: 14677 components: - pos: -26.5,-76.5 parent: 2 type: Transform - devices: - - 822 - - 15064 - - 14931 - - 14883 + - 824 + - 15115 + - 14982 + - 14934 type: DeviceList - - uid: 14626 + - uid: 14678 components: - rot: 1.5707963267948966 rad pos: 27.5,15.5 parent: 2 type: Transform - devices: - - 14953 - - 14862 - - 14884 - - 14835 - - 14949 - - 14703 - - 14692 - - 14673 - - 849 - - 15112 - - 15111 + - 15004 + - 14913 + - 14935 + - 14886 + - 15000 + - 14755 + - 14744 + - 14725 + - 851 + - 15163 + - 15162 type: DeviceList - - uid: 14627 + - uid: 14679 components: - pos: -17.5,-68.5 parent: 2 type: Transform - devices: - - 821 - - 15072 - - 15064 - - 14826 - - 14766 + - 823 + - 15123 + - 15115 + - 14877 + - 14818 type: DeviceList - - uid: 14628 + - uid: 14680 components: - pos: 46.5,-40.5 parent: 2 type: Transform - devices: - - 14711 - - 14964 - - 14973 - - 14962 - - 14970 - - 14969 - - 14968 - - 14713 - - 14714 - - 904 + - 14763 + - 15015 + - 15024 + - 15013 + - 15021 + - 15020 + - 15019 + - 14765 + - 14766 + - 906 type: DeviceList - - uid: 14629 + - uid: 14681 components: - pos: -18.5,68.5 parent: 2 type: Transform - devices: - - 906 - - 15144 - - 15143 + - 908 + - 15195 + - 15194 type: DeviceList - - uid: 14630 + - uid: 14682 components: - rot: -1.5707963267948966 rad pos: -13.5,40.5 parent: 2 type: Transform - devices: - - 908 - - 15091 - - 15092 - - 15093 - - 14775 - - 14772 - - 14774 - - 14773 - - 15084 - - 15083 - - 15080 - - 15081 - - 15082 - - 15097 - - 15098 - - 15099 - - 14751 + - 910 + - 15142 + - 15143 + - 15144 + - 14827 + - 14824 + - 14826 + - 14825 + - 15135 + - 15134 + - 15131 + - 15132 + - 15133 + - 15148 + - 15149 + - 15150 + - 14803 type: DeviceList - - uid: 14631 + - uid: 14683 components: - pos: -7.5,47.5 parent: 2 type: Transform - devices: - - 909 - - 15091 - - 15092 - - 15093 - - 15086 - - 15087 - - 15094 - - 15095 - - 15096 - - 15107 + - 911 + - 15142 + - 15143 + - 15144 + - 15137 + - 15138 + - 15145 + - 15146 + - 15147 + - 15158 type: DeviceList - - uid: 14632 + - uid: 14684 components: - rot: 3.141592653589793 rad pos: 65.5,-36.5 parent: 2 type: Transform - devices: - - 915 - - 14715 - - 14782 - - 14784 - - 14783 + - 917 + - 14767 + - 14834 + - 14836 + - 14835 type: DeviceList - - uid: 14633 + - uid: 14685 components: - pos: 73.5,-42.5 parent: 2 type: Transform - devices: - - 15119 - - 15120 - - 14821 - - 14820 - - 14712 - - 899 + - 15170 + - 15171 + - 14872 + - 14871 + - 14764 + - 901 type: DeviceList - - uid: 14634 + - uid: 14686 components: - rot: -1.5707963267948966 rad pos: -17.5,-13.5 parent: 2 type: Transform - devices: - - 15040 - - 15038 - - 15039 - - 14865 - - 14869 - - 15007 - - 14980 - - 15008 - - 14787 - - 869 - - 14978 - - 15121 - - 15122 + - 15091 + - 15089 + - 15090 + - 14916 + - 14920 + - 15058 + - 15031 + - 15059 + - 14839 + - 871 + - 15029 + - 15172 + - 15173 type: DeviceList - - uid: 14635 + - uid: 14687 components: - rot: 3.141592653589793 rad pos: 21.5,-26.5 parent: 2 type: Transform - devices: - - 877 - - 14668 - - 14666 - - 14663 - - 14667 - - 14695 - - 14687 - - 14700 + - 879 + - 14720 + - 14718 + - 14715 + - 14719 + - 14747 + - 14739 + - 14752 type: DeviceList - - uid: 14636 + - uid: 14688 components: - rot: 3.141592653589793 rad pos: 72.5,-39.5 parent: 2 type: Transform - devices: - - 914 - - 14786 - - 14785 - - 15118 - - 15117 + - 916 + - 14838 + - 14837 + - 15169 + - 15168 type: DeviceList - - uid: 14637 + - uid: 14689 components: - pos: 30.5,-70.5 parent: 2 type: Transform - devices: - - 922 - - 15134 - - 15135 - - 15136 - - 15133 - - 15132 - - 15131 + - 924 + - 15185 + - 15186 + - 15187 + - 15184 + - 15183 + - 15182 type: DeviceList - - uid: 14638 + - uid: 14690 components: - rot: -1.5707963267948966 rad pos: 20.5,-85.5 parent: 2 type: Transform - devices: - - 15130 - - 923 + - 15181 + - 925 type: DeviceList - - uid: 14639 + - uid: 14691 components: - rot: -1.5707963267948966 rad pos: 32.5,-81.5 parent: 2 type: Transform - devices: - - 905 - - 15129 - - 15131 - - 15132 - - 15133 + - 907 + - 15180 + - 15182 + - 15183 + - 15184 type: DeviceList - - uid: 14640 + - uid: 14692 components: - rot: 3.141592653589793 rad pos: 42.5,-74.5 parent: 2 type: Transform - devices: - - 15137 - - 15138 - - 15139 - - 15134 - - 15135 - - 15136 - - 853 + - 15188 + - 15189 + - 15190 + - 15185 + - 15186 + - 15187 + - 855 type: DeviceList - - uid: 14641 + - uid: 14693 components: - rot: -1.5707963267948966 rad pos: 50.5,-75.5 parent: 2 type: Transform - devices: - - 913 - - 15137 - - 15138 - - 15139 - - 15142 - - 15141 - - 15140 + - 915 + - 15188 + - 15189 + - 15190 + - 15193 + - 15192 + - 15191 type: DeviceList - - uid: 14642 + - uid: 14694 components: - rot: -1.5707963267948966 rad pos: 50.5,-85.5 parent: 2 type: Transform - devices: - - 912 - - 15140 - - 15141 - - 15142 + - 914 + - 15191 + - 15192 + - 15193 type: DeviceList - - uid: 14643 + - uid: 14695 components: - rot: -1.5707963267948966 rad pos: 48.5,4.5 parent: 2 type: Transform - devices: - - 15145 - - 15052 - - 809 - - 14950 + - 15196 + - 15103 + - 811 + - 15001 type: DeviceList - - uid: 14644 + - uid: 14696 components: - pos: 1.5,-51.5 parent: 2 type: Transform - devices: - - 15030 - - 14846 - - 814 - - 14993 - - 14992 - - 14994 - - 14928 - - 15000 - - 14909 - - 14841 - - 14921 - - 14926 - - 14873 - - 14874 - - 14919 - - 14934 - - 14932 - - 15069 - - 14799 + - 15081 + - 14897 + - 816 + - 15044 + - 15043 + - 15045 + - 14979 + - 15051 + - 14960 + - 14892 + - 14972 + - 14977 + - 14924 + - 14925 + - 14970 + - 14985 + - 14983 + - 15120 + - 14850 type: DeviceList - - uid: 14645 + - uid: 14697 components: - rot: 1.5707963267948966 rad pos: -9.5,16.5 parent: 2 type: Transform - ShutdownSubscribers: - - 927 - - 14801 - - 14718 - - 14745 - - 14800 + - 929 + - 14852 + - 14770 + - 14797 + - 14851 type: DeviceNetwork - devices: - - 927 - - 14801 - - 14718 - - 14745 - - 14800 + - 929 + - 14852 + - 14770 + - 14797 + - 14851 type: DeviceList - - uid: 14646 + - uid: 14698 components: - pos: -10.5,13.5 parent: 2 type: Transform - ShutdownSubscribers: - - 843 - - 15058 - - 14851 - - 14887 - - 14838 - - 14914 - - 14801 - - 14718 + - 845 + - 15109 + - 14902 + - 14938 + - 14889 + - 14965 + - 14852 + - 14770 type: DeviceNetwork - devices: - - 843 - - 15058 - - 14851 - - 14887 - - 14838 - - 14914 - - 14801 - - 14718 + - 845 + - 15109 + - 14902 + - 14938 + - 14889 + - 14965 + - 14852 + - 14770 type: DeviceList - - uid: 14647 + - uid: 14699 components: - pos: -71.5,-36.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14802 - - 14806 + - 14853 + - 14857 type: DeviceNetwork - devices: - - 928 - - 15149 - - 15150 - - 14802 - - 14806 + - 930 + - 15200 + - 15201 + - 14853 + - 14857 type: DeviceList - - uid: 14648 + - uid: 14700 components: - rot: -1.5707963267948966 rad pos: 6.5,-6.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15154 - - 15153 - - 15151 - - 932 + - 15205 + - 15204 + - 15202 + - 934 type: DeviceNetwork - devices: - - 932 - - 15151 - - 15153 - - 15154 + - 934 + - 15202 + - 15204 + - 15205 type: DeviceList - - uid: 14649 + - uid: 14701 components: - rot: -1.5707963267948966 rad pos: 0.5,-4.5 parent: 2 type: Transform - ShutdownSubscribers: - - 931 - - 15153 - - 15152 + - 933 + - 15204 + - 15203 type: DeviceNetwork - devices: - - 931 - - 15153 - - 15152 + - 933 + - 15204 + - 15203 type: DeviceList - - uid: 14650 + - uid: 14702 components: - rot: 1.5707963267948966 rad pos: -2.5,-22.5 parent: 2 type: Transform - ShutdownSubscribers: - - 933 - - 15155 - - 15156 + - 935 + - 15206 + - 15207 type: DeviceNetwork - devices: - - 933 - - 15155 - - 15156 + - 935 + - 15206 + - 15207 type: DeviceList - - uid: 14651 + - uid: 14703 components: - rot: 1.5707963267948966 rad pos: 20.5,-37.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15157 - - 15158 - - 15160 - - 934 + - 15208 + - 15209 + - 15211 + - 936 type: DeviceNetwork - devices: - - 15157 - - 15158 - - 15160 - - 934 + - 15208 + - 15209 + - 15211 + - 936 type: DeviceList - proto: FireAxeCabinetFilled entities: - - uid: 14652 + - uid: 14704 components: - rot: -1.5707963267948966 rad pos: -36.5,-49.5 parent: 2 type: Transform - - uid: 14653 + - uid: 14705 components: - pos: 30.5,-20.5 parent: 2 type: Transform - proto: FireExtinguisher entities: - - uid: 14654 + - uid: 14706 components: - pos: -40.44795,34.218018 parent: 2 type: Transform - - uid: 14655 + - uid: 14707 components: - pos: -40.7292,33.999268 parent: 2 type: Transform - - uid: 14656 + - uid: 14708 components: - pos: -47.435944,26.604792 parent: 2 type: Transform - - uid: 14657 + - uid: 14709 components: - pos: 22.516739,-54.502064 parent: 2 type: Transform - proto: Firelock entities: - - uid: 14658 + - uid: 14710 components: - pos: -47.5,-25.5 parent: 2 type: Transform - - uid: 14659 + - uid: 14711 components: - rot: 1.5707963267948966 rad pos: -13.5,15.5 parent: 2 type: Transform - - uid: 14660 + - uid: 14712 components: - pos: 10.5,-64.5 parent: 2 type: Transform - - uid: 14661 + - uid: 14713 components: - pos: 39.5,-26.5 parent: 2 type: Transform - - uid: 14662 + - uid: 14714 components: - pos: 39.5,-25.5 parent: 2 type: Transform - - uid: 14663 + - uid: 14715 components: - pos: 18.5,-24.5 parent: 2 type: Transform - - uid: 14664 + - uid: 14716 components: - pos: 56.5,-2.5 parent: 2 type: Transform - - uid: 14665 + - uid: 14717 components: - rot: 3.141592653589793 rad pos: 15.5,-13.5 parent: 2 type: Transform - - uid: 14666 + - uid: 14718 components: - rot: 1.5707963267948966 rad pos: 32.5,-25.5 parent: 2 type: Transform - - uid: 14667 + - uid: 14719 components: - rot: 1.5707963267948966 rad pos: 18.5,-25.5 parent: 2 type: Transform - - uid: 14668 + - uid: 14720 components: - pos: 32.5,-24.5 parent: 2 type: Transform - - uid: 14669 + - uid: 14721 components: - pos: 40.5,-14.5 parent: 2 type: Transform - - uid: 14670 + - uid: 14722 components: - rot: 1.5707963267948966 rad pos: 26.5,14.5 parent: 2 type: Transform - - uid: 14671 + - uid: 14723 components: - pos: 23.5,-53.5 parent: 2 type: Transform - - uid: 14672 + - uid: 14724 components: - rot: 1.5707963267948966 rad pos: 25.5,14.5 parent: 2 type: Transform - - uid: 14673 + - uid: 14725 components: - pos: 30.5,23.5 parent: 2 type: Transform - - uid: 14674 + - uid: 14726 components: - pos: -9.5,-44.5 parent: 2 type: Transform - - uid: 14675 + - uid: 14727 components: - pos: -8.5,-44.5 parent: 2 type: Transform - - uid: 14676 + - uid: 14728 components: - pos: -7.5,-44.5 parent: 2 type: Transform - - uid: 14677 + - uid: 14729 components: - pos: -0.5,-44.5 parent: 2 type: Transform - - uid: 14678 + - uid: 14730 components: - pos: 0.5,-44.5 parent: 2 type: Transform - - uid: 14679 + - uid: 14731 components: - rot: -1.5707963267948966 rad pos: 11.5,-49.5 parent: 2 type: Transform - - uid: 14680 + - uid: 14732 components: - pos: -13.5,-62.5 parent: 2 type: Transform - - uid: 14681 + - uid: 14733 components: - pos: -21.5,-52.5 parent: 2 type: Transform - - uid: 14682 + - uid: 14734 components: - rot: 1.5707963267948966 rad pos: 24.5,14.5 parent: 2 type: Transform - - uid: 14683 + - uid: 14735 components: - pos: 18.5,-51.5 parent: 2 type: Transform - - uid: 14684 + - uid: 14736 components: - pos: -47.5,-27.5 parent: 2 type: Transform - - uid: 14685 + - uid: 14737 components: - pos: -11.5,-24.5 parent: 2 type: Transform - - uid: 14686 + - uid: 14738 components: - pos: 31.5,-44.5 parent: 2 type: Transform - - uid: 14687 + - uid: 14739 components: - pos: 26.5,-26.5 parent: 2 type: Transform - - uid: 14688 + - uid: 14740 components: - pos: 14.5,17.5 parent: 2 type: Transform - - uid: 14689 + - uid: 14741 components: - rot: 1.5707963267948966 rad pos: -27.5,-41.5 parent: 2 type: Transform - - uid: 14690 + - uid: 14742 components: - pos: 14.5,-51.5 parent: 2 type: Transform - - uid: 14691 + - uid: 14743 components: - pos: 54.5,38.5 parent: 2 type: Transform - - uid: 14692 + - uid: 14744 components: - pos: 29.5,23.5 parent: 2 type: Transform - - uid: 14693 + - uid: 14745 components: - pos: -19.5,-62.5 parent: 2 type: Transform - - uid: 14694 + - uid: 14746 components: - pos: -29.5,-1.5 parent: 2 type: Transform - - uid: 14695 + - uid: 14747 components: - pos: 23.5,-26.5 parent: 2 type: Transform - - uid: 14696 + - uid: 14748 components: - pos: -19.5,-3.5 parent: 2 type: Transform - - uid: 14697 + - uid: 14749 components: - pos: -10.5,-75.5 parent: 2 type: Transform - - uid: 14698 + - uid: 14750 components: - pos: 34.5,22.5 parent: 2 type: Transform - - uid: 14699 + - uid: 14751 components: - pos: -1.5,-44.5 parent: 2 type: Transform - - uid: 14700 + - uid: 14752 components: - pos: 28.5,-26.5 parent: 2 type: Transform - - uid: 14701 + - uid: 14753 components: - pos: -1.5,-72.5 parent: 2 type: Transform - - uid: 14702 + - uid: 14754 components: - pos: 14.5,16.5 parent: 2 type: Transform - - uid: 14703 + - uid: 14755 components: - pos: 28.5,23.5 parent: 2 type: Transform - - uid: 14704 + - uid: 14756 components: - pos: -50.5,-76.5 parent: 2 type: Transform - - uid: 14705 + - uid: 14757 components: - rot: 3.141592653589793 rad pos: 14.5,-3.5 parent: 2 type: Transform - - uid: 14706 + - uid: 14758 components: - pos: 19.5,-8.5 parent: 2 type: Transform - - uid: 14707 + - uid: 14759 components: - pos: -9.5,-29.5 parent: 2 type: Transform - - uid: 14708 + - uid: 14760 components: - rot: -1.5707963267948966 rad pos: -16.5,-30.5 parent: 2 type: Transform - - uid: 14709 + - uid: 14761 components: - rot: -1.5707963267948966 rad pos: -9.5,-2.5 parent: 2 type: Transform - - uid: 14710 + - uid: 14762 components: - rot: -1.5707963267948966 rad pos: 37.5,20.5 parent: 2 type: Transform - - uid: 14711 + - uid: 14763 components: - pos: 45.5,-40.5 parent: 2 type: Transform - - uid: 14712 + - uid: 14764 components: - pos: 66.5,-48.5 parent: 2 type: Transform - - uid: 14713 + - uid: 14765 components: - pos: 42.5,-40.5 parent: 2 type: Transform - - uid: 14714 + - uid: 14766 components: - pos: 43.5,-40.5 parent: 2 type: Transform - - uid: 14715 + - uid: 14767 components: - pos: 62.5,-37.5 parent: 2 type: Transform - - uid: 14716 + - uid: 14768 components: - pos: -38.5,-22.5 parent: 2 type: Transform - - uid: 14717 + - uid: 14769 components: - rot: -1.5707963267948966 rad pos: 62.5,-16.5 parent: 2 type: Transform - - uid: 14718 + - uid: 14770 components: - pos: -3.5,13.5 parent: 2 type: Transform - ShutdownSubscribers: - - 94 - - 14645 - - 14646 + - 95 + - 14697 + - 14698 type: DeviceNetwork - - uid: 14719 + - uid: 14771 components: - pos: -31.5,-30.5 parent: 2 type: Transform - - uid: 14720 + - uid: 14772 components: - pos: -32.5,-30.5 parent: 2 type: Transform - - uid: 14721 + - uid: 14773 components: - pos: 41.5,-11.5 parent: 2 type: Transform - - uid: 14722 + - uid: 14774 components: - pos: 36.5,-8.5 parent: 2 type: Transform - - uid: 14723 + - uid: 14775 components: - pos: -29.5,-34.5 parent: 2 type: Transform - - uid: 14724 + - uid: 14776 components: - pos: -29.5,-33.5 parent: 2 type: Transform - - uid: 14725 + - uid: 14777 components: - pos: -60.5,-26.5 parent: 2 type: Transform - - uid: 14726 + - uid: 14778 components: - rot: 1.5707963267948966 rad pos: 6.5,-63.5 parent: 2 type: Transform - - uid: 14727 + - uid: 14779 components: - pos: -22.5,-26.5 parent: 2 type: Transform - - uid: 14728 + - uid: 14780 components: - pos: -29.5,-26.5 parent: 2 type: Transform - - uid: 14729 + - uid: 14781 components: - pos: -49.5,-5.5 parent: 2 type: Transform - - uid: 14730 + - uid: 14782 components: - pos: -49.5,-6.5 parent: 2 type: Transform - - uid: 14731 + - uid: 14783 components: - pos: -51.5,-63.5 parent: 2 type: Transform - - uid: 14732 + - uid: 14784 components: - pos: -56.5,-57.5 parent: 2 type: Transform - - uid: 14733 + - uid: 14785 components: - pos: -23.5,-51.5 parent: 2 type: Transform - - uid: 14734 + - uid: 14786 components: - pos: -42.5,-64.5 parent: 2 type: Transform - - uid: 14735 + - uid: 14787 components: - pos: -24.5,-64.5 parent: 2 type: Transform - - uid: 14736 + - uid: 14788 components: - pos: -30.5,-49.5 parent: 2 type: Transform - - uid: 14737 + - uid: 14789 components: - pos: -28.5,-56.5 parent: 2 type: Transform - - uid: 14738 + - uid: 14790 components: - pos: 44.5,-64.5 parent: 2 type: Transform - - uid: 14739 + - uid: 14791 components: - pos: 58.5,27.5 parent: 2 type: Transform - - uid: 14740 + - uid: 14792 components: - pos: 46.5,33.5 parent: 2 type: Transform - - uid: 14741 + - uid: 14793 components: - pos: 48.5,30.5 parent: 2 type: Transform - - uid: 14742 + - uid: 14794 components: - rot: -1.5707963267948966 rad pos: 0.5,-14.5 parent: 2 type: Transform - - uid: 14743 + - uid: 14795 components: - pos: -45.5,13.5 parent: 2 type: Transform - - uid: 14744 + - uid: 14796 components: - pos: -26.5,22.5 parent: 2 type: Transform - - uid: 14745 + - uid: 14797 components: - pos: -1.5,14.5 parent: 2 type: Transform - ShutdownSubscribers: - - 94 - - 14645 + - 95 + - 14697 type: DeviceNetwork - - uid: 14746 + - uid: 14798 components: - pos: -45.5,17.5 parent: 2 type: Transform - - uid: 14747 + - uid: 14799 components: - rot: -1.5707963267948966 rad pos: -55.5,-29.5 parent: 2 type: Transform - - uid: 14748 + - uid: 14800 components: - pos: -24.5,-49.5 parent: 2 type: Transform - - uid: 14749 + - uid: 14801 components: - rot: 3.141592653589793 rad pos: -46.5,-2.5 parent: 2 type: Transform - - uid: 14750 + - uid: 14802 components: - pos: 21.5,9.5 parent: 2 type: Transform - - uid: 14751 + - uid: 14803 components: - rot: -1.5707963267948966 rad pos: -15.5,28.5 parent: 2 type: Transform - - uid: 14752 + - uid: 14804 components: - rot: -1.5707963267948966 rad pos: -26.5,-14.5 parent: 2 type: Transform - - uid: 14753 + - uid: 14805 components: - rot: -1.5707963267948966 rad pos: -30.5,-10.5 parent: 2 type: Transform - - uid: 14754 + - uid: 14806 components: - pos: -36.5,-14.5 parent: 2 type: Transform - - uid: 14755 + - uid: 14807 components: - rot: -1.5707963267948966 rad pos: 64.5,16.5 parent: 2 type: Transform - - uid: 14756 + - uid: 14808 components: - rot: -1.5707963267948966 rad pos: 65.5,3.5 parent: 2 type: Transform - - uid: 14757 + - uid: 14809 components: - pos: 43.5,-55.5 parent: 2 type: Transform - - uid: 14758 + - uid: 14810 components: - rot: 3.141592653589793 rad pos: 4.5,-15.5 parent: 2 type: Transform - - uid: 14759 + - uid: 14811 components: - rot: 3.141592653589793 rad pos: -23.5,-45.5 parent: 2 type: Transform - - uid: 14760 + - uid: 14812 components: - pos: 8.5,-54.5 parent: 2 type: Transform - - uid: 14761 + - uid: 14813 components: - pos: 36.5,-47.5 parent: 2 type: Transform - - uid: 14762 + - uid: 14814 components: - pos: 14.5,-46.5 parent: 2 type: Transform - - uid: 14763 + - uid: 14815 components: - rot: -1.5707963267948966 rad pos: 36.5,-55.5 parent: 2 type: Transform - - uid: 14764 + - uid: 14816 components: - pos: -10.5,-46.5 parent: 2 type: Transform - - uid: 14765 + - uid: 14817 components: - pos: 0.5,10.5 parent: 2 type: Transform - - uid: 14766 + - uid: 14818 components: - pos: -16.5,-69.5 parent: 2 type: Transform - - uid: 14767 + - uid: 14819 components: - pos: -29.5,-72.5 parent: 2 type: Transform - - uid: 14768 + - uid: 14820 components: - pos: -35.5,-70.5 parent: 2 type: Transform - - uid: 14769 + - uid: 14821 components: - pos: 3.5,17.5 parent: 2 type: Transform - - uid: 14770 + - uid: 14822 components: - pos: 3.5,16.5 parent: 2 type: Transform - - uid: 14771 + - uid: 14823 components: - pos: -19.5,45.5 parent: 2 type: Transform - - uid: 14772 + - uid: 14824 components: - pos: -13.5,38.5 parent: 2 type: Transform - - uid: 14773 + - uid: 14825 components: - pos: -17.5,34.5 parent: 2 type: Transform - - uid: 14774 + - uid: 14826 components: - pos: -13.5,34.5 parent: 2 type: Transform - - uid: 14775 + - uid: 14827 components: - pos: -13.5,41.5 parent: 2 type: Transform - - uid: 14776 + - uid: 14828 components: - pos: -38.5,39.5 parent: 2 type: Transform - - uid: 14777 + - uid: 14829 components: - pos: -25.5,41.5 parent: 2 type: Transform - - uid: 14778 + - uid: 14830 components: - pos: -27.5,32.5 parent: 2 type: Transform - - uid: 14779 + - uid: 14831 components: - pos: -8.5,-76.5 parent: 2 type: Transform - - uid: 14780 + - uid: 14832 components: - pos: -13.5,-97.5 parent: 2 type: Transform - - uid: 14781 + - uid: 14833 components: - rot: 1.5707963267948966 rad pos: -72.5,-27.5 parent: 2 type: Transform - - uid: 14782 + - uid: 14834 components: - pos: 61.5,-37.5 parent: 2 type: Transform - - uid: 14783 + - uid: 14835 components: - pos: 66.5,-33.5 parent: 2 type: Transform - - uid: 14784 + - uid: 14836 components: - pos: 66.5,-34.5 parent: 2 type: Transform - - uid: 14785 + - uid: 14837 components: - pos: 69.5,-33.5 parent: 2 type: Transform - - uid: 14786 + - uid: 14838 components: - pos: 69.5,-34.5 parent: 2 type: Transform - - uid: 14787 + - uid: 14839 components: - pos: -17.5,-20.5 parent: 2 type: Transform - - uid: 14788 + - uid: 14840 components: - pos: 19.5,-44.5 parent: 2 type: Transform - - uid: 14789 + - uid: 14841 components: - rot: -1.5707963267948966 rad pos: 68.5,-62.5 parent: 2 type: Transform - - uid: 14790 + - uid: 14842 components: - rot: -1.5707963267948966 rad pos: 65.5,-65.5 parent: 2 type: Transform - - uid: 14791 + - uid: 14843 components: - rot: -1.5707963267948966 rad pos: 57.5,-65.5 parent: 2 type: Transform - - uid: 14792 + - uid: 14844 components: - rot: -1.5707963267948966 rad pos: 73.5,-57.5 parent: 2 type: Transform - - uid: 14793 + - uid: 14845 components: - pos: 16.5,30.5 parent: 2 type: Transform - - uid: 14795 + - uid: 14846 components: - pos: -6.5,-9.5 parent: 2 type: Transform - - uid: 14796 + - uid: 14847 components: - pos: -13.5,-7.5 parent: 2 type: Transform - - uid: 14797 + - uid: 14848 components: - pos: -14.5,-14.5 parent: 2 type: Transform - - uid: 14798 + - uid: 14849 components: - pos: -15.5,-17.5 parent: 2 type: Transform - - uid: 14799 + - uid: 14850 components: - pos: -4.5,-51.5 parent: 2 type: Transform - - uid: 14800 + - uid: 14851 components: - pos: -9.5,15.5 parent: 2 type: Transform - ShutdownSubscribers: - - 94 - - 14645 + - 95 + - 14697 type: DeviceNetwork - - uid: 14801 + - uid: 14852 components: - pos: -6.5,13.5 parent: 2 type: Transform - ShutdownSubscribers: - - 94 - - 14645 - - 14646 + - 95 + - 14697 + - 14698 type: DeviceNetwork - - uid: 14802 + - uid: 14853 components: - rot: -1.5707963267948966 rad pos: -64.5,-36.5 parent: 2 type: Transform - ShutdownSubscribers: - - 95 - - 14647 + - 96 + - 14699 type: DeviceNetwork - - uid: 14803 + - uid: 14854 components: - pos: -49.5,-16.5 parent: 2 type: Transform - - uid: 14804 + - uid: 14855 components: - pos: -49.5,-17.5 parent: 2 type: Transform - - uid: 14805 + - uid: 14856 components: - rot: -1.5707963267948966 rad pos: -56.5,-40.5 parent: 2 type: Transform - - uid: 14806 + - uid: 14857 components: - rot: -1.5707963267948966 rad pos: -64.5,-37.5 parent: 2 type: Transform - ShutdownSubscribers: - - 95 - - 14647 + - 96 + - 14699 type: DeviceNetwork - - uid: 14807 + - uid: 14858 components: - rot: -1.5707963267948966 rad pos: -51.5,-36.5 parent: 2 type: Transform - - uid: 14808 + - uid: 14859 components: - rot: -1.5707963267948966 rad pos: -51.5,-37.5 @@ -93529,79 +93804,79 @@ entities: type: Transform - proto: FirelockEdge entities: - - uid: 14809 + - uid: 14860 components: - rot: -1.5707963267948966 rad pos: 10.5,13.5 parent: 2 type: Transform - - uid: 14810 + - uid: 14861 components: - rot: -1.5707963267948966 rad pos: 10.5,14.5 parent: 2 type: Transform - - uid: 14811 + - uid: 14862 components: - rot: 3.141592653589793 rad pos: 59.5,21.5 parent: 2 type: Transform - - uid: 14812 + - uid: 14863 components: - rot: 3.141592653589793 rad pos: 56.5,21.5 parent: 2 type: Transform - - uid: 14813 + - uid: 14864 components: - rot: 3.141592653589793 rad pos: 53.5,21.5 parent: 2 type: Transform - - uid: 14814 + - uid: 14865 components: - rot: 3.141592653589793 rad pos: 50.5,21.5 parent: 2 type: Transform - - uid: 14815 + - uid: 14866 components: - rot: 3.141592653589793 rad pos: 47.5,21.5 parent: 2 type: Transform - - uid: 14816 + - uid: 14867 components: - rot: 1.5707963267948966 rad pos: 59.5,18.5 parent: 2 type: Transform - - uid: 14817 + - uid: 14868 components: - rot: 1.5707963267948966 rad pos: 59.5,15.5 parent: 2 type: Transform - - uid: 14818 + - uid: 14869 components: - rot: 1.5707963267948966 rad pos: 59.5,13.5 parent: 2 type: Transform - - uid: 14819 + - uid: 14870 components: - rot: -1.5707963267948966 rad pos: 61.5,21.5 parent: 2 type: Transform - - uid: 14820 + - uid: 14871 components: - rot: 1.5707963267948966 rad pos: 65.5,-46.5 parent: 2 type: Transform - - uid: 14821 + - uid: 14872 components: - rot: 1.5707963267948966 rad pos: 65.5,-45.5 @@ -93609,1914 +93884,1914 @@ entities: type: Transform - proto: FirelockElectronics entities: - - uid: 14822 + - uid: 14873 components: - pos: -8.422072,39.102524 parent: 2 type: Transform - - uid: 14823 + - uid: 14874 components: - pos: -8.656447,38.727524 parent: 2 type: Transform - proto: FirelockGlass entities: - - uid: 14824 + - uid: 14875 components: - pos: -69.5,-23.5 parent: 2 type: Transform - - uid: 14825 + - uid: 14876 components: - pos: -19.5,-39.5 parent: 2 type: Transform - - uid: 14826 + - uid: 14877 components: - pos: -19.5,-68.5 parent: 2 type: Transform - - uid: 14827 + - uid: 14878 components: - pos: 10.5,-26.5 parent: 2 type: Transform - - uid: 14828 + - uid: 14879 components: - pos: 24.5,-15.5 parent: 2 type: Transform - - uid: 14829 + - uid: 14880 components: - rot: -1.5707963267948966 rad pos: 15.5,3.5 parent: 2 type: Transform - - uid: 14830 + - uid: 14881 components: - pos: 11.5,4.5 parent: 2 type: Transform - - uid: 14831 + - uid: 14882 components: - pos: 11.5,-2.5 parent: 2 type: Transform - - uid: 14832 + - uid: 14883 components: - pos: 38.5,-69.5 parent: 2 type: Transform - - uid: 14833 + - uid: 14884 components: - pos: 15.5,7.5 parent: 2 type: Transform - - uid: 14834 + - uid: 14885 components: - pos: 16.5,18.5 parent: 2 type: Transform - - uid: 14835 + - uid: 14886 components: - pos: 27.5,18.5 parent: 2 type: Transform - - uid: 14836 + - uid: 14887 components: - pos: 31.5,-4.5 parent: 2 type: Transform - - uid: 14837 + - uid: 14888 components: - pos: 7.5,7.5 parent: 2 type: Transform - - uid: 14838 + - uid: 14889 components: - pos: -6.5,4.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14646 + - 14698 type: DeviceNetwork - - uid: 14839 + - uid: 14890 components: - rot: -1.5707963267948966 rad pos: 15.5,-1.5 parent: 2 type: Transform - - uid: 14840 + - uid: 14891 components: - pos: 18.5,-32.5 parent: 2 type: Transform - - uid: 14841 + - uid: 14892 components: - pos: -5.5,-55.5 parent: 2 type: Transform - - uid: 14842 + - uid: 14893 components: - pos: 32.5,-32.5 parent: 2 type: Transform - - uid: 14843 + - uid: 14894 components: - rot: -1.5707963267948966 rad pos: 18.5,15.5 parent: 2 type: Transform - - uid: 14844 + - uid: 14895 components: - pos: 35.5,-38.5 parent: 2 type: Transform - - uid: 14845 + - uid: 14896 components: - pos: -0.5,-69.5 parent: 2 type: Transform - - uid: 14846 + - uid: 14897 components: - rot: 3.141592653589793 rad pos: 3.5,-51.5 parent: 2 type: Transform - - uid: 14847 + - uid: 14898 components: - pos: -16.5,-43.5 parent: 2 type: Transform - - uid: 14848 + - uid: 14899 components: - pos: -16.5,-42.5 parent: 2 type: Transform - - uid: 14849 + - uid: 14900 components: - pos: -16.5,-41.5 parent: 2 type: Transform - - uid: 14850 + - uid: 14901 components: - pos: 26.5,-15.5 parent: 2 type: Transform - - uid: 14851 + - uid: 14902 components: - pos: -8.5,4.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14646 + - 14698 type: DeviceNetwork - - uid: 14852 + - uid: 14903 components: - pos: -1.5,3.5 parent: 2 type: Transform - - uid: 14853 + - uid: 14904 components: - rot: -1.5707963267948966 rad pos: 15.5,-0.5 parent: 2 type: Transform - - uid: 14854 + - uid: 14905 components: - pos: 19.5,-6.5 parent: 2 type: Transform - - uid: 14855 + - uid: 14906 components: - pos: 8.5,-68.5 parent: 2 type: Transform - - uid: 14856 + - uid: 14907 components: - pos: 35.5,-19.5 parent: 2 type: Transform - - uid: 14857 + - uid: 14908 components: - pos: 36.5,-19.5 parent: 2 type: Transform - - uid: 14858 + - uid: 14909 components: - pos: 7.5,-41.5 parent: 2 type: Transform - - uid: 14859 + - uid: 14910 components: - pos: 24.5,-44.5 parent: 2 type: Transform - - uid: 14860 + - uid: 14911 components: - rot: -1.5707963267948966 rad pos: 15.5,2.5 parent: 2 type: Transform - - uid: 14861 + - uid: 14912 components: - pos: 31.5,7.5 parent: 2 type: Transform - - uid: 14862 + - uid: 14913 components: - rot: 1.5707963267948966 rad pos: 43.5,14.5 parent: 2 type: Transform - - uid: 14863 + - uid: 14914 components: - pos: 31.5,-5.5 parent: 2 type: Transform - - uid: 14864 + - uid: 14915 components: - pos: 10.5,4.5 parent: 2 type: Transform - - uid: 14865 + - uid: 14916 components: - pos: -21.5,-11.5 parent: 2 type: Transform - - uid: 14866 + - uid: 14917 components: - pos: 36.5,-38.5 parent: 2 type: Transform - - uid: 14867 + - uid: 14918 components: - pos: -3.5,-2.5 parent: 2 type: Transform - - uid: 14868 + - uid: 14919 components: - pos: -5.5,-2.5 parent: 2 type: Transform - - uid: 14869 + - uid: 14920 components: - pos: -21.5,-12.5 parent: 2 type: Transform - - uid: 14870 + - uid: 14921 components: - pos: -0.5,-25.5 parent: 2 type: Transform - - uid: 14871 + - uid: 14922 components: - rot: -1.5707963267948966 rad pos: 17.5,15.5 parent: 2 type: Transform - - uid: 14872 + - uid: 14923 components: - pos: 15.5,-19.5 parent: 2 type: Transform - - uid: 14873 + - uid: 14924 components: - pos: -9.5,-51.5 parent: 2 type: Transform - - uid: 14874 + - uid: 14925 components: - pos: -8.5,-51.5 parent: 2 type: Transform - - uid: 14875 + - uid: 14926 components: - pos: -19.5,-58.5 parent: 2 type: Transform - - uid: 14876 + - uid: 14927 components: - pos: -6.5,-62.5 parent: 2 type: Transform - - uid: 14877 + - uid: 14928 components: - pos: -2.5,-62.5 parent: 2 type: Transform - - uid: 14878 + - uid: 14929 components: - pos: 31.5,8.5 parent: 2 type: Transform - - uid: 14879 + - uid: 14930 components: - pos: 31.5,1.5 parent: 2 type: Transform - - uid: 14880 + - uid: 14931 components: - rot: -1.5707963267948966 rad pos: 19.5,14.5 parent: 2 type: Transform - - uid: 14881 + - uid: 14932 components: - pos: -46.5,27.5 parent: 2 type: Transform - - uid: 14882 + - uid: 14933 components: - pos: 35.5,2.5 parent: 2 type: Transform - - uid: 14883 + - uid: 14934 components: - pos: -23.5,-81.5 parent: 2 type: Transform - - uid: 14884 + - uid: 14935 components: - pos: 27.5,17.5 parent: 2 type: Transform - - uid: 14885 + - uid: 14936 components: - pos: 14.5,-19.5 parent: 2 type: Transform - - uid: 14886 + - uid: 14937 components: - pos: 7.5,9.5 parent: 2 type: Transform - - uid: 14887 + - uid: 14938 components: - pos: -7.5,4.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14646 + - 14698 type: DeviceNetwork - - uid: 14888 + - uid: 14939 components: - pos: -1.5,-1.5 parent: 2 type: Transform - - uid: 14889 + - uid: 14940 components: - pos: 34.5,-19.5 parent: 2 type: Transform - - uid: 14890 + - uid: 14941 components: - pos: -1.5,2.5 parent: 2 type: Transform - - uid: 14891 + - uid: 14942 components: - pos: 31.5,-6.5 parent: 2 type: Transform - - uid: 14892 + - uid: 14943 components: - pos: 31.5,6.5 parent: 2 type: Transform - - uid: 14893 + - uid: 14944 components: - pos: 15.5,6.5 parent: 2 type: Transform - - uid: 14894 + - uid: 14945 components: - pos: 19.5,7.5 parent: 2 type: Transform - - uid: 14895 + - uid: 14946 components: - pos: 11.5,18.5 parent: 2 type: Transform - - uid: 14896 + - uid: 14947 components: - pos: 10.5,-2.5 parent: 2 type: Transform - - uid: 14897 + - uid: 14948 components: - pos: 16.5,-38.5 parent: 2 type: Transform - - uid: 14898 + - uid: 14949 components: - pos: 26.5,-31.5 parent: 2 type: Transform - - uid: 14899 + - uid: 14950 components: - pos: -3.5,-22.5 parent: 2 type: Transform - - uid: 14900 + - uid: 14951 components: - pos: -0.5,-26.5 parent: 2 type: Transform - - uid: 14901 + - uid: 14952 components: - pos: -20.5,-39.5 parent: 2 type: Transform - - uid: 14902 + - uid: 14953 components: - pos: 10.5,-27.5 parent: 2 type: Transform - - uid: 14903 + - uid: 14954 components: - pos: -15.5,-58.5 parent: 2 type: Transform - - uid: 14904 + - uid: 14955 components: - pos: 1.5,4.5 parent: 2 type: Transform - - uid: 14905 + - uid: 14956 components: - pos: -4.5,-22.5 parent: 2 type: Transform - - uid: 14906 + - uid: 14957 components: - pos: 7.5,8.5 parent: 2 type: Transform - - uid: 14907 + - uid: 14958 components: - pos: 35.5,1.5 parent: 2 type: Transform - - uid: 14908 + - uid: 14959 components: - pos: 10.5,-25.5 parent: 2 type: Transform - - uid: 14909 + - uid: 14960 components: - pos: -2.5,-55.5 parent: 2 type: Transform - - uid: 14910 + - uid: 14961 components: - pos: 5.5,4.5 parent: 2 type: Transform - - uid: 14911 + - uid: 14962 components: - pos: 16.5,-19.5 parent: 2 type: Transform - - uid: 14912 + - uid: 14963 components: - pos: 19.5,6.5 parent: 2 type: Transform - - uid: 14913 + - uid: 14964 components: - pos: -4.5,-2.5 parent: 2 type: Transform - - uid: 14914 + - uid: 14965 components: - pos: -1.5,7.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14646 + - 14698 type: DeviceNetwork - - uid: 14915 + - uid: 14966 components: - rot: 3.141592653589793 rad pos: -1.5,-0.5 parent: 2 type: Transform - - uid: 14916 + - uid: 14967 components: - pos: 19.5,-5.5 parent: 2 type: Transform - - uid: 14917 + - uid: 14968 components: - pos: -27.5,1.5 parent: 2 type: Transform - - uid: 14918 + - uid: 14969 components: - pos: 7.5,-42.5 parent: 2 type: Transform - - uid: 14919 + - uid: 14970 components: - pos: -7.5,-51.5 parent: 2 type: Transform - - uid: 14920 + - uid: 14971 components: - pos: 7.5,-43.5 parent: 2 type: Transform - - uid: 14921 + - uid: 14972 components: - pos: -8.5,-55.5 parent: 2 type: Transform - - uid: 14922 + - uid: 14973 components: - pos: 34.5,-38.5 parent: 2 type: Transform - - uid: 14923 + - uid: 14974 components: - pos: 38.5,-0.5 parent: 2 type: Transform - - uid: 14924 + - uid: 14975 components: - pos: 25.5,-15.5 parent: 2 type: Transform - - uid: 14925 + - uid: 14976 components: - pos: 14.5,-38.5 parent: 2 type: Transform - - uid: 14926 + - uid: 14977 components: - pos: -11.5,-55.5 parent: 2 type: Transform - - uid: 14927 + - uid: 14978 components: - pos: 20.5,-15.5 parent: 2 type: Transform - - uid: 14928 + - uid: 14979 components: - pos: 0.5,-55.5 parent: 2 type: Transform - - uid: 14929 + - uid: 14980 components: - pos: 11.5,-29.5 parent: 2 type: Transform - - uid: 14930 + - uid: 14981 components: - pos: 35.5,-3.5 parent: 2 type: Transform - - uid: 14931 + - uid: 14982 components: - pos: -22.5,-81.5 parent: 2 type: Transform - - uid: 14932 + - uid: 14983 components: - pos: -15.5,-55.5 parent: 2 type: Transform - - uid: 14933 + - uid: 14984 components: - pos: 25.5,-44.5 parent: 2 type: Transform - - uid: 14934 + - uid: 14985 components: - pos: -14.5,-55.5 parent: 2 type: Transform - - uid: 14935 + - uid: 14986 components: - pos: 19.5,-4.5 parent: 2 type: Transform - - uid: 14936 + - uid: 14987 components: - pos: -0.5,-27.5 parent: 2 type: Transform - - uid: 14937 + - uid: 14988 components: - pos: -18.5,-39.5 parent: 2 type: Transform - - uid: 14938 + - uid: 14989 components: - pos: -5.5,-22.5 parent: 2 type: Transform - - uid: 14939 + - uid: 14990 components: - pos: 4.5,11.5 parent: 2 type: Transform - - uid: 14940 + - uid: 14991 components: - pos: 5.5,11.5 parent: 2 type: Transform - - uid: 14941 + - uid: 14992 components: - pos: -5.5,-39.5 parent: 2 type: Transform - - uid: 14942 + - uid: 14993 components: - pos: -4.5,-39.5 parent: 2 type: Transform - - uid: 14943 + - uid: 14994 components: - pos: -3.5,-39.5 parent: 2 type: Transform - - uid: 14944 + - uid: 14995 components: - pos: 0.5,4.5 parent: 2 type: Transform - - uid: 14945 + - uid: 14996 components: - pos: 2.5,4.5 parent: 2 type: Transform - - uid: 14946 + - uid: 14997 components: - pos: 22.5,-44.5 parent: 2 type: Transform - - uid: 14947 + - uid: 14998 components: - pos: -8.5,-40.5 parent: 2 type: Transform - - uid: 14948 + - uid: 14999 components: - pos: 21.5,-44.5 parent: 2 type: Transform - - uid: 14949 + - uid: 15000 components: - pos: 27.5,21.5 parent: 2 type: Transform - - uid: 14950 + - uid: 15001 components: - rot: 1.5707963267948966 rad pos: 48.5,6.5 parent: 2 type: Transform - - uid: 14951 + - uid: 15002 components: - rot: 1.5707963267948966 rad pos: 43.5,19.5 parent: 2 type: Transform - - uid: 14952 + - uid: 15003 components: - rot: 1.5707963267948966 rad pos: 43.5,20.5 parent: 2 type: Transform - - uid: 14953 + - uid: 15004 components: - rot: 1.5707963267948966 rad pos: 43.5,15.5 parent: 2 type: Transform - - uid: 14954 + - uid: 15005 components: - rot: 1.5707963267948966 rad pos: 61.5,4.5 parent: 2 type: Transform - - uid: 14955 + - uid: 15006 components: - pos: 51.5,-3.5 parent: 2 type: Transform - - uid: 14956 + - uid: 15007 components: - pos: 52.5,-3.5 parent: 2 type: Transform - - uid: 14957 + - uid: 15008 components: - pos: 53.5,-3.5 parent: 2 type: Transform - - uid: 14958 + - uid: 15009 components: - pos: -21.5,30.5 parent: 2 type: Transform - - uid: 14959 + - uid: 15010 components: - rot: 1.5707963267948966 rad pos: 46.5,15.5 parent: 2 type: Transform - - uid: 14960 + - uid: 15011 components: - pos: 15.5,-38.5 parent: 2 type: Transform - - uid: 14961 + - uid: 15012 components: - pos: 47.5,-37.5 parent: 2 type: Transform - - uid: 14962 + - uid: 15013 components: - pos: 47.5,-43.5 parent: 2 type: Transform - - uid: 14963 + - uid: 15014 components: - pos: 47.5,-45.5 parent: 2 type: Transform - - uid: 14964 + - uid: 15015 components: - pos: 47.5,-41.5 parent: 2 type: Transform - - uid: 14965 + - uid: 15016 components: - pos: 62.5,-41.5 parent: 2 type: Transform - - uid: 14966 + - uid: 15017 components: - pos: 62.5,-50.5 parent: 2 type: Transform - - uid: 14967 + - uid: 15018 components: - pos: 47.5,-46.5 parent: 2 type: Transform - - uid: 14968 + - uid: 15019 components: - pos: 40.5,-43.5 parent: 2 type: Transform - - uid: 14969 + - uid: 15020 components: - pos: 40.5,-42.5 parent: 2 type: Transform - - uid: 14970 + - uid: 15021 components: - pos: 40.5,-41.5 parent: 2 type: Transform - - uid: 14971 + - uid: 15022 components: - pos: 49.5,-48.5 parent: 2 type: Transform - - uid: 14972 + - uid: 15023 components: - pos: 50.5,-48.5 parent: 2 type: Transform - - uid: 14973 + - uid: 15024 components: - pos: 47.5,-42.5 parent: 2 type: Transform - - uid: 14974 + - uid: 15025 components: - pos: 46.5,-10.5 parent: 2 type: Transform - - uid: 14975 + - uid: 15026 components: - rot: -1.5707963267948966 rad pos: 64.5,-4.5 parent: 2 type: Transform - - uid: 14976 + - uid: 15027 components: - pos: -34.5,-33.5 parent: 2 type: Transform - - uid: 14977 + - uid: 15028 components: - pos: -34.5,-34.5 parent: 2 type: Transform - - uid: 14978 + - uid: 15029 components: - pos: -21.5,-21.5 parent: 2 type: Transform - - uid: 14979 + - uid: 15030 components: - pos: -27.5,0.5 parent: 2 type: Transform - - uid: 14980 + - uid: 15031 components: - pos: -19.5,-24.5 parent: 2 type: Transform - - uid: 14981 + - uid: 15032 components: - pos: -33.5,-16.5 parent: 2 type: Transform - - uid: 14982 + - uid: 15033 components: - pos: -27.5,-0.5 parent: 2 type: Transform - - uid: 14983 + - uid: 15034 components: - pos: -21.5,-32.5 parent: 2 type: Transform - - uid: 14984 + - uid: 15035 components: - pos: 39.5,-57.5 parent: 2 type: Transform - - uid: 14985 + - uid: 15036 components: - pos: 35.5,-59.5 parent: 2 type: Transform - - uid: 14986 + - uid: 15037 components: - pos: 35.5,-58.5 parent: 2 type: Transform - - uid: 14987 + - uid: 15038 components: - pos: 35.5,-60.5 parent: 2 type: Transform - - uid: 14988 + - uid: 15039 components: - pos: -14.5,-58.5 parent: 2 type: Transform - - uid: 14989 + - uid: 15040 components: - pos: -11.5,-58.5 parent: 2 type: Transform - - uid: 14990 + - uid: 15041 components: - pos: 39.5,-69.5 parent: 2 type: Transform - - uid: 14991 + - uid: 15042 components: - pos: 40.5,-69.5 parent: 2 type: Transform - - uid: 14992 + - uid: 15043 components: - pos: -0.5,-51.5 parent: 2 type: Transform - - uid: 14993 + - uid: 15044 components: - pos: -1.5,-51.5 parent: 2 type: Transform - - uid: 14994 + - uid: 15045 components: - pos: 0.5,-51.5 parent: 2 type: Transform - - uid: 14995 + - uid: 15046 components: - pos: -8.5,-58.5 parent: 2 type: Transform - - uid: 14996 + - uid: 15047 components: - pos: -32.5,-19.5 parent: 2 type: Transform - - uid: 14997 + - uid: 15048 components: - pos: -31.5,-19.5 parent: 2 type: Transform - - uid: 14998 + - uid: 15049 components: - pos: -40.5,-6.5 parent: 2 type: Transform - - uid: 14999 + - uid: 15050 components: - pos: -40.5,-5.5 parent: 2 type: Transform - - uid: 15000 + - uid: 15051 components: - pos: 3.5,-55.5 parent: 2 type: Transform - - uid: 15001 + - uid: 15052 components: - pos: -21.5,-34.5 parent: 2 type: Transform - - uid: 15002 + - uid: 15053 components: - pos: -33.5,-40.5 parent: 2 type: Transform - - uid: 15003 + - uid: 15054 components: - pos: -33.5,-41.5 parent: 2 type: Transform - - uid: 15004 + - uid: 15055 components: - pos: -54.5,-21.5 parent: 2 type: Transform - - uid: 15005 + - uid: 15056 components: - pos: -53.5,-21.5 parent: 2 type: Transform - - uid: 15006 + - uid: 15057 components: - pos: -69.5,-24.5 parent: 2 type: Transform - - uid: 15007 + - uid: 15058 components: - pos: -20.5,-24.5 parent: 2 type: Transform - - uid: 15008 + - uid: 15059 components: - pos: -18.5,-24.5 parent: 2 type: Transform - - uid: 15009 + - uid: 15060 components: - pos: -26.5,-16.5 parent: 2 type: Transform - - uid: 15010 + - uid: 15061 components: - pos: -26.5,-17.5 parent: 2 type: Transform - - uid: 15011 + - uid: 15062 components: - pos: -33.5,-11.5 parent: 2 type: Transform - - uid: 15012 + - uid: 15063 components: - pos: -33.5,-10.5 parent: 2 type: Transform - - uid: 15013 + - uid: 15064 components: - pos: -41.5,-8.5 parent: 2 type: Transform - - uid: 15014 + - uid: 15065 components: - pos: -42.5,-8.5 parent: 2 type: Transform - - uid: 15015 + - uid: 15066 components: - pos: -40.5,-10.5 parent: 2 type: Transform - - uid: 15016 + - uid: 15067 components: - pos: -63.5,-23.5 parent: 2 type: Transform - - uid: 15017 + - uid: 15068 components: - pos: -21.5,-60.5 parent: 2 type: Transform - - uid: 15018 + - uid: 15069 components: - pos: -21.5,20.5 parent: 2 type: Transform - - uid: 15019 + - uid: 15070 components: - pos: -21.5,21.5 parent: 2 type: Transform - - uid: 15020 + - uid: 15071 components: - pos: -20.5,14.5 parent: 2 type: Transform - - uid: 15021 + - uid: 15072 components: - pos: -19.5,14.5 parent: 2 type: Transform - - uid: 15022 + - uid: 15073 components: - pos: -18.5,14.5 parent: 2 type: Transform - - uid: 15023 + - uid: 15074 components: - rot: -1.5707963267948966 rad pos: -17.5,25.5 parent: 2 type: Transform - - uid: 15024 + - uid: 15075 components: - pos: -38.5,2.5 parent: 2 type: Transform - - uid: 15025 + - uid: 15076 components: - pos: -37.5,2.5 parent: 2 type: Transform - - uid: 15026 + - uid: 15077 components: - pos: -44.5,1.5 parent: 2 type: Transform - - uid: 15027 + - uid: 15078 components: - pos: -44.5,0.5 parent: 2 type: Transform - - uid: 15028 + - uid: 15079 components: - pos: 1.5,-46.5 parent: 2 type: Transform - - uid: 15029 + - uid: 15080 components: - pos: 1.5,-48.5 parent: 2 type: Transform - - uid: 15030 + - uid: 15081 components: - rot: 3.141592653589793 rad pos: 5.5,-51.5 parent: 2 type: Transform - - uid: 15031 + - uid: 15082 components: - pos: -3.5,-62.5 parent: 2 type: Transform - - uid: 15032 + - uid: 15083 components: - pos: -5.5,-62.5 parent: 2 type: Transform - - uid: 15033 + - uid: 15084 components: - pos: -45.5,9.5 parent: 2 type: Transform - - uid: 15034 + - uid: 15085 components: - pos: -44.5,-0.5 parent: 2 type: Transform - - uid: 15035 + - uid: 15086 components: - rot: 1.5707963267948966 rad pos: 46.5,14.5 parent: 2 type: Transform - - uid: 15036 + - uid: 15087 components: - pos: -5.5,-58.5 parent: 2 type: Transform - - uid: 15037 + - uid: 15088 components: - pos: -46.5,9.5 parent: 2 type: Transform - - uid: 15038 + - uid: 15089 components: - pos: -19.5,-7.5 parent: 2 type: Transform - - uid: 15039 + - uid: 15090 components: - pos: -18.5,-7.5 parent: 2 type: Transform - - uid: 15040 + - uid: 15091 components: - pos: -20.5,-7.5 parent: 2 type: Transform - - uid: 15041 + - uid: 15092 components: - pos: 35.5,0.5 parent: 2 type: Transform - - uid: 15042 + - uid: 15093 components: - pos: -32.5,27.5 parent: 2 type: Transform - - uid: 15043 + - uid: 15094 components: - pos: -13.5,-25.5 parent: 2 type: Transform - - uid: 15044 + - uid: 15095 components: - pos: -13.5,-26.5 parent: 2 type: Transform - - uid: 15045 + - uid: 15096 components: - pos: -13.5,-27.5 parent: 2 type: Transform - - uid: 15046 + - uid: 15097 components: - pos: -63.5,-24.5 parent: 2 type: Transform - - uid: 15047 + - uid: 15098 components: - pos: -11.5,-0.5 parent: 2 type: Transform - - uid: 15048 + - uid: 15099 components: - pos: -11.5,-1.5 parent: 2 type: Transform - - uid: 15049 + - uid: 15100 components: - pos: -11.5,3.5 parent: 2 type: Transform - - uid: 15050 + - uid: 15101 components: - pos: -11.5,2.5 parent: 2 type: Transform - - uid: 15051 + - uid: 15102 components: - pos: -24.5,9.5 parent: 2 type: Transform - - uid: 15052 + - uid: 15103 components: - rot: 3.141592653589793 rad pos: 43.5,6.5 parent: 2 type: Transform - - uid: 15053 + - uid: 15104 components: - pos: 26.5,19.5 parent: 2 type: Transform - - uid: 15054 + - uid: 15105 components: - pos: 25.5,19.5 parent: 2 type: Transform - - uid: 15055 + - uid: 15106 components: - pos: 24.5,19.5 parent: 2 type: Transform - - uid: 15056 + - uid: 15107 components: - rot: 3.141592653589793 rad pos: -26.5,-12.5 parent: 2 type: Transform - - uid: 15057 + - uid: 15108 components: - pos: 26.5,-44.5 parent: 2 type: Transform - - uid: 15058 + - uid: 15109 components: - pos: -10.5,4.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14646 + - 14698 type: DeviceNetwork - - uid: 15059 + - uid: 15110 components: - pos: 3.5,-58.5 parent: 2 type: Transform - - uid: 15060 + - uid: 15111 components: - pos: -2.5,-58.5 parent: 2 type: Transform - - uid: 15061 + - uid: 15112 components: - pos: 0.5,-58.5 parent: 2 type: Transform - - uid: 15062 + - uid: 15113 components: - pos: 31.5,-57.5 parent: 2 type: Transform - - uid: 15063 + - uid: 15114 components: - pos: 49.5,-13.5 parent: 2 type: Transform - - uid: 15064 + - uid: 15115 components: - pos: -24.5,-74.5 parent: 2 type: Transform - - uid: 15065 + - uid: 15116 components: - pos: 3.5,-62.5 parent: 2 type: Transform - - uid: 15066 + - uid: 15117 components: - pos: -40.5,-11.5 parent: 2 type: Transform - - uid: 15067 + - uid: 15118 components: - pos: -43.5,-10.5 parent: 2 type: Transform - - uid: 15068 + - uid: 15119 components: - pos: -43.5,-11.5 parent: 2 type: Transform - - uid: 15069 + - uid: 15120 components: - pos: -13.5,-51.5 parent: 2 type: Transform - - uid: 15070 + - uid: 15121 components: - pos: 22.5,19.5 parent: 2 type: Transform - - uid: 15071 + - uid: 15122 components: - pos: 6.5,18.5 parent: 2 type: Transform - - uid: 15072 + - uid: 15123 components: - pos: -18.5,-74.5 parent: 2 type: Transform - - uid: 15073 + - uid: 15124 components: - pos: -20.5,-83.5 parent: 2 type: Transform - - uid: 15074 + - uid: 15125 components: - pos: 54.5,-44.5 parent: 2 type: Transform - - uid: 15075 + - uid: 15126 components: - pos: 54.5,-45.5 parent: 2 type: Transform - - uid: 15076 + - uid: 15127 components: - pos: 58.5,-44.5 parent: 2 type: Transform - - uid: 15077 + - uid: 15128 components: - pos: 58.5,-45.5 parent: 2 type: Transform - - uid: 15078 + - uid: 15129 components: - pos: -12.5,68.5 parent: 2 type: Transform - ShutdownSubscribers: - - 73 + - 74 type: DeviceNetwork - - uid: 15079 + - uid: 15130 components: - rot: 1.5707963267948966 rad pos: -18.5,55.5 parent: 2 type: Transform - - uid: 15080 + - uid: 15131 components: - pos: -19.5,43.5 parent: 2 type: Transform - - uid: 15081 + - uid: 15132 components: - pos: -19.5,42.5 parent: 2 type: Transform - - uid: 15082 + - uid: 15133 components: - pos: -19.5,41.5 parent: 2 type: Transform - - uid: 15083 + - uid: 15134 components: - pos: -17.5,30.5 parent: 2 type: Transform - - uid: 15084 + - uid: 15135 components: - pos: -17.5,29.5 parent: 2 type: Transform - - uid: 15085 + - uid: 15136 components: - pos: -11.5,43.5 parent: 2 type: Transform - - uid: 15086 + - uid: 15137 components: - pos: -10.5,43.5 parent: 2 type: Transform - - uid: 15087 + - uid: 15138 components: - pos: -9.5,43.5 parent: 2 type: Transform - - uid: 15088 + - uid: 15139 components: - pos: -20.5,49.5 parent: 2 type: Transform - - uid: 15089 + - uid: 15140 components: - pos: -21.5,49.5 parent: 2 type: Transform - - uid: 15090 + - uid: 15141 components: - pos: 8.5,-38.5 parent: 2 type: Transform - - uid: 15091 + - uid: 15142 components: - pos: -13.5,46.5 parent: 2 type: Transform - - uid: 15092 + - uid: 15143 components: - pos: -13.5,45.5 parent: 2 type: Transform - - uid: 15093 + - uid: 15144 components: - pos: -13.5,44.5 parent: 2 type: Transform - - uid: 15094 + - uid: 15145 components: - pos: 1.5,53.5 parent: 2 type: Transform - - uid: 15095 + - uid: 15146 components: - pos: 0.5,53.5 parent: 2 type: Transform - - uid: 15096 + - uid: 15147 components: - pos: -0.5,53.5 parent: 2 type: Transform - - uid: 15097 + - uid: 15148 components: - pos: -18.5,48.5 parent: 2 type: Transform - - uid: 15098 + - uid: 15149 components: - pos: -17.5,48.5 parent: 2 type: Transform - - uid: 15099 + - uid: 15150 components: - pos: -16.5,48.5 parent: 2 type: Transform - - uid: 15100 + - uid: 15151 components: - pos: -13.5,68.5 parent: 2 type: Transform - ShutdownSubscribers: - - 73 + - 74 type: DeviceNetwork - - uid: 15101 + - uid: 15152 components: - pos: -21.5,68.5 parent: 2 type: Transform - - uid: 15102 + - uid: 15153 components: - pos: -22.5,68.5 parent: 2 type: Transform - - uid: 15103 + - uid: 15154 components: - pos: -11.5,59.5 parent: 2 type: Transform - ShutdownSubscribers: - - 73 + - 74 type: DeviceNetwork - - uid: 15104 + - uid: 15155 components: - pos: -11.5,58.5 parent: 2 type: Transform - ShutdownSubscribers: - - 73 + - 74 type: DeviceNetwork - - uid: 15105 + - uid: 15156 components: - pos: -15.5,51.5 parent: 2 type: Transform - ShutdownSubscribers: - - 73 + - 74 type: DeviceNetwork - - uid: 15106 + - uid: 15157 components: - pos: -15.5,50.5 parent: 2 type: Transform - ShutdownSubscribers: - - 73 + - 74 type: DeviceNetwork - - uid: 15107 + - uid: 15158 components: - rot: 3.141592653589793 rad pos: -4.5,47.5 parent: 2 type: Transform - - uid: 15108 + - uid: 15159 components: - rot: 3.141592653589793 rad pos: -11.5,52.5 parent: 2 type: Transform - ShutdownSubscribers: - - 73 + - 74 type: DeviceNetwork - - uid: 15109 + - uid: 15160 components: - rot: 3.141592653589793 rad pos: -6.5,57.5 parent: 2 type: Transform - - uid: 15110 + - uid: 15161 components: - pos: -24.5,48.5 parent: 2 type: Transform - - uid: 15111 + - uid: 15162 components: - rot: 3.141592653589793 rad pos: 42.5,3.5 parent: 2 type: Transform - - uid: 15112 + - uid: 15163 components: - rot: 3.141592653589793 rad pos: 41.5,3.5 parent: 2 type: Transform - - uid: 15113 + - uid: 15164 components: - pos: -42.5,-86.5 parent: 2 type: Transform - - uid: 15114 + - uid: 15165 components: - pos: -41.5,-86.5 parent: 2 type: Transform - - uid: 15115 + - uid: 15166 components: - pos: -31.5,-97.5 parent: 2 type: Transform - - uid: 15116 + - uid: 15167 components: - pos: 61.5,-41.5 parent: 2 type: Transform - - uid: 15117 + - uid: 15168 components: - pos: 74.5,-39.5 parent: 2 type: Transform - - uid: 15118 + - uid: 15169 components: - pos: 75.5,-39.5 parent: 2 type: Transform - - uid: 15119 + - uid: 15170 components: - pos: 74.5,-42.5 parent: 2 type: Transform - - uid: 15120 + - uid: 15171 components: - pos: 75.5,-42.5 parent: 2 type: Transform - - uid: 15121 + - uid: 15172 components: - pos: -17.5,-22.5 parent: 2 type: Transform - - uid: 15122 + - uid: 15173 components: - pos: -17.5,-23.5 parent: 2 type: Transform - - uid: 15123 + - uid: 15174 components: - rot: 3.141592653589793 rad pos: 43.5,-33.5 parent: 2 type: Transform - - uid: 15124 + - uid: 15175 components: - pos: 4.5,-28.5 parent: 2 type: Transform - - uid: 15125 + - uid: 15176 components: - pos: -45.5,27.5 parent: 2 type: Transform - - uid: 15126 + - uid: 15177 components: - pos: 55.5,-29.5 parent: 2 type: Transform - - uid: 15127 + - uid: 15178 components: - pos: -41.5,26.5 parent: 2 type: Transform - - uid: 15128 + - uid: 15179 components: - rot: -1.5707963267948966 rad pos: 6.5,-72.5 parent: 2 type: Transform - - uid: 15129 + - uid: 15180 components: - pos: 23.5,-83.5 parent: 2 type: Transform - - uid: 15130 + - uid: 15181 components: - pos: 20.5,-83.5 parent: 2 type: Transform - - uid: 15131 + - uid: 15182 components: - rot: 3.141592653589793 rad pos: 29.5,-76.5 parent: 2 type: Transform - - uid: 15132 + - uid: 15183 components: - rot: 3.141592653589793 rad pos: 30.5,-76.5 parent: 2 type: Transform - - uid: 15133 + - uid: 15184 components: - rot: 3.141592653589793 rad pos: 31.5,-76.5 parent: 2 type: Transform - - uid: 15134 + - uid: 15185 components: - rot: 3.141592653589793 rad pos: 32.5,-71.5 parent: 2 type: Transform - - uid: 15135 + - uid: 15186 components: - rot: 3.141592653589793 rad pos: 32.5,-72.5 parent: 2 type: Transform - - uid: 15136 + - uid: 15187 components: - rot: 3.141592653589793 rad pos: 32.5,-73.5 parent: 2 type: Transform - - uid: 15137 + - uid: 15188 components: - rot: 3.141592653589793 rad pos: 46.5,-71.5 parent: 2 type: Transform - - uid: 15138 + - uid: 15189 components: - rot: 3.141592653589793 rad pos: 46.5,-72.5 parent: 2 type: Transform - - uid: 15139 + - uid: 15190 components: - rot: 3.141592653589793 rad pos: 46.5,-73.5 parent: 2 type: Transform - - uid: 15140 + - uid: 15191 components: - rot: 3.141592653589793 rad pos: 47.5,-76.5 parent: 2 type: Transform - - uid: 15141 + - uid: 15192 components: - rot: 3.141592653589793 rad pos: 48.5,-76.5 parent: 2 type: Transform - - uid: 15142 + - uid: 15193 components: - rot: 3.141592653589793 rad pos: 49.5,-76.5 parent: 2 type: Transform - - uid: 15143 + - uid: 15194 components: - rot: 3.141592653589793 rad pos: -14.5,66.5 parent: 2 type: Transform - ShutdownSubscribers: - - 73 + - 74 type: DeviceNetwork - - uid: 15144 + - uid: 15195 components: - rot: 3.141592653589793 rad pos: -20.5,66.5 parent: 2 type: Transform - - uid: 15145 + - uid: 15196 components: - pos: 45.5,3.5 parent: 2 type: Transform - - uid: 15146 + - uid: 15197 components: - pos: 8.5,-83.5 parent: 2 type: Transform - - uid: 15147 + - uid: 15198 components: - pos: -46.5,37.5 parent: 2 type: Transform - - uid: 15148 + - uid: 15199 components: - pos: -45.5,37.5 parent: 2 type: Transform - - uid: 15149 + - uid: 15200 components: - pos: -72.5,-36.5 parent: 2 type: Transform - - uid: 15150 + - uid: 15201 components: - pos: -73.5,-36.5 parent: 2 type: Transform - - uid: 15151 + - uid: 15202 components: - pos: 6.5,-7.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14648 - - 98 + - 14700 + - 99 type: DeviceNetwork - - uid: 15152 + - uid: 15203 components: - pos: -2.5,-5.5 parent: 2 type: Transform - ShutdownSubscribers: - - 99 - - 14649 + - 100 + - 14701 type: DeviceNetwork - - uid: 15153 + - uid: 15204 components: - pos: 0.5,-5.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14648 - - 98 + - 14700 - 99 - - 14649 + - 100 + - 14701 type: DeviceNetwork - - uid: 15154 + - uid: 15205 components: - rot: 1.5707963267948966 rad pos: 1.5,-8.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14648 - - 98 + - 14700 + - 99 type: DeviceNetwork - - uid: 15155 + - uid: 15206 components: - pos: 0.5,-18.5 parent: 2 type: Transform - ShutdownSubscribers: - - 100 - - 14650 + - 101 + - 14702 type: DeviceNetwork - - uid: 15156 + - uid: 15207 components: - pos: -1.5,-24.5 parent: 2 type: Transform - ShutdownSubscribers: - - 100 - - 14650 + - 101 + - 14702 type: DeviceNetwork - - uid: 15157 + - uid: 15208 components: - pos: 22.5,-33.5 parent: 2 type: Transform - ShutdownSubscribers: - - 78 - - 14651 + - 79 + - 14703 type: DeviceNetwork - - uid: 15158 + - uid: 15209 components: - pos: 28.5,-33.5 parent: 2 type: Transform - ShutdownSubscribers: - - 78 - - 14651 + - 79 + - 14703 type: DeviceNetwork - - uid: 15159 + - uid: 15210 components: - pos: 7.5,-11.5 parent: 2 type: Transform - - uid: 15160 + - uid: 15211 components: - pos: 25.5,-40.5 parent: 2 type: Transform - ShutdownSubscribers: - - 78 - - 14651 + - 79 + - 14703 type: DeviceNetwork - proto: Fireplace entities: - - uid: 15161 + - uid: 15212 components: - pos: 31.5,-27.5 parent: 2 type: Transform - - uid: 15162 + - uid: 15213 components: - pos: 12.5,14.5 parent: 2 type: Transform - - uid: 15163 + - uid: 15214 components: - pos: -0.5,-3.5 parent: 2 type: Transform - - uid: 15164 + - uid: 15215 components: - pos: 5.5,-9.5 parent: 2 type: Transform - proto: Flash entities: - - uid: 15165 + - uid: 15216 components: - pos: 2.3260884,20.921833 parent: 2 type: Transform - - uid: 15166 + - uid: 15217 components: - pos: 2.5760884,21.156208 parent: 2 type: Transform - - uid: 15167 + - uid: 15218 components: - pos: -15.513895,-23.550434 parent: 2 type: Transform - proto: FlashlightLantern entities: - - uid: 15168 + - uid: 15219 components: - pos: -57.60324,-35.44005 parent: 2 type: Transform - - uid: 15169 + - uid: 15220 components: - pos: 2.4386559,-17.536861 parent: 2 type: Transform - - uid: 15170 + - uid: 15221 components: - pos: 11.541302,-66.381775 parent: 2 type: Transform - - uid: 15171 + - uid: 15222 components: - pos: 10.459883,-56.492657 parent: 2 type: Transform - - uid: 15172 + - uid: 15223 components: - pos: 6.4653053,-69.51486 parent: 2 type: Transform - - uid: 15173 + - uid: 15224 components: - pos: -31.518282,-62.54614 parent: 2 type: Transform - - uid: 15174 + - uid: 15225 components: - pos: 2.6315942,23.576332 parent: 2 type: Transform - - uid: 15175 + - uid: 15226 components: - pos: 58.39165,-37.43153 parent: 2 type: Transform - proto: FlashlightSeclite entities: - - uid: 15176 + - uid: 15227 components: - pos: 17.395416,21.653858 parent: 2 type: Transform - - uid: 15177 + - uid: 15228 components: - rot: 3.141592653589793 rad pos: 7.161119,12.488324 @@ -95524,129 +95799,129 @@ entities: type: Transform - proto: Floodlight entities: - - uid: 15178 + - uid: 15229 components: - pos: 6.532791,48.672844 parent: 2 type: Transform - - uid: 15179 + - uid: 15230 components: - pos: 9.471183,54.298565 parent: 2 type: Transform - - uid: 15180 + - uid: 15231 components: - pos: -69.53465,-52.447685 parent: 2 type: Transform - proto: FloodlightBroken entities: - - uid: 15181 + - uid: 15232 components: - pos: 11.494867,-70.44923 parent: 2 type: Transform - proto: FloorDrain entities: - - uid: 15182 + - uid: 15233 components: - pos: 3.5,-48.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15183 + - uid: 15234 components: - pos: -1.5,-66.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15184 + - uid: 15235 components: - pos: 3.5,8.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15185 + - uid: 15236 components: - pos: -15.5,-78.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15186 + - uid: 15237 components: - pos: -1.5,-64.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15187 + - uid: 15238 components: - pos: -7.5,-65.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15188 + - uid: 15239 components: - pos: -9.5,-22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15189 + - uid: 15240 components: - pos: -15.5,-75.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15190 + - uid: 15241 components: - pos: -20.5,-89.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15191 + - uid: 15242 components: - pos: -25.5,-89.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15192 + - uid: 15243 components: - pos: 53.5,17.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15193 + - uid: 15244 components: - pos: 57.5,5.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15194 + - uid: 15245 components: - pos: 62.5,12.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15195 + - uid: 15246 components: - pos: 62.5,22.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15196 + - uid: 15247 components: - rot: 3.141592653589793 rad pos: 71.5,-49.5 @@ -95654,28 +95929,28 @@ entities: type: Transform - fixtures: {} type: Fixtures - - uid: 15197 + - uid: 15248 components: - pos: -9.5,-69.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15198 + - uid: 15249 components: - pos: 3.5,-46.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15199 + - uid: 15250 components: - pos: 1.5,12.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 15200 + - uid: 15251 components: - rot: 3.141592653589793 rad pos: 45.5,6.5 @@ -95683,7 +95958,7 @@ entities: type: Transform - fixtures: {} type: Fixtures - - uid: 15201 + - uid: 15252 components: - pos: -15.5,-34.5 parent: 2 @@ -95692,7 +95967,7 @@ entities: type: Fixtures - proto: FloorTileItemBar entities: - - uid: 15202 + - uid: 15253 components: - pos: 37.575134,45.699768 parent: 2 @@ -95701,7 +95976,7 @@ entities: type: Stack - proto: FloorTileItemFreezer entities: - - uid: 15203 + - uid: 15254 components: - pos: -9.469288,-100.35687 parent: 2 @@ -95710,7 +95985,7 @@ entities: type: Stack - proto: FloorTileItemLaundry entities: - - uid: 15204 + - uid: 15255 components: - pos: -9.484913,-95.4242 parent: 2 @@ -95719,7 +95994,7 @@ entities: type: Stack - proto: FloorTileItemWhite entities: - - uid: 15205 + - uid: 15256 components: - pos: -10.013714,-95.45264 parent: 2 @@ -95728,219 +96003,219 @@ entities: type: Stack - proto: FloraRockSolid01 entities: - - uid: 15206 + - uid: 15257 components: - pos: -35.842815,62.48777 parent: 2 type: Transform - - uid: 15207 + - uid: 15258 components: - pos: 64.48079,45.764553 parent: 2 type: Transform - proto: FloraRockSolid03 entities: - - uid: 15208 + - uid: 15259 components: - pos: 63.527668,48.936428 parent: 2 type: Transform - - uid: 15209 + - uid: 15260 components: - pos: 13.129076,49.02767 parent: 2 type: Transform - - uid: 15210 + - uid: 15261 components: - pos: 16.257528,57.816456 parent: 2 type: Transform - - uid: 15211 + - uid: 15262 components: - pos: 78.52854,-58.425747 parent: 2 type: Transform - proto: FloraTree01 entities: - - uid: 15212 + - uid: 15263 components: - pos: -40.510788,5.4778786 parent: 2 type: Transform - - uid: 15213 + - uid: 15264 components: - pos: 45.883274,-86.48348 parent: 2 type: Transform - proto: FloraTree02 entities: - - uid: 15214 + - uid: 15265 components: - pos: -3.160706,55.605114 parent: 2 type: Transform - - uid: 15215 + - uid: 15266 components: - pos: 33.292767,-85.71786 parent: 2 type: Transform - proto: FloraTree03 entities: - - uid: 15216 + - uid: 15267 components: - pos: 33.02714,-87.53036 parent: 2 type: Transform - proto: FloraTree04 entities: - - uid: 15217 + - uid: 15268 components: - pos: 31.9344,-39.9966 parent: 2 type: Transform - - uid: 15218 + - uid: 15269 components: - pos: 60.920433,-8.196068 parent: 2 type: Transform - - uid: 15219 + - uid: 15270 components: - pos: -9.341627,55.436527 parent: 2 type: Transform - - uid: 15220 + - uid: 15271 components: - pos: -35.771816,4.543429 parent: 2 type: Transform - proto: FloraTree05 entities: - - uid: 15221 + - uid: 15272 components: - pos: 54.09217,-7.7980886 parent: 2 type: Transform - - uid: 15222 + - uid: 15273 components: - pos: -8.496121,50.8569 parent: 2 type: Transform - proto: FloraTree06 entities: - - uid: 15223 + - uid: 15274 components: - pos: -35.026413,5.9935036 parent: 2 type: Transform - proto: FloraTreeLarge03 entities: - - uid: 15224 + - uid: 15275 components: - pos: 15.442133,-83.60979 parent: 2 type: Transform - proto: FoamBlade entities: - - uid: 15225 + - uid: 15276 components: - pos: -14.780027,-76.18346 parent: 2 type: Transform - proto: FoamCrossbow entities: - - uid: 15226 + - uid: 15277 components: - pos: -11.410641,41.56952 parent: 2 type: Transform - proto: FoodBakedCookieRaisin entities: - - uid: 15227 + - uid: 15278 components: - pos: -2.526709,-33.523388 parent: 2 type: Transform - proto: FoodBowlBig entities: - - uid: 15228 + - uid: 15279 components: - pos: -22.492924,44.20428 parent: 2 type: Transform - - uid: 15229 + - uid: 15280 components: - pos: -22.508549,43.813656 parent: 2 type: Transform - proto: FoodBoxDonkpocketDink entities: - - uid: 15230 + - uid: 15281 components: - pos: 46.42201,-49.40806 parent: 2 type: Transform - proto: FoodBoxDonkpocketHonk entities: - - uid: 15231 + - uid: 15282 components: - pos: 32.37506,-20.42581 parent: 2 type: Transform - proto: FoodBoxDonkpocketPizza entities: - - uid: 15232 + - uid: 15283 components: - pos: -30.632925,-69.35548 parent: 2 type: Transform - - uid: 15233 + - uid: 15284 components: - pos: 46.42201,-49.329933 parent: 2 type: Transform - proto: FoodBoxDonkpocketSpicy entities: - - uid: 15234 + - uid: 15285 components: - pos: -39.41441,-32.343586 parent: 2 type: Transform - proto: FoodBoxDonut entities: - - uid: 15235 + - uid: 15286 components: - pos: 52.62345,11.736868 parent: 2 type: Transform - - uid: 15236 + - uid: 15287 components: - pos: 25.290524,19.578499 parent: 2 type: Transform - proto: FoodBreadBanana entities: - - uid: 15237 + - uid: 15288 components: - pos: -36.588596,16.602194 parent: 2 type: Transform - proto: FoodBurgerBrain entities: - - uid: 15238 + - uid: 15289 components: - pos: -12.411479,-50.405228 parent: 2 type: Transform - proto: FoodCakeSpacemanSlice entities: - - uid: 15239 + - uid: 15290 components: - pos: -34.24552,17.570845 parent: 2 type: Transform - proto: FoodCartHot entities: - - uid: 12802 + - uid: 15291 components: - rot: -1.5707963267948966 rad pos: -0.5,9.5 @@ -95948,19 +96223,19 @@ entities: type: Transform - proto: FoodCondimentBottleEnzyme entities: - - uid: 15240 + - uid: 15292 components: - pos: 3.5430002,6.7808695 parent: 2 type: Transform - - uid: 15241 + - uid: 15293 components: - pos: 3.2617502,6.8589945 parent: 2 type: Transform - proto: FoodCornTrash entities: - - uid: 15242 + - uid: 15294 components: - rot: -1.5707963267948966 rad pos: 48.732845,33.42303 @@ -95968,28 +96243,28 @@ entities: type: Transform - proto: FoodDonkpocketBerry entities: - - uid: 15243 + - uid: 15295 components: - pos: -9.518124,43.595463 parent: 2 type: Transform - proto: FoodDonkpocketDink entities: - - uid: 15244 + - uid: 15296 components: - pos: -10.231451,43.574326 parent: 2 type: Transform - proto: FoodDonutChocolate entities: - - uid: 15245 + - uid: 15297 components: - pos: 8.49275,13.726382 parent: 2 type: Transform - proto: FoodFrozenPopsicleTrash entities: - - uid: 15246 + - uid: 15298 components: - rot: -1.5707963267948966 rad pos: 50.420345,33.45428 @@ -95997,163 +96272,163 @@ entities: type: Transform - proto: FoodLemon entities: - - uid: 15247 + - uid: 15299 components: - pos: 55.628414,-67.334946 parent: 2 type: Transform - proto: FoodMealEggplantParm entities: - - uid: 15248 + - uid: 15300 components: - pos: -23.359459,-71.33451 parent: 2 type: Transform - proto: FoodMealFriesCarrot entities: - - uid: 15249 + - uid: 15301 components: - pos: -21.429913,47.709663 parent: 2 type: Transform - proto: FoodMealPotatoYaki entities: - - uid: 15250 + - uid: 15302 components: - pos: 44.419395,-49.295273 parent: 2 type: Transform - proto: FoodMeat entities: - - uid: 15251 + - uid: 15303 components: - pos: -16.53665,-77.55797 parent: 2 type: Transform - - uid: 15252 + - uid: 15304 components: - pos: 64.3404,48.319218 parent: 2 type: Transform - proto: FoodMeatHawaiianKebab entities: - - uid: 15253 + - uid: 15305 components: - pos: -12.469789,31.726183 parent: 2 type: Transform - proto: FoodPieBananaCream entities: - - uid: 15254 + - uid: 15306 components: - pos: 1.5036734,4.5642977 parent: 2 type: Transform - - uid: 15255 + - uid: 15307 components: - pos: -21.504532,37.662663 parent: 2 type: Transform - - uid: 15256 + - uid: 15308 components: - pos: 5.023752,11.565053 parent: 2 type: Transform - - uid: 15257 + - uid: 15309 components: - pos: -0.36896515,-23.435265 parent: 2 type: Transform - proto: FoodPizzaMoldySlice entities: - - uid: 15258 + - uid: 15310 components: - pos: -58.327778,-27.35657 parent: 2 type: Transform - proto: FoodPizzaPineapple entities: - - uid: 15259 + - uid: 15311 components: - pos: -25.559431,-79.20157 parent: 2 type: Transform - proto: FoodPizzaVegetableSlice entities: - - uid: 15260 + - uid: 15312 components: - pos: 34.483707,-35.33738 parent: 2 type: Transform - proto: FoodPlatePlastic entities: - - uid: 15261 + - uid: 15313 components: - pos: 58.37584,20.738062 parent: 2 type: Transform - - uid: 15262 + - uid: 15314 components: - pos: 57.68834,19.831812 parent: 2 type: Transform - proto: FoodPlateSmallTrash entities: - - uid: 15263 + - uid: 15315 components: - pos: 12.393527,-66.326096 parent: 2 type: Transform - proto: FoodPlateTrash entities: - - uid: 15264 + - uid: 15316 components: - pos: 49.46722,33.501156 parent: 2 type: Transform - proto: FoodRiceBoiled entities: - - uid: 15265 + - uid: 15317 components: - pos: -19.538637,41.826466 parent: 2 type: Transform - proto: FoodRiceEgg entities: - - uid: 15266 + - uid: 15318 components: - pos: -19.538637,43.451466 parent: 2 type: Transform - proto: FoodRicePork entities: - - uid: 15267 + - uid: 15319 components: - pos: -14.4963455,47.699337 parent: 2 type: Transform - - uid: 15268 + - uid: 15320 components: - pos: -19.554262,42.701466 parent: 2 type: Transform - proto: FoodRicePudding entities: - - uid: 15269 + - uid: 15321 components: - pos: -18.492641,33.633274 parent: 2 type: Transform - proto: FoodSaladValid entities: - - uid: 15270 + - uid: 15322 components: - pos: -7.4460807,4.484113 parent: 2 type: Transform - proto: FoodSnackBoritos entities: - - uid: 15271 + - uid: 15323 components: - rot: -1.5707963267948966 rad pos: -11.473979,-49.827103 @@ -96161,14 +96436,14 @@ entities: type: Transform - proto: FoodSnackDanDanNoodles entities: - - uid: 15272 + - uid: 15324 components: - pos: -17.010939,42.53945 parent: 2 type: Transform - proto: FoodSnackRaisins entities: - - uid: 15273 + - uid: 15325 components: - rot: -1.5707963267948966 rad pos: -54.526974,-39.17369 @@ -96176,56 +96451,56 @@ entities: type: Transform - proto: FoodSnackSus entities: - - uid: 15274 + - uid: 15326 components: - pos: -12.469789,32.52306 parent: 2 type: Transform - proto: FoodSoupClown entities: - - uid: 15275 + - uid: 15327 components: - pos: 48.47484,-21.900894 parent: 2 type: Transform - proto: FoodSoupVegetable entities: - - uid: 15276 + - uid: 15328 components: - pos: -16.443905,21.40528 parent: 2 type: Transform - proto: FoodTartGapple entities: - - uid: 15277 + - uid: 15329 components: - pos: 44.89154,-26.413532 parent: 2 type: Transform - proto: FoodTartMime entities: - - uid: 15278 + - uid: 15330 components: - pos: -28.494537,45.97597 parent: 2 type: Transform - proto: FoodTinPeachesMaint entities: - - uid: 15279 + - uid: 15331 components: - pos: -27.385347,-52.20374 parent: 2 type: Transform - proto: FoodTinPeachesMaintOpen entities: - - uid: 15280 + - uid: 15332 components: - pos: 50.52597,42.757114 parent: 2 type: Transform - proto: FoodTinPeachesTrash entities: - - uid: 15281 + - uid: 15333 components: - rot: -1.5707963267948966 rad pos: 50.40472,33.469906 @@ -96233,7 +96508,7 @@ entities: type: Transform - proto: ForensicScanner entities: - - uid: 15282 + - uid: 15334 components: - rot: -1.5707963267948966 rad pos: 22.266937,-14.419123 @@ -96241,7 +96516,7 @@ entities: type: Transform - proto: GarlicSeeds entities: - - uid: 15283 + - uid: 15335 components: - rot: 3.141592653589793 rad pos: -9.594382,12.492181 @@ -96249,126 +96524,126 @@ entities: type: Transform - proto: GasAnalyzer entities: - - uid: 15284 + - uid: 15336 components: - pos: -22.469156,-58.33799 parent: 2 type: Transform - - uid: 15285 + - uid: 15337 components: - pos: 53.6123,-53.30506 parent: 2 type: Transform - - uid: 15286 + - uid: 15338 components: - pos: -35.42214,-48.770245 parent: 2 type: Transform - - uid: 15287 + - uid: 15339 components: - pos: 4.481148,-75.45175 parent: 2 type: Transform - - uid: 15288 + - uid: 15340 components: - pos: -55.480183,-48.446095 parent: 2 type: Transform - - uid: 15289 + - uid: 15341 components: - pos: -73.40059,-39.44707 parent: 2 type: Transform - proto: GasCanisterBrokenBase entities: - - uid: 15290 + - uid: 15342 components: - pos: -28.5,-21.5 parent: 2 type: Transform - proto: GasFilterFlipped entities: - - uid: 15291 + - uid: 15343 components: - rot: 3.141592653589793 rad pos: 45.5,-59.5 parent: 2 type: Transform - - uid: 15292 + - uid: 15344 components: - pos: -44.5,-46.5 parent: 2 type: Transform - - uid: 15293 + - uid: 15345 components: - pos: -44.5,-44.5 parent: 2 type: Transform - - uid: 15294 + - uid: 15346 components: - pos: -44.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15295 + - uid: 15347 components: - pos: -44.5,-48.5 parent: 2 type: Transform - - uid: 15296 + - uid: 15348 components: - pos: -44.5,-50.5 parent: 2 type: Transform - - uid: 15297 + - uid: 15349 components: - pos: -44.5,-52.5 parent: 2 type: Transform - - uid: 15298 + - uid: 15350 components: - pos: -44.5,-54.5 parent: 2 type: Transform - proto: GasMinerCarbonDioxide entities: - - uid: 15299 + - uid: 15351 components: - pos: -49.5,-50.5 parent: 2 type: Transform - proto: GasMinerNitrogenStationLarge entities: - - uid: 15300 + - uid: 15352 components: - pos: -49.5,-54.5 parent: 2 type: Transform - proto: GasMinerOxygenStationLarge entities: - - uid: 15301 + - uid: 15353 components: - pos: -49.5,-52.5 parent: 2 type: Transform - proto: GasMinerPlasma entities: - - uid: 15302 + - uid: 15354 components: - pos: -49.5,-46.5 parent: 2 type: Transform - proto: GasMinerWaterVapor entities: - - uid: 15303 + - uid: 15355 components: - pos: -49.5,-48.5 parent: 2 type: Transform - proto: GasMixer entities: - - uid: 15304 + - uid: 15356 components: - rot: 1.5707963267948966 rad pos: 55.5,-59.5 @@ -96376,7 +96651,7 @@ entities: type: Transform - proto: GasMixerFlipped entities: - - uid: 15305 + - uid: 15357 components: - pos: -42.5,-51.5 parent: 2 @@ -96384,7 +96659,7 @@ entities: - inletTwoConcentration: 0 inletOneConcentration: 1 type: GasMixer - - uid: 15306 + - uid: 15358 components: - pos: -42.5,-52.5 parent: 2 @@ -96392,7 +96667,7 @@ entities: - inletTwoConcentration: 1 inletOneConcentration: 0 type: GasMixer - - uid: 15307 + - uid: 15359 components: - rot: -1.5707963267948966 rad pos: -42.5,-55.5 @@ -96403,7 +96678,7 @@ entities: type: GasMixer - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 15308 + - uid: 15360 components: - pos: -42.5,-49.5 parent: 2 @@ -96411,7 +96686,7 @@ entities: - inletTwoConcentration: 0 inletOneConcentration: 1 type: GasMixer - - uid: 15309 + - uid: 15361 components: - pos: -42.5,-47.5 parent: 2 @@ -96419,7 +96694,7 @@ entities: - inletTwoConcentration: 0 inletOneConcentration: 1 type: GasMixer - - uid: 15310 + - uid: 15362 components: - pos: -42.5,-45.5 parent: 2 @@ -96427,7 +96702,7 @@ entities: - inletTwoConcentration: 0 inletOneConcentration: 1 type: GasMixer - - uid: 15311 + - uid: 15363 components: - pos: -42.5,-43.5 parent: 2 @@ -96437,97 +96712,97 @@ entities: type: GasMixer - proto: GasOutletInjector entities: - - uid: 15312 + - uid: 15364 components: - rot: 1.5707963267948966 rad pos: -48.5,-54.5 parent: 2 type: Transform - - uid: 15313 + - uid: 15365 components: - rot: 1.5707963267948966 rad pos: -48.5,-52.5 parent: 2 type: Transform - - uid: 15314 + - uid: 15366 components: - rot: 1.5707963267948966 rad pos: -48.5,-50.5 parent: 2 type: Transform - - uid: 15315 + - uid: 15367 components: - rot: 1.5707963267948966 rad pos: -48.5,-48.5 parent: 2 type: Transform - - uid: 15316 + - uid: 15368 components: - rot: 1.5707963267948966 rad pos: -48.5,-46.5 parent: 2 type: Transform - - uid: 15317 + - uid: 15369 components: - rot: 1.5707963267948966 rad pos: -48.5,-44.5 parent: 2 type: Transform - - uid: 15318 + - uid: 15370 components: - rot: 1.5707963267948966 rad pos: -48.5,-42.5 parent: 2 type: Transform - - uid: 15319 + - uid: 15371 components: - pos: -42.5,-35.5 parent: 2 type: Transform - proto: GasPassiveVent entities: - - uid: 12132 + - uid: 15372 components: - rot: 1.5707963267948966 rad pos: 1.5,13.5 parent: 2 type: Transform - - uid: 15320 + - uid: 15373 components: - pos: -44.5,-36.5 parent: 2 type: Transform - - uid: 15321 + - uid: 15374 components: - rot: -1.5707963267948966 rad pos: -63.5,-43.5 parent: 2 type: Transform - - uid: 15322 + - uid: 15375 components: - pos: -50.5,-52.5 parent: 2 type: Transform - - uid: 15323 + - uid: 15376 components: - pos: 73.5,-26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15324 + - uid: 15377 components: - rot: 3.141592653589793 rad pos: 51.5,-60.5 parent: 2 type: Transform - - uid: 15325 + - uid: 15378 components: - rot: 3.141592653589793 rad pos: 48.5,-60.5 parent: 2 type: Transform - - uid: 15326 + - uid: 15379 components: - rot: 3.141592653589793 rad pos: 49.5,-63.5 @@ -96535,56 +96810,56 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15327 + - uid: 15380 components: - pos: -50.5,-54.5 parent: 2 type: Transform - - uid: 15328 + - uid: 15381 components: - pos: -50.5,-50.5 parent: 2 type: Transform - - uid: 15329 + - uid: 15382 components: - pos: -50.5,-48.5 parent: 2 type: Transform - - uid: 15330 + - uid: 15383 components: - pos: -50.5,-46.5 parent: 2 type: Transform - - uid: 15331 + - uid: 15384 components: - pos: -50.5,-44.5 parent: 2 type: Transform - - uid: 15332 + - uid: 15385 components: - pos: -50.5,-42.5 parent: 2 type: Transform - - uid: 15333 + - uid: 15386 components: - rot: 3.141592653589793 rad pos: -38.5,-60.5 parent: 2 type: Transform - - uid: 15334 + - uid: 15387 components: - pos: 1.5,26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15335 + - uid: 15388 components: - rot: 3.141592653589793 rad pos: 70.5,32.5 parent: 2 type: Transform - - uid: 15336 + - uid: 15389 components: - rot: 3.141592653589793 rad pos: 3.5,64.5 @@ -96592,7 +96867,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15337 + - uid: 15390 components: - rot: 3.141592653589793 rad pos: 2.5,63.5 @@ -96600,7 +96875,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15338 + - uid: 15391 components: - rot: 3.141592653589793 rad pos: -5.5,63.5 @@ -96608,7 +96883,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15339 + - uid: 15392 components: - rot: 3.141592653589793 rad pos: -6.5,64.5 @@ -96616,7 +96891,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15340 + - uid: 15393 components: - rot: 1.5707963267948966 rad pos: -0.5,69.5 @@ -96624,7 +96899,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15341 + - uid: 15394 components: - rot: -1.5707963267948966 rad pos: -2.5,69.5 @@ -96632,7 +96907,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15342 + - uid: 15395 components: - rot: 3.141592653589793 rad pos: 66.5,-40.5 @@ -96640,27 +96915,27 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15343 + - uid: 15396 components: - pos: 72.5,-29.5 parent: 2 type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 15344 + - uid: 15397 components: - rot: 3.141592653589793 rad pos: -55.5,-63.5 parent: 2 type: Transform - - uid: 15345 + - uid: 15398 components: - pos: 71.5,-29.5 parent: 2 type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 15346 + - uid: 15399 components: - rot: 1.5707963267948966 rad pos: 68.5,-38.5 @@ -96668,13 +96943,13 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 15347 + - uid: 15400 components: - rot: 3.141592653589793 rad pos: 55.5,-51.5 parent: 2 type: Transform - - uid: 15348 + - uid: 15401 components: - rot: 1.5707963267948966 rad pos: 68.5,-37.5 @@ -96682,13 +96957,13 @@ entities: type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 15349 + - uid: 15402 components: - rot: -1.5707963267948966 rad pos: -44.5,-35.5 parent: 2 type: Transform - - uid: 15350 + - uid: 15403 components: - rot: 1.5707963267948966 rad pos: -76.5,-40.5 @@ -96696,7 +96971,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15351 + - uid: 15404 components: - rot: 1.5707963267948966 rad pos: -76.5,-42.5 @@ -96704,9 +96979,17 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor + - uid: 15405 + components: + - rot: 3.141592653589793 rad + pos: 40.5,58.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor - proto: GasPipeBend entities: - - uid: 15352 + - uid: 15406 components: - rot: -1.5707963267948966 rad pos: 2.5,-6.5 @@ -96714,12 +96997,12 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15353 + - uid: 15407 components: - pos: -70.5,-37.5 parent: 2 type: Transform - - uid: 15354 + - uid: 15408 components: - rot: 1.5707963267948966 rad pos: -73.5,-23.5 @@ -96727,7 +97010,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15355 + - uid: 15409 components: - rot: -1.5707963267948966 rad pos: -71.5,-32.5 @@ -96735,7 +97018,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15356 + - uid: 15410 components: - rot: 1.5707963267948966 rad pos: -72.5,-32.5 @@ -96743,7 +97026,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15357 + - uid: 15411 components: - rot: -1.5707963267948966 rad pos: -62.5,-42.5 @@ -96751,7 +97034,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15358 + - uid: 15412 components: - rot: -1.5707963267948966 rad pos: -70.5,-46.5 @@ -96759,7 +97042,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15359 + - uid: 15413 components: - rot: 3.141592653589793 rad pos: -68.5,-46.5 @@ -96767,14 +97050,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15360 + - uid: 15414 components: - pos: -3.5,16.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15361 + - uid: 15415 components: - rot: -1.5707963267948966 rad pos: 35.5,3.5 @@ -96782,7 +97065,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15362 + - uid: 15416 components: - rot: 3.141592653589793 rad pos: 20.5,-42.5 @@ -96790,7 +97073,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15363 + - uid: 15417 components: - rot: 1.5707963267948966 rad pos: -3.5,-53.5 @@ -96798,7 +97081,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15364 + - uid: 15418 components: - rot: 1.5707963267948966 rad pos: -1.5,-46.5 @@ -96806,21 +97089,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15365 + - uid: 15419 components: - pos: -7.5,-46.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15366 + - uid: 15420 components: - pos: -6.5,-63.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15367 + - uid: 15421 components: - rot: -1.5707963267948966 rad pos: 22.5,-5.5 @@ -96828,7 +97111,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15368 + - uid: 15422 components: - rot: 3.141592653589793 rad pos: 7.5,13.5 @@ -96836,21 +97119,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15369 + - uid: 15423 components: - pos: 36.5,5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15370 + - uid: 15424 components: - pos: 29.5,21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15371 + - uid: 15425 components: - rot: 3.141592653589793 rad pos: 29.5,18.5 @@ -96858,7 +97141,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15372 + - uid: 15426 components: - rot: 3.141592653589793 rad pos: -12.5,5.5 @@ -96866,7 +97149,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15373 + - uid: 15427 components: - rot: 1.5707963267948966 rad pos: -9.5,-1.5 @@ -96874,14 +97157,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15374 + - uid: 15428 components: - pos: -4.5,-60.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15375 + - uid: 15429 components: - rot: 1.5707963267948966 rad pos: -6.5,-60.5 @@ -96889,7 +97172,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15376 + - uid: 15430 components: - rot: -1.5707963267948966 rad pos: -6.5,-61.5 @@ -96897,7 +97180,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15377 + - uid: 15431 components: - rot: 1.5707963267948966 rad pos: 26.5,-22.5 @@ -96905,7 +97188,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15378 + - uid: 15432 components: - rot: 3.141592653589793 rad pos: 36.5,11.5 @@ -96913,7 +97196,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15379 + - uid: 15433 components: - rot: 1.5707963267948966 rad pos: 28.5,10.5 @@ -96921,14 +97204,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15380 + - uid: 15434 components: - pos: -12.5,7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15381 + - uid: 15435 components: - rot: 3.141592653589793 rad pos: 5.5,12.5 @@ -96936,14 +97219,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15382 + - uid: 15436 components: - pos: 34.5,5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15383 + - uid: 15437 components: - rot: 3.141592653589793 rad pos: 11.5,-43.5 @@ -96951,7 +97234,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15384 + - uid: 15438 components: - rot: 1.5707963267948966 rad pos: -14.5,-41.5 @@ -96959,7 +97242,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15385 + - uid: 15439 components: - rot: 1.5707963267948966 rad pos: -9.5,-53.5 @@ -96967,7 +97250,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15386 + - uid: 15440 components: - rot: 3.141592653589793 rad pos: -7.5,-63.5 @@ -96975,14 +97258,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15387 + - uid: 15441 components: - pos: 35.5,9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15388 + - uid: 15442 components: - rot: 3.141592653589793 rad pos: 17.5,-5.5 @@ -96990,7 +97273,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15389 + - uid: 15443 components: - rot: 1.5707963267948966 rad pos: 31.5,10.5 @@ -96998,7 +97281,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15390 + - uid: 15444 components: - rot: 3.141592653589793 rad pos: 29.5,15.5 @@ -97006,14 +97289,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15391 + - uid: 15445 components: - pos: 29.5,17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15392 + - uid: 15446 components: - rot: 1.5707963267948966 rad pos: 25.5,12.5 @@ -97021,21 +97304,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15393 + - uid: 15447 components: - pos: 14.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15394 + - uid: 15448 components: - pos: 11.5,12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15395 + - uid: 15449 components: - rot: -1.5707963267948966 rad pos: 23.5,16.5 @@ -97043,7 +97326,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15396 + - uid: 15450 components: - rot: 3.141592653589793 rad pos: 26.5,9.5 @@ -97051,7 +97334,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15397 + - uid: 15451 components: - rot: 3.141592653589793 rad pos: 21.5,7.5 @@ -97059,7 +97342,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15398 + - uid: 15452 components: - rot: -1.5707963267948966 rad pos: 20.5,7.5 @@ -97067,7 +97350,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15399 + - uid: 15453 components: - rot: 1.5707963267948966 rad pos: 18.5,7.5 @@ -97075,14 +97358,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15400 + - uid: 15454 components: - pos: 1.5,1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15401 + - uid: 15455 components: - rot: -1.5707963267948966 rad pos: 10.5,2.5 @@ -97090,7 +97373,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15402 + - uid: 15456 components: - rot: 1.5707963267948966 rad pos: 9.5,2.5 @@ -97098,7 +97381,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15403 + - uid: 15457 components: - rot: 3.141592653589793 rad pos: 9.5,-1.5 @@ -97106,14 +97389,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15404 + - uid: 15458 components: - pos: 11.5,-1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15405 + - uid: 15459 components: - rot: -1.5707963267948966 rad pos: 11.5,-9.5 @@ -97121,7 +97404,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15406 + - uid: 15460 components: - rot: 1.5707963267948966 rad pos: 19.5,21.5 @@ -97129,7 +97412,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15407 + - uid: 15461 components: - rot: 1.5707963267948966 rad pos: 23.5,20.5 @@ -97137,7 +97420,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15408 + - uid: 15462 components: - rot: -1.5707963267948966 rad pos: 25.5,20.5 @@ -97145,7 +97428,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15409 + - uid: 15463 components: - rot: -1.5707963267948966 rad pos: -23.5,-16.5 @@ -97153,7 +97436,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15410 + - uid: 15464 components: - rot: 1.5707963267948966 rad pos: 26.5,-6.5 @@ -97161,7 +97444,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15411 + - uid: 15465 components: - rot: 3.141592653589793 rad pos: 25.5,-7.5 @@ -97169,7 +97452,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15412 + - uid: 15466 components: - rot: 3.141592653589793 rad pos: 20.5,-23.5 @@ -97177,7 +97460,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15413 + - uid: 15467 components: - rot: 3.141592653589793 rad pos: 24.5,-52.5 @@ -97185,7 +97468,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15414 + - uid: 15468 components: - rot: -1.5707963267948966 rad pos: -10.5,5.5 @@ -97193,7 +97476,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15415 + - uid: 15469 components: - rot: 1.5707963267948966 rad pos: -10.5,7.5 @@ -97201,7 +97484,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15416 + - uid: 15470 components: - rot: 3.141592653589793 rad pos: -9.5,-5.5 @@ -97209,7 +97492,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15417 + - uid: 15471 components: - rot: 3.141592653589793 rad pos: -10.5,-6.5 @@ -97217,7 +97500,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15418 + - uid: 15472 components: - rot: 3.141592653589793 rad pos: -4.5,-61.5 @@ -97225,14 +97508,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15419 + - uid: 15473 components: - pos: 11.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15420 + - uid: 15474 components: - rot: 1.5707963267948966 rad pos: -21.5,-84.5 @@ -97240,14 +97523,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15421 + - uid: 15475 components: - pos: 36.5,8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15422 + - uid: 15476 components: - rot: -1.5707963267948966 rad pos: -3.5,7.5 @@ -97255,7 +97538,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15423 + - uid: 15477 components: - rot: 3.141592653589793 rad pos: -3.5,-60.5 @@ -97263,7 +97546,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15424 + - uid: 15478 components: - rot: 1.5707963267948966 rad pos: -7.5,-59.5 @@ -97271,14 +97554,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15425 + - uid: 15479 components: - pos: 1.5,7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15426 + - uid: 15480 components: - rot: 1.5707963267948966 rad pos: 34.5,10.5 @@ -97286,7 +97569,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15427 + - uid: 15481 components: - rot: 3.141592653589793 rad pos: 4.5,16.5 @@ -97294,14 +97577,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15428 + - uid: 15482 components: - pos: -4.5,14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15429 + - uid: 15483 components: - rot: -1.5707963267948966 rad pos: -6.5,8.5 @@ -97309,7 +97592,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15430 + - uid: 15484 components: - rot: 3.141592653589793 rad pos: -16.5,-38.5 @@ -97317,7 +97600,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15431 + - uid: 15485 components: - rot: 3.141592653589793 rad pos: 1.5,5.5 @@ -97325,14 +97608,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15432 + - uid: 15486 components: - pos: 8.5,13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15433 + - uid: 15487 components: - rot: -1.5707963267948966 rad pos: 19.5,17.5 @@ -97340,7 +97623,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15434 + - uid: 15488 components: - rot: 3.141592653589793 rad pos: 41.5,-27.5 @@ -97348,7 +97631,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15435 + - uid: 15489 components: - rot: -1.5707963267948966 rad pos: -16.5,30.5 @@ -97356,14 +97639,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15436 + - uid: 15490 components: - pos: 36.5,12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15437 + - uid: 15491 components: - rot: 3.141592653589793 rad pos: 0.5,7.5 @@ -97371,21 +97654,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15438 + - uid: 15492 components: - pos: 2.5,5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15439 + - uid: 15493 components: - pos: 4.5,0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15440 + - uid: 15494 components: - rot: 3.141592653589793 rad pos: 4.5,-0.5 @@ -97393,7 +97676,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15441 + - uid: 15495 components: - rot: -1.5707963267948966 rad pos: -7.5,-53.5 @@ -97401,7 +97684,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15442 + - uid: 15496 components: - rot: 1.5707963267948966 rad pos: -8.5,8.5 @@ -97409,7 +97692,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15443 + - uid: 15497 components: - rot: 3.141592653589793 rad pos: 26.5,-18.5 @@ -97417,7 +97700,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15444 + - uid: 15498 components: - rot: 3.141592653589793 rad pos: 21.5,-18.5 @@ -97425,7 +97708,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15445 + - uid: 15499 components: - rot: 1.5707963267948966 rad pos: 10.5,11.5 @@ -97433,14 +97716,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15446 + - uid: 15500 components: - pos: 24.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15447 + - uid: 15501 components: - rot: -1.5707963267948966 rad pos: -15.5,29.5 @@ -97448,7 +97731,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15448 + - uid: 15502 components: - rot: 1.5707963267948966 rad pos: -24.5,-85.5 @@ -97456,7 +97739,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15449 + - uid: 15503 components: - rot: -1.5707963267948966 rad pos: 34.5,-6.5 @@ -97464,7 +97747,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15450 + - uid: 15504 components: - rot: 1.5707963267948966 rad pos: 15.5,-17.5 @@ -97472,7 +97755,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15451 + - uid: 15505 components: - rot: -1.5707963267948966 rad pos: -1.5,-53.5 @@ -97480,7 +97763,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15452 + - uid: 15506 components: - rot: 1.5707963267948966 rad pos: -23.5,-73.5 @@ -97488,7 +97771,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15453 + - uid: 15507 components: - rot: -1.5707963267948966 rad pos: 30.5,-22.5 @@ -97496,21 +97779,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15454 + - uid: 15508 components: - pos: 36.5,-16.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15455 + - uid: 15509 components: - pos: 34.5,-18.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15456 + - uid: 15510 components: - rot: 1.5707963267948966 rad pos: 41.5,-24.5 @@ -97518,7 +97801,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15457 + - uid: 15511 components: - rot: -1.5707963267948966 rad pos: 47.5,-28.5 @@ -97526,14 +97809,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15458 + - uid: 15512 components: - pos: 46.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15459 + - uid: 15513 components: - rot: 3.141592653589793 rad pos: 44.5,-28.5 @@ -97541,7 +97824,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15460 + - uid: 15514 components: - rot: 1.5707963267948966 rad pos: 44.5,-23.5 @@ -97549,7 +97832,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15461 + - uid: 15515 components: - rot: -1.5707963267948966 rad pos: -27.5,-79.5 @@ -97557,7 +97840,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15462 + - uid: 15516 components: - rot: 1.5707963267948966 rad pos: -25.5,-72.5 @@ -97565,7 +97848,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15463 + - uid: 15517 components: - rot: 1.5707963267948966 rad pos: -20.5,-61.5 @@ -97573,7 +97856,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15464 + - uid: 15518 components: - rot: 1.5707963267948966 rad pos: 32.5,-41.5 @@ -97581,7 +97864,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15465 + - uid: 15519 components: - rot: -1.5707963267948966 rad pos: 32.5,-42.5 @@ -97589,7 +97872,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15466 + - uid: 15520 components: - rot: 3.141592653589793 rad pos: 30.5,14.5 @@ -97597,7 +97880,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15467 + - uid: 15521 components: - rot: 3.141592653589793 rad pos: 47.5,21.5 @@ -97605,7 +97888,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15468 + - uid: 15522 components: - rot: 3.141592653589793 rad pos: 50.5,13.5 @@ -97613,7 +97896,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15469 + - uid: 15523 components: - rot: 3.141592653589793 rad pos: 49.5,12.5 @@ -97621,7 +97904,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15470 + - uid: 15524 components: - rot: -1.5707963267948966 rad pos: 58.5,12.5 @@ -97629,7 +97912,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15471 + - uid: 15525 components: - rot: 3.141592653589793 rad pos: 59.5,11.5 @@ -97637,7 +97920,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15472 + - uid: 15526 components: - rot: -1.5707963267948966 rad pos: 44.5,-3.5 @@ -97645,7 +97928,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15473 + - uid: 15527 components: - rot: 3.141592653589793 rad pos: 25.5,-60.5 @@ -97653,7 +97936,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15474 + - uid: 15528 components: - rot: 3.141592653589793 rad pos: 52.5,-11.5 @@ -97661,7 +97944,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15475 + - uid: 15529 components: - rot: 3.141592653589793 rad pos: 55.5,-12.5 @@ -97669,28 +97952,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15476 + - uid: 15530 components: - pos: 57.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15477 + - uid: 15531 components: - pos: 49.5,-52.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15478 + - uid: 15532 components: - pos: 63.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15479 + - uid: 15533 components: - rot: 3.141592653589793 rad pos: 62.5,-42.5 @@ -97698,7 +97981,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15480 + - uid: 15534 components: - rot: 1.5707963267948966 rad pos: 62.5,-35.5 @@ -97706,14 +97989,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15481 + - uid: 15535 components: - pos: 61.5,-35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15482 + - uid: 15536 components: - rot: -1.5707963267948966 rad pos: 64.5,-35.5 @@ -97721,14 +98004,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15483 + - uid: 15537 components: - pos: 64.5,-32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15484 + - uid: 15538 components: - rot: 3.141592653589793 rad pos: 60.5,-35.5 @@ -97736,7 +98019,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15485 + - uid: 15539 components: - rot: -1.5707963267948966 rad pos: 61.5,-32.5 @@ -97744,7 +98027,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15486 + - uid: 15540 components: - rot: 3.141592653589793 rad pos: 63.5,-32.5 @@ -97752,7 +98035,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15487 + - uid: 15541 components: - rot: 1.5707963267948966 rad pos: 61.5,-10.5 @@ -97760,7 +98043,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15488 + - uid: 15542 components: - rot: -1.5707963267948966 rad pos: 62.5,-10.5 @@ -97768,14 +98051,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15489 + - uid: 15543 components: - pos: 64.5,-46.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15490 + - uid: 15544 components: - rot: 1.5707963267948966 rad pos: 60.5,-46.5 @@ -97783,7 +98066,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15491 + - uid: 15545 components: - rot: 1.5707963267948966 rad pos: 42.5,-45.5 @@ -97791,7 +98074,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15492 + - uid: 15546 components: - rot: 3.141592653589793 rad pos: 26.5,-58.5 @@ -97799,7 +98082,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15493 + - uid: 15547 components: - rot: -1.5707963267948966 rad pos: 34.5,-52.5 @@ -97807,7 +98090,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15494 + - uid: 15548 components: - rot: 3.141592653589793 rad pos: 28.5,-49.5 @@ -97815,19 +98098,19 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15495 + - uid: 15549 components: - rot: 3.141592653589793 rad pos: 50.5,-58.5 parent: 2 type: Transform - - uid: 15496 + - uid: 15550 components: - rot: 3.141592653589793 rad pos: 47.5,-58.5 parent: 2 type: Transform - - uid: 15497 + - uid: 15551 components: - rot: 1.5707963267948966 rad pos: -24.5,-22.5 @@ -97835,7 +98118,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15498 + - uid: 15552 components: - rot: 1.5707963267948966 rad pos: -23.5,-21.5 @@ -97843,7 +98126,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15499 + - uid: 15553 components: - rot: -1.5707963267948966 rad pos: -25.5,-17.5 @@ -97851,7 +98134,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15500 + - uid: 15554 components: - rot: 3.141592653589793 rad pos: 50.5,-54.5 @@ -97859,14 +98142,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15501 + - uid: 15555 components: - pos: 52.5,-54.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15502 + - uid: 15556 components: - rot: 3.141592653589793 rad pos: 52.5,-57.5 @@ -97874,28 +98157,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15503 + - uid: 15557 components: - pos: -14.5,6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15504 + - uid: 15558 components: - pos: -18.5,-4.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15505 + - uid: 15559 components: - pos: -20.5,-5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15506 + - uid: 15560 components: - rot: -1.5707963267948966 rad pos: -18.5,-46.5 @@ -97903,7 +98186,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15507 + - uid: 15561 components: - rot: 3.141592653589793 rad pos: -20.5,-47.5 @@ -97911,7 +98194,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15508 + - uid: 15562 components: - rot: 1.5707963267948966 rad pos: 2.5,-56.5 @@ -97919,7 +98202,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15509 + - uid: 15563 components: - rot: 3.141592653589793 rad pos: -42.5,-15.5 @@ -97927,7 +98210,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15510 + - uid: 15564 components: - rot: 1.5707963267948966 rad pos: -26.5,6.5 @@ -97935,7 +98218,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15511 + - uid: 15565 components: - rot: 3.141592653589793 rad pos: -26.5,-5.5 @@ -97943,7 +98226,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15512 + - uid: 15566 components: - rot: 3.141592653589793 rad pos: -24.5,-4.5 @@ -97951,7 +98234,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15513 + - uid: 15567 components: - rot: 1.5707963267948966 rad pos: -24.5,7.5 @@ -97959,7 +98242,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15514 + - uid: 15568 components: - rot: 1.5707963267948966 rad pos: -44.5,-11.5 @@ -97967,7 +98250,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15515 + - uid: 15569 components: - rot: 3.141592653589793 rad pos: -44.5,-10.5 @@ -97975,28 +98258,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15516 + - uid: 15570 components: - pos: -42.5,-6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15517 + - uid: 15571 components: - pos: -41.5,-5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15518 + - uid: 15572 components: - pos: -31.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15519 + - uid: 15573 components: - rot: 1.5707963267948966 rad pos: -53.5,-5.5 @@ -98004,7 +98287,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15520 + - uid: 15574 components: - rot: 1.5707963267948966 rad pos: -52.5,-6.5 @@ -98012,28 +98295,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15521 + - uid: 15575 components: - pos: -50.5,-17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15522 + - uid: 15576 components: - pos: -51.5,-19.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15523 + - uid: 15577 components: - pos: -47.5,-19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15524 + - uid: 15578 components: - rot: 1.5707963267948966 rad pos: -54.5,-17.5 @@ -98041,7 +98324,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15525 + - uid: 15579 components: - rot: -1.5707963267948966 rad pos: -54.5,-23.5 @@ -98049,7 +98332,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15526 + - uid: 15580 components: - rot: -1.5707963267948966 rad pos: -53.5,-25.5 @@ -98057,68 +98340,68 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15527 + - uid: 15581 components: - rot: 3.141592653589793 rad pos: -50.5,-55.5 parent: 2 type: Transform - - uid: 15528 + - uid: 15582 components: - rot: 3.141592653589793 rad pos: -50.5,-53.5 parent: 2 type: Transform - - uid: 15529 + - uid: 15583 components: - rot: 3.141592653589793 rad pos: -50.5,-51.5 parent: 2 type: Transform - - uid: 15530 + - uid: 15584 components: - rot: 3.141592653589793 rad pos: -50.5,-49.5 parent: 2 type: Transform - - uid: 15531 + - uid: 15585 components: - rot: 3.141592653589793 rad pos: -50.5,-47.5 parent: 2 type: Transform - - uid: 15532 + - uid: 15586 components: - rot: 3.141592653589793 rad pos: -50.5,-45.5 parent: 2 type: Transform - - uid: 15533 + - uid: 15587 components: - rot: 3.141592653589793 rad pos: -50.5,-43.5 parent: 2 type: Transform - - uid: 15534 + - uid: 15588 components: - rot: 1.5707963267948966 rad pos: -43.5,-52.5 parent: 2 type: Transform - - uid: 15535 + - uid: 15589 components: - rot: 3.141592653589793 rad pos: -44.5,-57.5 parent: 2 type: Transform - - uid: 15536 + - uid: 15590 components: - pos: -37.5,-48.5 parent: 2 type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 15537 + - uid: 15591 components: - rot: 1.5707963267948966 rad pos: -40.5,-48.5 @@ -98126,7 +98409,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 15538 + - uid: 15592 components: - rot: -1.5707963267948966 rad pos: -34.5,-57.5 @@ -98134,7 +98417,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15539 + - uid: 15593 components: - rot: 1.5707963267948966 rad pos: -34.5,-40.5 @@ -98142,7 +98425,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15540 + - uid: 15594 components: - rot: -1.5707963267948966 rad pos: -32.5,-40.5 @@ -98150,7 +98433,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15541 + - uid: 15595 components: - rot: 1.5707963267948966 rad pos: -35.5,-41.5 @@ -98158,7 +98441,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15542 + - uid: 15596 components: - rot: -1.5707963267948966 rad pos: -31.5,-41.5 @@ -98166,14 +98449,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15543 + - uid: 15597 components: - pos: -38.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15544 + - uid: 15598 components: - rot: 3.141592653589793 rad pos: -40.5,-35.5 @@ -98181,14 +98464,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15545 + - uid: 15599 components: - pos: -40.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15546 + - uid: 15600 components: - rot: 3.141592653589793 rad pos: -20.5,-60.5 @@ -98196,7 +98479,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15547 + - uid: 15601 components: - rot: 1.5707963267948966 rad pos: -42.5,-69.5 @@ -98204,14 +98487,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15548 + - uid: 15602 components: - pos: -20.5,-58.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15549 + - uid: 15603 components: - rot: 1.5707963267948966 rad pos: -25.5,-57.5 @@ -98219,21 +98502,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15550 + - uid: 15604 components: - pos: -41.5,31.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15551 + - uid: 15605 components: - pos: -40.5,33.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15552 + - uid: 15606 components: - rot: -1.5707963267948966 rad pos: -49.5,31.5 @@ -98241,7 +98524,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15553 + - uid: 15607 components: - rot: 1.5707963267948966 rad pos: -37.5,13.5 @@ -98249,7 +98532,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15554 + - uid: 15608 components: - rot: 1.5707963267948966 rad pos: -38.5,14.5 @@ -98257,19 +98540,19 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15555 + - uid: 15609 components: - rot: -1.5707963267948966 rad pos: -33.5,-53.5 parent: 2 type: Transform - - uid: 15556 + - uid: 15610 components: - rot: -1.5707963267948966 rad pos: -33.5,-55.5 parent: 2 type: Transform - - uid: 15557 + - uid: 15611 components: - rot: 1.5707963267948966 rad pos: 19.5,-53.5 @@ -98277,7 +98560,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15558 + - uid: 15612 components: - rot: 1.5707963267948966 rad pos: -45.5,-71.5 @@ -98285,7 +98568,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15559 + - uid: 15613 components: - rot: -1.5707963267948966 rad pos: -45.5,-76.5 @@ -98293,7 +98576,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15560 + - uid: 15614 components: - rot: -1.5707963267948966 rad pos: -40.5,-72.5 @@ -98301,7 +98584,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15561 + - uid: 15615 components: - rot: 1.5707963267948966 rad pos: -46.5,-72.5 @@ -98309,7 +98592,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15562 + - uid: 15616 components: - rot: -1.5707963267948966 rad pos: -46.5,-75.5 @@ -98317,7 +98600,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15563 + - uid: 15617 components: - rot: 3.141592653589793 rad pos: -54.5,-75.5 @@ -98325,7 +98608,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15564 + - uid: 15618 components: - rot: 1.5707963267948966 rad pos: -54.5,-76.5 @@ -98333,7 +98616,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15565 + - uid: 15619 components: - rot: -1.5707963267948966 rad pos: -19.5,-43.5 @@ -98341,7 +98624,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15566 + - uid: 15620 components: - rot: 1.5707963267948966 rad pos: -19.5,-41.5 @@ -98349,14 +98632,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15567 + - uid: 15621 components: - pos: -15.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15568 + - uid: 15622 components: - rot: 3.141592653589793 rad pos: -15.5,-43.5 @@ -98364,7 +98647,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15569 + - uid: 15623 components: - rot: -1.5707963267948966 rad pos: 2.5,11.5 @@ -98372,7 +98655,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15570 + - uid: 15624 components: - rot: 3.141592653589793 rad pos: 1.5,11.5 @@ -98380,14 +98663,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15571 + - uid: 15625 components: - pos: -5.5,-64.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15572 + - uid: 15626 components: - rot: 1.5707963267948966 rad pos: 45.5,27.5 @@ -98395,7 +98678,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15573 + - uid: 15627 components: - rot: 1.5707963267948966 rad pos: 44.5,26.5 @@ -98403,7 +98686,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15574 + - uid: 15628 components: - rot: -1.5707963267948966 rad pos: 52.5,27.5 @@ -98411,7 +98694,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15575 + - uid: 15629 components: - rot: -1.5707963267948966 rad pos: 54.5,26.5 @@ -98419,14 +98702,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15576 + - uid: 15630 components: - pos: -15.5,45.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15577 + - uid: 15631 components: - rot: 3.141592653589793 rad pos: -17.5,45.5 @@ -98434,7 +98717,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15578 + - uid: 15632 components: - rot: 1.5707963267948966 rad pos: 47.5,50.5 @@ -98442,7 +98725,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15579 + - uid: 15633 components: - rot: 1.5707963267948966 rad pos: 45.5,49.5 @@ -98450,7 +98733,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15580 + - uid: 15634 components: - rot: -1.5707963267948966 rad pos: 47.5,46.5 @@ -98458,7 +98741,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15581 + - uid: 15635 components: - rot: -1.5707963267948966 rad pos: 45.5,45.5 @@ -98466,7 +98749,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15582 + - uid: 15636 components: - rot: 3.141592653589793 rad pos: 2.5,69.5 @@ -98474,7 +98757,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15583 + - uid: 15637 components: - rot: -1.5707963267948966 rad pos: -5.5,69.5 @@ -98482,14 +98765,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15584 + - uid: 15638 components: - pos: 3.5,69.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15585 + - uid: 15639 components: - rot: 1.5707963267948966 rad pos: -6.5,69.5 @@ -98497,7 +98780,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15586 + - uid: 15640 components: - rot: -1.5707963267948966 rad pos: -1.5,67.5 @@ -98505,7 +98788,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15587 + - uid: 15641 components: - rot: 1.5707963267948966 rad pos: -2.5,67.5 @@ -98513,7 +98796,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15588 + - uid: 15642 components: - rot: -1.5707963267948966 rad pos: -0.5,46.5 @@ -98521,7 +98804,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15589 + - uid: 15643 components: - rot: -1.5707963267948966 rad pos: 1.5,44.5 @@ -98529,7 +98812,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15590 + - uid: 15644 components: - rot: 3.141592653589793 rad pos: -21.5,51.5 @@ -98537,7 +98820,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15591 + - uid: 15645 components: - rot: 3.141592653589793 rad pos: -22.5,50.5 @@ -98545,7 +98828,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15592 + - uid: 15646 components: - rot: -1.5707963267948966 rad pos: -13.5,51.5 @@ -98553,7 +98836,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15593 + - uid: 15647 components: - rot: -1.5707963267948966 rad pos: -12.5,50.5 @@ -98561,28 +98844,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15594 + - uid: 15648 components: - pos: 1.5,59.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15595 + - uid: 15649 components: - pos: -0.5,58.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15596 + - uid: 15650 components: - pos: 40.5,47.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15597 + - uid: 15651 components: - rot: -1.5707963267948966 rad pos: 40.5,44.5 @@ -98590,7 +98873,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15598 + - uid: 15652 components: - rot: 1.5707963267948966 rad pos: 29.5,47.5 @@ -98598,7 +98881,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15599 + - uid: 15653 components: - rot: 1.5707963267948966 rad pos: 23.5,46.5 @@ -98606,7 +98889,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15600 + - uid: 15654 components: - rot: 3.141592653589793 rad pos: 29.5,44.5 @@ -98614,7 +98897,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15601 + - uid: 15655 components: - rot: 3.141592653589793 rad pos: -22.5,-98.5 @@ -98622,7 +98905,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15602 + - uid: 15656 components: - rot: -1.5707963267948966 rad pos: -6.5,-93.5 @@ -98630,28 +98913,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15603 + - uid: 15657 components: - pos: 62.5,-6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15604 + - uid: 15658 components: - pos: 75.5,-33.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15605 + - uid: 15659 components: - pos: 74.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15606 + - uid: 15660 components: - rot: -1.5707963267948966 rad pos: 73.5,-48.5 @@ -98659,7 +98942,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15607 + - uid: 15661 components: - rot: -1.5707963267948966 rad pos: 75.5,-46.5 @@ -98667,7 +98950,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15608 + - uid: 15662 components: - rot: 1.5707963267948966 rad pos: 73.5,-46.5 @@ -98675,7 +98958,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15609 + - uid: 15663 components: - rot: -1.5707963267948966 rad pos: 71.5,-47.5 @@ -98683,7 +98966,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15610 + - uid: 15664 components: - rot: 1.5707963267948966 rad pos: 71.5,-45.5 @@ -98691,7 +98974,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15611 + - uid: 15665 components: - rot: -1.5707963267948966 rad pos: 74.5,-45.5 @@ -98699,14 +98982,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15612 + - uid: 15666 components: - pos: 72.5,-36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15613 + - uid: 15667 components: - rot: 3.141592653589793 rad pos: 72.5,-37.5 @@ -98714,7 +98997,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15614 + - uid: 15668 components: - rot: -1.5707963267948966 rad pos: 67.5,-37.5 @@ -98722,40 +99005,40 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15615 + - uid: 15669 components: - pos: -56.5,-58.5 parent: 2 type: Transform - - uid: 15616 + - uid: 15670 components: - rot: 3.141592653589793 rad pos: -57.5,-60.5 parent: 2 type: Transform - - uid: 15617 + - uid: 15671 components: - rot: 3.141592653589793 rad pos: -56.5,-61.5 parent: 2 type: Transform - - uid: 15618 + - uid: 15672 components: - pos: -55.5,-61.5 parent: 2 type: Transform - - uid: 15619 + - uid: 15673 components: - pos: 55.5,-48.5 parent: 2 type: Transform - - uid: 15620 + - uid: 15674 components: - rot: 3.141592653589793 rad pos: 53.5,-48.5 parent: 2 type: Transform - - uid: 15621 + - uid: 15675 components: - rot: 3.141592653589793 rad pos: 53.5,-6.5 @@ -98763,7 +99046,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15622 + - uid: 15676 components: - rot: 1.5707963267948966 rad pos: 67.5,-36.5 @@ -98771,7 +99054,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15623 + - uid: 15677 components: - rot: 3.141592653589793 rad pos: -10.5,-21.5 @@ -98779,14 +99062,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15624 + - uid: 15678 components: - pos: -8.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15625 + - uid: 15679 components: - rot: 3.141592653589793 rad pos: -25.5,-60.5 @@ -98794,7 +99077,7 @@ entities: type: Transform - color: '#97C3FCCC' type: AtmosPipeColor - - uid: 15626 + - uid: 15680 components: - rot: -1.5707963267948966 rad pos: -22.5,-62.5 @@ -98802,7 +99085,7 @@ entities: type: Transform - color: '#97C3FCCC' type: AtmosPipeColor - - uid: 15627 + - uid: 15681 components: - rot: 3.141592653589793 rad pos: -23.5,-62.5 @@ -98810,13 +99093,13 @@ entities: type: Transform - color: '#97C3FCCC' type: AtmosPipeColor - - uid: 15628 + - uid: 15682 components: - rot: 1.5707963267948966 rad pos: -48.5,-35.5 parent: 2 type: Transform - - uid: 15629 + - uid: 15683 components: - rot: 1.5707963267948966 rad pos: 18.5,-82.5 @@ -98824,7 +99107,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15630 + - uid: 15684 components: - rot: 3.141592653589793 rad pos: 25.5,-72.5 @@ -98832,7 +99115,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15631 + - uid: 15685 components: - rot: 3.141592653589793 rad pos: 24.5,-73.5 @@ -98840,7 +99123,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15632 + - uid: 15686 components: - rot: 3.141592653589793 rad pos: 29.5,-85.5 @@ -98848,7 +99131,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15633 + - uid: 15687 components: - rot: 3.141592653589793 rad pos: 47.5,-86.5 @@ -98856,7 +99139,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15634 + - uid: 15688 components: - rot: -1.5707963267948966 rad pos: 45.5,6.5 @@ -98864,7 +99147,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15635 + - uid: 15689 components: - rot: 3.141592653589793 rad pos: -45.5,33.5 @@ -98872,7 +99155,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15636 + - uid: 15690 components: - rot: 3.141592653589793 rad pos: -47.5,31.5 @@ -98880,7 +99163,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15637 + - uid: 15691 components: - rot: -1.5707963267948966 rad pos: -46.5,34.5 @@ -98888,7 +99171,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15638 + - uid: 15692 components: - rot: 1.5707963267948966 rad pos: -47.5,34.5 @@ -98896,7 +99179,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15639 + - uid: 15693 components: - rot: 1.5707963267948966 rad pos: -6.5,16.5 @@ -98904,33 +99187,33 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15640 + - uid: 15694 components: - pos: -62.5,-39.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15641 + - uid: 15695 components: - pos: -67.5,-43.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15642 + - uid: 15696 components: - rot: -1.5707963267948966 rad pos: -65.5,-44.5 parent: 2 type: Transform - - uid: 15643 + - uid: 15697 components: - rot: 1.5707963267948966 rad pos: -65.5,-43.5 parent: 2 type: Transform - - uid: 15644 + - uid: 15698 components: - rot: -1.5707963267948966 rad pos: -71.5,-41.5 @@ -98938,7 +99221,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15645 + - uid: 15699 components: - rot: -1.5707963267948966 rad pos: -45.5,-23.5 @@ -98946,7 +99229,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15646 + - uid: 15700 components: - rot: 3.141592653589793 rad pos: -51.5,-24.5 @@ -98954,7 +99237,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15647 + - uid: 15701 components: - rot: -1.5707963267948966 rad pos: -0.5,-14.5 @@ -98962,219 +99245,226 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor + - uid: 15702 + components: + - pos: 39.5,61.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - proto: GasPipeFourway entities: - - uid: 15648 + - uid: 15703 components: - pos: 38.5,1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15649 + - uid: 15704 components: - pos: 31.5,12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15650 + - uid: 15705 components: - pos: 21.5,16.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15651 + - uid: 15706 components: - pos: 31.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15652 + - uid: 15707 components: - pos: 21.5,12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15653 + - uid: 15708 components: - pos: 17.5,17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15654 + - uid: 15709 components: - pos: 34.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15655 + - uid: 15710 components: - pos: -24.5,-60.5 parent: 2 type: Transform - color: '#97C3FCCC' type: AtmosPipeColor - - uid: 15656 + - uid: 15711 components: - pos: -5.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15657 + - uid: 15712 components: - pos: -33.5,20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15658 + - uid: 15713 components: - pos: -3.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15659 + - uid: 15714 components: - pos: 30.5,-18.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15660 + - uid: 15715 components: - pos: -32.5,23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15661 + - uid: 15716 components: - pos: -18.5,29.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15662 + - uid: 15717 components: - pos: 49.5,20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15663 + - uid: 15718 components: - pos: 50.5,21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15664 + - uid: 15719 components: - pos: 42.5,1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15665 + - uid: 15720 components: - pos: 44.5,-1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15666 + - uid: 15721 components: - pos: 64.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15667 + - uid: 15722 components: - pos: 29.5,-47.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15668 + - uid: 15723 components: - pos: -41.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15669 + - uid: 15724 components: - pos: -42.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15670 + - uid: 15725 components: - pos: -20.5,30.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15671 + - uid: 15726 components: - pos: -31.5,-34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15672 + - uid: 15727 components: - pos: -32.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15673 + - uid: 15728 components: - pos: -45.5,11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15674 + - uid: 15729 components: - pos: -5.5,-14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15675 + - uid: 15730 components: - pos: -16.5,43.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15676 + - uid: 15731 components: - pos: -15.5,44.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15677 + - uid: 15732 components: - pos: 68.5,-33.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15678 + - uid: 15733 components: - pos: -70.5,-42.5 parent: 2 @@ -99183,42 +99473,56 @@ entities: type: AtmosPipeColor - proto: GasPipeStraight entities: - - uid: 15679 + - uid: 15734 + components: + - pos: 39.5,53.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15735 + components: + - pos: 39.5,54.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 15736 components: - pos: 22.5,-34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15680 + - uid: 15737 components: - pos: 28.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15681 + - uid: 15738 components: - pos: 28.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15682 + - uid: 15739 components: - pos: 22.5,-35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15683 + - uid: 15740 components: - pos: 2.5,-4.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15684 + - uid: 15741 components: - rot: 3.141592653589793 rad pos: 1.5,-3.5 @@ -99226,7 +99530,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15685 + - uid: 15742 components: - rot: 1.5707963267948966 rad pos: 1.5,-3.5 @@ -99234,21 +99538,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15686 + - uid: 15743 components: - pos: 2.5,-5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15687 + - uid: 15744 components: - pos: 1.5,-4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15688 + - uid: 15745 components: - rot: -1.5707963267948966 rad pos: -49.5,-23.5 @@ -99256,21 +99560,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15689 + - uid: 15746 components: - pos: -47.5,-20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15690 + - uid: 15747 components: - pos: -71.5,-43.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15691 + - uid: 15748 components: - rot: 1.5707963267948966 rad pos: -73.5,-42.5 @@ -99278,7 +99582,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15692 + - uid: 15749 components: - rot: 1.5707963267948966 rad pos: -67.5,-42.5 @@ -99286,7 +99590,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15693 + - uid: 15750 components: - rot: -1.5707963267948966 rad pos: -69.5,-40.5 @@ -99294,14 +99598,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15694 + - uid: 15751 components: - pos: -72.5,-36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15695 + - uid: 15752 components: - rot: 1.5707963267948966 rad pos: -68.5,-42.5 @@ -99309,14 +99613,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15696 + - uid: 15753 components: - pos: -70.5,-40.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15697 + - uid: 15754 components: - rot: 3.141592653589793 rad pos: -62.5,-40.5 @@ -99324,14 +99628,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15698 + - uid: 15755 components: - pos: -68.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15699 + - uid: 15756 components: - rot: -1.5707963267948966 rad pos: -65.5,-39.5 @@ -99339,7 +99643,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15700 + - uid: 15757 components: - rot: 1.5707963267948966 rad pos: -69.5,-42.5 @@ -99347,126 +99651,126 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15701 + - uid: 15758 components: - pos: -68.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15702 + - uid: 15759 components: - pos: -73.5,-27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15703 + - uid: 15760 components: - pos: -71.5,-30.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15704 + - uid: 15761 components: - pos: -71.5,-28.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15705 + - uid: 15762 components: - pos: -73.5,-28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15706 + - uid: 15763 components: - pos: -71.5,-26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15707 + - uid: 15764 components: - pos: -73.5,-29.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15708 + - uid: 15765 components: - pos: -73.5,-30.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15709 + - uid: 15766 components: - pos: -73.5,-32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15710 + - uid: 15767 components: - pos: -73.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15711 + - uid: 15768 components: - pos: -73.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15712 + - uid: 15769 components: - pos: -73.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15713 + - uid: 15770 components: - pos: -73.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15714 + - uid: 15771 components: - pos: -73.5,-37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15715 + - uid: 15772 components: - pos: -72.5,-34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15716 + - uid: 15773 components: - pos: -72.5,-35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15717 + - uid: 15774 components: - pos: -72.5,-33.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15718 + - uid: 15775 components: - rot: 1.5707963267948966 rad pos: -66.5,-42.5 @@ -99474,7 +99778,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15719 + - uid: 15776 components: - rot: 1.5707963267948966 rad pos: -65.5,-42.5 @@ -99482,7 +99786,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15720 + - uid: 15777 components: - rot: 1.5707963267948966 rad pos: -64.5,-42.5 @@ -99490,7 +99794,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15721 + - uid: 15778 components: - rot: 3.141592653589793 rad pos: -62.5,-41.5 @@ -99498,41 +99802,41 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15722 + - uid: 15779 components: - rot: -1.5707963267948966 rad pos: -74.5,-41.5 parent: 2 type: Transform - - uid: 15723 + - uid: 15780 components: - pos: -73.5,-26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15724 + - uid: 15781 components: - pos: -73.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15725 + - uid: 15782 components: - pos: -71.5,-29.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15726 + - uid: 15783 components: - pos: -71.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15727 + - uid: 15784 components: - rot: 3.141592653589793 rad pos: -71.5,-45.5 @@ -99540,7 +99844,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15728 + - uid: 15785 components: - rot: 3.141592653589793 rad pos: -71.5,-44.5 @@ -99548,7 +99852,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15729 + - uid: 15786 components: - rot: 3.141592653589793 rad pos: -67.5,-45.5 @@ -99556,7 +99860,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15730 + - uid: 15787 components: - rot: 1.5707963267948966 rad pos: -72.5,-23.5 @@ -99564,7 +99868,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15731 + - uid: 15788 components: - rot: -1.5707963267948966 rad pos: -64.5,-39.5 @@ -99572,21 +99876,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15732 + - uid: 15789 components: - pos: -6.5,15.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15733 + - uid: 15790 components: - pos: -3.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15734 + - uid: 15791 components: - rot: 3.141592653589793 rad pos: -3.5,13.5 @@ -99594,7 +99898,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15735 + - uid: 15792 components: - rot: 3.141592653589793 rad pos: -3.5,12.5 @@ -99602,7 +99906,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15736 + - uid: 15793 components: - rot: 1.5707963267948966 rad pos: -11.5,5.5 @@ -99610,7 +99914,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15737 + - uid: 15794 components: - rot: 3.141592653589793 rad pos: 38.5,10.5 @@ -99618,7 +99922,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15738 + - uid: 15795 components: - rot: 3.141592653589793 rad pos: 26.5,-26.5 @@ -99626,7 +99930,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15739 + - uid: 15796 components: - rot: 1.5707963267948966 rad pos: 32.5,9.5 @@ -99634,14 +99938,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15740 + - uid: 15797 components: - pos: 28.5,-31.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15741 + - uid: 15798 components: - rot: 3.141592653589793 rad pos: 42.5,10.5 @@ -99649,21 +99953,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15742 + - uid: 15799 components: - pos: -18.5,31.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15743 + - uid: 15800 components: - pos: 46.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15744 + - uid: 15801 components: - rot: 3.141592653589793 rad pos: 34.5,-36.5 @@ -99671,14 +99975,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15745 + - uid: 15802 components: - pos: 46.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15746 + - uid: 15803 components: - rot: -1.5707963267948966 rad pos: 24.5,-42.5 @@ -99686,14 +99990,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15747 + - uid: 15804 components: - pos: 34.5,-21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15748 + - uid: 15805 components: - rot: 3.141592653589793 rad pos: -9.5,-40.5 @@ -99701,7 +100005,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15749 + - uid: 15806 components: - rot: 3.141592653589793 rad pos: -5.5,-34.5 @@ -99709,7 +100013,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15750 + - uid: 15807 components: - rot: -1.5707963267948966 rad pos: -12.5,-41.5 @@ -99717,7 +100021,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15751 + - uid: 15808 components: - rot: 3.141592653589793 rad pos: -14.5,-42.5 @@ -99725,7 +100029,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15752 + - uid: 15809 components: - rot: 3.141592653589793 rad pos: -14.5,-44.5 @@ -99733,7 +100037,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15753 + - uid: 15810 components: - rot: 1.5707963267948966 rad pos: -14.5,-60.5 @@ -99741,7 +100045,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15754 + - uid: 15811 components: - rot: 3.141592653589793 rad pos: -12.5,-44.5 @@ -99749,7 +100053,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15755 + - uid: 15812 components: - rot: 1.5707963267948966 rad pos: -10.5,-42.5 @@ -99757,42 +100061,42 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15756 + - uid: 15813 components: - pos: -7.5,-48.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15757 + - uid: 15814 components: - pos: -7.5,-47.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15758 + - uid: 15815 components: - pos: -0.5,-45.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15759 + - uid: 15816 components: - pos: -0.5,-44.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15760 + - uid: 15817 components: - pos: -0.5,-43.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15761 + - uid: 15818 components: - rot: -1.5707963267948966 rad pos: 1.5,-41.5 @@ -99800,14 +100104,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15762 + - uid: 15819 components: - pos: -8.5,-45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15763 + - uid: 15820 components: - rot: 3.141592653589793 rad pos: 3.5,-44.5 @@ -99815,14 +100119,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15764 + - uid: 15821 components: - pos: -12.5,-61.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15765 + - uid: 15822 components: - rot: 3.141592653589793 rad pos: -7.5,-62.5 @@ -99830,7 +100134,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15766 + - uid: 15823 components: - rot: -1.5707963267948966 rad pos: -4.5,-59.5 @@ -99838,7 +100142,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15767 + - uid: 15824 components: - rot: -1.5707963267948966 rad pos: -6.5,-59.5 @@ -99846,7 +100150,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15768 + - uid: 15825 components: - rot: -1.5707963267948966 rad pos: 27.5,-6.5 @@ -99854,7 +100158,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15769 + - uid: 15826 components: - rot: -1.5707963267948966 rad pos: 29.5,-6.5 @@ -99862,7 +100166,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15770 + - uid: 15827 components: - rot: 3.141592653589793 rad pos: 40.5,6.5 @@ -99870,49 +100174,49 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15771 + - uid: 15828 components: - pos: 46.5,-26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15772 + - uid: 15829 components: - pos: 46.5,-27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15773 + - uid: 15830 components: - pos: 46.5,-28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15774 + - uid: 15831 components: - pos: 46.5,-29.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15775 + - uid: 15832 components: - pos: 8.5,11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15776 + - uid: 15833 components: - pos: 8.5,7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15777 + - uid: 15834 components: - rot: -1.5707963267948966 rad pos: -12.5,-38.5 @@ -99920,7 +100224,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15778 + - uid: 15835 components: - rot: 3.141592653589793 rad pos: 34.5,-32.5 @@ -99928,7 +100232,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15779 + - uid: 15836 components: - rot: 1.5707963267948966 rad pos: 9.5,17.5 @@ -99936,7 +100240,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15780 + - uid: 15837 components: - rot: 1.5707963267948966 rad pos: 6.5,8.5 @@ -99944,7 +100248,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15781 + - uid: 15838 components: - rot: -1.5707963267948966 rad pos: 45.5,-23.5 @@ -99952,14 +100256,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15782 + - uid: 15839 components: - pos: 30.5,-21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15783 + - uid: 15840 components: - rot: 3.141592653589793 rad pos: 34.5,-35.5 @@ -99967,7 +100271,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15784 + - uid: 15841 components: - rot: 3.141592653589793 rad pos: -5.5,-35.5 @@ -99975,7 +100279,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15785 + - uid: 15842 components: - rot: -1.5707963267948966 rad pos: 20.5,21.5 @@ -99983,7 +100287,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15786 + - uid: 15843 components: - rot: 1.5707963267948966 rad pos: 23.5,21.5 @@ -99991,7 +100295,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15787 + - uid: 15844 components: - rot: 1.5707963267948966 rad pos: 24.5,21.5 @@ -99999,7 +100303,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15788 + - uid: 15845 components: - rot: 1.5707963267948966 rad pos: 25.5,21.5 @@ -100007,7 +100311,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15789 + - uid: 15846 components: - rot: 1.5707963267948966 rad pos: 28.5,21.5 @@ -100015,21 +100319,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15790 + - uid: 15847 components: - pos: 29.5,20.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15791 + - uid: 15848 components: - pos: 29.5,19.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15792 + - uid: 15849 components: - rot: 3.141592653589793 rad pos: 30.5,17.5 @@ -100037,14 +100341,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15793 + - uid: 15850 components: - pos: 24.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15794 + - uid: 15851 components: - rot: -1.5707963267948966 rad pos: 2.5,-61.5 @@ -100052,7 +100356,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15795 + - uid: 15852 components: - rot: 1.5707963267948966 rad pos: 4.5,-61.5 @@ -100060,7 +100364,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15796 + - uid: 15853 components: - rot: -1.5707963267948966 rad pos: -7.5,-61.5 @@ -100068,14 +100372,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15797 + - uid: 15854 components: - pos: -8.5,-62.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15798 + - uid: 15855 components: - rot: 3.141592653589793 rad pos: -0.5,-63.5 @@ -100083,7 +100387,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15799 + - uid: 15856 components: - rot: 1.5707963267948966 rad pos: -2.5,-60.5 @@ -100091,7 +100395,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15800 + - uid: 15857 components: - rot: -1.5707963267948966 rad pos: 5.5,-60.5 @@ -100099,7 +100403,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15801 + - uid: 15858 components: - rot: -1.5707963267948966 rad pos: 6.5,-60.5 @@ -100107,7 +100411,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15802 + - uid: 15859 components: - rot: -1.5707963267948966 rad pos: 7.5,-60.5 @@ -100115,7 +100419,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15803 + - uid: 15860 components: - rot: -1.5707963267948966 rad pos: 8.5,-60.5 @@ -100123,7 +100427,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15804 + - uid: 15861 components: - rot: -1.5707963267948966 rad pos: 5.5,-61.5 @@ -100131,7 +100435,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15805 + - uid: 15862 components: - rot: -1.5707963267948966 rad pos: 7.5,-61.5 @@ -100139,7 +100443,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15806 + - uid: 15863 components: - rot: -1.5707963267948966 rad pos: 8.5,-61.5 @@ -100147,7 +100451,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15807 + - uid: 15864 components: - rot: 3.141592653589793 rad pos: -5.5,-28.5 @@ -100155,14 +100459,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15808 + - uid: 15865 components: - pos: -3.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15809 + - uid: 15866 components: - rot: -1.5707963267948966 rad pos: 28.5,-43.5 @@ -100170,7 +100474,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15810 + - uid: 15867 components: - rot: 1.5707963267948966 rad pos: -36.5,20.5 @@ -100178,35 +100482,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15811 + - uid: 15868 components: - pos: -20.5,-83.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15812 + - uid: 15869 components: - pos: -20.5,-74.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15813 + - uid: 15870 components: - pos: -25.5,-75.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15814 + - uid: 15871 components: - pos: -25.5,-73.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15815 + - uid: 15872 components: - rot: 1.5707963267948966 rad pos: -24.5,-72.5 @@ -100214,14 +100518,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15816 + - uid: 15873 components: - pos: 35.5,6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15817 + - uid: 15874 components: - rot: 1.5707963267948966 rad pos: 33.5,9.5 @@ -100229,7 +100533,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15818 + - uid: 15875 components: - rot: 1.5707963267948966 rad pos: -25.5,-80.5 @@ -100237,7 +100541,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15819 + - uid: 15876 components: - rot: 3.141592653589793 rad pos: 5.5,13.5 @@ -100245,28 +100549,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15820 + - uid: 15877 components: - pos: -3.5,-29.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15821 + - uid: 15878 components: - pos: -3.5,-28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15822 + - uid: 15879 components: - pos: -3.5,-26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15823 + - uid: 15880 components: - rot: 1.5707963267948966 rad pos: -5.5,-25.5 @@ -100274,7 +100578,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15824 + - uid: 15881 components: - rot: 3.141592653589793 rad pos: -11.5,-26.5 @@ -100282,7 +100586,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15825 + - uid: 15882 components: - rot: 1.5707963267948966 rad pos: -6.5,-27.5 @@ -100290,7 +100594,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15826 + - uid: 15883 components: - rot: 1.5707963267948966 rad pos: 0.5,-25.5 @@ -100298,14 +100602,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15827 + - uid: 15884 components: - pos: 3.5,-28.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15828 + - uid: 15885 components: - rot: 1.5707963267948966 rad pos: 3.5,-25.5 @@ -100313,7 +100617,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15829 + - uid: 15886 components: - rot: 1.5707963267948966 rad pos: 1.5,-25.5 @@ -100321,7 +100625,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15830 + - uid: 15887 components: - rot: 3.141592653589793 rad pos: -5.5,-36.5 @@ -100329,7 +100633,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15831 + - uid: 15888 components: - rot: 3.141592653589793 rad pos: -5.5,-37.5 @@ -100337,7 +100641,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15832 + - uid: 15889 components: - rot: 3.141592653589793 rad pos: -5.5,-38.5 @@ -100345,7 +100649,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15833 + - uid: 15890 components: - rot: 3.141592653589793 rad pos: -5.5,-39.5 @@ -100353,7 +100657,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15834 + - uid: 15891 components: - rot: 3.141592653589793 rad pos: -5.5,-40.5 @@ -100361,7 +100665,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15835 + - uid: 15892 components: - rot: 1.5707963267948966 rad pos: 9.5,-27.5 @@ -100369,7 +100673,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15836 + - uid: 15893 components: - rot: 3.141592653589793 rad pos: 14.5,-28.5 @@ -100377,7 +100681,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15837 + - uid: 15894 components: - rot: 1.5707963267948966 rad pos: 13.5,-27.5 @@ -100385,7 +100689,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15838 + - uid: 15895 components: - rot: 1.5707963267948966 rad pos: 13.5,-25.5 @@ -100393,7 +100697,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15839 + - uid: 15896 components: - rot: 3.141592653589793 rad pos: 14.5,-35.5 @@ -100401,14 +100705,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15840 + - uid: 15897 components: - pos: 15.5,-37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15841 + - uid: 15898 components: - rot: 1.5707963267948966 rad pos: 22.5,-43.5 @@ -100416,7 +100720,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15842 + - uid: 15899 components: - rot: 1.5707963267948966 rad pos: 12.5,-25.5 @@ -100424,7 +100728,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15843 + - uid: 15900 components: - rot: 1.5707963267948966 rad pos: 21.5,-43.5 @@ -100432,7 +100736,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15844 + - uid: 15901 components: - rot: 1.5707963267948966 rad pos: 30.5,-43.5 @@ -100440,21 +100744,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15845 + - uid: 15902 components: - pos: 20.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15846 + - uid: 15903 components: - pos: 20.5,-19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15847 + - uid: 15904 components: - rot: -1.5707963267948966 rad pos: 23.5,-12.5 @@ -100462,7 +100766,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15848 + - uid: 15905 components: - rot: -1.5707963267948966 rad pos: 25.5,-12.5 @@ -100470,7 +100774,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15849 + - uid: 15906 components: - rot: 1.5707963267948966 rad pos: 4.5,19.5 @@ -100478,7 +100782,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15850 + - uid: 15907 components: - rot: -1.5707963267948966 rad pos: 21.5,21.5 @@ -100486,14 +100790,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15851 + - uid: 15908 components: - pos: 19.5,20.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15852 + - uid: 15909 components: - rot: -1.5707963267948966 rad pos: 35.5,12.5 @@ -100501,7 +100805,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15853 + - uid: 15910 components: - rot: 1.5707963267948966 rad pos: 16.5,-43.5 @@ -100509,7 +100813,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15854 + - uid: 15911 components: - rot: 1.5707963267948966 rad pos: 18.5,-43.5 @@ -100517,14 +100821,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15855 + - uid: 15912 components: - pos: 0.5,15.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15856 + - uid: 15913 components: - rot: 3.141592653589793 rad pos: 40.5,4.5 @@ -100532,7 +100836,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15857 + - uid: 15914 components: - rot: 3.141592653589793 rad pos: 42.5,8.5 @@ -100540,7 +100844,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15858 + - uid: 15915 components: - rot: 1.5707963267948966 rad pos: 16.5,-41.5 @@ -100548,7 +100852,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15859 + - uid: 15916 components: - rot: 1.5707963267948966 rad pos: 18.5,-41.5 @@ -100556,14 +100860,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15860 + - uid: 15917 components: - pos: -3.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15861 + - uid: 15918 components: - rot: 3.141592653589793 rad pos: 29.5,16.5 @@ -100571,7 +100875,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15862 + - uid: 15919 components: - rot: 1.5707963267948966 rad pos: 27.5,17.5 @@ -100579,7 +100883,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15863 + - uid: 15920 components: - rot: 1.5707963267948966 rad pos: 10.5,-25.5 @@ -100587,7 +100891,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15864 + - uid: 15921 components: - rot: -1.5707963267948966 rad pos: 13.5,17.5 @@ -100595,7 +100899,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15865 + - uid: 15922 components: - rot: 1.5707963267948966 rad pos: 1.5,17.5 @@ -100603,14 +100907,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15866 + - uid: 15923 components: - pos: 0.5,16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15867 + - uid: 15924 components: - rot: 1.5707963267948966 rad pos: -2.5,13.5 @@ -100618,7 +100922,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15868 + - uid: 15925 components: - rot: -1.5707963267948966 rad pos: -5.5,14.5 @@ -100626,77 +100930,77 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15869 + - uid: 15926 components: - pos: -6.5,13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15870 + - uid: 15927 components: - pos: -6.5,11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15871 + - uid: 15928 components: - pos: -6.5,10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15872 + - uid: 15929 components: - pos: -8.5,4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15873 + - uid: 15930 components: - pos: 3.5,-29.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15874 + - uid: 15931 components: - pos: 15.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15875 + - uid: 15932 components: - pos: 15.5,-32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15876 + - uid: 15933 components: - pos: 15.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15877 + - uid: 15934 components: - pos: -23.5,-77.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15878 + - uid: 15935 components: - pos: 17.5,18.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15879 + - uid: 15936 components: - rot: 1.5707963267948966 rad pos: 9.5,8.5 @@ -100704,7 +101008,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15880 + - uid: 15937 components: - rot: 1.5707963267948966 rad pos: 0.5,-1.5 @@ -100712,49 +101016,49 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15881 + - uid: 15938 components: - pos: -18.5,32.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15882 + - uid: 15939 components: - pos: -20.5,28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15883 + - uid: 15940 components: - pos: 34.5,-24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15884 + - uid: 15941 components: - pos: 31.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15885 + - uid: 15942 components: - pos: 24.5,-27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15886 + - uid: 15943 components: - pos: 36.5,-26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15887 + - uid: 15944 components: - rot: -1.5707963267948966 rad pos: 28.5,-18.5 @@ -100762,14 +101066,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15888 + - uid: 15945 components: - pos: 47.5,-24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15889 + - uid: 15946 components: - rot: 3.141592653589793 rad pos: 34.5,-38.5 @@ -100777,21 +101081,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15890 + - uid: 15947 components: - pos: 21.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15891 + - uid: 15948 components: - pos: 8.5,8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15892 + - uid: 15949 components: - rot: 1.5707963267948966 rad pos: 29.5,-22.5 @@ -100799,7 +101103,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15893 + - uid: 15950 components: - rot: 3.141592653589793 rad pos: 38.5,6.5 @@ -100807,28 +101111,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15894 + - uid: 15951 components: - pos: -20.5,31.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15895 + - uid: 15952 components: - pos: 8.5,9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15896 + - uid: 15953 components: - pos: -18.5,30.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15897 + - uid: 15954 components: - rot: 1.5707963267948966 rad pos: -4.5,-1.5 @@ -100836,7 +101140,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15898 + - uid: 15955 components: - rot: 3.141592653589793 rad pos: -5.5,-32.5 @@ -100844,7 +101148,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15899 + - uid: 15956 components: - rot: -1.5707963267948966 rad pos: 6.5,-41.5 @@ -100852,56 +101156,56 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15900 + - uid: 15957 components: - pos: 15.5,-30.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15901 + - uid: 15958 components: - pos: -3.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15902 + - uid: 15959 components: - pos: -3.5,-9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15903 + - uid: 15960 components: - pos: -3.5,-8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15904 + - uid: 15961 components: - pos: -3.5,-7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15905 + - uid: 15962 components: - pos: -3.5,-5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15906 + - uid: 15963 components: - pos: -5.5,-7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15907 + - uid: 15964 components: - rot: -1.5707963267948966 rad pos: 24.5,10.5 @@ -100909,7 +101213,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15908 + - uid: 15965 components: - rot: 1.5707963267948966 rad pos: 17.5,-29.5 @@ -100917,7 +101221,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15909 + - uid: 15966 components: - rot: 1.5707963267948966 rad pos: 18.5,-29.5 @@ -100925,7 +101229,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15910 + - uid: 15967 components: - rot: -1.5707963267948966 rad pos: 20.5,-29.5 @@ -100933,7 +101237,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15911 + - uid: 15968 components: - rot: -1.5707963267948966 rad pos: 22.5,-29.5 @@ -100941,7 +101245,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15912 + - uid: 15969 components: - rot: 1.5707963267948966 rad pos: -15.5,-42.5 @@ -100949,7 +101253,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15913 + - uid: 15970 components: - rot: 1.5707963267948966 rad pos: -14.5,-42.5 @@ -100957,7 +101261,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15914 + - uid: 15971 components: - rot: 3.141592653589793 rad pos: -14.5,-45.5 @@ -100965,7 +101269,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15915 + - uid: 15972 components: - rot: 3.141592653589793 rad pos: -17.5,-58.5 @@ -100973,7 +101277,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15916 + - uid: 15973 components: - rot: 3.141592653589793 rad pos: -17.5,-59.5 @@ -100981,7 +101285,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15917 + - uid: 15974 components: - rot: 1.5707963267948966 rad pos: -16.5,-60.5 @@ -100989,7 +101293,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15918 + - uid: 15975 components: - rot: 1.5707963267948966 rad pos: -15.5,-60.5 @@ -100997,7 +101301,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15919 + - uid: 15976 components: - rot: 3.141592653589793 rad pos: -12.5,-46.5 @@ -101005,7 +101309,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15920 + - uid: 15977 components: - rot: 3.141592653589793 rad pos: -12.5,-43.5 @@ -101013,7 +101317,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15921 + - uid: 15978 components: - rot: 1.5707963267948966 rad pos: -13.5,-42.5 @@ -101021,7 +101325,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15922 + - uid: 15979 components: - rot: 1.5707963267948966 rad pos: -11.5,-42.5 @@ -101029,42 +101333,42 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15923 + - uid: 15980 components: - pos: -9.5,-59.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15924 + - uid: 15981 components: - pos: -9.5,-58.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15925 + - uid: 15982 components: - pos: -9.5,-57.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15926 + - uid: 15983 components: - pos: -9.5,-56.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15927 + - uid: 15984 components: - pos: -9.5,-55.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15928 + - uid: 15985 components: - rot: 3.141592653589793 rad pos: -1.5,-52.5 @@ -101072,42 +101376,42 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15929 + - uid: 15986 components: - pos: -7.5,-52.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15930 + - uid: 15987 components: - pos: -7.5,-51.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15931 + - uid: 15988 components: - pos: -7.5,-50.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15932 + - uid: 15989 components: - pos: -7.5,-49.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15933 + - uid: 15990 components: - pos: -0.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15934 + - uid: 15991 components: - rot: -1.5707963267948966 rad pos: 0.5,-41.5 @@ -101115,7 +101419,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15935 + - uid: 15992 components: - rot: -1.5707963267948966 rad pos: 2.5,-41.5 @@ -101123,21 +101427,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15936 + - uid: 15993 components: - pos: -8.5,-44.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15937 + - uid: 15994 components: - pos: -8.5,-43.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15938 + - uid: 15995 components: - rot: 3.141592653589793 rad pos: 5.5,-43.5 @@ -101145,7 +101449,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15939 + - uid: 15996 components: - rot: -1.5707963267948966 rad pos: -9.5,-60.5 @@ -101153,7 +101457,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15940 + - uid: 15997 components: - rot: -1.5707963267948966 rad pos: -8.5,-60.5 @@ -101161,14 +101465,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15941 + - uid: 15998 components: - pos: -6.5,-64.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15942 + - uid: 15999 components: - rot: 3.141592653589793 rad pos: -7.5,-61.5 @@ -101176,7 +101480,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15943 + - uid: 16000 components: - rot: -1.5707963267948966 rad pos: -5.5,-59.5 @@ -101184,14 +101488,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15944 + - uid: 16001 components: - pos: 34.5,1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15945 + - uid: 16002 components: - rot: 1.5707963267948966 rad pos: 29.5,9.5 @@ -101199,7 +101503,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15946 + - uid: 16003 components: - rot: 1.5707963267948966 rad pos: 37.5,0.5 @@ -101207,7 +101511,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15947 + - uid: 16004 components: - rot: 1.5707963267948966 rad pos: 7.5,8.5 @@ -101215,14 +101519,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15948 + - uid: 16005 components: - pos: 17.5,-3.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15949 + - uid: 16006 components: - rot: -1.5707963267948966 rad pos: 11.5,-0.5 @@ -101230,7 +101534,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15950 + - uid: 16007 components: - rot: -1.5707963267948966 rad pos: 15.5,-0.5 @@ -101238,7 +101542,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15951 + - uid: 16008 components: - rot: -1.5707963267948966 rad pos: 38.5,15.5 @@ -101246,7 +101550,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15952 + - uid: 16009 components: - rot: -1.5707963267948966 rad pos: 36.5,15.5 @@ -101254,7 +101558,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15953 + - uid: 16010 components: - rot: -1.5707963267948966 rad pos: 34.5,1.5 @@ -101262,7 +101566,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15954 + - uid: 16011 components: - rot: -1.5707963267948966 rad pos: 30.5,1.5 @@ -101270,7 +101574,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15955 + - uid: 16012 components: - rot: -1.5707963267948966 rad pos: 31.5,1.5 @@ -101278,7 +101582,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15956 + - uid: 16013 components: - rot: -1.5707963267948966 rad pos: 32.5,1.5 @@ -101286,7 +101590,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15957 + - uid: 16014 components: - rot: -1.5707963267948966 rad pos: 36.5,1.5 @@ -101294,14 +101598,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15958 + - uid: 16015 components: - pos: 42.5,14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15959 + - uid: 16016 components: - rot: 1.5707963267948966 rad pos: 22.5,16.5 @@ -101309,7 +101613,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15960 + - uid: 16017 components: - rot: 1.5707963267948966 rad pos: 24.5,17.5 @@ -101317,7 +101621,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15961 + - uid: 16018 components: - rot: 1.5707963267948966 rad pos: 25.5,17.5 @@ -101325,7 +101629,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15962 + - uid: 16019 components: - rot: 1.5707963267948966 rad pos: 26.5,17.5 @@ -101333,35 +101637,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15963 + - uid: 16020 components: - pos: 38.5,2.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15964 + - uid: 16021 components: - pos: 38.5,4.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15965 + - uid: 16022 components: - pos: 25.5,10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15966 + - uid: 16023 components: - pos: 25.5,11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15967 + - uid: 16024 components: - rot: 1.5707963267948966 rad pos: 26.5,12.5 @@ -101369,14 +101673,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15968 + - uid: 16025 components: - pos: 21.5,11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15969 + - uid: 16026 components: - rot: 1.5707963267948966 rad pos: 27.5,9.5 @@ -101384,7 +101688,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15970 + - uid: 16027 components: - rot: 1.5707963267948966 rad pos: -6.5,-1.5 @@ -101392,21 +101696,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15971 + - uid: 16028 components: - pos: -5.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15972 + - uid: 16029 components: - pos: -5.5,-17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15973 + - uid: 16030 components: - rot: -1.5707963267948966 rad pos: 29.5,-42.5 @@ -101414,7 +101718,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15974 + - uid: 16031 components: - rot: 3.141592653589793 rad pos: 17.5,-2.5 @@ -101422,7 +101726,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15975 + - uid: 16032 components: - rot: 3.141592653589793 rad pos: 38.5,9.5 @@ -101430,7 +101734,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15976 + - uid: 16033 components: - rot: -1.5707963267948966 rad pos: 7.5,12.5 @@ -101438,7 +101742,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15977 + - uid: 16034 components: - rot: 3.141592653589793 rad pos: -3.5,-56.5 @@ -101446,7 +101750,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15978 + - uid: 16035 components: - rot: 3.141592653589793 rad pos: -3.5,-57.5 @@ -101454,7 +101758,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15979 + - uid: 16036 components: - rot: 3.141592653589793 rad pos: -1.5,-47.5 @@ -101462,42 +101766,42 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15980 + - uid: 16037 components: - pos: 15.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15981 + - uid: 16038 components: - pos: -3.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15982 + - uid: 16039 components: - pos: -3.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15983 + - uid: 16040 components: - pos: -3.5,-22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15984 + - uid: 16041 components: - pos: -3.5,-18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15985 + - uid: 16042 components: - rot: 1.5707963267948966 rad pos: 10.5,-27.5 @@ -101505,7 +101809,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15986 + - uid: 16043 components: - rot: -1.5707963267948966 rad pos: 7.5,-27.5 @@ -101513,7 +101817,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15987 + - uid: 16044 components: - rot: 1.5707963267948966 rad pos: 6.5,-27.5 @@ -101521,7 +101825,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15988 + - uid: 16045 components: - rot: 1.5707963267948966 rad pos: 11.5,-25.5 @@ -101529,14 +101833,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15989 + - uid: 16046 components: - pos: -20.5,29.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15990 + - uid: 16047 components: - rot: -1.5707963267948966 rad pos: 19.5,-43.5 @@ -101544,7 +101848,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15991 + - uid: 16048 components: - rot: 1.5707963267948966 rad pos: 26.5,-16.5 @@ -101552,7 +101856,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15992 + - uid: 16049 components: - rot: 1.5707963267948966 rad pos: 32.5,-16.5 @@ -101560,7 +101864,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 15993 + - uid: 16050 components: - rot: 1.5707963267948966 rad pos: -6.5,1.5 @@ -101568,7 +101872,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15994 + - uid: 16051 components: - rot: 1.5707963267948966 rad pos: -7.5,1.5 @@ -101576,21 +101880,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15995 + - uid: 16052 components: - pos: -8.5,5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15996 + - uid: 16053 components: - pos: -8.5,6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15997 + - uid: 16054 components: - rot: 1.5707963267948966 rad pos: 11.5,17.5 @@ -101598,7 +101902,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15998 + - uid: 16055 components: - rot: -1.5707963267948966 rad pos: 23.5,10.5 @@ -101606,14 +101910,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 15999 + - uid: 16056 components: - pos: -23.5,-82.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16000 + - uid: 16057 components: - rot: 1.5707963267948966 rad pos: 30.5,-16.5 @@ -101621,7 +101925,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16001 + - uid: 16058 components: - rot: 3.141592653589793 rad pos: 8.5,1.5 @@ -101629,7 +101933,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16002 + - uid: 16059 components: - rot: 3.141592653589793 rad pos: 30.5,-19.5 @@ -101637,14 +101941,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16003 + - uid: 16060 components: - pos: -5.5,-23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16004 + - uid: 16061 components: - rot: -1.5707963267948966 rad pos: 4.5,-42.5 @@ -101652,7 +101956,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16005 + - uid: 16062 components: - rot: 1.5707963267948966 rad pos: -10.5,-27.5 @@ -101660,7 +101964,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16006 + - uid: 16063 components: - rot: 1.5707963267948966 rad pos: -6.5,-25.5 @@ -101668,7 +101972,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16007 + - uid: 16064 components: - rot: 1.5707963267948966 rad pos: -4.5,-25.5 @@ -101676,7 +101980,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16008 + - uid: 16065 components: - rot: -1.5707963267948966 rad pos: 29.5,-18.5 @@ -101684,7 +101988,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16009 + - uid: 16066 components: - rot: -1.5707963267948966 rad pos: 27.5,-18.5 @@ -101692,7 +101996,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16010 + - uid: 16067 components: - rot: 1.5707963267948966 rad pos: 28.5,-16.5 @@ -101700,7 +102004,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16011 + - uid: 16068 components: - rot: 1.5707963267948966 rad pos: 25.5,-16.5 @@ -101708,7 +102012,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16012 + - uid: 16069 components: - rot: 3.141592653589793 rad pos: 14.5,-29.5 @@ -101716,7 +102020,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16013 + - uid: 16070 components: - rot: 1.5707963267948966 rad pos: 8.5,-27.5 @@ -101724,7 +102028,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16014 + - uid: 16071 components: - rot: 1.5707963267948966 rad pos: 11.5,-27.5 @@ -101732,14 +102036,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16015 + - uid: 16072 components: - pos: -3.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16016 + - uid: 16073 components: - rot: 3.141592653589793 rad pos: 36.5,-29.5 @@ -101747,14 +102051,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16017 + - uid: 16074 components: - pos: 47.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16018 + - uid: 16075 components: - rot: -1.5707963267948966 rad pos: 9.5,16.5 @@ -101762,7 +102066,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16019 + - uid: 16076 components: - rot: -1.5707963267948966 rad pos: 13.5,16.5 @@ -101770,7 +102074,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16020 + - uid: 16077 components: - rot: -1.5707963267948966 rad pos: 35.5,1.5 @@ -101778,7 +102082,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16021 + - uid: 16078 components: - rot: -1.5707963267948966 rad pos: 29.5,1.5 @@ -101786,7 +102090,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16022 + - uid: 16079 components: - rot: -1.5707963267948966 rad pos: 34.5,15.5 @@ -101794,7 +102098,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16023 + - uid: 16080 components: - rot: -1.5707963267948966 rad pos: 32.5,15.5 @@ -101802,7 +102106,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16024 + - uid: 16081 components: - rot: -1.5707963267948966 rad pos: 41.5,15.5 @@ -101810,7 +102114,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16025 + - uid: 16082 components: - rot: -1.5707963267948966 rad pos: 13.5,-0.5 @@ -101818,7 +102122,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16026 + - uid: 16083 components: - rot: -1.5707963267948966 rad pos: 30.5,-42.5 @@ -101826,7 +102130,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16027 + - uid: 16084 components: - rot: -1.5707963267948966 rad pos: -7.5,-42.5 @@ -101834,7 +102138,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16028 + - uid: 16085 components: - rot: 1.5707963267948966 rad pos: -5.5,-42.5 @@ -101842,7 +102146,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16029 + - uid: 16086 components: - rot: -1.5707963267948966 rad pos: 2.5,-42.5 @@ -101850,7 +102154,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16030 + - uid: 16087 components: - rot: 3.141592653589793 rad pos: 14.5,-33.5 @@ -101858,7 +102162,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16031 + - uid: 16088 components: - rot: -1.5707963267948966 rad pos: 10.5,-42.5 @@ -101866,7 +102170,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16032 + - uid: 16089 components: - rot: 3.141592653589793 rad pos: -5.5,-33.5 @@ -101874,7 +102178,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16033 + - uid: 16090 components: - rot: 3.141592653589793 rad pos: -5.5,-31.5 @@ -101882,7 +102186,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16034 + - uid: 16091 components: - rot: 3.141592653589793 rad pos: -5.5,-29.5 @@ -101890,7 +102194,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16035 + - uid: 16092 components: - rot: 1.5707963267948966 rad pos: 19.5,-5.5 @@ -101898,14 +102202,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16036 + - uid: 16093 components: - pos: 10.5,7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16037 + - uid: 16094 components: - rot: 3.141592653589793 rad pos: 42.5,7.5 @@ -101913,7 +102217,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16038 + - uid: 16095 components: - rot: 3.141592653589793 rad pos: 8.5,4.5 @@ -101921,7 +102225,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16039 + - uid: 16096 components: - rot: 3.141592653589793 rad pos: 38.5,7.5 @@ -101929,35 +102233,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16040 + - uid: 16097 components: - pos: 34.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16041 + - uid: 16098 components: - pos: 10.5,18.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16042 + - uid: 16099 components: - pos: -5.5,-26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16043 + - uid: 16100 components: - pos: -9.5,-4.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16044 + - uid: 16101 components: - rot: -1.5707963267948966 rad pos: 6.5,-61.5 @@ -101965,21 +102269,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16045 + - uid: 16102 components: - pos: 0.5,14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16046 + - uid: 16103 components: - pos: 34.5,4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16047 + - uid: 16104 components: - rot: 3.141592653589793 rad pos: 28.5,-32.5 @@ -101987,7 +102291,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16048 + - uid: 16105 components: - rot: 1.5707963267948966 rad pos: 15.5,-30.5 @@ -101995,7 +102299,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16049 + - uid: 16106 components: - rot: 1.5707963267948966 rad pos: 17.5,-30.5 @@ -102003,7 +102307,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16050 + - uid: 16107 components: - rot: -1.5707963267948966 rad pos: 14.5,16.5 @@ -102011,7 +102315,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16051 + - uid: 16108 components: - rot: -1.5707963267948966 rad pos: 10.5,16.5 @@ -102019,7 +102323,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16052 + - uid: 16109 components: - rot: -1.5707963267948966 rad pos: 8.5,16.5 @@ -102027,28 +102331,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16053 + - uid: 16110 components: - pos: 21.5,10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16054 + - uid: 16111 components: - pos: 21.5,9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16055 + - uid: 16112 components: - pos: 21.5,8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16056 + - uid: 16113 components: - rot: 1.5707963267948966 rad pos: 27.5,12.5 @@ -102056,21 +102360,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16057 + - uid: 16114 components: - pos: 25.5,9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16058 + - uid: 16115 components: - pos: 25.5,8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16059 + - uid: 16116 components: - rot: -1.5707963267948966 rad pos: 22.5,7.5 @@ -102078,7 +102382,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16060 + - uid: 16117 components: - rot: -1.5707963267948966 rad pos: 23.5,7.5 @@ -102086,7 +102390,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16061 + - uid: 16118 components: - rot: 1.5707963267948966 rad pos: 24.5,7.5 @@ -102094,28 +102398,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16062 + - uid: 16119 components: - pos: 38.5,3.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16063 + - uid: 16120 components: - pos: 31.5,13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16064 + - uid: 16121 components: - pos: 31.5,14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16065 + - uid: 16122 components: - rot: -1.5707963267948966 rad pos: 30.5,15.5 @@ -102123,7 +102427,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16066 + - uid: 16123 components: - rot: 1.5707963267948966 rad pos: 20.5,-5.5 @@ -102131,35 +102435,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16067 + - uid: 16124 components: - pos: 20.5,12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16068 + - uid: 16125 components: - pos: 20.5,11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16069 + - uid: 16126 components: - pos: 20.5,9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16070 + - uid: 16127 components: - pos: 20.5,8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16071 + - uid: 16128 components: - rot: 1.5707963267948966 rad pos: 19.5,7.5 @@ -102167,7 +102471,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16072 + - uid: 16129 components: - rot: 3.141592653589793 rad pos: 18.5,6.5 @@ -102175,7 +102479,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16073 + - uid: 16130 components: - rot: 3.141592653589793 rad pos: 18.5,5.5 @@ -102183,7 +102487,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16074 + - uid: 16131 components: - rot: 3.141592653589793 rad pos: 18.5,4.5 @@ -102191,7 +102495,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16075 + - uid: 16132 components: - rot: 1.5707963267948966 rad pos: 19.5,13.5 @@ -102199,7 +102503,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16076 + - uid: 16133 components: - rot: 1.5707963267948966 rad pos: 18.5,13.5 @@ -102207,7 +102511,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16077 + - uid: 16134 components: - rot: 3.141592653589793 rad pos: 17.5,14.5 @@ -102215,7 +102519,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16078 + - uid: 16135 components: - rot: 3.141592653589793 rad pos: 17.5,15.5 @@ -102223,7 +102527,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16079 + - uid: 16136 components: - rot: 3.141592653589793 rad pos: 5.5,18.5 @@ -102231,7 +102535,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16080 + - uid: 16137 components: - rot: 1.5707963267948966 rad pos: 14.5,17.5 @@ -102239,7 +102543,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16081 + - uid: 16138 components: - rot: 1.5707963267948966 rad pos: 3.5,17.5 @@ -102247,7 +102551,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16082 + - uid: 16139 components: - rot: 1.5707963267948966 rad pos: 2.5,17.5 @@ -102255,7 +102559,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16083 + - uid: 16140 components: - rot: 1.5707963267948966 rad pos: -3.5,13.5 @@ -102263,14 +102567,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16084 + - uid: 16141 components: - pos: -8.5,3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16085 + - uid: 16142 components: - rot: 1.5707963267948966 rad pos: -4.5,1.5 @@ -102278,7 +102582,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16086 + - uid: 16143 components: - rot: 1.5707963267948966 rad pos: -3.5,1.5 @@ -102286,7 +102590,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16087 + - uid: 16144 components: - rot: 1.5707963267948966 rad pos: -2.5,1.5 @@ -102294,7 +102598,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16088 + - uid: 16145 components: - rot: 1.5707963267948966 rad pos: -1.5,1.5 @@ -102302,7 +102606,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16089 + - uid: 16146 components: - rot: 1.5707963267948966 rad pos: 0.5,1.5 @@ -102310,49 +102614,49 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16090 + - uid: 16147 components: - pos: 1.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16091 + - uid: 16148 components: - pos: 1.5,-0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16092 + - uid: 16149 components: - pos: 1.5,-1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16093 + - uid: 16150 components: - pos: 1.5,-2.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16094 + - uid: 16151 components: - pos: 9.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16095 + - uid: 16152 components: - pos: 9.5,-0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16096 + - uid: 16153 components: - rot: 1.5707963267948966 rad pos: 10.5,-1.5 @@ -102360,56 +102664,56 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16097 + - uid: 16154 components: - pos: 11.5,-2.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16098 + - uid: 16155 components: - pos: 11.5,-3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16099 + - uid: 16156 components: - pos: 11.5,-4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16100 + - uid: 16157 components: - pos: 11.5,-5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16101 + - uid: 16158 components: - pos: 11.5,-6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16102 + - uid: 16159 components: - pos: 11.5,-7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16103 + - uid: 16160 components: - pos: 11.5,-8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16104 + - uid: 16161 components: - rot: -1.5707963267948966 rad pos: 9.5,-9.5 @@ -102417,7 +102721,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16105 + - uid: 16162 components: - rot: 3.141592653589793 rad pos: 19.5,19.5 @@ -102425,7 +102729,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16106 + - uid: 16163 components: - rot: 1.5707963267948966 rad pos: 26.5,21.5 @@ -102433,7 +102737,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16107 + - uid: 16164 components: - rot: 1.5707963267948966 rad pos: 27.5,21.5 @@ -102441,21 +102745,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16108 + - uid: 16165 components: - pos: 23.5,18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16109 + - uid: 16166 components: - pos: 23.5,19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16110 + - uid: 16167 components: - rot: 1.5707963267948966 rad pos: 24.5,20.5 @@ -102463,7 +102767,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16111 + - uid: 16168 components: - rot: 3.141592653589793 rad pos: 25.5,21.5 @@ -102471,7 +102775,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16112 + - uid: 16169 components: - rot: -1.5707963267948966 rad pos: -15.5,-38.5 @@ -102479,7 +102783,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16113 + - uid: 16170 components: - rot: -1.5707963267948966 rad pos: -14.5,-38.5 @@ -102487,21 +102791,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16114 + - uid: 16171 components: - pos: 7.5,17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16115 + - uid: 16172 components: - pos: 17.5,19.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16116 + - uid: 16173 components: - rot: 3.141592653589793 rad pos: 16.5,19.5 @@ -102509,14 +102813,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16117 + - uid: 16174 components: - pos: 34.5,2.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16118 + - uid: 16175 components: - rot: -1.5707963267948966 rad pos: 30.5,0.5 @@ -102524,7 +102828,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16119 + - uid: 16176 components: - rot: 1.5707963267948966 rad pos: -6.5,-64.5 @@ -102532,14 +102836,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16120 + - uid: 16177 components: - pos: 21.5,-12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16121 + - uid: 16178 components: - rot: 3.141592653589793 rad pos: 34.5,-0.5 @@ -102547,7 +102851,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16122 + - uid: 16179 components: - rot: 3.141592653589793 rad pos: 34.5,-1.5 @@ -102555,7 +102859,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16123 + - uid: 16180 components: - rot: 3.141592653589793 rad pos: 34.5,-2.5 @@ -102563,7 +102867,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16124 + - uid: 16181 components: - rot: 3.141592653589793 rad pos: 34.5,-3.5 @@ -102571,7 +102875,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16125 + - uid: 16182 components: - rot: 3.141592653589793 rad pos: 34.5,-4.5 @@ -102579,7 +102883,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16126 + - uid: 16183 components: - rot: 3.141592653589793 rad pos: 34.5,-5.5 @@ -102587,7 +102891,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16127 + - uid: 16184 components: - rot: -1.5707963267948966 rad pos: 33.5,-6.5 @@ -102595,7 +102899,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16128 + - uid: 16185 components: - rot: -1.5707963267948966 rad pos: 32.5,-6.5 @@ -102603,7 +102907,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16129 + - uid: 16186 components: - rot: -1.5707963267948966 rad pos: 30.5,-6.5 @@ -102611,7 +102915,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16130 + - uid: 16187 components: - rot: -1.5707963267948966 rad pos: 28.5,-6.5 @@ -102619,7 +102923,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16131 + - uid: 16188 components: - rot: 1.5707963267948966 rad pos: 5.5,19.5 @@ -102627,7 +102931,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16132 + - uid: 16189 components: - rot: 1.5707963267948966 rad pos: 3.5,19.5 @@ -102635,7 +102939,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16133 + - uid: 16190 components: - rot: 1.5707963267948966 rad pos: 2.5,19.5 @@ -102643,7 +102947,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16134 + - uid: 16191 components: - rot: -1.5707963267948966 rad pos: 1.5,19.5 @@ -102651,21 +102955,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16135 + - uid: 16192 components: - pos: 26.5,-9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16136 + - uid: 16193 components: - pos: 26.5,-10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16137 + - uid: 16194 components: - rot: -1.5707963267948966 rad pos: 24.5,-12.5 @@ -102673,7 +102977,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16138 + - uid: 16195 components: - rot: -1.5707963267948966 rad pos: 22.5,-12.5 @@ -102681,7 +102985,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16139 + - uid: 16196 components: - rot: 3.141592653589793 rad pos: 26.5,-14.5 @@ -102689,7 +102993,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16140 + - uid: 16197 components: - rot: 3.141592653589793 rad pos: 26.5,-15.5 @@ -102697,7 +103001,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16141 + - uid: 16198 components: - rot: 3.141592653589793 rad pos: 26.5,-17.5 @@ -102705,7 +103009,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16142 + - uid: 16199 components: - rot: 1.5707963267948966 rad pos: 23.5,-23.5 @@ -102713,7 +103017,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16143 + - uid: 16200 components: - rot: 1.5707963267948966 rad pos: 22.5,-23.5 @@ -102721,7 +103025,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16144 + - uid: 16201 components: - rot: 1.5707963267948966 rad pos: 28.5,-22.5 @@ -102729,7 +103033,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16145 + - uid: 16202 components: - rot: 3.141592653589793 rad pos: 21.5,-15.5 @@ -102737,7 +103041,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16146 + - uid: 16203 components: - rot: 1.5707963267948966 rad pos: 21.5,-23.5 @@ -102745,21 +103049,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16147 + - uid: 16204 components: - pos: 24.5,-26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16148 + - uid: 16205 components: - pos: 24.5,-28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16149 + - uid: 16206 components: - rot: 3.141592653589793 rad pos: 26.5,-25.5 @@ -102767,7 +103071,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16150 + - uid: 16207 components: - rot: 3.141592653589793 rad pos: 26.5,-28.5 @@ -102775,7 +103079,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16151 + - uid: 16208 components: - rot: 3.141592653589793 rad pos: 26.5,-29.5 @@ -102783,7 +103087,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16152 + - uid: 16209 components: - rot: -1.5707963267948966 rad pos: 28.5,-30.5 @@ -102791,7 +103095,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16153 + - uid: 16210 components: - rot: -1.5707963267948966 rad pos: 26.5,-29.5 @@ -102799,28 +103103,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16154 + - uid: 16211 components: - pos: 28.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16155 + - uid: 16212 components: - pos: 22.5,-31.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16156 + - uid: 16213 components: - pos: 22.5,-33.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16157 + - uid: 16214 components: - rot: 3.141592653589793 rad pos: 21.5,-29.5 @@ -102828,21 +103132,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16158 + - uid: 16215 components: - pos: -11.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16159 + - uid: 16216 components: - pos: -8.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16160 + - uid: 16217 components: - rot: 1.5707963267948966 rad pos: 2.5,-25.5 @@ -102850,7 +103154,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16161 + - uid: 16218 components: - rot: 1.5707963267948966 rad pos: -6.5,7.5 @@ -102858,7 +103162,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16162 + - uid: 16219 components: - rot: 1.5707963267948966 rad pos: -7.5,7.5 @@ -102866,7 +103170,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16163 + - uid: 16220 components: - rot: 1.5707963267948966 rad pos: -8.5,7.5 @@ -102874,7 +103178,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16164 + - uid: 16221 components: - rot: 1.5707963267948966 rad pos: -9.5,7.5 @@ -102882,7 +103186,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16165 + - uid: 16222 components: - rot: -1.5707963267948966 rad pos: -9.5,1.5 @@ -102890,7 +103194,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16166 + - uid: 16223 components: - rot: -1.5707963267948966 rad pos: -11.5,1.5 @@ -102898,7 +103202,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16167 + - uid: 16224 components: - rot: -1.5707963267948966 rad pos: -12.5,1.5 @@ -102906,63 +103210,63 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16168 + - uid: 16225 components: - pos: -9.5,-2.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16169 + - uid: 16226 components: - pos: -9.5,-3.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16170 + - uid: 16227 components: - pos: -10.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16171 + - uid: 16228 components: - pos: -10.5,-0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16172 + - uid: 16229 components: - pos: -10.5,-1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16173 + - uid: 16230 components: - pos: -10.5,-3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16174 + - uid: 16231 components: - pos: -10.5,-4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16175 + - uid: 16232 components: - pos: -10.5,-5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16176 + - uid: 16233 components: - rot: 3.141592653589793 rad pos: -2.5,-64.5 @@ -102970,7 +103274,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16177 + - uid: 16234 components: - rot: 3.141592653589793 rad pos: -2.5,-63.5 @@ -102978,7 +103282,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16178 + - uid: 16235 components: - rot: 3.141592653589793 rad pos: -2.5,-62.5 @@ -102986,7 +103290,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16179 + - uid: 16236 components: - rot: -1.5707963267948966 rad pos: -3.5,-61.5 @@ -102994,7 +103298,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16180 + - uid: 16237 components: - rot: -1.5707963267948966 rad pos: -0.5,-61.5 @@ -103002,7 +103306,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16181 + - uid: 16238 components: - rot: -1.5707963267948966 rad pos: 0.5,-61.5 @@ -103010,7 +103314,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16182 + - uid: 16239 components: - rot: -1.5707963267948966 rad pos: 1.5,-61.5 @@ -103018,14 +103322,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16183 + - uid: 16240 components: - pos: -8.5,-63.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16184 + - uid: 16241 components: - rot: -1.5707963267948966 rad pos: -10.5,-61.5 @@ -103033,7 +103337,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16185 + - uid: 16242 components: - rot: -1.5707963267948966 rad pos: -11.5,-61.5 @@ -103041,7 +103345,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16186 + - uid: 16243 components: - rot: -1.5707963267948966 rad pos: -12.5,-61.5 @@ -103049,7 +103353,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16187 + - uid: 16244 components: - rot: -1.5707963267948966 rad pos: -13.5,-61.5 @@ -103057,7 +103361,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16188 + - uid: 16245 components: - rot: -1.5707963267948966 rad pos: -14.5,-61.5 @@ -103065,28 +103369,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16189 + - uid: 16246 components: - pos: -15.5,-62.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16190 + - uid: 16247 components: - pos: -15.5,-63.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16191 + - uid: 16248 components: - pos: -15.5,-64.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16192 + - uid: 16249 components: - rot: 3.141592653589793 rad pos: -0.5,-61.5 @@ -103094,7 +103398,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16193 + - uid: 16250 components: - rot: 3.141592653589793 rad pos: -0.5,-62.5 @@ -103102,7 +103406,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16194 + - uid: 16251 components: - rot: 3.141592653589793 rad pos: -0.5,-64.5 @@ -103110,7 +103414,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16195 + - uid: 16252 components: - rot: -1.5707963267948966 rad pos: -10.5,-60.5 @@ -103118,7 +103422,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16196 + - uid: 16253 components: - rot: -1.5707963267948966 rad pos: -11.5,-60.5 @@ -103126,28 +103430,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16197 + - uid: 16254 components: - pos: -12.5,-62.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16198 + - uid: 16255 components: - pos: -12.5,-63.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16199 + - uid: 16256 components: - pos: -12.5,-64.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16200 + - uid: 16257 components: - rot: -1.5707963267948966 rad pos: 0.5,-60.5 @@ -103155,7 +103459,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16201 + - uid: 16258 components: - rot: -1.5707963267948966 rad pos: 1.5,-60.5 @@ -103163,7 +103467,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16202 + - uid: 16259 components: - rot: 1.5707963267948966 rad pos: 3.5,-60.5 @@ -103171,7 +103475,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16203 + - uid: 16260 components: - rot: -1.5707963267948966 rad pos: 4.5,-60.5 @@ -103179,7 +103483,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16204 + - uid: 16261 components: - rot: 3.141592653589793 rad pos: 5.5,-44.5 @@ -103187,7 +103491,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16205 + - uid: 16262 components: - rot: 3.141592653589793 rad pos: 5.5,-42.5 @@ -103195,7 +103499,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16206 + - uid: 16263 components: - rot: 3.141592653589793 rad pos: 3.5,-43.5 @@ -103203,7 +103507,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16207 + - uid: 16264 components: - rot: -1.5707963267948966 rad pos: 1.5,-42.5 @@ -103211,7 +103515,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16208 + - uid: 16265 components: - rot: -1.5707963267948966 rad pos: 0.5,-42.5 @@ -103219,7 +103523,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16209 + - uid: 16266 components: - rot: -1.5707963267948966 rad pos: -0.5,-42.5 @@ -103227,7 +103531,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16210 + - uid: 16267 components: - rot: -1.5707963267948966 rad pos: -1.5,-42.5 @@ -103235,7 +103539,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16211 + - uid: 16268 components: - rot: -1.5707963267948966 rad pos: -2.5,-42.5 @@ -103243,7 +103547,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16212 + - uid: 16269 components: - rot: -1.5707963267948966 rad pos: 4.5,-41.5 @@ -103251,7 +103555,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16213 + - uid: 16270 components: - rot: 3.141592653589793 rad pos: -1.5,-51.5 @@ -103259,7 +103563,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16214 + - uid: 16271 components: - rot: 3.141592653589793 rad pos: -9.5,-60.5 @@ -103267,7 +103571,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16215 + - uid: 16272 components: - rot: 1.5707963267948966 rad pos: -13.5,-60.5 @@ -103275,7 +103579,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16216 + - uid: 16273 components: - rot: -1.5707963267948966 rad pos: -13.5,-41.5 @@ -103283,7 +103587,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16217 + - uid: 16274 components: - rot: -1.5707963267948966 rad pos: 19.5,-29.5 @@ -103291,7 +103595,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16218 + - uid: 16275 components: - rot: -1.5707963267948966 rad pos: 21.5,10.5 @@ -103299,7 +103603,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16219 + - uid: 16276 components: - rot: 1.5707963267948966 rad pos: 6.5,-25.5 @@ -103307,7 +103611,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16220 + - uid: 16277 components: - rot: 1.5707963267948966 rad pos: -4.5,-27.5 @@ -103315,7 +103619,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16221 + - uid: 16278 components: - rot: 1.5707963267948966 rad pos: -3.5,-27.5 @@ -103323,7 +103627,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16222 + - uid: 16279 components: - rot: 1.5707963267948966 rad pos: -2.5,-27.5 @@ -103331,7 +103635,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16223 + - uid: 16280 components: - rot: 1.5707963267948966 rad pos: 0.5,-27.5 @@ -103339,7 +103643,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16224 + - uid: 16281 components: - rot: 1.5707963267948966 rad pos: -9.5,-27.5 @@ -103347,42 +103651,42 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16225 + - uid: 16282 components: - pos: -3.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16226 + - uid: 16283 components: - pos: -3.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16227 + - uid: 16284 components: - pos: -3.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16228 + - uid: 16285 components: - pos: -3.5,-37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16229 + - uid: 16286 components: - pos: -3.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16230 + - uid: 16287 components: - rot: 1.5707963267948966 rad pos: 17.5,-41.5 @@ -103390,7 +103694,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16231 + - uid: 16288 components: - rot: 1.5707963267948966 rad pos: 23.5,-43.5 @@ -103398,7 +103702,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16232 + - uid: 16289 components: - rot: -1.5707963267948966 rad pos: 25.5,-43.5 @@ -103406,7 +103710,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16233 + - uid: 16290 components: - rot: -1.5707963267948966 rad pos: 26.5,-43.5 @@ -103414,7 +103718,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16234 + - uid: 16291 components: - rot: -1.5707963267948966 rad pos: 27.5,-43.5 @@ -103422,7 +103726,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16235 + - uid: 16292 components: - rot: -1.5707963267948966 rad pos: 29.5,-43.5 @@ -103430,7 +103734,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16236 + - uid: 16293 components: - rot: -1.5707963267948966 rad pos: 21.5,-12.5 @@ -103438,7 +103742,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16237 + - uid: 16294 components: - rot: 3.141592653589793 rad pos: -11.5,-40.5 @@ -103446,14 +103750,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16238 + - uid: 16295 components: - pos: 35.5,7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16239 + - uid: 16296 components: - rot: 1.5707963267948966 rad pos: -34.5,20.5 @@ -103461,7 +103765,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16240 + - uid: 16297 components: - rot: 1.5707963267948966 rad pos: -32.5,20.5 @@ -103469,7 +103773,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16241 + - uid: 16298 components: - rot: -1.5707963267948966 rad pos: -26.5,-77.5 @@ -103477,7 +103781,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16242 + - uid: 16299 components: - rot: 3.141592653589793 rad pos: -18.5,-74.5 @@ -103485,7 +103789,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16243 + - uid: 16300 components: - rot: 3.141592653589793 rad pos: -18.5,-77.5 @@ -103493,7 +103797,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16244 + - uid: 16301 components: - rot: 1.5707963267948966 rad pos: -24.5,-78.5 @@ -103501,7 +103805,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16245 + - uid: 16302 components: - rot: 1.5707963267948966 rad pos: -25.5,-78.5 @@ -103509,7 +103813,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16246 + - uid: 16303 components: - rot: 1.5707963267948966 rad pos: -17.5,-61.5 @@ -103517,7 +103821,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16247 + - uid: 16304 components: - rot: 1.5707963267948966 rad pos: -16.5,-61.5 @@ -103525,14 +103829,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16248 + - uid: 16305 components: - pos: -24.5,-87.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16249 + - uid: 16306 components: - rot: 1.5707963267948966 rad pos: -18.5,-61.5 @@ -103540,35 +103844,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16250 + - uid: 16307 components: - pos: -3.5,-4.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16251 + - uid: 16308 components: - pos: 35.5,4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16252 + - uid: 16309 components: - pos: 17.5,-4.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16253 + - uid: 16310 components: - pos: 17.5,-1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16254 + - uid: 16311 components: - rot: -1.5707963267948966 rad pos: 16.5,-0.5 @@ -103576,7 +103880,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16255 + - uid: 16312 components: - rot: -1.5707963267948966 rad pos: 12.5,-0.5 @@ -103584,7 +103888,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16256 + - uid: 16313 components: - rot: -1.5707963267948966 rad pos: 35.5,15.5 @@ -103592,7 +103896,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16257 + - uid: 16314 components: - rot: -1.5707963267948966 rad pos: 33.5,15.5 @@ -103600,7 +103904,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16258 + - uid: 16315 components: - rot: 3.141592653589793 rad pos: 21.5,13.5 @@ -103608,7 +103912,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16259 + - uid: 16316 components: - rot: 1.5707963267948966 rad pos: 30.5,9.5 @@ -103616,7 +103920,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16260 + - uid: 16317 components: - rot: -1.5707963267948966 rad pos: -4.5,7.5 @@ -103624,21 +103928,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16261 + - uid: 16318 components: - pos: -3.5,9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16262 + - uid: 16319 components: - pos: 7.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16263 + - uid: 16320 components: - rot: 3.141592653589793 rad pos: 2.5,4.5 @@ -103646,14 +103950,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16264 + - uid: 16321 components: - pos: 0.5,9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16265 + - uid: 16322 components: - rot: 1.5707963267948966 rad pos: -1.5,11.5 @@ -103661,7 +103965,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16266 + - uid: 16323 components: - rot: 1.5707963267948966 rad pos: -7.5,-1.5 @@ -103669,7 +103973,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16267 + - uid: 16324 components: - rot: 1.5707963267948966 rad pos: 1.5,-1.5 @@ -103677,28 +103981,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16268 + - uid: 16325 components: - pos: 10.5,4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16269 + - uid: 16326 components: - pos: 10.5,6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16270 + - uid: 16327 components: - pos: 10.5,5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16271 + - uid: 16328 components: - rot: 3.141592653589793 rad pos: -21.5,-86.5 @@ -103706,14 +104010,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16272 + - uid: 16329 components: - pos: -19.5,-58.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16273 + - uid: 16330 components: - rot: 1.5707963267948966 rad pos: 24.5,-16.5 @@ -103721,7 +104025,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16274 + - uid: 16331 components: - rot: 1.5707963267948966 rad pos: 29.5,-16.5 @@ -103729,21 +104033,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16275 + - uid: 16332 components: - pos: 31.5,-17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16276 + - uid: 16333 components: - pos: 31.5,-15.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16277 + - uid: 16334 components: - rot: 3.141592653589793 rad pos: 10.5,-3.5 @@ -103751,7 +104055,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16278 + - uid: 16335 components: - rot: 3.141592653589793 rad pos: 10.5,-2.5 @@ -103759,7 +104063,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16279 + - uid: 16336 components: - rot: -1.5707963267948966 rad pos: 7.5,-0.5 @@ -103767,7 +104071,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16280 + - uid: 16337 components: - rot: 3.141592653589793 rad pos: 10.5,-1.5 @@ -103775,7 +104079,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16281 + - uid: 16338 components: - rot: 1.5707963267948966 rad pos: 18.5,12.5 @@ -103783,7 +104087,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16282 + - uid: 16339 components: - rot: 1.5707963267948966 rad pos: 19.5,12.5 @@ -103791,7 +104095,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16283 + - uid: 16340 components: - rot: -1.5707963267948966 rad pos: 5.5,-0.5 @@ -103799,7 +104103,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16284 + - uid: 16341 components: - rot: -1.5707963267948966 rad pos: 6.5,-0.5 @@ -103807,7 +104111,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16285 + - uid: 16342 components: - rot: -1.5707963267948966 rad pos: 9.5,-0.5 @@ -103815,7 +104119,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16286 + - uid: 16343 components: - rot: 3.141592653589793 rad pos: -9.5,-41.5 @@ -103823,14 +104127,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16287 + - uid: 16344 components: - pos: 8.5,6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16288 + - uid: 16345 components: - rot: 3.141592653589793 rad pos: 21.5,14.5 @@ -103838,28 +104142,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16289 + - uid: 16346 components: - pos: -3.5,-30.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16290 + - uid: 16347 components: - pos: -3.5,-31.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16291 + - uid: 16348 components: - pos: -3.5,-32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16292 + - uid: 16349 components: - rot: 1.5707963267948966 rad pos: -0.5,-1.5 @@ -103867,7 +104171,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16293 + - uid: 16350 components: - rot: 1.5707963267948966 rad pos: 9.5,-25.5 @@ -103875,7 +104179,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16294 + - uid: 16351 components: - rot: 1.5707963267948966 rad pos: 8.5,-25.5 @@ -103883,7 +104187,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16295 + - uid: 16352 components: - rot: 1.5707963267948966 rad pos: -0.5,13.5 @@ -103891,28 +104195,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16296 + - uid: 16353 components: - pos: -6.5,12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16297 + - uid: 16354 components: - pos: -6.5,9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16298 + - uid: 16355 components: - pos: 15.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16299 + - uid: 16356 components: - rot: 1.5707963267948966 rad pos: 4.5,-27.5 @@ -103920,7 +104224,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16300 + - uid: 16357 components: - rot: 1.5707963267948966 rad pos: 5.5,-27.5 @@ -103928,7 +104232,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16301 + - uid: 16358 components: - rot: 1.5707963267948966 rad pos: 13.5,-43.5 @@ -103936,7 +104240,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16302 + - uid: 16359 components: - rot: -1.5707963267948966 rad pos: 6.5,-42.5 @@ -103944,7 +104248,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16303 + - uid: 16360 components: - rot: 3.141592653589793 rad pos: 14.5,-36.5 @@ -103952,7 +104256,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16304 + - uid: 16361 components: - rot: -1.5707963267948966 rad pos: 11.5,-41.5 @@ -103960,7 +104264,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16305 + - uid: 16362 components: - rot: 3.141592653589793 rad pos: 14.5,-39.5 @@ -103968,7 +104272,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16306 + - uid: 16363 components: - rot: 3.141592653589793 rad pos: 14.5,-40.5 @@ -103976,7 +104280,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16307 + - uid: 16364 components: - rot: -1.5707963267948966 rad pos: 12.5,-41.5 @@ -103984,7 +104288,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16308 + - uid: 16365 components: - rot: 3.141592653589793 rad pos: 14.5,-38.5 @@ -103992,7 +104296,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16309 + - uid: 16366 components: - rot: -1.5707963267948966 rad pos: 13.5,-41.5 @@ -104000,14 +104304,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16310 + - uid: 16367 components: - pos: 15.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16311 + - uid: 16368 components: - rot: -1.5707963267948966 rad pos: 8.5,-41.5 @@ -104015,7 +104319,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16312 + - uid: 16369 components: - rot: -1.5707963267948966 rad pos: 7.5,-41.5 @@ -104023,7 +104327,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16313 + - uid: 16370 components: - rot: -1.5707963267948966 rad pos: 9.5,-41.5 @@ -104031,14 +104335,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16314 + - uid: 16371 components: - pos: 15.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16315 + - uid: 16372 components: - rot: 3.141592653589793 rad pos: 40.5,-72.5 @@ -104046,7 +104350,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16316 + - uid: 16373 components: - rot: 3.141592653589793 rad pos: 16.5,17.5 @@ -104054,7 +104358,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16317 + - uid: 16374 components: - rot: 3.141592653589793 rad pos: 16.5,18.5 @@ -104062,7 +104366,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16318 + - uid: 16375 components: - rot: 3.141592653589793 rad pos: 16.5,20.5 @@ -104070,7 +104374,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16319 + - uid: 16376 components: - rot: 3.141592653589793 rad pos: 16.5,21.5 @@ -104078,7 +104382,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16320 + - uid: 16377 components: - rot: -1.5707963267948966 rad pos: 33.5,0.5 @@ -104086,7 +104390,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16321 + - uid: 16378 components: - rot: -1.5707963267948966 rad pos: 32.5,0.5 @@ -104094,7 +104398,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16322 + - uid: 16379 components: - rot: -1.5707963267948966 rad pos: 31.5,0.5 @@ -104102,7 +104406,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16323 + - uid: 16380 components: - rot: -1.5707963267948966 rad pos: 29.5,0.5 @@ -104110,7 +104414,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16324 + - uid: 16381 components: - rot: -1.5707963267948966 rad pos: 28.5,0.5 @@ -104118,7 +104422,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16325 + - uid: 16382 components: - rot: 3.141592653589793 rad pos: 14.5,-34.5 @@ -104126,14 +104430,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16326 + - uid: 16383 components: - pos: 15.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16327 + - uid: 16384 components: - rot: 3.141592653589793 rad pos: 14.5,-31.5 @@ -104141,49 +104445,49 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16328 + - uid: 16385 components: - pos: 15.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16329 + - uid: 16386 components: - pos: 15.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16330 + - uid: 16387 components: - pos: 15.5,-31.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16331 + - uid: 16388 components: - pos: 15.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16332 + - uid: 16389 components: - pos: 15.5,-20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16333 + - uid: 16390 components: - pos: 15.5,-19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16334 + - uid: 16391 components: - rot: 1.5707963267948966 rad pos: 19.5,-17.5 @@ -104191,14 +104495,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16335 + - uid: 16392 components: - pos: 15.5,-18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16336 + - uid: 16393 components: - rot: 1.5707963267948966 rad pos: 16.5,-17.5 @@ -104206,7 +104510,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16337 + - uid: 16394 components: - rot: 1.5707963267948966 rad pos: 17.5,-17.5 @@ -104214,7 +104518,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16338 + - uid: 16395 components: - rot: 1.5707963267948966 rad pos: 18.5,-17.5 @@ -104222,7 +104526,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16339 + - uid: 16396 components: - rot: 3.141592653589793 rad pos: 15.5,-27.5 @@ -104230,14 +104534,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16340 + - uid: 16397 components: - pos: 26.5,-8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16341 + - uid: 16398 components: - rot: 1.5707963267948966 rad pos: -2.5,-25.5 @@ -104245,7 +104549,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16342 + - uid: 16399 components: - rot: -1.5707963267948966 rad pos: 20.5,-30.5 @@ -104253,7 +104557,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16343 + - uid: 16400 components: - rot: -1.5707963267948966 rad pos: 19.5,-30.5 @@ -104261,7 +104565,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16344 + - uid: 16401 components: - rot: -1.5707963267948966 rad pos: 23.5,-30.5 @@ -104269,14 +104573,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16345 + - uid: 16402 components: - pos: 28.5,-30.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16346 + - uid: 16403 components: - rot: 3.141592653589793 rad pos: 15.5,-28.5 @@ -104284,14 +104588,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16347 + - uid: 16404 components: - pos: -3.5,-16.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16348 + - uid: 16405 components: - rot: 1.5707963267948966 rad pos: 16.5,-30.5 @@ -104299,7 +104603,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16349 + - uid: 16406 components: - rot: 3.141592653589793 rad pos: 15.5,-26.5 @@ -104307,14 +104611,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16350 + - uid: 16407 components: - pos: -3.5,-19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16351 + - uid: 16408 components: - rot: 1.5707963267948966 rad pos: -29.5,-80.5 @@ -104322,7 +104626,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16352 + - uid: 16409 components: - rot: -1.5707963267948966 rad pos: -20.5,-73.5 @@ -104330,14 +104634,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16353 + - uid: 16410 components: - pos: -3.5,8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16354 + - uid: 16411 components: - rot: -1.5707963267948966 rad pos: -8.5,-41.5 @@ -104345,21 +104649,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16355 + - uid: 16412 components: - pos: -23.5,-76.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16356 + - uid: 16413 components: - pos: -23.5,-75.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16357 + - uid: 16414 components: - rot: -1.5707963267948966 rad pos: -19.5,-73.5 @@ -104367,7 +104671,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16358 + - uid: 16415 components: - rot: -1.5707963267948966 rad pos: 8.5,12.5 @@ -104375,7 +104679,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16359 + - uid: 16416 components: - rot: 3.141592653589793 rad pos: 8.5,12.5 @@ -104383,7 +104687,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16360 + - uid: 16417 components: - rot: -1.5707963267948966 rad pos: -9.5,-41.5 @@ -104391,7 +104695,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16361 + - uid: 16418 components: - rot: 3.141592653589793 rad pos: -12.5,-45.5 @@ -104399,14 +104703,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16362 + - uid: 16419 components: - pos: -9.5,-54.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16363 + - uid: 16420 components: - rot: 3.141592653589793 rad pos: -3.5,-54.5 @@ -104414,7 +104718,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16364 + - uid: 16421 components: - rot: 3.141592653589793 rad pos: -3.5,-55.5 @@ -104422,7 +104726,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16365 + - uid: 16422 components: - rot: 3.141592653589793 rad pos: -1.5,-49.5 @@ -104430,7 +104734,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16366 + - uid: 16423 components: - rot: -1.5707963267948966 rad pos: -1.5,-41.5 @@ -104438,7 +104742,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16367 + - uid: 16424 components: - rot: -1.5707963267948966 rad pos: -2.5,-41.5 @@ -104446,28 +104750,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16368 + - uid: 16425 components: - pos: -5.5,-16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16369 + - uid: 16426 components: - pos: -5.5,-13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16370 + - uid: 16427 components: - pos: -5.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16371 + - uid: 16428 components: - rot: -1.5707963267948966 rad pos: -6.5,-41.5 @@ -104475,77 +104779,77 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16372 + - uid: 16429 components: - pos: -5.5,-6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16373 + - uid: 16430 components: - pos: -5.5,-4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16374 + - uid: 16431 components: - pos: -5.5,-3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16375 + - uid: 16432 components: - pos: -5.5,-1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16376 + - uid: 16433 components: - pos: -5.5,-0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16377 + - uid: 16434 components: - pos: -5.5,-12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16378 + - uid: 16435 components: - pos: -5.5,-15.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16379 + - uid: 16436 components: - pos: -5.5,-20.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16380 + - uid: 16437 components: - pos: -5.5,-19.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16381 + - uid: 16438 components: - pos: -5.5,-5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16382 + - uid: 16439 components: - rot: 1.5707963267948966 rad pos: -1.5,13.5 @@ -104553,7 +104857,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16383 + - uid: 16440 components: - rot: 3.141592653589793 rad pos: -1.5,-48.5 @@ -104561,7 +104865,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16384 + - uid: 16441 components: - rot: 3.141592653589793 rad pos: -21.5,-88.5 @@ -104569,7 +104873,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16385 + - uid: 16442 components: - rot: 3.141592653589793 rad pos: 34.5,-31.5 @@ -104577,7 +104881,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16386 + - uid: 16443 components: - rot: -1.5707963267948966 rad pos: -1.5,-14.5 @@ -104585,7 +104889,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16387 + - uid: 16444 components: - rot: 3.141592653589793 rad pos: 34.5,-30.5 @@ -104593,7 +104897,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16388 + - uid: 16445 components: - rot: 1.5707963267948966 rad pos: 43.5,-24.5 @@ -104601,7 +104905,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16389 + - uid: 16446 components: - rot: 1.5707963267948966 rad pos: -28.5,-78.5 @@ -104609,7 +104913,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16390 + - uid: 16447 components: - rot: 1.5707963267948966 rad pos: -29.5,-78.5 @@ -104617,7 +104921,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16391 + - uid: 16448 components: - rot: -1.5707963267948966 rad pos: -21.5,30.5 @@ -104625,7 +104929,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16392 + - uid: 16449 components: - rot: 3.141592653589793 rad pos: 34.5,-37.5 @@ -104633,7 +104937,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16393 + - uid: 16450 components: - rot: 3.141592653589793 rad pos: 34.5,-33.5 @@ -104641,7 +104945,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16394 + - uid: 16451 components: - rot: -1.5707963267948966 rad pos: 30.5,12.5 @@ -104649,7 +104953,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16395 + - uid: 16452 components: - rot: -1.5707963267948966 rad pos: 19.5,16.5 @@ -104657,7 +104961,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16396 + - uid: 16453 components: - rot: 3.141592653589793 rad pos: -12.5,6.5 @@ -104665,7 +104969,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16397 + - uid: 16454 components: - rot: -1.5707963267948966 rad pos: 32.5,12.5 @@ -104673,7 +104977,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16398 + - uid: 16455 components: - rot: 3.141592653589793 rad pos: 30.5,-20.5 @@ -104681,7 +104985,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16399 + - uid: 16456 components: - rot: 3.141592653589793 rad pos: 10.5,10.5 @@ -104689,7 +104993,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16400 + - uid: 16457 components: - rot: 1.5707963267948966 rad pos: 8.5,8.5 @@ -104697,7 +105001,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16401 + - uid: 16458 components: - rot: -1.5707963267948966 rad pos: -22.5,30.5 @@ -104705,7 +105009,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16402 + - uid: 16459 components: - rot: -1.5707963267948966 rad pos: -20.5,29.5 @@ -104713,21 +105017,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16403 + - uid: 16460 components: - pos: -20.5,26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16404 + - uid: 16461 components: - pos: 26.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16405 + - uid: 16462 components: - rot: 3.141592653589793 rad pos: 2.5,-2.5 @@ -104735,35 +105039,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16406 + - uid: 16463 components: - pos: -3.5,-3.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16407 + - uid: 16464 components: - pos: -3.5,-2.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16408 + - uid: 16465 components: - pos: -3.5,-15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16409 + - uid: 16466 components: - pos: 47.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16410 + - uid: 16467 components: - rot: 3.141592653589793 rad pos: 8.5,5.5 @@ -104771,7 +105075,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16411 + - uid: 16468 components: - rot: -1.5707963267948966 rad pos: 29.5,12.5 @@ -104779,7 +105083,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16412 + - uid: 16469 components: - rot: 3.141592653589793 rad pos: 40.5,3.5 @@ -104787,7 +105091,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16413 + - uid: 16470 components: - rot: 1.5707963267948966 rad pos: 42.5,-27.5 @@ -104795,7 +105099,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16414 + - uid: 16471 components: - rot: 1.5707963267948966 rad pos: 17.5,12.5 @@ -104803,7 +105107,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16415 + - uid: 16472 components: - rot: 1.5707963267948966 rad pos: 43.5,-27.5 @@ -104811,7 +105115,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16416 + - uid: 16473 components: - rot: -1.5707963267948966 rad pos: 10.5,12.5 @@ -104819,21 +105123,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16417 + - uid: 16474 components: - pos: 26.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16418 + - uid: 16475 components: - pos: 26.5,-16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16419 + - uid: 16476 components: - rot: -1.5707963267948966 rad pos: 27.5,-30.5 @@ -104841,7 +105145,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16420 + - uid: 16477 components: - rot: -1.5707963267948966 rad pos: 22.5,-42.5 @@ -104849,7 +105153,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16421 + - uid: 16478 components: - rot: -1.5707963267948966 rad pos: 23.5,-42.5 @@ -104857,7 +105161,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16422 + - uid: 16479 components: - rot: -1.5707963267948966 rad pos: 27.5,-42.5 @@ -104865,7 +105169,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16423 + - uid: 16480 components: - rot: 3.141592653589793 rad pos: 8.5,2.5 @@ -104873,14 +105177,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16424 + - uid: 16481 components: - pos: -11.5,-24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16425 + - uid: 16482 components: - rot: 3.141592653589793 rad pos: -8.5,-23.5 @@ -104888,7 +105192,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16426 + - uid: 16483 components: - rot: 3.141592653589793 rad pos: 10.5,9.5 @@ -104896,7 +105200,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16427 + - uid: 16484 components: - rot: -1.5707963267948966 rad pos: 20.5,16.5 @@ -104904,7 +105208,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16428 + - uid: 16485 components: - rot: 1.5707963267948966 rad pos: 23.5,-54.5 @@ -104912,28 +105216,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16429 + - uid: 16486 components: - pos: -3.5,-17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16430 + - uid: 16487 components: - pos: -5.5,-22.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16431 + - uid: 16488 components: - pos: -5.5,-18.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16432 + - uid: 16489 components: - rot: -1.5707963267948966 rad pos: -23.5,30.5 @@ -104941,7 +105245,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16433 + - uid: 16490 components: - rot: -1.5707963267948966 rad pos: -16.5,29.5 @@ -104949,7 +105253,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16434 + - uid: 16491 components: - rot: -1.5707963267948966 rad pos: -19.5,29.5 @@ -104957,7 +105261,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16435 + - uid: 16492 components: - rot: -1.5707963267948966 rad pos: 10.5,-9.5 @@ -104965,7 +105269,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16436 + - uid: 16493 components: - rot: 3.141592653589793 rad pos: 34.5,-34.5 @@ -104973,7 +105277,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16437 + - uid: 16494 components: - rot: 1.5707963267948966 rad pos: 6.5,19.5 @@ -104981,7 +105285,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16438 + - uid: 16495 components: - rot: 3.141592653589793 rad pos: 40.5,1.5 @@ -104989,21 +105293,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16439 + - uid: 16496 components: - pos: 0.5,8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16440 + - uid: 16497 components: - pos: 0.5,10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16441 + - uid: 16498 components: - rot: 1.5707963267948966 rad pos: -0.5,11.5 @@ -105011,7 +105315,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16442 + - uid: 16499 components: - rot: 3.141592653589793 rad pos: 2.5,3.5 @@ -105019,12 +105323,12 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16443 + - uid: 16500 components: - pos: 2.5,12.5 parent: 2 type: Transform - - uid: 16444 + - uid: 16501 components: - rot: 3.141592653589793 rad pos: 8.5,3.5 @@ -105032,21 +105336,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16445 + - uid: 16502 components: - pos: 34.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16447 + - uid: 16503 components: - pos: 2.5,-0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16448 + - uid: 16504 components: - rot: 1.5707963267948966 rad pos: 3.5,0.5 @@ -105054,7 +105358,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16449 + - uid: 16505 components: - rot: 1.5707963267948966 rad pos: -2.5,-1.5 @@ -105062,7 +105366,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16450 + - uid: 16506 components: - rot: 1.5707963267948966 rad pos: -5.5,-1.5 @@ -105070,7 +105374,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16451 + - uid: 16507 components: - rot: 3.141592653589793 rad pos: -1.5,-50.5 @@ -105078,7 +105382,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16452 + - uid: 16508 components: - rot: -1.5707963267948966 rad pos: 37.5,11.5 @@ -105086,7 +105390,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16453 + - uid: 16509 components: - rot: 1.5707963267948966 rad pos: 8.5,17.5 @@ -105094,7 +105398,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16454 + - uid: 16510 components: - rot: 1.5707963267948966 rad pos: 7.5,17.5 @@ -105102,7 +105406,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16455 + - uid: 16511 components: - rot: 1.5707963267948966 rad pos: 6.5,17.5 @@ -105110,14 +105414,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16456 + - uid: 16512 components: - pos: -8.5,7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16457 + - uid: 16513 components: - rot: 1.5707963267948966 rad pos: 12.5,17.5 @@ -105125,7 +105429,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16458 + - uid: 16514 components: - rot: 3.141592653589793 rad pos: -3.5,-58.5 @@ -105133,14 +105437,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16459 + - uid: 16515 components: - pos: -3.5,-20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16460 + - uid: 16516 components: - rot: -1.5707963267948966 rad pos: -6.5,-42.5 @@ -105148,7 +105452,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16461 + - uid: 16517 components: - rot: 3.141592653589793 rad pos: 2.5,2.5 @@ -105156,7 +105460,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16462 + - uid: 16518 components: - rot: -1.5707963267948966 rad pos: 18.5,-12.5 @@ -105164,7 +105468,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16463 + - uid: 16519 components: - rot: 1.5707963267948966 rad pos: 22.5,-16.5 @@ -105172,7 +105476,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16464 + - uid: 16520 components: - rot: 1.5707963267948966 rad pos: 23.5,-16.5 @@ -105180,7 +105484,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16465 + - uid: 16521 components: - rot: 1.5707963267948966 rad pos: 27.5,-16.5 @@ -105188,7 +105492,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16466 + - uid: 16522 components: - rot: 1.5707963267948966 rad pos: 31.5,-16.5 @@ -105196,56 +105500,56 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16467 + - uid: 16523 components: - pos: 21.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16468 + - uid: 16524 components: - pos: 21.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16469 + - uid: 16525 components: - pos: 21.5,-11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16470 + - uid: 16526 components: - pos: 21.5,-9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16471 + - uid: 16527 components: - pos: 21.5,-7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16472 + - uid: 16528 components: - pos: 21.5,-8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16473 + - uid: 16529 components: - pos: 21.5,-6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16474 + - uid: 16530 components: - rot: 3.141592653589793 rad pos: 26.5,-23.5 @@ -105253,7 +105557,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16475 + - uid: 16531 components: - rot: 1.5707963267948966 rad pos: 27.5,-22.5 @@ -105261,14 +105565,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16476 + - uid: 16532 components: - pos: 20.5,-22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16477 + - uid: 16533 components: - rot: 3.141592653589793 rad pos: 26.5,-13.5 @@ -105276,35 +105580,35 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16478 + - uid: 16534 components: - pos: 31.5,-16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16479 + - uid: 16535 components: - pos: 33.5,-15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16480 + - uid: 16536 components: - pos: -5.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16481 + - uid: 16537 components: - pos: -5.5,-24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16482 + - uid: 16538 components: - rot: -1.5707963267948966 rad pos: 28.5,-42.5 @@ -105312,7 +105616,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16483 + - uid: 16539 components: - rot: -1.5707963267948966 rad pos: 25.5,-29.5 @@ -105320,7 +105624,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16484 + - uid: 16540 components: - rot: -1.5707963267948966 rad pos: 6.5,12.5 @@ -105328,7 +105632,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16485 + - uid: 16541 components: - rot: -1.5707963267948966 rad pos: 9.5,12.5 @@ -105336,7 +105640,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16486 + - uid: 16542 components: - rot: -1.5707963267948966 rad pos: 20.5,-12.5 @@ -105344,7 +105648,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16487 + - uid: 16543 components: - rot: 1.5707963267948966 rad pos: 15.5,-41.5 @@ -105352,7 +105656,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16488 + - uid: 16544 components: - rot: -1.5707963267948966 rad pos: -17.5,29.5 @@ -105360,7 +105664,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16489 + - uid: 16545 components: - rot: -1.5707963267948966 rad pos: -17.5,30.5 @@ -105368,7 +105672,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16490 + - uid: 16546 components: - rot: -1.5707963267948966 rad pos: -18.5,30.5 @@ -105376,7 +105680,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16491 + - uid: 16547 components: - rot: -1.5707963267948966 rad pos: -19.5,30.5 @@ -105384,7 +105688,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16492 + - uid: 16548 components: - rot: -1.5707963267948966 rad pos: -22.5,29.5 @@ -105392,7 +105696,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16493 + - uid: 16549 components: - rot: -1.5707963267948966 rad pos: -21.5,29.5 @@ -105400,21 +105704,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16494 + - uid: 16550 components: - pos: 36.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16495 + - uid: 16551 components: - pos: 36.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16496 + - uid: 16552 components: - rot: 3.141592653589793 rad pos: -10.5,6.5 @@ -105422,28 +105726,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16497 + - uid: 16553 components: - pos: -18.5,27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16498 + - uid: 16554 components: - pos: 36.5,-22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16499 + - uid: 16555 components: - pos: 47.5,-26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16500 + - uid: 16556 components: - rot: -1.5707963267948966 rad pos: 25.5,-30.5 @@ -105451,7 +105755,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16501 + - uid: 16557 components: - rot: 3.141592653589793 rad pos: 34.5,-29.5 @@ -105459,7 +105763,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16502 + - uid: 16558 components: - rot: -1.5707963267948966 rad pos: 19.5,-12.5 @@ -105467,7 +105771,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16503 + - uid: 16559 components: - rot: -1.5707963267948966 rad pos: -1.5,-61.5 @@ -105475,14 +105779,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16504 + - uid: 16560 components: - pos: -10.5,-2.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16505 + - uid: 16561 components: - rot: -1.5707963267948966 rad pos: 24.5,-30.5 @@ -105490,7 +105794,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16506 + - uid: 16562 components: - rot: 1.5707963267948966 rad pos: 16.5,17.5 @@ -105498,7 +105802,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16507 + - uid: 16563 components: - rot: 1.5707963267948966 rad pos: 18.5,-5.5 @@ -105506,7 +105810,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16508 + - uid: 16564 components: - rot: -1.5707963267948966 rad pos: 15.5,16.5 @@ -105514,7 +105818,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16509 + - uid: 16565 components: - rot: -1.5707963267948966 rad pos: 18.5,16.5 @@ -105522,7 +105826,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16510 + - uid: 16566 components: - rot: -1.5707963267948966 rad pos: 17.5,16.5 @@ -105530,7 +105834,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16511 + - uid: 16567 components: - rot: -1.5707963267948966 rad pos: 33.5,12.5 @@ -105538,7 +105842,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16512 + - uid: 16568 components: - rot: 3.141592653589793 rad pos: 40.5,2.5 @@ -105546,28 +105850,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16513 + - uid: 16569 components: - pos: -20.5,27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16514 + - uid: 16570 components: - pos: 22.5,-32.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16515 + - uid: 16571 components: - pos: -20.5,32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16516 + - uid: 16572 components: - rot: 1.5707963267948966 rad pos: 46.5,-28.5 @@ -105575,14 +105879,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16517 + - uid: 16573 components: - pos: 36.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16518 + - uid: 16574 components: - rot: 1.5707963267948966 rad pos: 42.5,-24.5 @@ -105590,7 +105894,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16519 + - uid: 16575 components: - rot: 1.5707963267948966 rad pos: -7.5,-64.5 @@ -105598,14 +105902,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16520 + - uid: 16576 components: - pos: -23.5,-81.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16521 + - uid: 16577 components: - rot: 1.5707963267948966 rad pos: -27.5,-80.5 @@ -105613,7 +105917,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16522 + - uid: 16578 components: - rot: -1.5707963267948966 rad pos: 8.5,-42.5 @@ -105621,14 +105925,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16523 + - uid: 16579 components: - pos: -23.5,-79.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16524 + - uid: 16580 components: - rot: 1.5707963267948966 rad pos: -28.5,-80.5 @@ -105636,7 +105940,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16525 + - uid: 16581 components: - rot: 1.5707963267948966 rad pos: -26.5,-80.5 @@ -105644,7 +105948,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16526 + - uid: 16582 components: - rot: -1.5707963267948966 rad pos: 7.5,-42.5 @@ -105652,7 +105956,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16527 + - uid: 16583 components: - rot: -1.5707963267948966 rad pos: 5.5,-42.5 @@ -105660,7 +105964,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16528 + - uid: 16584 components: - rot: 3.141592653589793 rad pos: 14.5,-37.5 @@ -105668,7 +105972,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16529 + - uid: 16585 components: - rot: 1.5707963267948966 rad pos: 12.5,-43.5 @@ -105676,7 +105980,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16530 + - uid: 16586 components: - rot: 1.5707963267948966 rad pos: 14.5,-25.5 @@ -105684,7 +105988,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16531 + - uid: 16587 components: - rot: 1.5707963267948966 rad pos: 14.5,-43.5 @@ -105692,14 +105996,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16532 + - uid: 16588 components: - pos: 15.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16533 + - uid: 16589 components: - rot: 3.141592653589793 rad pos: 5.5,14.5 @@ -105707,7 +106011,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16534 + - uid: 16590 components: - rot: 3.141592653589793 rad pos: 5.5,15.5 @@ -105715,28 +106019,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16535 + - uid: 16591 components: - pos: -3.5,-27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16536 + - uid: 16592 components: - pos: 20.5,-18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16537 + - uid: 16593 components: - pos: 20.5,-20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16538 + - uid: 16594 components: - rot: -1.5707963267948966 rad pos: 39.5,15.5 @@ -105744,7 +106048,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16539 + - uid: 16595 components: - rot: -1.5707963267948966 rad pos: 14.5,-0.5 @@ -105752,7 +106056,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16540 + - uid: 16596 components: - rot: -1.5707963267948966 rad pos: 37.5,15.5 @@ -105760,7 +106064,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16541 + - uid: 16597 components: - rot: 3.141592653589793 rad pos: -21.5,-85.5 @@ -105768,7 +106072,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16542 + - uid: 16598 components: - rot: 3.141592653589793 rad pos: -21.5,-87.5 @@ -105776,7 +106080,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16543 + - uid: 16599 components: - rot: -1.5707963267948966 rad pos: -22.5,-88.5 @@ -105784,7 +106088,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16544 + - uid: 16600 components: - rot: -1.5707963267948966 rad pos: -23.5,-88.5 @@ -105792,14 +106096,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16545 + - uid: 16601 components: - pos: -24.5,-86.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16546 + - uid: 16602 components: - rot: -1.5707963267948966 rad pos: 27.5,-29.5 @@ -105807,7 +106111,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16547 + - uid: 16603 components: - rot: -1.5707963267948966 rad pos: 31.5,-6.5 @@ -105815,28 +106119,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16548 + - uid: 16604 components: - pos: -3.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16549 + - uid: 16605 components: - pos: -3.5,-6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16550 + - uid: 16606 components: - pos: -5.5,-8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16551 + - uid: 16607 components: - rot: -1.5707963267948966 rad pos: 22.5,10.5 @@ -105844,7 +106148,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16552 + - uid: 16608 components: - rot: -1.5707963267948966 rad pos: 25.5,10.5 @@ -105852,7 +106156,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16553 + - uid: 16609 components: - rot: -1.5707963267948966 rad pos: 16.5,-29.5 @@ -105860,7 +106164,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16554 + - uid: 16610 components: - rot: -1.5707963267948966 rad pos: 21.5,-29.5 @@ -105868,7 +106172,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16555 + - uid: 16611 components: - rot: -1.5707963267948966 rad pos: -10.5,-41.5 @@ -105876,7 +106180,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16556 + - uid: 16612 components: - rot: 3.141592653589793 rad pos: -5.5,-30.5 @@ -105884,28 +106188,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16557 + - uid: 16613 components: - pos: -3.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16558 + - uid: 16614 components: - pos: -19.5,-60.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16559 + - uid: 16615 components: - pos: -19.5,-59.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16560 + - uid: 16616 components: - rot: 1.5707963267948966 rad pos: 19.5,-41.5 @@ -105913,7 +106217,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16561 + - uid: 16617 components: - rot: 1.5707963267948966 rad pos: -0.5,-25.5 @@ -105921,7 +106225,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16562 + - uid: 16618 components: - rot: 1.5707963267948966 rad pos: -0.5,-27.5 @@ -105929,7 +106233,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16563 + - uid: 16619 components: - rot: 1.5707963267948966 rad pos: -1.5,-27.5 @@ -105937,7 +106241,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16564 + - uid: 16620 components: - rot: 1.5707963267948966 rad pos: 1.5,-27.5 @@ -105945,7 +106249,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16565 + - uid: 16621 components: - rot: 1.5707963267948966 rad pos: -7.5,-27.5 @@ -105953,14 +106257,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16566 + - uid: 16622 components: - pos: -3.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16567 + - uid: 16623 components: - rot: 3.141592653589793 rad pos: 34.5,-39.5 @@ -105968,7 +106272,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16568 + - uid: 16624 components: - rot: 3.141592653589793 rad pos: 34.5,-40.5 @@ -105976,28 +106280,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16569 + - uid: 16625 components: - pos: 34.5,-22.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16570 + - uid: 16626 components: - pos: -18.5,28.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16571 + - uid: 16627 components: - pos: -18.5,26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16572 + - uid: 16628 components: - rot: -1.5707963267948966 rad pos: 3.5,-41.5 @@ -106005,7 +106309,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16573 + - uid: 16629 components: - rot: -1.5707963267948966 rad pos: -7.5,-41.5 @@ -106013,7 +106317,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16574 + - uid: 16630 components: - rot: 1.5707963267948966 rad pos: -3.5,-41.5 @@ -106021,7 +106325,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16575 + - uid: 16631 components: - rot: -1.5707963267948966 rad pos: -2.5,-14.5 @@ -106029,7 +106333,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16576 + - uid: 16632 components: - rot: -1.5707963267948966 rad pos: 31.5,-42.5 @@ -106037,14 +106341,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16577 + - uid: 16633 components: - pos: -23.5,-74.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16578 + - uid: 16634 components: - rot: -1.5707963267948966 rad pos: -22.5,-73.5 @@ -106052,7 +106356,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16579 + - uid: 16635 components: - rot: 1.5707963267948966 rad pos: 33.5,-18.5 @@ -106060,7 +106364,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16580 + - uid: 16636 components: - rot: 1.5707963267948966 rad pos: 32.5,-18.5 @@ -106068,7 +106372,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16581 + - uid: 16637 components: - rot: 3.141592653589793 rad pos: 34.5,-19.5 @@ -106076,7 +106380,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16582 + - uid: 16638 components: - rot: 3.141592653589793 rad pos: 34.5,-20.5 @@ -106084,7 +106388,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16583 + - uid: 16639 components: - rot: 3.141592653589793 rad pos: 36.5,-20.5 @@ -106092,7 +106396,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16584 + - uid: 16640 components: - rot: 3.141592653589793 rad pos: 36.5,-19.5 @@ -106100,7 +106404,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16585 + - uid: 16641 components: - rot: 3.141592653589793 rad pos: 36.5,-18.5 @@ -106108,7 +106412,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16586 + - uid: 16642 components: - rot: 3.141592653589793 rad pos: 36.5,-17.5 @@ -106116,7 +106420,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16587 + - uid: 16643 components: - rot: -1.5707963267948966 rad pos: 35.5,-16.5 @@ -106124,7 +106428,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16588 + - uid: 16644 components: - rot: -1.5707963267948966 rad pos: 34.5,-16.5 @@ -106132,14 +106436,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16589 + - uid: 16645 components: - pos: 25.5,-6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16590 + - uid: 16646 components: - rot: 3.141592653589793 rad pos: 24.5,-45.5 @@ -106147,7 +106451,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16591 + - uid: 16647 components: - rot: 3.141592653589793 rad pos: 24.5,-44.5 @@ -106155,7 +106459,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16592 + - uid: 16648 components: - rot: 3.141592653589793 rad pos: 26.5,-45.5 @@ -106163,7 +106467,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16593 + - uid: 16649 components: - rot: 3.141592653589793 rad pos: 26.5,-44.5 @@ -106171,7 +106475,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16594 + - uid: 16650 components: - rot: 3.141592653589793 rad pos: 26.5,-43.5 @@ -106179,7 +106483,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16595 + - uid: 16651 components: - rot: -1.5707963267948966 rad pos: 40.5,-25.5 @@ -106187,7 +106491,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16596 + - uid: 16652 components: - rot: -1.5707963267948966 rad pos: 35.5,-26.5 @@ -106195,7 +106499,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16597 + - uid: 16653 components: - rot: -1.5707963267948966 rad pos: 36.5,-26.5 @@ -106203,7 +106507,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16598 + - uid: 16654 components: - rot: -1.5707963267948966 rad pos: 37.5,-26.5 @@ -106211,7 +106515,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16599 + - uid: 16655 components: - rot: -1.5707963267948966 rad pos: 38.5,-26.5 @@ -106219,7 +106523,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16600 + - uid: 16656 components: - rot: -1.5707963267948966 rad pos: 39.5,-26.5 @@ -106227,7 +106531,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16601 + - uid: 16657 components: - rot: -1.5707963267948966 rad pos: 40.5,-26.5 @@ -106235,14 +106539,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16602 + - uid: 16658 components: - pos: 36.5,-28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16603 + - uid: 16659 components: - rot: -1.5707963267948966 rad pos: 39.5,-25.5 @@ -106250,7 +106554,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16604 + - uid: 16660 components: - rot: -1.5707963267948966 rad pos: 38.5,-25.5 @@ -106258,7 +106562,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16605 + - uid: 16661 components: - rot: -1.5707963267948966 rad pos: 37.5,-25.5 @@ -106266,21 +106570,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16606 + - uid: 16662 components: - pos: 34.5,-28.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16607 + - uid: 16663 components: - pos: 36.5,-27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16608 + - uid: 16664 components: - rot: 1.5707963267948966 rad pos: 45.5,-28.5 @@ -106288,70 +106592,70 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16609 + - uid: 16665 components: - pos: -27.5,-78.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16610 + - uid: 16666 components: - pos: -20.5,-82.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16611 + - uid: 16667 components: - pos: -20.5,-81.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16612 + - uid: 16668 components: - pos: -20.5,-79.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16613 + - uid: 16669 components: - pos: -20.5,-78.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16614 + - uid: 16670 components: - pos: -20.5,-77.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16615 + - uid: 16671 components: - pos: -20.5,-76.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16616 + - uid: 16672 components: - pos: -20.5,-73.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16617 + - uid: 16673 components: - pos: -25.5,-74.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16618 + - uid: 16674 components: - rot: 1.5707963267948966 rad pos: -23.5,-72.5 @@ -106359,7 +106663,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16619 + - uid: 16675 components: - rot: 1.5707963267948966 rad pos: -22.5,-72.5 @@ -106367,7 +106671,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16620 + - uid: 16676 components: - rot: 3.141592653589793 rad pos: -20.5,-71.5 @@ -106375,7 +106679,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16621 + - uid: 16677 components: - rot: 1.5707963267948966 rad pos: -21.5,-72.5 @@ -106383,21 +106687,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16622 + - uid: 16678 components: - pos: -23.5,-84.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16623 + - uid: 16679 components: - pos: -23.5,-83.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16624 + - uid: 16680 components: - rot: 1.5707963267948966 rad pos: -27.5,-78.5 @@ -106405,7 +106709,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16625 + - uid: 16681 components: - rot: 1.5707963267948966 rad pos: -26.5,-78.5 @@ -106413,7 +106717,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16626 + - uid: 16682 components: - rot: 3.141592653589793 rad pos: -18.5,-76.5 @@ -106421,7 +106725,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16627 + - uid: 16683 components: - rot: 3.141592653589793 rad pos: -18.5,-75.5 @@ -106429,7 +106733,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16628 + - uid: 16684 components: - rot: -1.5707963267948966 rad pos: -21.5,-73.5 @@ -106437,7 +106741,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16629 + - uid: 16685 components: - rot: 3.141592653589793 rad pos: -25.5,-76.5 @@ -106445,14 +106749,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16630 + - uid: 16686 components: - pos: -20.5,-80.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16631 + - uid: 16687 components: - rot: 3.141592653589793 rad pos: -18.5,-70.5 @@ -106460,56 +106764,56 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16632 + - uid: 16688 components: - pos: 9.5,-43.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16633 + - uid: 16689 components: - pos: 9.5,-44.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16634 + - uid: 16690 components: - pos: 9.5,-45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16635 + - uid: 16691 components: - pos: 10.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16636 + - uid: 16692 components: - pos: 10.5,-43.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16637 + - uid: 16693 components: - pos: 10.5,-44.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16638 + - uid: 16694 components: - pos: 10.5,-45.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16639 + - uid: 16695 components: - rot: -1.5707963267948966 rad pos: -21.5,-88.5 @@ -106517,7 +106821,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16640 + - uid: 16696 components: - rot: 3.141592653589793 rad pos: -18.5,-69.5 @@ -106525,7 +106829,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16641 + - uid: 16697 components: - rot: 3.141592653589793 rad pos: -18.5,-68.5 @@ -106533,7 +106837,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16642 + - uid: 16698 components: - rot: 3.141592653589793 rad pos: -20.5,-68.5 @@ -106541,7 +106845,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16643 + - uid: 16699 components: - rot: 3.141592653589793 rad pos: -20.5,-67.5 @@ -106549,7 +106853,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16644 + - uid: 16700 components: - rot: 3.141592653589793 rad pos: -18.5,-66.5 @@ -106557,7 +106861,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16645 + - uid: 16701 components: - rot: 3.141592653589793 rad pos: -18.5,-65.5 @@ -106565,7 +106869,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16646 + - uid: 16702 components: - rot: 3.141592653589793 rad pos: -20.5,-65.5 @@ -106573,7 +106877,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16647 + - uid: 16703 components: - rot: 3.141592653589793 rad pos: -20.5,-64.5 @@ -106581,35 +106885,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16648 + - uid: 16704 components: - pos: -20.5,-62.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16649 + - uid: 16705 components: - pos: -18.5,-63.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16650 + - uid: 16706 components: - pos: -18.5,-62.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16651 + - uid: 16707 components: - pos: -18.5,-61.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16652 + - uid: 16708 components: - rot: 3.141592653589793 rad pos: 36.5,-30.5 @@ -106617,7 +106921,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16653 + - uid: 16709 components: - rot: 3.141592653589793 rad pos: 36.5,-32.5 @@ -106625,7 +106929,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16654 + - uid: 16710 components: - rot: 3.141592653589793 rad pos: 36.5,-33.5 @@ -106633,7 +106937,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16655 + - uid: 16711 components: - rot: 3.141592653589793 rad pos: 36.5,-34.5 @@ -106641,7 +106945,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16656 + - uid: 16712 components: - rot: 3.141592653589793 rad pos: 36.5,-35.5 @@ -106649,7 +106953,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16657 + - uid: 16713 components: - rot: 3.141592653589793 rad pos: 36.5,-36.5 @@ -106657,7 +106961,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16658 + - uid: 16714 components: - rot: 3.141592653589793 rad pos: 36.5,-37.5 @@ -106665,7 +106969,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16659 + - uid: 16715 components: - rot: 3.141592653589793 rad pos: 36.5,-38.5 @@ -106673,7 +106977,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16660 + - uid: 16716 components: - rot: 3.141592653589793 rad pos: 36.5,-39.5 @@ -106681,7 +106985,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16661 + - uid: 16717 components: - rot: 3.141592653589793 rad pos: 36.5,-40.5 @@ -106689,7 +106993,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16662 + - uid: 16718 components: - rot: 3.141592653589793 rad pos: 36.5,-41.5 @@ -106697,7 +107001,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16663 + - uid: 16719 components: - rot: 3.141592653589793 rad pos: 36.5,-42.5 @@ -106705,7 +107009,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16664 + - uid: 16720 components: - rot: 1.5707963267948966 rad pos: 35.5,-43.5 @@ -106713,7 +107017,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16665 + - uid: 16721 components: - rot: 1.5707963267948966 rad pos: 34.5,-43.5 @@ -106721,7 +107025,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16666 + - uid: 16722 components: - rot: 1.5707963267948966 rad pos: 33.5,-43.5 @@ -106729,7 +107033,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16667 + - uid: 16723 components: - rot: 1.5707963267948966 rad pos: 32.5,-43.5 @@ -106737,7 +107041,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16668 + - uid: 16724 components: - rot: -1.5707963267948966 rad pos: 35.5,0.5 @@ -106745,7 +107049,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16669 + - uid: 16725 components: - rot: -1.5707963267948966 rad pos: 36.5,0.5 @@ -106753,7 +107057,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16670 + - uid: 16726 components: - rot: 1.5707963267948966 rad pos: 37.5,1.5 @@ -106761,7 +107065,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16671 + - uid: 16727 components: - rot: -1.5707963267948966 rad pos: 38.5,0.5 @@ -106769,7 +107073,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16672 + - uid: 16728 components: - rot: -1.5707963267948966 rad pos: 39.5,0.5 @@ -106777,7 +107081,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16673 + - uid: 16729 components: - rot: 1.5707963267948966 rad pos: 20.5,12.5 @@ -106785,21 +107089,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16674 + - uid: 16730 components: - pos: 11.5,18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16675 + - uid: 16731 components: - pos: 11.5,17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16676 + - uid: 16732 components: - rot: 3.141592653589793 rad pos: 7.5,18.5 @@ -106807,7 +107111,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16677 + - uid: 16733 components: - rot: 3.141592653589793 rad pos: -11.5,-37.5 @@ -106815,7 +107119,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16678 + - uid: 16734 components: - rot: 3.141592653589793 rad pos: -11.5,-36.5 @@ -106823,7 +107127,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16679 + - uid: 16735 components: - rot: 3.141592653589793 rad pos: -11.5,-35.5 @@ -106831,7 +107135,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16680 + - uid: 16736 components: - rot: 3.141592653589793 rad pos: -11.5,-34.5 @@ -106839,7 +107143,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16681 + - uid: 16737 components: - rot: 3.141592653589793 rad pos: -11.5,-33.5 @@ -106847,7 +107151,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16682 + - uid: 16738 components: - rot: 3.141592653589793 rad pos: -9.5,-38.5 @@ -106855,7 +107159,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16683 + - uid: 16739 components: - rot: -1.5707963267948966 rad pos: -10.5,-37.5 @@ -106863,7 +107167,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16684 + - uid: 16740 components: - rot: -1.5707963267948966 rad pos: -11.5,-37.5 @@ -106871,7 +107175,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16685 + - uid: 16741 components: - rot: -1.5707963267948966 rad pos: -12.5,-37.5 @@ -106879,7 +107183,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16686 + - uid: 16742 components: - rot: -1.5707963267948966 rad pos: -13.5,-37.5 @@ -106887,7 +107191,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16687 + - uid: 16743 components: - rot: 3.141592653589793 rad pos: -9.5,-36.5 @@ -106895,7 +107199,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16688 + - uid: 16744 components: - rot: 3.141592653589793 rad pos: -9.5,-35.5 @@ -106903,7 +107207,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16689 + - uid: 16745 components: - rot: 3.141592653589793 rad pos: -9.5,-34.5 @@ -106911,7 +107215,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16690 + - uid: 16746 components: - rot: 3.141592653589793 rad pos: -9.5,-33.5 @@ -106919,7 +107223,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16691 + - uid: 16747 components: - rot: -1.5707963267948966 rad pos: -13.5,-38.5 @@ -106927,14 +107231,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16692 + - uid: 16748 components: - pos: 11.5,10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16693 + - uid: 16749 components: - rot: 1.5707963267948966 rad pos: -4.5,-10.5 @@ -106942,7 +107246,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16694 + - uid: 16750 components: - rot: 1.5707963267948966 rad pos: -3.5,-10.5 @@ -106950,7 +107254,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16695 + - uid: 16751 components: - rot: 1.5707963267948966 rad pos: -2.5,-10.5 @@ -106958,7 +107262,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16696 + - uid: 16752 components: - rot: 1.5707963267948966 rad pos: -1.5,-10.5 @@ -106966,7 +107270,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16697 + - uid: 16753 components: - rot: -1.5707963267948966 rad pos: 35.5,-41.5 @@ -106974,7 +107278,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16698 + - uid: 16754 components: - rot: -1.5707963267948966 rad pos: 36.5,-41.5 @@ -106982,7 +107286,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16699 + - uid: 16755 components: - rot: -1.5707963267948966 rad pos: 37.5,-41.5 @@ -106990,7 +107294,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16700 + - uid: 16756 components: - rot: -1.5707963267948966 rad pos: 39.5,-41.5 @@ -106998,7 +107302,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16701 + - uid: 16757 components: - rot: -1.5707963267948966 rad pos: 38.5,-41.5 @@ -107006,7 +107310,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16702 + - uid: 16758 components: - rot: -1.5707963267948966 rad pos: 40.5,-41.5 @@ -107014,7 +107318,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16703 + - uid: 16759 components: - rot: -1.5707963267948966 rad pos: 41.5,-41.5 @@ -107022,7 +107326,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16704 + - uid: 16760 components: - rot: -1.5707963267948966 rad pos: 37.5,-43.5 @@ -107030,7 +107334,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16705 + - uid: 16761 components: - rot: -1.5707963267948966 rad pos: 38.5,-43.5 @@ -107038,7 +107342,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16706 + - uid: 16762 components: - rot: -1.5707963267948966 rad pos: 39.5,-43.5 @@ -107046,7 +107350,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16707 + - uid: 16763 components: - rot: -1.5707963267948966 rad pos: 40.5,-43.5 @@ -107054,7 +107358,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16708 + - uid: 16764 components: - rot: -1.5707963267948966 rad pos: 41.5,-43.5 @@ -107062,35 +107366,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16709 + - uid: 16765 components: - pos: 21.5,-43.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16710 + - uid: 16766 components: - pos: 21.5,-45.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16711 + - uid: 16767 components: - pos: 20.5,-45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16712 + - uid: 16768 components: - pos: 20.5,-46.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16713 + - uid: 16769 components: - rot: 3.141592653589793 rad pos: 40.5,7.5 @@ -107098,7 +107402,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16714 + - uid: 16770 components: - rot: 3.141592653589793 rad pos: 30.5,16.5 @@ -107106,7 +107410,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16715 + - uid: 16771 components: - rot: 3.141592653589793 rad pos: 30.5,15.5 @@ -107114,7 +107418,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16716 + - uid: 16772 components: - rot: 3.141592653589793 rad pos: 30.5,20.5 @@ -107122,7 +107426,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16717 + - uid: 16773 components: - rot: 3.141592653589793 rad pos: 30.5,21.5 @@ -107130,7 +107434,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16718 + - uid: 16774 components: - rot: 3.141592653589793 rad pos: 30.5,22.5 @@ -107138,7 +107442,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16719 + - uid: 16775 components: - rot: 3.141592653589793 rad pos: 30.5,23.5 @@ -107146,7 +107450,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16720 + - uid: 16776 components: - rot: 3.141592653589793 rad pos: 30.5,24.5 @@ -107154,7 +107458,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16721 + - uid: 16777 components: - rot: 3.141592653589793 rad pos: 30.5,25.5 @@ -107162,7 +107466,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16722 + - uid: 16778 components: - rot: 3.141592653589793 rad pos: 30.5,26.5 @@ -107170,7 +107474,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16723 + - uid: 16779 components: - rot: 3.141592653589793 rad pos: 30.5,27.5 @@ -107178,7 +107482,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16724 + - uid: 16780 components: - rot: 3.141592653589793 rad pos: 28.5,18.5 @@ -107186,7 +107490,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16725 + - uid: 16781 components: - rot: 3.141592653589793 rad pos: 28.5,19.5 @@ -107194,7 +107498,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16726 + - uid: 16782 components: - rot: 3.141592653589793 rad pos: 28.5,20.5 @@ -107202,7 +107506,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16727 + - uid: 16783 components: - rot: 3.141592653589793 rad pos: 28.5,21.5 @@ -107210,7 +107514,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16728 + - uid: 16784 components: - rot: 3.141592653589793 rad pos: 28.5,23.5 @@ -107218,7 +107522,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16729 + - uid: 16785 components: - rot: 3.141592653589793 rad pos: 28.5,24.5 @@ -107226,7 +107530,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16730 + - uid: 16786 components: - rot: 3.141592653589793 rad pos: 28.5,25.5 @@ -107234,7 +107538,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16731 + - uid: 16787 components: - rot: 3.141592653589793 rad pos: 28.5,26.5 @@ -107242,7 +107546,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16732 + - uid: 16788 components: - rot: 3.141592653589793 rad pos: 28.5,27.5 @@ -107250,7 +107554,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16733 + - uid: 16789 components: - rot: 1.5707963267948966 rad pos: 40.5,15.5 @@ -107258,7 +107562,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16734 + - uid: 16790 components: - rot: -1.5707963267948966 rad pos: 43.5,15.5 @@ -107266,7 +107570,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16735 + - uid: 16791 components: - rot: -1.5707963267948966 rad pos: 43.5,14.5 @@ -107274,7 +107578,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16736 + - uid: 16792 components: - rot: -1.5707963267948966 rad pos: 42.5,14.5 @@ -107282,7 +107586,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16737 + - uid: 16793 components: - rot: -1.5707963267948966 rad pos: 40.5,14.5 @@ -107290,7 +107594,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16738 + - uid: 16794 components: - rot: -1.5707963267948966 rad pos: 39.5,14.5 @@ -107298,7 +107602,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16739 + - uid: 16795 components: - rot: -1.5707963267948966 rad pos: 38.5,14.5 @@ -107306,7 +107610,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16740 + - uid: 16796 components: - rot: -1.5707963267948966 rad pos: 37.5,14.5 @@ -107314,7 +107618,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16741 + - uid: 16797 components: - rot: -1.5707963267948966 rad pos: 36.5,14.5 @@ -107322,7 +107626,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16742 + - uid: 16798 components: - rot: -1.5707963267948966 rad pos: 35.5,14.5 @@ -107330,7 +107634,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16743 + - uid: 16799 components: - rot: -1.5707963267948966 rad pos: 34.5,14.5 @@ -107338,7 +107642,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16744 + - uid: 16800 components: - rot: -1.5707963267948966 rad pos: 33.5,14.5 @@ -107346,7 +107650,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16745 + - uid: 16801 components: - rot: -1.5707963267948966 rad pos: 32.5,14.5 @@ -107354,7 +107658,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16746 + - uid: 16802 components: - rot: -1.5707963267948966 rad pos: 31.5,14.5 @@ -107362,7 +107666,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16747 + - uid: 16803 components: - rot: 1.5707963267948966 rad pos: 44.5,14.5 @@ -107370,7 +107674,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16748 + - uid: 16804 components: - rot: 1.5707963267948966 rad pos: 45.5,15.5 @@ -107378,7 +107682,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16749 + - uid: 16805 components: - rot: 1.5707963267948966 rad pos: 46.5,15.5 @@ -107386,7 +107690,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16750 + - uid: 16806 components: - rot: 1.5707963267948966 rad pos: 46.5,14.5 @@ -107394,7 +107698,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16751 + - uid: 16807 components: - rot: 1.5707963267948966 rad pos: 48.5,15.5 @@ -107402,7 +107706,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16752 + - uid: 16808 components: - rot: 1.5707963267948966 rad pos: 48.5,14.5 @@ -107410,7 +107714,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16753 + - uid: 16809 components: - rot: -1.5707963267948966 rad pos: 49.5,14.5 @@ -107418,7 +107722,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16754 + - uid: 16810 components: - rot: 3.141592653589793 rad pos: 49.5,16.5 @@ -107426,7 +107730,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16755 + - uid: 16811 components: - rot: 3.141592653589793 rad pos: 49.5,17.5 @@ -107434,7 +107738,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16756 + - uid: 16812 components: - rot: 3.141592653589793 rad pos: 49.5,18.5 @@ -107442,7 +107746,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16757 + - uid: 16813 components: - rot: 3.141592653589793 rad pos: 49.5,19.5 @@ -107450,7 +107754,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16758 + - uid: 16814 components: - rot: -1.5707963267948966 rad pos: 50.5,20.5 @@ -107458,7 +107762,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16759 + - uid: 16815 components: - rot: 3.141592653589793 rad pos: 50.5,20.5 @@ -107466,7 +107770,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16760 + - uid: 16816 components: - rot: 3.141592653589793 rad pos: 50.5,18.5 @@ -107474,7 +107778,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16761 + - uid: 16817 components: - rot: 3.141592653589793 rad pos: 50.5,17.5 @@ -107482,7 +107786,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16762 + - uid: 16818 components: - rot: 3.141592653589793 rad pos: 50.5,16.5 @@ -107490,7 +107794,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16763 + - uid: 16819 components: - rot: 3.141592653589793 rad pos: 50.5,15.5 @@ -107498,7 +107802,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16764 + - uid: 16820 components: - rot: 1.5707963267948966 rad pos: 48.5,20.5 @@ -107506,7 +107810,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16765 + - uid: 16821 components: - rot: 1.5707963267948966 rad pos: 47.5,20.5 @@ -107514,7 +107818,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16766 + - uid: 16822 components: - rot: 1.5707963267948966 rad pos: 49.5,21.5 @@ -107522,7 +107826,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16767 + - uid: 16823 components: - rot: 1.5707963267948966 rad pos: 48.5,21.5 @@ -107530,7 +107834,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16768 + - uid: 16824 components: - rot: 3.141592653589793 rad pos: 49.5,21.5 @@ -107538,7 +107842,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16769 + - uid: 16825 components: - rot: 3.141592653589793 rad pos: 49.5,22.5 @@ -107546,7 +107850,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16770 + - uid: 16826 components: - rot: 3.141592653589793 rad pos: 50.5,22.5 @@ -107554,7 +107858,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16771 + - uid: 16827 components: - rot: 3.141592653589793 rad pos: 46.5,21.5 @@ -107562,7 +107866,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16772 + - uid: 16828 components: - rot: 3.141592653589793 rad pos: 46.5,22.5 @@ -107570,7 +107874,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16773 + - uid: 16829 components: - rot: 3.141592653589793 rad pos: 47.5,22.5 @@ -107578,7 +107882,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16774 + - uid: 16830 components: - rot: 1.5707963267948966 rad pos: 51.5,21.5 @@ -107586,7 +107890,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16775 + - uid: 16831 components: - rot: 1.5707963267948966 rad pos: 52.5,21.5 @@ -107594,7 +107898,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16776 + - uid: 16832 components: - rot: 3.141592653589793 rad pos: 53.5,22.5 @@ -107602,7 +107906,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16777 + - uid: 16833 components: - rot: 3.141592653589793 rad pos: 52.5,22.5 @@ -107610,7 +107914,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16778 + - uid: 16834 components: - rot: 3.141592653589793 rad pos: 52.5,21.5 @@ -107618,7 +107922,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16779 + - uid: 16835 components: - rot: 1.5707963267948966 rad pos: 51.5,20.5 @@ -107626,7 +107930,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16780 + - uid: 16836 components: - rot: 1.5707963267948966 rad pos: 53.5,20.5 @@ -107634,7 +107938,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16781 + - uid: 16837 components: - rot: 1.5707963267948966 rad pos: 54.5,20.5 @@ -107642,7 +107946,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16782 + - uid: 16838 components: - rot: 1.5707963267948966 rad pos: 56.5,20.5 @@ -107650,7 +107954,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16783 + - uid: 16839 components: - rot: 1.5707963267948966 rad pos: 57.5,20.5 @@ -107658,7 +107962,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16784 + - uid: 16840 components: - rot: 3.141592653589793 rad pos: 55.5,21.5 @@ -107666,7 +107970,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16785 + - uid: 16841 components: - rot: 3.141592653589793 rad pos: 55.5,22.5 @@ -107674,7 +107978,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16786 + - uid: 16842 components: - rot: 3.141592653589793 rad pos: 58.5,21.5 @@ -107682,7 +107986,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16787 + - uid: 16843 components: - rot: 3.141592653589793 rad pos: 58.5,22.5 @@ -107690,7 +107994,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16788 + - uid: 16844 components: - rot: 1.5707963267948966 rad pos: 54.5,21.5 @@ -107698,7 +108002,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16789 + - uid: 16845 components: - rot: 1.5707963267948966 rad pos: 55.5,21.5 @@ -107706,7 +108010,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16790 + - uid: 16846 components: - rot: 1.5707963267948966 rad pos: 57.5,21.5 @@ -107714,7 +108018,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16791 + - uid: 16847 components: - rot: 1.5707963267948966 rad pos: 58.5,21.5 @@ -107722,7 +108026,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16792 + - uid: 16848 components: - rot: 3.141592653589793 rad pos: 56.5,22.5 @@ -107730,7 +108034,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16793 + - uid: 16849 components: - rot: 3.141592653589793 rad pos: 59.5,22.5 @@ -107738,7 +108042,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16794 + - uid: 16850 components: - rot: 3.141592653589793 rad pos: 59.5,20.5 @@ -107746,7 +108050,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16795 + - uid: 16851 components: - rot: 3.141592653589793 rad pos: 59.5,19.5 @@ -107754,7 +108058,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16796 + - uid: 16852 components: - rot: 1.5707963267948966 rad pos: 60.5,18.5 @@ -107762,7 +108066,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16797 + - uid: 16853 components: - rot: -1.5707963267948966 rad pos: 59.5,19.5 @@ -107770,7 +108074,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16798 + - uid: 16854 components: - rot: -1.5707963267948966 rad pos: 60.5,19.5 @@ -107778,7 +108082,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16799 + - uid: 16855 components: - rot: -1.5707963267948966 rad pos: 60.5,16.5 @@ -107786,7 +108090,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16800 + - uid: 16856 components: - rot: -1.5707963267948966 rad pos: 59.5,16.5 @@ -107794,7 +108098,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16801 + - uid: 16857 components: - rot: -1.5707963267948966 rad pos: 60.5,15.5 @@ -107802,21 +108106,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16802 + - uid: 16858 components: - pos: 49.5,14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16803 + - uid: 16859 components: - pos: 49.5,13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16804 + - uid: 16860 components: - rot: -1.5707963267948966 rad pos: 51.5,13.5 @@ -107824,7 +108128,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16805 + - uid: 16861 components: - rot: -1.5707963267948966 rad pos: 50.5,12.5 @@ -107832,7 +108136,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16806 + - uid: 16862 components: - rot: -1.5707963267948966 rad pos: 51.5,12.5 @@ -107840,77 +108144,77 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16807 + - uid: 16863 components: - pos: 58.5,18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16808 + - uid: 16864 components: - pos: 58.5,17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16809 + - uid: 16865 components: - pos: 59.5,17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16810 + - uid: 16866 components: - pos: 59.5,16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16811 + - uid: 16867 components: - pos: 58.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16812 + - uid: 16868 components: - pos: 58.5,14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16813 + - uid: 16869 components: - pos: 58.5,13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16814 + - uid: 16870 components: - pos: 59.5,14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16815 + - uid: 16871 components: - pos: 59.5,13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16816 + - uid: 16872 components: - pos: 59.5,12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16817 + - uid: 16873 components: - rot: 1.5707963267948966 rad pos: 44.5,20.5 @@ -107918,7 +108222,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16818 + - uid: 16874 components: - rot: 1.5707963267948966 rad pos: 43.5,20.5 @@ -107926,7 +108230,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16819 + - uid: 16875 components: - rot: 1.5707963267948966 rad pos: 42.5,20.5 @@ -107934,7 +108238,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16820 + - uid: 16876 components: - rot: 1.5707963267948966 rad pos: 41.5,20.5 @@ -107942,7 +108246,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16821 + - uid: 16877 components: - rot: -1.5707963267948966 rad pos: 39.5,20.5 @@ -107950,7 +108254,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16822 + - uid: 16878 components: - rot: -1.5707963267948966 rad pos: 38.5,20.5 @@ -107958,7 +108262,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16823 + - uid: 16879 components: - rot: -1.5707963267948966 rad pos: 37.5,20.5 @@ -107966,7 +108270,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16824 + - uid: 16880 components: - rot: -1.5707963267948966 rad pos: 36.5,20.5 @@ -107974,7 +108278,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16825 + - uid: 16881 components: - rot: -1.5707963267948966 rad pos: 35.5,20.5 @@ -107982,7 +108286,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16826 + - uid: 16882 components: - rot: -1.5707963267948966 rad pos: 49.5,19.5 @@ -107990,7 +108294,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16827 + - uid: 16883 components: - rot: -1.5707963267948966 rad pos: 48.5,19.5 @@ -107998,7 +108302,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16828 + - uid: 16884 components: - rot: -1.5707963267948966 rad pos: 47.5,19.5 @@ -108006,7 +108310,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16829 + - uid: 16885 components: - rot: -1.5707963267948966 rad pos: 46.5,19.5 @@ -108014,7 +108318,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16830 + - uid: 16886 components: - rot: -1.5707963267948966 rad pos: 45.5,19.5 @@ -108022,7 +108326,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16831 + - uid: 16887 components: - rot: -1.5707963267948966 rad pos: 43.5,19.5 @@ -108030,7 +108334,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16832 + - uid: 16888 components: - rot: -1.5707963267948966 rad pos: 42.5,19.5 @@ -108038,7 +108342,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16833 + - uid: 16889 components: - rot: -1.5707963267948966 rad pos: 41.5,19.5 @@ -108046,7 +108350,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16834 + - uid: 16890 components: - rot: -1.5707963267948966 rad pos: 40.5,19.5 @@ -108054,7 +108358,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16835 + - uid: 16891 components: - rot: -1.5707963267948966 rad pos: 38.5,19.5 @@ -108062,7 +108366,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16836 + - uid: 16892 components: - rot: -1.5707963267948966 rad pos: 37.5,19.5 @@ -108070,7 +108374,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16837 + - uid: 16893 components: - rot: -1.5707963267948966 rad pos: 36.5,19.5 @@ -108078,7 +108382,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16838 + - uid: 16894 components: - rot: -1.5707963267948966 rad pos: 35.5,19.5 @@ -108086,7 +108390,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16839 + - uid: 16895 components: - rot: -1.5707963267948966 rad pos: 39.5,1.5 @@ -108094,7 +108398,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16840 + - uid: 16896 components: - rot: -1.5707963267948966 rad pos: 40.5,1.5 @@ -108102,7 +108406,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16841 + - uid: 16897 components: - rot: -1.5707963267948966 rad pos: 41.5,1.5 @@ -108110,7 +108414,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16842 + - uid: 16898 components: - rot: -1.5707963267948966 rad pos: 43.5,1.5 @@ -108118,7 +108422,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16843 + - uid: 16899 components: - rot: -1.5707963267948966 rad pos: 41.5,0.5 @@ -108126,7 +108430,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16844 + - uid: 16900 components: - rot: -1.5707963267948966 rad pos: 42.5,0.5 @@ -108134,7 +108438,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16845 + - uid: 16901 components: - rot: -1.5707963267948966 rad pos: 43.5,0.5 @@ -108142,7 +108446,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16846 + - uid: 16902 components: - rot: -1.5707963267948966 rad pos: 44.5,1.5 @@ -108150,7 +108454,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16847 + - uid: 16903 components: - rot: -1.5707963267948966 rad pos: 45.5,1.5 @@ -108158,7 +108462,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16848 + - uid: 16904 components: - rot: -1.5707963267948966 rad pos: 46.5,1.5 @@ -108166,7 +108470,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16849 + - uid: 16905 components: - rot: -1.5707963267948966 rad pos: 47.5,1.5 @@ -108174,7 +108478,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16850 + - uid: 16906 components: - rot: -1.5707963267948966 rad pos: 48.5,1.5 @@ -108182,7 +108486,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16851 + - uid: 16907 components: - rot: -1.5707963267948966 rad pos: 49.5,1.5 @@ -108190,7 +108494,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16852 + - uid: 16908 components: - rot: -1.5707963267948966 rad pos: 50.5,1.5 @@ -108198,7 +108502,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16853 + - uid: 16909 components: - rot: -1.5707963267948966 rad pos: 51.5,1.5 @@ -108206,7 +108510,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16854 + - uid: 16910 components: - rot: -1.5707963267948966 rad pos: 46.5,0.5 @@ -108214,7 +108518,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16855 + - uid: 16911 components: - rot: -1.5707963267948966 rad pos: 47.5,0.5 @@ -108222,7 +108526,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16856 + - uid: 16912 components: - rot: -1.5707963267948966 rad pos: 48.5,0.5 @@ -108230,7 +108534,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16857 + - uid: 16913 components: - rot: -1.5707963267948966 rad pos: 49.5,0.5 @@ -108238,7 +108542,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16858 + - uid: 16914 components: - rot: -1.5707963267948966 rad pos: 50.5,0.5 @@ -108246,7 +108550,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16859 + - uid: 16915 components: - rot: -1.5707963267948966 rad pos: 51.5,0.5 @@ -108254,7 +108558,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16860 + - uid: 16916 components: - rot: -1.5707963267948966 rad pos: 52.5,0.5 @@ -108262,7 +108566,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16861 + - uid: 16917 components: - rot: -1.5707963267948966 rad pos: 54.5,0.5 @@ -108270,7 +108574,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16862 + - uid: 16918 components: - rot: -1.5707963267948966 rad pos: 55.5,0.5 @@ -108278,7 +108582,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16863 + - uid: 16919 components: - rot: -1.5707963267948966 rad pos: 56.5,0.5 @@ -108286,7 +108590,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16864 + - uid: 16920 components: - rot: -1.5707963267948966 rad pos: 53.5,1.5 @@ -108294,7 +108598,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16865 + - uid: 16921 components: - rot: -1.5707963267948966 rad pos: 54.5,1.5 @@ -108302,7 +108606,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16866 + - uid: 16922 components: - rot: -1.5707963267948966 rad pos: 55.5,1.5 @@ -108310,105 +108614,105 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16867 + - uid: 16923 components: - pos: 52.5,0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16868 + - uid: 16924 components: - pos: 52.5,-0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16869 + - uid: 16925 components: - pos: 52.5,-1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16870 + - uid: 16926 components: - pos: 52.5,-2.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16871 + - uid: 16927 components: - pos: 52.5,-3.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16872 + - uid: 16928 components: - pos: 52.5,-4.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16873 + - uid: 16929 components: - pos: 52.5,-5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16874 + - uid: 16930 components: - pos: 52.5,-6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16875 + - uid: 16931 components: - pos: 52.5,-7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16876 + - uid: 16932 components: - pos: 53.5,-0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16877 + - uid: 16933 components: - pos: 53.5,-1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16878 + - uid: 16934 components: - pos: 53.5,-2.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16879 + - uid: 16935 components: - pos: 53.5,-3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16880 + - uid: 16936 components: - pos: 53.5,-4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16881 + - uid: 16937 components: - rot: 1.5707963267948966 rad pos: 54.5,-5.5 @@ -108416,7 +108720,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16882 + - uid: 16938 components: - rot: 1.5707963267948966 rad pos: 55.5,-5.5 @@ -108424,21 +108728,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16883 + - uid: 16939 components: - pos: 42.5,0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16884 + - uid: 16940 components: - pos: 42.5,-0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16885 + - uid: 16941 components: - rot: 3.141592653589793 rad pos: 44.5,-0.5 @@ -108446,7 +108750,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16886 + - uid: 16942 components: - rot: 3.141592653589793 rad pos: 44.5,-2.5 @@ -108454,7 +108758,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16887 + - uid: 16943 components: - rot: 1.5707963267948966 rad pos: 43.5,-3.5 @@ -108462,7 +108766,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16888 + - uid: 16944 components: - rot: 1.5707963267948966 rad pos: 42.5,-3.5 @@ -108470,7 +108774,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16889 + - uid: 16945 components: - rot: 1.5707963267948966 rad pos: 41.5,-3.5 @@ -108478,7 +108782,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16890 + - uid: 16946 components: - rot: 1.5707963267948966 rad pos: 40.5,-3.5 @@ -108486,7 +108790,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16891 + - uid: 16947 components: - rot: 1.5707963267948966 rad pos: 39.5,-3.5 @@ -108494,7 +108798,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16892 + - uid: 16948 components: - rot: 1.5707963267948966 rad pos: 38.5,-3.5 @@ -108502,7 +108806,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16893 + - uid: 16949 components: - rot: 1.5707963267948966 rad pos: 37.5,-3.5 @@ -108510,7 +108814,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16894 + - uid: 16950 components: - rot: 1.5707963267948966 rad pos: 41.5,-2.5 @@ -108518,7 +108822,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16895 + - uid: 16951 components: - rot: 1.5707963267948966 rad pos: 40.5,-2.5 @@ -108526,7 +108830,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16896 + - uid: 16952 components: - rot: 1.5707963267948966 rad pos: 39.5,-2.5 @@ -108534,7 +108838,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16897 + - uid: 16953 components: - rot: 1.5707963267948966 rad pos: 38.5,-2.5 @@ -108542,7 +108846,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16898 + - uid: 16954 components: - rot: 1.5707963267948966 rad pos: 37.5,-2.5 @@ -108550,56 +108854,56 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16899 + - uid: 16955 components: - pos: 42.5,13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16900 + - uid: 16956 components: - pos: 42.5,12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16901 + - uid: 16957 components: - pos: 41.5,13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16902 + - uid: 16958 components: - pos: 41.5,12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16903 + - uid: 16959 components: - pos: 41.5,11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16904 + - uid: 16960 components: - pos: 41.5,9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16905 + - uid: 16961 components: - pos: 42.5,11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16906 + - uid: 16962 components: - rot: -1.5707963267948966 rad pos: 39.5,10.5 @@ -108607,49 +108911,49 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16907 + - uid: 16963 components: - pos: 24.5,-46.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16908 + - uid: 16964 components: - pos: 24.5,-47.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16909 + - uid: 16965 components: - pos: 24.5,-48.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16910 + - uid: 16966 components: - pos: 24.5,-49.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16911 + - uid: 16967 components: - pos: 24.5,-50.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16912 + - uid: 16968 components: - pos: 24.5,-51.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16913 + - uid: 16969 components: - rot: 3.141592653589793 rad pos: 25.5,-59.5 @@ -108657,7 +108961,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16914 + - uid: 16970 components: - rot: 3.141592653589793 rad pos: 25.5,-53.5 @@ -108665,7 +108969,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16915 + - uid: 16971 components: - rot: 3.141592653589793 rad pos: 25.5,-54.5 @@ -108673,77 +108977,77 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16916 + - uid: 16972 components: - pos: 26.5,-46.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16917 + - uid: 16973 components: - pos: 26.5,-47.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16918 + - uid: 16974 components: - pos: 26.5,-48.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16919 + - uid: 16975 components: - pos: 26.5,-49.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16920 + - uid: 16976 components: - pos: 26.5,-50.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16921 + - uid: 16977 components: - pos: 26.5,-51.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16922 + - uid: 16978 components: - pos: 26.5,-52.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16923 + - uid: 16979 components: - pos: 26.5,-54.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16924 + - uid: 16980 components: - pos: 26.5,-55.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16925 + - uid: 16981 components: - pos: 26.5,-57.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16926 + - uid: 16982 components: - rot: 1.5707963267948966 rad pos: 43.5,-2.5 @@ -108751,7 +109055,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16927 + - uid: 16983 components: - rot: 1.5707963267948966 rad pos: 44.5,-2.5 @@ -108759,7 +109063,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16928 + - uid: 16984 components: - rot: 1.5707963267948966 rad pos: 45.5,-2.5 @@ -108767,7 +109071,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16929 + - uid: 16985 components: - rot: 1.5707963267948966 rad pos: 45.5,-1.5 @@ -108775,28 +109079,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16930 + - uid: 16986 components: - pos: 52.5,-8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16931 + - uid: 16987 components: - pos: 52.5,-9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16932 + - uid: 16988 components: - pos: 52.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16933 + - uid: 16989 components: - rot: 1.5707963267948966 rad pos: 53.5,-11.5 @@ -108804,7 +109108,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16934 + - uid: 16990 components: - rot: 1.5707963267948966 rad pos: 54.5,-11.5 @@ -108812,7 +109116,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16935 + - uid: 16991 components: - rot: 1.5707963267948966 rad pos: 56.5,-12.5 @@ -108820,7 +109124,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16936 + - uid: 16992 components: - rot: 1.5707963267948966 rad pos: 56.5,-5.5 @@ -108828,35 +109132,35 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16937 + - uid: 16993 components: - pos: 62.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16938 + - uid: 16994 components: - pos: 62.5,-37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16939 + - uid: 16995 components: - pos: 73.5,-27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16940 + - uid: 16996 components: - pos: 49.5,-56.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16941 + - uid: 16997 components: - rot: 1.5707963267948966 rad pos: 42.5,-43.5 @@ -108864,7 +109168,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16942 + - uid: 16998 components: - rot: 1.5707963267948966 rad pos: 43.5,-41.5 @@ -108872,7 +109176,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16943 + - uid: 16999 components: - rot: 1.5707963267948966 rad pos: 45.5,-41.5 @@ -108880,7 +109184,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16944 + - uid: 17000 components: - rot: 1.5707963267948966 rad pos: 46.5,-41.5 @@ -108888,7 +109192,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16945 + - uid: 17001 components: - rot: 1.5707963267948966 rad pos: 47.5,-41.5 @@ -108896,7 +109200,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16946 + - uid: 17002 components: - rot: 1.5707963267948966 rad pos: 48.5,-41.5 @@ -108904,7 +109208,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16947 + - uid: 17003 components: - rot: 1.5707963267948966 rad pos: 44.5,-43.5 @@ -108912,7 +109216,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16948 + - uid: 17004 components: - rot: 1.5707963267948966 rad pos: 46.5,-43.5 @@ -108920,7 +109224,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16949 + - uid: 17005 components: - rot: 1.5707963267948966 rad pos: 47.5,-43.5 @@ -108928,7 +109232,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16950 + - uid: 17006 components: - rot: 1.5707963267948966 rad pos: 48.5,-43.5 @@ -108936,63 +109240,63 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16951 + - uid: 17007 components: - pos: 43.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16952 + - uid: 17008 components: - pos: 43.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16953 + - uid: 17009 components: - pos: 43.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16954 + - uid: 17010 components: - pos: 43.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16955 + - uid: 17011 components: - pos: 43.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16956 + - uid: 17012 components: - pos: 42.5,-39.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16957 + - uid: 17013 components: - pos: 42.5,-40.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16958 + - uid: 17014 components: - pos: 42.5,-38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16959 + - uid: 17015 components: - rot: 3.141592653589793 rad pos: 49.5,-44.5 @@ -109000,7 +109304,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16960 + - uid: 17016 components: - rot: 1.5707963267948966 rad pos: 51.5,-41.5 @@ -109008,7 +109312,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16961 + - uid: 17017 components: - rot: 1.5707963267948966 rad pos: 52.5,-41.5 @@ -109016,7 +109320,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16962 + - uid: 17018 components: - rot: 1.5707963267948966 rad pos: 53.5,-41.5 @@ -109024,7 +109328,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16963 + - uid: 17019 components: - rot: 1.5707963267948966 rad pos: 54.5,-41.5 @@ -109032,7 +109336,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16964 + - uid: 17020 components: - rot: 1.5707963267948966 rad pos: 55.5,-41.5 @@ -109040,21 +109344,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16965 + - uid: 17021 components: - pos: 57.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16966 + - uid: 17022 components: - pos: 57.5,-43.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16967 + - uid: 17023 components: - rot: 1.5707963267948966 rad pos: 50.5,-45.5 @@ -109062,7 +109366,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16968 + - uid: 17024 components: - rot: 1.5707963267948966 rad pos: 51.5,-45.5 @@ -109070,7 +109374,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16969 + - uid: 17025 components: - rot: -1.5707963267948966 rad pos: 52.5,-45.5 @@ -109078,7 +109382,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16970 + - uid: 17026 components: - rot: 1.5707963267948966 rad pos: 53.5,-45.5 @@ -109086,7 +109390,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16971 + - uid: 17027 components: - rot: 1.5707963267948966 rad pos: 54.5,-45.5 @@ -109094,7 +109398,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16972 + - uid: 17028 components: - rot: 3.141592653589793 rad pos: 55.5,-44.5 @@ -109102,7 +109406,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16973 + - uid: 17029 components: - rot: 3.141592653589793 rad pos: 55.5,-43.5 @@ -109110,56 +109414,56 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16974 + - uid: 17030 components: - pos: 50.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16975 + - uid: 17031 components: - pos: 50.5,-43.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16976 + - uid: 17032 components: - pos: 50.5,-44.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16977 + - uid: 17033 components: - pos: 50.5,-45.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16978 + - uid: 17034 components: - pos: 50.5,-47.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16979 + - uid: 17035 components: - pos: 50.5,-48.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16980 + - uid: 17036 components: - pos: 49.5,-53.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16981 + - uid: 17037 components: - rot: -1.5707963267948966 rad pos: 48.5,-45.5 @@ -109167,7 +109471,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16982 + - uid: 17038 components: - rot: -1.5707963267948966 rad pos: 47.5,-45.5 @@ -109175,7 +109479,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16983 + - uid: 17039 components: - rot: -1.5707963267948966 rad pos: 46.5,-45.5 @@ -109183,7 +109487,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16984 + - uid: 17040 components: - rot: -1.5707963267948966 rad pos: 45.5,-45.5 @@ -109191,7 +109495,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16985 + - uid: 17041 components: - rot: 1.5707963267948966 rad pos: 49.5,-46.5 @@ -109199,7 +109503,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16986 + - uid: 17042 components: - rot: 1.5707963267948966 rad pos: 48.5,-46.5 @@ -109207,7 +109511,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16987 + - uid: 17043 components: - rot: 1.5707963267948966 rad pos: 47.5,-46.5 @@ -109215,7 +109519,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16988 + - uid: 17044 components: - rot: 1.5707963267948966 rad pos: 46.5,-46.5 @@ -109223,7 +109527,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16989 + - uid: 17045 components: - rot: 1.5707963267948966 rad pos: 45.5,-46.5 @@ -109231,7 +109535,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16990 + - uid: 17046 components: - rot: 3.141592653589793 rad pos: 73.5,-32.5 @@ -109239,7 +109543,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16991 + - uid: 17047 components: - rot: -1.5707963267948966 rad pos: 58.5,-44.5 @@ -109247,7 +109551,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16992 + - uid: 17048 components: - rot: -1.5707963267948966 rad pos: 59.5,-44.5 @@ -109255,7 +109559,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16993 + - uid: 17049 components: - rot: -1.5707963267948966 rad pos: 60.5,-44.5 @@ -109263,7 +109567,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 16994 + - uid: 17050 components: - rot: -1.5707963267948966 rad pos: 57.5,-45.5 @@ -109271,7 +109575,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16995 + - uid: 17051 components: - rot: -1.5707963267948966 rad pos: 58.5,-45.5 @@ -109279,7 +109583,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16996 + - uid: 17052 components: - rot: -1.5707963267948966 rad pos: 59.5,-45.5 @@ -109287,7 +109591,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16997 + - uid: 17053 components: - rot: -1.5707963267948966 rad pos: 60.5,-45.5 @@ -109295,7 +109599,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16998 + - uid: 17054 components: - rot: -1.5707963267948966 rad pos: 61.5,-45.5 @@ -109303,7 +109607,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 16999 + - uid: 17055 components: - rot: -1.5707963267948966 rad pos: 62.5,-45.5 @@ -109311,7 +109615,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17000 + - uid: 17056 components: - rot: 3.141592653589793 rad pos: 61.5,-43.5 @@ -109319,7 +109623,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17001 + - uid: 17057 components: - rot: 3.141592653589793 rad pos: 61.5,-42.5 @@ -109327,7 +109631,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17002 + - uid: 17058 components: - rot: 3.141592653589793 rad pos: 61.5,-41.5 @@ -109335,7 +109639,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17003 + - uid: 17059 components: - rot: 3.141592653589793 rad pos: 61.5,-40.5 @@ -109343,7 +109647,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17004 + - uid: 17060 components: - rot: 3.141592653589793 rad pos: 61.5,-39.5 @@ -109351,7 +109655,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17005 + - uid: 17061 components: - rot: 3.141592653589793 rad pos: 61.5,-37.5 @@ -109359,7 +109663,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17006 + - uid: 17062 components: - rot: 3.141592653589793 rad pos: 61.5,-36.5 @@ -109367,7 +109671,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17007 + - uid: 17063 components: - rot: 3.141592653589793 rad pos: 63.5,-44.5 @@ -109375,7 +109679,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17008 + - uid: 17064 components: - rot: 3.141592653589793 rad pos: 63.5,-43.5 @@ -109383,28 +109687,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17009 + - uid: 17065 components: - pos: 62.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17010 + - uid: 17066 components: - pos: 62.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17011 + - uid: 17067 components: - pos: 62.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17012 + - uid: 17068 components: - rot: -1.5707963267948966 rad pos: 63.5,-35.5 @@ -109412,7 +109716,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17013 + - uid: 17069 components: - rot: 3.141592653589793 rad pos: 61.5,-45.5 @@ -109420,7 +109724,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17014 + - uid: 17070 components: - rot: 1.5707963267948966 rad pos: 62.5,-34.5 @@ -109428,7 +109732,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17015 + - uid: 17071 components: - rot: 1.5707963267948966 rad pos: 61.5,-34.5 @@ -109436,21 +109740,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17016 + - uid: 17072 components: - pos: 64.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17017 + - uid: 17073 components: - pos: 60.5,-34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17018 + - uid: 17074 components: - rot: 3.141592653589793 rad pos: 63.5,-30.5 @@ -109458,7 +109762,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17019 + - uid: 17075 components: - rot: 3.141592653589793 rad pos: 63.5,-29.5 @@ -109466,7 +109770,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17020 + - uid: 17076 components: - rot: 3.141592653589793 rad pos: 63.5,-28.5 @@ -109474,7 +109778,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17021 + - uid: 17077 components: - rot: 3.141592653589793 rad pos: 63.5,-27.5 @@ -109482,7 +109786,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17022 + - uid: 17078 components: - rot: 3.141592653589793 rad pos: 61.5,-31.5 @@ -109490,7 +109794,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17023 + - uid: 17079 components: - rot: 3.141592653589793 rad pos: 61.5,-30.5 @@ -109498,7 +109802,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17024 + - uid: 17080 components: - rot: 3.141592653589793 rad pos: 61.5,-29.5 @@ -109506,7 +109810,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17025 + - uid: 17081 components: - rot: 3.141592653589793 rad pos: 61.5,-28.5 @@ -109514,7 +109818,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17026 + - uid: 17082 components: - rot: 3.141592653589793 rad pos: 61.5,-27.5 @@ -109522,7 +109826,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17027 + - uid: 17083 components: - rot: 3.141592653589793 rad pos: 61.5,-26.5 @@ -109530,7 +109834,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17028 + - uid: 17084 components: - rot: 3.141592653589793 rad pos: 61.5,-25.5 @@ -109538,399 +109842,399 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17029 + - uid: 17085 components: - pos: 61.5,-23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17030 + - uid: 17086 components: - pos: 61.5,-22.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17031 + - uid: 17087 components: - pos: 61.5,-21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17032 + - uid: 17088 components: - pos: 61.5,-20.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17033 + - uid: 17089 components: - pos: 61.5,-19.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17034 + - uid: 17090 components: - pos: 61.5,-18.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17035 + - uid: 17091 components: - pos: 61.5,-17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17036 + - uid: 17092 components: - pos: 61.5,-16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17037 + - uid: 17093 components: - pos: 61.5,-15.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17038 + - uid: 17094 components: - pos: 61.5,-14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17039 + - uid: 17095 components: - pos: 61.5,-13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17040 + - uid: 17096 components: - pos: 61.5,-12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17041 + - uid: 17097 components: - pos: 61.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17042 + - uid: 17098 components: - pos: 62.5,-7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17043 + - uid: 17099 components: - pos: 62.5,-8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17044 + - uid: 17100 components: - pos: 62.5,-9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17045 + - uid: 17101 components: - pos: 61.5,-5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17046 + - uid: 17102 components: - pos: 61.5,-4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17047 + - uid: 17103 components: - pos: 61.5,-3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17048 + - uid: 17104 components: - pos: 63.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17049 + - uid: 17105 components: - pos: 63.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17050 + - uid: 17106 components: - pos: 63.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17051 + - uid: 17107 components: - pos: 63.5,-22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17052 + - uid: 17108 components: - pos: 63.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17053 + - uid: 17109 components: - pos: 63.5,-20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17054 + - uid: 17110 components: - pos: 63.5,-19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17055 + - uid: 17111 components: - pos: 63.5,-18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17056 + - uid: 17112 components: - pos: 63.5,-17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17057 + - uid: 17113 components: - pos: 63.5,-16.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17058 + - uid: 17114 components: - pos: 63.5,-15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17059 + - uid: 17115 components: - pos: 63.5,-14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17060 + - uid: 17116 components: - pos: 63.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17061 + - uid: 17117 components: - pos: 63.5,-12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17062 + - uid: 17118 components: - pos: 63.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17063 + - uid: 17119 components: - pos: 63.5,-9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17064 + - uid: 17120 components: - pos: 63.5,-8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17065 + - uid: 17121 components: - pos: 63.5,-7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17066 + - uid: 17122 components: - pos: 63.5,-6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17067 + - uid: 17123 components: - pos: 63.5,-5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17068 + - uid: 17124 components: - pos: 63.5,-4.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17069 + - uid: 17125 components: - pos: 63.5,-3.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17070 + - uid: 17126 components: - pos: 64.5,-48.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17071 + - uid: 17127 components: - pos: 64.5,-49.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17072 + - uid: 17128 components: - pos: 64.5,-50.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17073 + - uid: 17129 components: - pos: 64.5,-51.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17074 + - uid: 17130 components: - pos: 60.5,-47.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17075 + - uid: 17131 components: - pos: 60.5,-49.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17076 + - uid: 17132 components: - pos: 60.5,-50.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17077 + - uid: 17133 components: - pos: 60.5,-51.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17078 + - uid: 17134 components: - pos: 50.5,-49.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17079 + - uid: 17135 components: - pos: 49.5,-57.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17080 + - uid: 17136 components: - pos: 49.5,-58.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17081 + - uid: 17137 components: - pos: 49.5,-59.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17082 + - uid: 17138 components: - pos: 50.5,-50.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17083 + - uid: 17139 components: - pos: 50.5,-51.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17084 + - uid: 17140 components: - pos: 49.5,-55.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17085 + - uid: 17141 components: - rot: 1.5707963267948966 rad pos: 44.5,-45.5 @@ -109938,7 +110242,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17086 + - uid: 17142 components: - rot: 1.5707963267948966 rad pos: 43.5,-45.5 @@ -109946,7 +110250,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17087 + - uid: 17143 components: - rot: 1.5707963267948966 rad pos: 65.5,-47.5 @@ -109954,7 +110258,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17088 + - uid: 17144 components: - rot: 1.5707963267948966 rad pos: 66.5,-47.5 @@ -109962,7 +110266,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17089 + - uid: 17145 components: - rot: 1.5707963267948966 rad pos: 67.5,-47.5 @@ -109970,7 +110274,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17090 + - uid: 17146 components: - rot: 1.5707963267948966 rad pos: 68.5,-47.5 @@ -109978,7 +110282,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17091 + - uid: 17147 components: - rot: 1.5707963267948966 rad pos: 68.5,-48.5 @@ -109986,7 +110290,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17092 + - uid: 17148 components: - rot: 1.5707963267948966 rad pos: 67.5,-48.5 @@ -109994,7 +110298,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17093 + - uid: 17149 components: - rot: 1.5707963267948966 rad pos: 66.5,-48.5 @@ -110002,7 +110306,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17094 + - uid: 17150 components: - rot: 1.5707963267948966 rad pos: 65.5,-48.5 @@ -110010,7 +110314,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17095 + - uid: 17151 components: - rot: 1.5707963267948966 rad pos: 64.5,-48.5 @@ -110018,7 +110322,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17096 + - uid: 17152 components: - rot: 1.5707963267948966 rad pos: 63.5,-48.5 @@ -110026,7 +110330,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17097 + - uid: 17153 components: - rot: 1.5707963267948966 rad pos: 62.5,-48.5 @@ -110034,7 +110338,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17098 + - uid: 17154 components: - rot: 1.5707963267948966 rad pos: 61.5,-48.5 @@ -110042,7 +110346,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17099 + - uid: 17155 components: - rot: 1.5707963267948966 rad pos: 70.5,-48.5 @@ -110050,7 +110354,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17100 + - uid: 17156 components: - rot: 1.5707963267948966 rad pos: 69.5,-48.5 @@ -110058,7 +110362,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17101 + - uid: 17157 components: - rot: 3.141592653589793 rad pos: 25.5,-55.5 @@ -110066,7 +110370,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17102 + - uid: 17158 components: - rot: 1.5707963267948966 rad pos: 27.5,-58.5 @@ -110074,7 +110378,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17103 + - uid: 17159 components: - rot: 1.5707963267948966 rad pos: 28.5,-58.5 @@ -110082,7 +110386,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17104 + - uid: 17160 components: - rot: 3.141592653589793 rad pos: 25.5,-56.5 @@ -110090,7 +110394,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17105 + - uid: 17161 components: - rot: 1.5707963267948966 rad pos: 26.5,-60.5 @@ -110098,7 +110402,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17106 + - uid: 17162 components: - rot: 1.5707963267948966 rad pos: 27.5,-60.5 @@ -110106,7 +110410,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17107 + - uid: 17163 components: - rot: 1.5707963267948966 rad pos: 28.5,-60.5 @@ -110114,7 +110418,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17108 + - uid: 17164 components: - rot: 1.5707963267948966 rad pos: 29.5,-60.5 @@ -110122,7 +110426,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17109 + - uid: 17165 components: - rot: 1.5707963267948966 rad pos: 30.5,-60.5 @@ -110130,7 +110434,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17110 + - uid: 17166 components: - rot: 1.5707963267948966 rad pos: 31.5,-60.5 @@ -110138,7 +110442,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17111 + - uid: 17167 components: - rot: 3.141592653589793 rad pos: 29.5,-57.5 @@ -110146,56 +110450,56 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17112 + - uid: 17168 components: - pos: 29.5,-55.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17113 + - uid: 17169 components: - pos: 29.5,-54.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17114 + - uid: 17170 components: - pos: 29.5,-53.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17115 + - uid: 17171 components: - pos: 29.5,-51.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17116 + - uid: 17172 components: - pos: 29.5,-50.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17117 + - uid: 17173 components: - pos: 29.5,-49.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17118 + - uid: 17174 components: - pos: 29.5,-48.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17119 + - uid: 17175 components: - rot: -1.5707963267948966 rad pos: 30.5,-47.5 @@ -110203,7 +110507,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17120 + - uid: 17176 components: - rot: -1.5707963267948966 rad pos: 31.5,-47.5 @@ -110211,7 +110515,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17121 + - uid: 17177 components: - rot: -1.5707963267948966 rad pos: 32.5,-47.5 @@ -110219,7 +110523,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17122 + - uid: 17178 components: - rot: 3.141592653589793 rad pos: 29.5,-46.5 @@ -110227,7 +110531,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17123 + - uid: 17179 components: - rot: 1.5707963267948966 rad pos: 30.5,-58.5 @@ -110235,49 +110539,49 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17124 + - uid: 17180 components: - pos: 32.5,-59.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17125 + - uid: 17181 components: - pos: 32.5,-58.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17126 + - uid: 17182 components: - pos: 32.5,-57.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17127 + - uid: 17183 components: - pos: 32.5,-55.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17128 + - uid: 17184 components: - pos: 32.5,-54.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17129 + - uid: 17185 components: - pos: 32.5,-53.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17130 + - uid: 17186 components: - rot: 1.5707963267948966 rad pos: 33.5,-52.5 @@ -110285,7 +110589,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17131 + - uid: 17187 components: - rot: 3.141592653589793 rad pos: 34.5,-51.5 @@ -110293,7 +110597,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17132 + - uid: 17188 components: - rot: 3.141592653589793 rad pos: 34.5,-50.5 @@ -110301,7 +110605,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17133 + - uid: 17189 components: - rot: -1.5707963267948966 rad pos: 33.5,-49.5 @@ -110309,7 +110613,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17134 + - uid: 17190 components: - rot: 3.141592653589793 rad pos: 34.5,-47.5 @@ -110317,7 +110621,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17135 + - uid: 17191 components: - rot: 3.141592653589793 rad pos: 34.5,-46.5 @@ -110325,7 +110629,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17136 + - uid: 17192 components: - rot: -1.5707963267948966 rad pos: 32.5,-49.5 @@ -110333,7 +110637,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17137 + - uid: 17193 components: - rot: -1.5707963267948966 rad pos: 31.5,-49.5 @@ -110341,7 +110645,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17138 + - uid: 17194 components: - rot: -1.5707963267948966 rad pos: 30.5,-49.5 @@ -110349,7 +110653,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17139 + - uid: 17195 components: - rot: -1.5707963267948966 rad pos: 29.5,-49.5 @@ -110357,33 +110661,33 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17140 + - uid: 17196 components: - rot: 3.141592653589793 rad pos: 48.5,-59.5 parent: 2 type: Transform - - uid: 17141 + - uid: 17197 components: - rot: 3.141592653589793 rad pos: 51.5,-59.5 parent: 2 type: Transform - - uid: 17142 + - uid: 17198 components: - pos: 49.5,-60.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17143 + - uid: 17199 components: - pos: 49.5,-62.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17144 + - uid: 17200 components: - rot: -1.5707963267948966 rad pos: -14.5,7.5 @@ -110391,7 +110695,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17145 + - uid: 17201 components: - rot: -1.5707963267948966 rad pos: -15.5,7.5 @@ -110399,7 +110703,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17146 + - uid: 17202 components: - rot: -1.5707963267948966 rad pos: -16.5,7.5 @@ -110407,7 +110711,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17147 + - uid: 17203 components: - rot: -1.5707963267948966 rad pos: -17.5,7.5 @@ -110415,7 +110719,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17148 + - uid: 17204 components: - rot: -1.5707963267948966 rad pos: -18.5,7.5 @@ -110423,7 +110727,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17149 + - uid: 17205 components: - rot: 1.5707963267948966 rad pos: -15.5,1.5 @@ -110431,7 +110735,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17150 + - uid: 17206 components: - rot: 1.5707963267948966 rad pos: -16.5,1.5 @@ -110439,21 +110743,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17151 + - uid: 17207 components: - pos: -19.5,6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17152 + - uid: 17208 components: - pos: -19.5,5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17153 + - uid: 17209 components: - rot: 1.5707963267948966 rad pos: -9.5,-25.5 @@ -110461,7 +110765,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17154 + - uid: 17210 components: - rot: 1.5707963267948966 rad pos: -10.5,-25.5 @@ -110469,7 +110773,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17155 + - uid: 17211 components: - rot: 1.5707963267948966 rad pos: -11.5,-25.5 @@ -110477,7 +110781,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17156 + - uid: 17212 components: - rot: 1.5707963267948966 rad pos: -12.5,-25.5 @@ -110485,7 +110789,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17157 + - uid: 17213 components: - rot: 1.5707963267948966 rad pos: -13.5,-25.5 @@ -110493,7 +110797,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17158 + - uid: 17214 components: - rot: 1.5707963267948966 rad pos: -14.5,-25.5 @@ -110501,7 +110805,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17159 + - uid: 17215 components: - rot: 1.5707963267948966 rad pos: -15.5,-25.5 @@ -110509,7 +110813,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17160 + - uid: 17216 components: - rot: 1.5707963267948966 rad pos: -16.5,-25.5 @@ -110517,7 +110821,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17161 + - uid: 17217 components: - rot: 1.5707963267948966 rad pos: -17.5,-25.5 @@ -110525,7 +110829,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17162 + - uid: 17218 components: - rot: 1.5707963267948966 rad pos: -12.5,-27.5 @@ -110533,7 +110837,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17163 + - uid: 17219 components: - rot: 1.5707963267948966 rad pos: -13.5,-27.5 @@ -110541,7 +110845,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17164 + - uid: 17220 components: - rot: 1.5707963267948966 rad pos: -14.5,-27.5 @@ -110549,7 +110853,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17165 + - uid: 17221 components: - rot: 1.5707963267948966 rad pos: -15.5,-27.5 @@ -110557,7 +110861,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17166 + - uid: 17222 components: - rot: 1.5707963267948966 rad pos: -16.5,-27.5 @@ -110565,7 +110869,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17167 + - uid: 17223 components: - rot: 1.5707963267948966 rad pos: -17.5,-27.5 @@ -110573,7 +110877,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17168 + - uid: 17224 components: - rot: -1.5707963267948966 rad pos: -18.5,-27.5 @@ -110581,7 +110885,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17169 + - uid: 17225 components: - rot: -1.5707963267948966 rad pos: -19.5,-27.5 @@ -110589,7 +110893,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17170 + - uid: 17226 components: - rot: 3.141592653589793 rad pos: -18.5,-26.5 @@ -110597,7 +110901,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17171 + - uid: 17227 components: - rot: 3.141592653589793 rad pos: -18.5,-27.5 @@ -110605,7 +110909,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17172 + - uid: 17228 components: - rot: 3.141592653589793 rad pos: -18.5,-28.5 @@ -110613,7 +110917,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17173 + - uid: 17229 components: - rot: 3.141592653589793 rad pos: -18.5,-29.5 @@ -110621,7 +110925,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17174 + - uid: 17230 components: - rot: 3.141592653589793 rad pos: -18.5,-30.5 @@ -110629,7 +110933,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17175 + - uid: 17231 components: - rot: 3.141592653589793 rad pos: -20.5,-28.5 @@ -110637,7 +110941,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17176 + - uid: 17232 components: - rot: 3.141592653589793 rad pos: -20.5,-29.5 @@ -110645,7 +110949,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17177 + - uid: 17233 components: - rot: 3.141592653589793 rad pos: -20.5,-30.5 @@ -110653,7 +110957,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17178 + - uid: 17234 components: - rot: 3.141592653589793 rad pos: -20.5,-31.5 @@ -110661,7 +110965,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17179 + - uid: 17235 components: - rot: 3.141592653589793 rad pos: -20.5,-32.5 @@ -110669,7 +110973,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17180 + - uid: 17236 components: - rot: 3.141592653589793 rad pos: -20.5,-26.5 @@ -110677,7 +110981,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17181 + - uid: 17237 components: - rot: 3.141592653589793 rad pos: -20.5,-25.5 @@ -110685,7 +110989,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17182 + - uid: 17238 components: - rot: 3.141592653589793 rad pos: -20.5,-24.5 @@ -110693,7 +110997,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17183 + - uid: 17239 components: - rot: 3.141592653589793 rad pos: -20.5,-23.5 @@ -110701,7 +111005,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17184 + - uid: 17240 components: - rot: 3.141592653589793 rad pos: -18.5,-24.5 @@ -110709,7 +111013,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17185 + - uid: 17241 components: - rot: 3.141592653589793 rad pos: -18.5,-23.5 @@ -110717,7 +111021,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17186 + - uid: 17242 components: - rot: 3.141592653589793 rad pos: -18.5,-22.5 @@ -110725,7 +111029,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17187 + - uid: 17243 components: - rot: 3.141592653589793 rad pos: -18.5,-20.5 @@ -110733,7 +111037,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17188 + - uid: 17244 components: - rot: 3.141592653589793 rad pos: -20.5,-21.5 @@ -110741,7 +111045,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17189 + - uid: 17245 components: - rot: 3.141592653589793 rad pos: -20.5,-20.5 @@ -110749,7 +111053,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17190 + - uid: 17246 components: - rot: 3.141592653589793 rad pos: -20.5,-19.5 @@ -110757,7 +111061,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17191 + - uid: 17247 components: - rot: 3.141592653589793 rad pos: -18.5,-18.5 @@ -110765,7 +111069,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17192 + - uid: 17248 components: - rot: 3.141592653589793 rad pos: -18.5,-17.5 @@ -110773,14 +111077,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17193 + - uid: 17249 components: - pos: -23.5,-15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17194 + - uid: 17250 components: - rot: 3.141592653589793 rad pos: -20.5,-17.5 @@ -110788,7 +111092,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17195 + - uid: 17251 components: - rot: 3.141592653589793 rad pos: -20.5,-16.5 @@ -110796,7 +111100,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17196 + - uid: 17252 components: - rot: 3.141592653589793 rad pos: -20.5,-15.5 @@ -110804,7 +111108,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17197 + - uid: 17253 components: - rot: 3.141592653589793 rad pos: -18.5,-15.5 @@ -110812,7 +111116,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17198 + - uid: 17254 components: - rot: 3.141592653589793 rad pos: -18.5,-14.5 @@ -110820,7 +111124,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17199 + - uid: 17255 components: - rot: 3.141592653589793 rad pos: -18.5,-13.5 @@ -110828,7 +111132,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17200 + - uid: 17256 components: - rot: 3.141592653589793 rad pos: -18.5,-12.5 @@ -110836,7 +111140,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17201 + - uid: 17257 components: - rot: 3.141592653589793 rad pos: -18.5,-11.5 @@ -110844,7 +111148,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17202 + - uid: 17258 components: - rot: -1.5707963267948966 rad pos: -21.5,-13.5 @@ -110852,7 +111156,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17203 + - uid: 17259 components: - rot: -1.5707963267948966 rad pos: -22.5,-13.5 @@ -110860,7 +111164,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17204 + - uid: 17260 components: - rot: -1.5707963267948966 rad pos: -23.5,-13.5 @@ -110868,7 +111172,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17205 + - uid: 17261 components: - rot: -1.5707963267948966 rad pos: -19.5,-10.5 @@ -110876,7 +111180,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17206 + - uid: 17262 components: - rot: -1.5707963267948966 rad pos: -20.5,-10.5 @@ -110884,7 +111188,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17207 + - uid: 17263 components: - rot: -1.5707963267948966 rad pos: -21.5,-10.5 @@ -110892,7 +111196,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17208 + - uid: 17264 components: - rot: -1.5707963267948966 rad pos: -22.5,-10.5 @@ -110900,7 +111204,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17209 + - uid: 17265 components: - rot: -1.5707963267948966 rad pos: -25.5,-10.5 @@ -110908,7 +111212,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17210 + - uid: 17266 components: - rot: -1.5707963267948966 rad pos: -26.5,-10.5 @@ -110916,7 +111220,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17211 + - uid: 17267 components: - rot: -1.5707963267948966 rad pos: -27.5,-10.5 @@ -110924,7 +111228,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17212 + - uid: 17268 components: - rot: 1.5707963267948966 rad pos: -26.5,-13.5 @@ -110932,7 +111236,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17213 + - uid: 17269 components: - rot: 1.5707963267948966 rad pos: -27.5,-13.5 @@ -110940,91 +111244,91 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17214 + - uid: 17270 components: - pos: -20.5,-12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17215 + - uid: 17271 components: - pos: -20.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17216 + - uid: 17272 components: - pos: -20.5,-10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17217 + - uid: 17273 components: - pos: -20.5,-9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17218 + - uid: 17274 components: - pos: -20.5,-8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17219 + - uid: 17275 components: - pos: -20.5,-7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17220 + - uid: 17276 components: - pos: -20.5,-6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17221 + - uid: 17277 components: - pos: -18.5,-9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17222 + - uid: 17278 components: - pos: -18.5,-8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17223 + - uid: 17279 components: - pos: -18.5,-7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17224 + - uid: 17280 components: - pos: -18.5,-6.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17225 + - uid: 17281 components: - pos: -18.5,-5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17226 + - uid: 17282 components: - rot: -1.5707963267948966 rad pos: -21.5,-22.5 @@ -111032,7 +111336,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17227 + - uid: 17283 components: - rot: -1.5707963267948966 rad pos: -22.5,-22.5 @@ -111040,7 +111344,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17228 + - uid: 17284 components: - rot: -1.5707963267948966 rad pos: -23.5,-22.5 @@ -111048,7 +111352,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17229 + - uid: 17285 components: - rot: -1.5707963267948966 rad pos: -19.5,-21.5 @@ -111056,7 +111360,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17230 + - uid: 17286 components: - rot: -1.5707963267948966 rad pos: -20.5,-21.5 @@ -111064,7 +111368,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17231 + - uid: 17287 components: - rot: -1.5707963267948966 rad pos: -21.5,-21.5 @@ -111072,7 +111376,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17232 + - uid: 17288 components: - rot: -1.5707963267948966 rad pos: -22.5,-21.5 @@ -111080,28 +111384,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17233 + - uid: 17289 components: - pos: -25.5,-15.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17234 + - uid: 17290 components: - pos: -25.5,-16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17235 + - uid: 17291 components: - pos: -25.5,-14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17236 + - uid: 17292 components: - rot: 1.5707963267948966 rad pos: -26.5,-17.5 @@ -111109,7 +111413,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17237 + - uid: 17293 components: - rot: 1.5707963267948966 rad pos: -27.5,-17.5 @@ -111117,7 +111421,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17238 + - uid: 17294 components: - rot: 3.141592653589793 rad pos: -20.5,-18.5 @@ -111125,42 +111429,42 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17239 + - uid: 17295 components: - pos: -23.5,-14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17240 + - uid: 17296 components: - pos: -23.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17241 + - uid: 17297 components: - pos: -23.5,-12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17242 + - uid: 17298 components: - pos: -23.5,-11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17243 + - uid: 17299 components: - pos: -18.5,-16.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17244 + - uid: 17300 components: - rot: -1.5707963267948966 rad pos: -24.5,-16.5 @@ -111168,7 +111472,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17245 + - uid: 17301 components: - rot: -1.5707963267948966 rad pos: -25.5,-16.5 @@ -111176,7 +111480,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17246 + - uid: 17302 components: - rot: -1.5707963267948966 rad pos: -26.5,-16.5 @@ -111184,7 +111488,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17247 + - uid: 17303 components: - rot: -1.5707963267948966 rad pos: -27.5,-16.5 @@ -111192,7 +111496,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17248 + - uid: 17304 components: - rot: -1.5707963267948966 rad pos: -28.5,-16.5 @@ -111200,7 +111504,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17249 + - uid: 17305 components: - rot: -1.5707963267948966 rad pos: -17.5,-42.5 @@ -111208,7 +111512,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17250 + - uid: 17306 components: - rot: -1.5707963267948966 rad pos: -16.5,-42.5 @@ -111216,7 +111520,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17251 + - uid: 17307 components: - rot: 1.5707963267948966 rad pos: 31.5,-58.5 @@ -111224,7 +111528,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17252 + - uid: 17308 components: - rot: 1.5707963267948966 rad pos: 32.5,-58.5 @@ -111232,7 +111536,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17253 + - uid: 17309 components: - rot: 1.5707963267948966 rad pos: 33.5,-58.5 @@ -111240,7 +111544,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17254 + - uid: 17310 components: - rot: 1.5707963267948966 rad pos: 34.5,-58.5 @@ -111248,7 +111552,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17255 + - uid: 17311 components: - rot: 1.5707963267948966 rad pos: 35.5,-58.5 @@ -111256,7 +111560,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17256 + - uid: 17312 components: - rot: 1.5707963267948966 rad pos: 36.5,-58.5 @@ -111264,7 +111568,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17257 + - uid: 17313 components: - rot: 1.5707963267948966 rad pos: 33.5,-60.5 @@ -111272,7 +111576,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17258 + - uid: 17314 components: - rot: 1.5707963267948966 rad pos: 34.5,-60.5 @@ -111280,7 +111584,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17259 + - uid: 17315 components: - rot: 1.5707963267948966 rad pos: 35.5,-60.5 @@ -111288,7 +111592,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17260 + - uid: 17316 components: - rot: 1.5707963267948966 rad pos: 36.5,-60.5 @@ -111296,7 +111600,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17261 + - uid: 17317 components: - rot: 1.5707963267948966 rad pos: 37.5,-60.5 @@ -111304,7 +111608,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17262 + - uid: 17318 components: - rot: -1.5707963267948966 rad pos: 50.5,-61.5 @@ -111312,7 +111616,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17263 + - uid: 17319 components: - rot: -1.5707963267948966 rad pos: 51.5,-61.5 @@ -111320,7 +111624,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17264 + - uid: 17320 components: - rot: -1.5707963267948966 rad pos: 52.5,-61.5 @@ -111328,7 +111632,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17265 + - uid: 17321 components: - rot: -1.5707963267948966 rad pos: 53.5,-61.5 @@ -111336,7 +111640,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17266 + - uid: 17322 components: - rot: -1.5707963267948966 rad pos: 37.5,-58.5 @@ -111344,7 +111648,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17267 + - uid: 17323 components: - rot: -1.5707963267948966 rad pos: 38.5,-60.5 @@ -111352,7 +111656,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17268 + - uid: 17324 components: - rot: -1.5707963267948966 rad pos: 39.5,-60.5 @@ -111360,7 +111664,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17269 + - uid: 17325 components: - rot: 3.141592653589793 rad pos: 38.5,-57.5 @@ -111368,7 +111672,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17270 + - uid: 17326 components: - rot: 3.141592653589793 rad pos: 38.5,-56.5 @@ -111376,7 +111680,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17271 + - uid: 17327 components: - rot: 3.141592653589793 rad pos: 40.5,-59.5 @@ -111384,7 +111688,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17272 + - uid: 17328 components: - rot: 3.141592653589793 rad pos: 40.5,-58.5 @@ -111392,7 +111696,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17273 + - uid: 17329 components: - rot: 3.141592653589793 rad pos: 40.5,-57.5 @@ -111400,7 +111704,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17274 + - uid: 17330 components: - rot: 3.141592653589793 rad pos: 40.5,-56.5 @@ -111408,7 +111712,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17275 + - uid: 17331 components: - rot: 3.141592653589793 rad pos: 38.5,-59.5 @@ -111416,7 +111720,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17276 + - uid: 17332 components: - rot: 3.141592653589793 rad pos: 38.5,-60.5 @@ -111424,7 +111728,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17277 + - uid: 17333 components: - rot: 3.141592653589793 rad pos: 38.5,-61.5 @@ -111432,7 +111736,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17278 + - uid: 17334 components: - rot: 3.141592653589793 rad pos: 38.5,-62.5 @@ -111440,7 +111744,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17279 + - uid: 17335 components: - rot: 3.141592653589793 rad pos: 40.5,-61.5 @@ -111448,7 +111752,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17280 + - uid: 17336 components: - rot: 3.141592653589793 rad pos: 40.5,-62.5 @@ -111456,7 +111760,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17281 + - uid: 17337 components: - rot: 3.141592653589793 rad pos: 40.5,-63.5 @@ -111464,7 +111768,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17282 + - uid: 17338 components: - rot: 3.141592653589793 rad pos: 40.5,-64.5 @@ -111472,7 +111776,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17283 + - uid: 17339 components: - rot: 3.141592653589793 rad pos: 38.5,-64.5 @@ -111480,7 +111784,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17284 + - uid: 17340 components: - rot: 3.141592653589793 rad pos: 38.5,-65.5 @@ -111488,7 +111792,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17285 + - uid: 17341 components: - rot: 3.141592653589793 rad pos: 38.5,-66.5 @@ -111496,7 +111800,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17286 + - uid: 17342 components: - rot: 3.141592653589793 rad pos: 38.5,-67.5 @@ -111504,7 +111808,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17287 + - uid: 17343 components: - rot: 3.141592653589793 rad pos: 38.5,-68.5 @@ -111512,7 +111816,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17288 + - uid: 17344 components: - rot: 3.141592653589793 rad pos: 40.5,-66.5 @@ -111520,7 +111824,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17289 + - uid: 17345 components: - rot: 3.141592653589793 rad pos: 40.5,-67.5 @@ -111528,7 +111832,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17290 + - uid: 17346 components: - rot: 3.141592653589793 rad pos: 40.5,-68.5 @@ -111536,14 +111840,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17291 + - uid: 17347 components: - pos: 50.5,-53.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17292 + - uid: 17348 components: - rot: 3.141592653589793 rad pos: 52.5,-56.5 @@ -111551,7 +111855,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17293 + - uid: 17349 components: - rot: 3.141592653589793 rad pos: 52.5,-55.5 @@ -111559,7 +111863,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17294 + - uid: 17350 components: - rot: 1.5707963267948966 rad pos: 51.5,-54.5 @@ -111567,7 +111871,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17295 + - uid: 17351 components: - rot: 3.141592653589793 rad pos: -14.5,2.5 @@ -111575,7 +111879,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17296 + - uid: 17352 components: - rot: 3.141592653589793 rad pos: -14.5,3.5 @@ -111583,7 +111887,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17297 + - uid: 17353 components: - rot: 3.141592653589793 rad pos: -14.5,4.5 @@ -111591,7 +111895,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17298 + - uid: 17354 components: - rot: 3.141592653589793 rad pos: -14.5,5.5 @@ -111599,7 +111903,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17299 + - uid: 17355 components: - rot: -1.5707963267948966 rad pos: -15.5,6.5 @@ -111607,7 +111911,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17300 + - uid: 17356 components: - rot: -1.5707963267948966 rad pos: -16.5,6.5 @@ -111615,7 +111919,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17301 + - uid: 17357 components: - rot: -1.5707963267948966 rad pos: -17.5,6.5 @@ -111623,7 +111927,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17302 + - uid: 17358 components: - rot: 3.141592653589793 rad pos: -18.5,7.5 @@ -111631,7 +111935,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17303 + - uid: 17359 components: - rot: 3.141592653589793 rad pos: -18.5,8.5 @@ -111639,7 +111943,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17304 + - uid: 17360 components: - rot: 3.141592653589793 rad pos: -18.5,9.5 @@ -111647,7 +111951,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17305 + - uid: 17361 components: - rot: 3.141592653589793 rad pos: -18.5,10.5 @@ -111655,7 +111959,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17306 + - uid: 17362 components: - rot: 3.141592653589793 rad pos: -18.5,11.5 @@ -111663,7 +111967,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17307 + - uid: 17363 components: - rot: 3.141592653589793 rad pos: -20.5,8.5 @@ -111671,7 +111975,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17308 + - uid: 17364 components: - rot: 3.141592653589793 rad pos: -20.5,9.5 @@ -111679,7 +111983,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17309 + - uid: 17365 components: - rot: 3.141592653589793 rad pos: -20.5,10.5 @@ -111687,7 +111991,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17310 + - uid: 17366 components: - rot: 3.141592653589793 rad pos: -20.5,11.5 @@ -111695,7 +111999,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17311 + - uid: 17367 components: - rot: -1.5707963267948966 rad pos: -19.5,-4.5 @@ -111703,7 +112007,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17312 + - uid: 17368 components: - rot: -1.5707963267948966 rad pos: -20.5,-4.5 @@ -111711,7 +112015,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17313 + - uid: 17369 components: - rot: -1.5707963267948966 rad pos: -21.5,-4.5 @@ -111719,7 +112023,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17314 + - uid: 17370 components: - rot: -1.5707963267948966 rad pos: -22.5,-4.5 @@ -111727,7 +112031,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17315 + - uid: 17371 components: - rot: -1.5707963267948966 rad pos: -23.5,-4.5 @@ -111735,7 +112039,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17316 + - uid: 17372 components: - rot: -1.5707963267948966 rad pos: -21.5,-5.5 @@ -111743,7 +112047,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17317 + - uid: 17373 components: - rot: -1.5707963267948966 rad pos: -22.5,-5.5 @@ -111751,7 +112055,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17318 + - uid: 17374 components: - rot: -1.5707963267948966 rad pos: -23.5,-5.5 @@ -111759,7 +112063,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17319 + - uid: 17375 components: - rot: -1.5707963267948966 rad pos: -24.5,-5.5 @@ -111767,7 +112071,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17320 + - uid: 17376 components: - rot: -1.5707963267948966 rad pos: -25.5,-5.5 @@ -111775,7 +112079,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17321 + - uid: 17377 components: - rot: -1.5707963267948966 rad pos: -29.5,-13.5 @@ -111783,7 +112087,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17322 + - uid: 17378 components: - rot: -1.5707963267948966 rad pos: -30.5,-13.5 @@ -111791,7 +112095,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17323 + - uid: 17379 components: - rot: -1.5707963267948966 rad pos: -29.5,-10.5 @@ -111799,7 +112103,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17324 + - uid: 17380 components: - rot: -1.5707963267948966 rad pos: -30.5,-10.5 @@ -111807,7 +112111,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17325 + - uid: 17381 components: - rot: -1.5707963267948966 rad pos: -31.5,-10.5 @@ -111815,152 +112119,152 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17326 + - uid: 17382 components: - rot: -1.5707963267948966 rad pos: 51.5,-60.5 parent: 2 type: Transform - - uid: 17327 + - uid: 17383 components: - rot: -1.5707963267948966 rad pos: 52.5,-60.5 parent: 2 type: Transform - - uid: 17328 + - uid: 17384 components: - pos: -18.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17329 + - uid: 17385 components: - pos: -18.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17330 + - uid: 17386 components: - pos: -18.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17331 + - uid: 17387 components: - pos: -18.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17332 + - uid: 17388 components: - pos: -18.5,-37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17333 + - uid: 17389 components: - pos: -18.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17334 + - uid: 17390 components: - pos: -18.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17335 + - uid: 17391 components: - pos: -18.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17336 + - uid: 17392 components: - pos: -18.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17337 + - uid: 17393 components: - pos: -18.5,-32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17338 + - uid: 17394 components: - pos: -20.5,-34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17339 + - uid: 17395 components: - pos: -20.5,-35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17340 + - uid: 17396 components: - pos: -20.5,-36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17341 + - uid: 17397 components: - pos: -20.5,-37.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17342 + - uid: 17398 components: - pos: -20.5,-38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17343 + - uid: 17399 components: - pos: -20.5,-39.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17344 + - uid: 17400 components: - pos: -20.5,-40.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17345 + - uid: 17401 components: - pos: -18.5,-44.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17346 + - uid: 17402 components: - pos: -18.5,-45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17347 + - uid: 17403 components: - rot: 3.141592653589793 rad pos: -20.5,-42.5 @@ -111968,7 +112272,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17348 + - uid: 17404 components: - rot: 3.141592653589793 rad pos: -20.5,-44.5 @@ -111976,7 +112280,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17349 + - uid: 17405 components: - rot: 3.141592653589793 rad pos: -20.5,-45.5 @@ -111984,7 +112288,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17350 + - uid: 17406 components: - rot: 3.141592653589793 rad pos: -20.5,-46.5 @@ -111992,7 +112296,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17351 + - uid: 17407 components: - rot: 1.5707963267948966 rad pos: 45.5,-72.5 @@ -112000,7 +112304,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17352 + - uid: 17408 components: - rot: 3.141592653589793 rad pos: 29.5,-79.5 @@ -112008,7 +112312,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17353 + - uid: 17409 components: - rot: 3.141592653589793 rad pos: 29.5,-84.5 @@ -112016,7 +112320,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17354 + - uid: 17410 components: - rot: 3.141592653589793 rad pos: 48.5,-79.5 @@ -112024,7 +112328,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17355 + - uid: 17411 components: - rot: 3.141592653589793 rad pos: 48.5,-75.5 @@ -112032,7 +112336,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17356 + - uid: 17412 components: - rot: 1.5707963267948966 rad pos: 41.5,-72.5 @@ -112040,7 +112344,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17357 + - uid: 17413 components: - rot: 1.5707963267948966 rad pos: 39.5,-72.5 @@ -112048,35 +112352,35 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17358 + - uid: 17414 components: - pos: 38.5,-70.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17359 + - uid: 17415 components: - pos: 38.5,-69.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17360 + - uid: 17416 components: - pos: 40.5,-69.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17361 + - uid: 17417 components: - pos: 40.5,-70.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17362 + - uid: 17418 components: - rot: 1.5707963267948966 rad pos: 44.5,-73.5 @@ -112084,7 +112388,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17363 + - uid: 17419 components: - rot: 1.5707963267948966 rad pos: 43.5,-73.5 @@ -112092,7 +112396,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17364 + - uid: 17420 components: - rot: 1.5707963267948966 rad pos: 42.5,-73.5 @@ -112100,7 +112404,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17365 + - uid: 17421 components: - rot: 3.141592653589793 rad pos: 30.5,-81.5 @@ -112108,7 +112412,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17366 + - uid: 17422 components: - rot: 3.141592653589793 rad pos: 29.5,-80.5 @@ -112116,7 +112420,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17367 + - uid: 17423 components: - rot: 1.5707963267948966 rad pos: 46.5,-72.5 @@ -112124,7 +112428,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17368 + - uid: 17424 components: - rot: 3.141592653589793 rad pos: 47.5,-79.5 @@ -112132,7 +112436,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17369 + - uid: 17425 components: - rot: 1.5707963267948966 rad pos: 40.5,-72.5 @@ -112140,7 +112444,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17370 + - uid: 17426 components: - rot: 3.141592653589793 rad pos: 47.5,-73.5 @@ -112148,7 +112452,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17371 + - uid: 17427 components: - rot: 3.141592653589793 rad pos: 29.5,-78.5 @@ -112156,7 +112460,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17372 + - uid: 17428 components: - rot: 3.141592653589793 rad pos: 30.5,-73.5 @@ -112164,7 +112468,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17373 + - uid: 17429 components: - rot: 3.141592653589793 rad pos: 29.5,-81.5 @@ -112172,7 +112476,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17374 + - uid: 17430 components: - rot: 3.141592653589793 rad pos: 2.5,-59.5 @@ -112180,7 +112484,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17375 + - uid: 17431 components: - rot: 3.141592653589793 rad pos: 2.5,-58.5 @@ -112188,7 +112492,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17376 + - uid: 17432 components: - rot: 3.141592653589793 rad pos: 3.5,-60.5 @@ -112196,7 +112500,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17377 + - uid: 17433 components: - rot: 3.141592653589793 rad pos: 3.5,-59.5 @@ -112204,7 +112508,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17378 + - uid: 17434 components: - rot: 3.141592653589793 rad pos: 3.5,-58.5 @@ -112212,7 +112516,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17379 + - uid: 17435 components: - rot: 3.141592653589793 rad pos: 2.5,-57.5 @@ -112220,7 +112524,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17380 + - uid: 17436 components: - rot: 3.141592653589793 rad pos: -41.5,-7.5 @@ -112228,14 +112532,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17381 + - uid: 17437 components: - pos: -31.5,-12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17382 + - uid: 17438 components: - rot: 1.5707963267948966 rad pos: -29.5,-17.5 @@ -112243,7 +112547,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17383 + - uid: 17439 components: - rot: 1.5707963267948966 rad pos: -30.5,-17.5 @@ -112251,7 +112555,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17384 + - uid: 17440 components: - rot: -1.5707963267948966 rad pos: -30.5,-16.5 @@ -112259,7 +112563,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17385 + - uid: 17441 components: - rot: -1.5707963267948966 rad pos: -31.5,-16.5 @@ -112267,28 +112571,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17386 + - uid: 17442 components: - pos: -31.5,-18.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17387 + - uid: 17443 components: - pos: -31.5,-16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17388 + - uid: 17444 components: - pos: -31.5,-14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17389 + - uid: 17445 components: - rot: 3.141592653589793 rad pos: -32.5,-11.5 @@ -112296,7 +112600,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17390 + - uid: 17446 components: - rot: 3.141592653589793 rad pos: -32.5,-12.5 @@ -112304,7 +112608,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17391 + - uid: 17447 components: - rot: 3.141592653589793 rad pos: -32.5,-13.5 @@ -112312,7 +112616,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17392 + - uid: 17448 components: - rot: 3.141592653589793 rad pos: -32.5,-14.5 @@ -112320,7 +112624,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17393 + - uid: 17449 components: - rot: 3.141592653589793 rad pos: -32.5,-15.5 @@ -112328,7 +112632,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17394 + - uid: 17450 components: - rot: 1.5707963267948966 rad pos: -32.5,-11.5 @@ -112336,7 +112640,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17395 + - uid: 17451 components: - rot: 1.5707963267948966 rad pos: -33.5,-11.5 @@ -112344,7 +112648,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17396 + - uid: 17452 components: - rot: 1.5707963267948966 rad pos: -34.5,-11.5 @@ -112352,7 +112656,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17397 + - uid: 17453 components: - rot: 1.5707963267948966 rad pos: -35.5,-11.5 @@ -112360,7 +112664,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17398 + - uid: 17454 components: - rot: 1.5707963267948966 rad pos: -33.5,-10.5 @@ -112368,7 +112672,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17399 + - uid: 17455 components: - rot: 1.5707963267948966 rad pos: -34.5,-10.5 @@ -112376,112 +112680,112 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17400 + - uid: 17456 components: - pos: -32.5,-18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17401 + - uid: 17457 components: - pos: -32.5,-19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17402 + - uid: 17458 components: - pos: -32.5,-20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17403 + - uid: 17459 components: - pos: -31.5,-19.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17404 + - uid: 17460 components: - pos: -31.5,-20.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17405 + - uid: 17461 components: - pos: -31.5,-21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17406 + - uid: 17462 components: - pos: -32.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17407 + - uid: 17463 components: - pos: -32.5,-22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17408 + - uid: 17464 components: - pos: -32.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17409 + - uid: 17465 components: - pos: -32.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17410 + - uid: 17466 components: - pos: -31.5,-22.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17411 + - uid: 17467 components: - pos: -31.5,-23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17412 + - uid: 17468 components: - pos: -31.5,-24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17413 + - uid: 17469 components: - pos: -31.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17414 + - uid: 17470 components: - pos: -31.5,-26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17415 + - uid: 17471 components: - rot: 3.141592653589793 rad pos: -32.5,-26.5 @@ -112489,7 +112793,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17416 + - uid: 17472 components: - rot: 3.141592653589793 rad pos: -32.5,-27.5 @@ -112497,7 +112801,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17417 + - uid: 17473 components: - rot: 3.141592653589793 rad pos: -32.5,-28.5 @@ -112505,7 +112809,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17418 + - uid: 17474 components: - rot: 3.141592653589793 rad pos: -32.5,-29.5 @@ -112513,7 +112817,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17419 + - uid: 17475 components: - rot: 3.141592653589793 rad pos: -32.5,-30.5 @@ -112521,7 +112825,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17420 + - uid: 17476 components: - rot: 3.141592653589793 rad pos: -31.5,-28.5 @@ -112529,7 +112833,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17421 + - uid: 17477 components: - rot: 3.141592653589793 rad pos: -31.5,-29.5 @@ -112537,7 +112841,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17422 + - uid: 17478 components: - rot: 3.141592653589793 rad pos: -31.5,-30.5 @@ -112545,7 +112849,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17423 + - uid: 17479 components: - rot: 1.5707963267948966 rad pos: -32.5,-15.5 @@ -112553,7 +112857,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17424 + - uid: 17480 components: - rot: 1.5707963267948966 rad pos: -33.5,-15.5 @@ -112561,7 +112865,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17425 + - uid: 17481 components: - rot: 1.5707963267948966 rad pos: -33.5,-17.5 @@ -112569,7 +112873,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17426 + - uid: 17482 components: - rot: -1.5707963267948966 rad pos: -37.5,-11.5 @@ -112577,7 +112881,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17427 + - uid: 17483 components: - rot: -1.5707963267948966 rad pos: -38.5,-11.5 @@ -112585,7 +112889,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17428 + - uid: 17484 components: - rot: -1.5707963267948966 rad pos: -39.5,-11.5 @@ -112593,7 +112897,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17429 + - uid: 17485 components: - rot: -1.5707963267948966 rad pos: -40.5,-11.5 @@ -112601,7 +112905,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17430 + - uid: 17486 components: - rot: -1.5707963267948966 rad pos: -36.5,-10.5 @@ -112609,7 +112913,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17431 + - uid: 17487 components: - rot: -1.5707963267948966 rad pos: -37.5,-10.5 @@ -112617,7 +112921,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17432 + - uid: 17488 components: - rot: -1.5707963267948966 rad pos: -38.5,-10.5 @@ -112625,7 +112929,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17433 + - uid: 17489 components: - rot: -1.5707963267948966 rad pos: -39.5,-10.5 @@ -112633,7 +112937,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17434 + - uid: 17490 components: - rot: -1.5707963267948966 rad pos: -40.5,-10.5 @@ -112641,7 +112945,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17435 + - uid: 17491 components: - rot: -1.5707963267948966 rad pos: -41.5,-10.5 @@ -112649,70 +112953,70 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17436 + - uid: 17492 components: - pos: -42.5,-11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17437 + - uid: 17493 components: - pos: -42.5,-12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17438 + - uid: 17494 components: - pos: -42.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17439 + - uid: 17495 components: - pos: -42.5,-14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17440 + - uid: 17496 components: - pos: -41.5,-12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17441 + - uid: 17497 components: - pos: -41.5,-13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17442 + - uid: 17498 components: - pos: -41.5,-14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17443 + - uid: 17499 components: - pos: -41.5,-15.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17444 + - uid: 17500 components: - pos: -20.5,12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17445 + - uid: 17501 components: - rot: -1.5707963267948966 rad pos: -19.5,6.5 @@ -112720,7 +113024,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17446 + - uid: 17502 components: - rot: -1.5707963267948966 rad pos: -20.5,6.5 @@ -112728,7 +113032,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17447 + - uid: 17503 components: - rot: -1.5707963267948966 rad pos: -21.5,6.5 @@ -112736,7 +113040,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17448 + - uid: 17504 components: - rot: -1.5707963267948966 rad pos: -22.5,6.5 @@ -112744,7 +113048,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17449 + - uid: 17505 components: - rot: -1.5707963267948966 rad pos: -23.5,6.5 @@ -112752,7 +113056,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17450 + - uid: 17506 components: - rot: -1.5707963267948966 rad pos: -21.5,7.5 @@ -112760,7 +113064,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17451 + - uid: 17507 components: - rot: -1.5707963267948966 rad pos: -22.5,7.5 @@ -112768,7 +113072,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17452 + - uid: 17508 components: - rot: -1.5707963267948966 rad pos: -23.5,7.5 @@ -112776,7 +113080,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17453 + - uid: 17509 components: - rot: -1.5707963267948966 rad pos: -24.5,6.5 @@ -112784,7 +113088,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17454 + - uid: 17510 components: - rot: -1.5707963267948966 rad pos: -25.5,6.5 @@ -112792,7 +113096,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17455 + - uid: 17511 components: - rot: 3.141592653589793 rad pos: -26.5,-3.5 @@ -112800,7 +113104,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17456 + - uid: 17512 components: - rot: 3.141592653589793 rad pos: -26.5,-2.5 @@ -112808,7 +113112,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17457 + - uid: 17513 components: - rot: 3.141592653589793 rad pos: -26.5,-1.5 @@ -112816,7 +113120,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17458 + - uid: 17514 components: - rot: 3.141592653589793 rad pos: -26.5,-0.5 @@ -112824,7 +113128,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17459 + - uid: 17515 components: - rot: 3.141592653589793 rad pos: -26.5,0.5 @@ -112832,7 +113136,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17460 + - uid: 17516 components: - rot: 3.141592653589793 rad pos: -26.5,2.5 @@ -112840,7 +113144,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17461 + - uid: 17517 components: - rot: 3.141592653589793 rad pos: -26.5,3.5 @@ -112848,7 +113152,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17462 + - uid: 17518 components: - rot: 3.141592653589793 rad pos: -26.5,4.5 @@ -112856,7 +113160,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17463 + - uid: 17519 components: - rot: 3.141592653589793 rad pos: -26.5,5.5 @@ -112864,7 +113168,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17464 + - uid: 17520 components: - rot: 3.141592653589793 rad pos: -24.5,6.5 @@ -112872,7 +113176,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17465 + - uid: 17521 components: - rot: 3.141592653589793 rad pos: -24.5,5.5 @@ -112880,7 +113184,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17466 + - uid: 17522 components: - rot: 3.141592653589793 rad pos: -24.5,4.5 @@ -112888,7 +113192,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17467 + - uid: 17523 components: - rot: 3.141592653589793 rad pos: -24.5,3.5 @@ -112896,7 +113200,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17468 + - uid: 17524 components: - rot: 3.141592653589793 rad pos: -24.5,2.5 @@ -112904,7 +113208,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17469 + - uid: 17525 components: - rot: 3.141592653589793 rad pos: -24.5,1.5 @@ -112912,7 +113216,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17470 + - uid: 17526 components: - rot: 3.141592653589793 rad pos: -24.5,-0.5 @@ -112920,7 +113224,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17471 + - uid: 17527 components: - rot: 3.141592653589793 rad pos: -24.5,-1.5 @@ -112928,7 +113232,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17472 + - uid: 17528 components: - rot: 3.141592653589793 rad pos: -24.5,-3.5 @@ -112936,7 +113240,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17473 + - uid: 17529 components: - rot: -1.5707963267948966 rad pos: -43.5,-10.5 @@ -112944,7 +113248,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17474 + - uid: 17530 components: - rot: -1.5707963267948966 rad pos: -42.5,-11.5 @@ -112952,7 +113256,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17475 + - uid: 17531 components: - rot: -1.5707963267948966 rad pos: -43.5,-11.5 @@ -112960,7 +113264,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17476 + - uid: 17532 components: - rot: 3.141592653589793 rad pos: -41.5,-10.5 @@ -112968,7 +113272,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17477 + - uid: 17533 components: - rot: 3.141592653589793 rad pos: -42.5,-7.5 @@ -112976,7 +113280,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17478 + - uid: 17534 components: - rot: 1.5707963267948966 rad pos: -42.5,-5.5 @@ -112984,7 +113288,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17479 + - uid: 17535 components: - rot: 1.5707963267948966 rad pos: -43.5,-5.5 @@ -112992,7 +113296,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17480 + - uid: 17536 components: - rot: 1.5707963267948966 rad pos: -44.5,-5.5 @@ -113000,7 +113304,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17481 + - uid: 17537 components: - rot: 1.5707963267948966 rad pos: -45.5,-5.5 @@ -113008,7 +113312,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17482 + - uid: 17538 components: - rot: 3.141592653589793 rad pos: -41.5,-9.5 @@ -113016,7 +113320,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17483 + - uid: 17539 components: - rot: 3.141592653589793 rad pos: -42.5,-9.5 @@ -113024,7 +113328,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17484 + - uid: 17540 components: - rot: 3.141592653589793 rad pos: -42.5,-8.5 @@ -113032,7 +113336,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17485 + - uid: 17541 components: - rot: 1.5707963267948966 rad pos: -43.5,-6.5 @@ -113040,7 +113344,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17486 + - uid: 17542 components: - rot: 1.5707963267948966 rad pos: -44.5,-6.5 @@ -113048,7 +113352,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17487 + - uid: 17543 components: - rot: 1.5707963267948966 rad pos: -45.5,-6.5 @@ -113056,7 +113360,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17488 + - uid: 17544 components: - rot: 1.5707963267948966 rad pos: -46.5,-6.5 @@ -113064,7 +113368,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17489 + - uid: 17545 components: - rot: 1.5707963267948966 rad pos: -47.5,-5.5 @@ -113072,7 +113376,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17490 + - uid: 17546 components: - rot: 1.5707963267948966 rad pos: -48.5,-5.5 @@ -113080,7 +113384,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17491 + - uid: 17547 components: - rot: 1.5707963267948966 rad pos: -49.5,-5.5 @@ -113088,7 +113392,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17492 + - uid: 17548 components: - rot: 1.5707963267948966 rad pos: -50.5,-5.5 @@ -113096,7 +113400,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17493 + - uid: 17549 components: - rot: 1.5707963267948966 rad pos: -51.5,-5.5 @@ -113104,7 +113408,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17494 + - uid: 17550 components: - rot: 1.5707963267948966 rad pos: -52.5,-5.5 @@ -113112,7 +113416,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17495 + - uid: 17551 components: - rot: 1.5707963267948966 rad pos: -48.5,-6.5 @@ -113120,7 +113424,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17496 + - uid: 17552 components: - rot: 1.5707963267948966 rad pos: -49.5,-6.5 @@ -113128,7 +113432,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17497 + - uid: 17553 components: - rot: 1.5707963267948966 rad pos: -50.5,-6.5 @@ -113136,7 +113440,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17498 + - uid: 17554 components: - rot: 1.5707963267948966 rad pos: -51.5,-6.5 @@ -113144,119 +113448,119 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17499 + - uid: 17555 components: - pos: -53.5,-6.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17500 + - uid: 17556 components: - pos: -53.5,-7.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17501 + - uid: 17557 components: - pos: -53.5,-8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17502 + - uid: 17558 components: - pos: -53.5,-9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17503 + - uid: 17559 components: - pos: -53.5,-10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17504 + - uid: 17560 components: - pos: -53.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17505 + - uid: 17561 components: - pos: -53.5,-12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17506 + - uid: 17562 components: - pos: -52.5,-7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17507 + - uid: 17563 components: - pos: -52.5,-8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17508 + - uid: 17564 components: - pos: -52.5,-9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17509 + - uid: 17565 components: - pos: -52.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17510 + - uid: 17566 components: - pos: -52.5,-11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17511 + - uid: 17567 components: - pos: -52.5,-12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17512 + - uid: 17568 components: - pos: -52.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17513 + - uid: 17569 components: - pos: -52.5,-14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17514 + - uid: 17570 components: - pos: -52.5,-15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17515 + - uid: 17571 components: - rot: 3.141592653589793 rad pos: -53.5,-14.5 @@ -113264,7 +113568,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17516 + - uid: 17572 components: - rot: 3.141592653589793 rad pos: -53.5,-15.5 @@ -113272,7 +113576,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17517 + - uid: 17573 components: - rot: 3.141592653589793 rad pos: -53.5,-16.5 @@ -113280,7 +113584,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17518 + - uid: 17574 components: - rot: 3.141592653589793 rad pos: -53.5,-17.5 @@ -113288,7 +113592,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17519 + - uid: 17575 components: - rot: 3.141592653589793 rad pos: -53.5,-18.5 @@ -113296,7 +113600,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17520 + - uid: 17576 components: - rot: 1.5707963267948966 rad pos: -51.5,-17.5 @@ -113304,7 +113608,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17521 + - uid: 17577 components: - rot: 1.5707963267948966 rad pos: -52.5,-19.5 @@ -113312,56 +113616,56 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17522 + - uid: 17578 components: - pos: -50.5,-18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17523 + - uid: 17579 components: - pos: -50.5,-20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17524 + - uid: 17580 components: - pos: -50.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17525 + - uid: 17581 components: - pos: -51.5,-20.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17526 + - uid: 17582 components: - pos: -51.5,-21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17527 + - uid: 17583 components: - pos: -51.5,-22.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17528 + - uid: 17584 components: - pos: -47.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17529 + - uid: 17585 components: - rot: 1.5707963267948966 rad pos: -48.5,-19.5 @@ -113369,7 +113673,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17530 + - uid: 17586 components: - rot: 1.5707963267948966 rad pos: -49.5,-19.5 @@ -113377,7 +113681,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17531 + - uid: 17587 components: - rot: 3.141592653589793 rad pos: -41.5,-6.5 @@ -113385,7 +113689,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17532 + - uid: 17588 components: - rot: -1.5707963267948966 rad pos: -60.5,-23.5 @@ -113393,7 +113697,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17533 + - uid: 17589 components: - rot: -1.5707963267948966 rad pos: -62.5,-23.5 @@ -113401,77 +113705,77 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17534 + - uid: 17590 components: - pos: -53.5,-20.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17535 + - uid: 17591 components: - pos: -53.5,-21.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17536 + - uid: 17592 components: - pos: -53.5,-22.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17537 + - uid: 17593 components: - pos: -53.5,-23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17538 + - uid: 17594 components: - pos: -53.5,-24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17539 + - uid: 17595 components: - pos: -54.5,-18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17540 + - uid: 17596 components: - pos: -54.5,-19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17541 + - uid: 17597 components: - pos: -54.5,-20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17542 + - uid: 17598 components: - pos: -54.5,-21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17543 + - uid: 17599 components: - pos: -54.5,-22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17544 + - uid: 17600 components: - rot: -1.5707963267948966 rad pos: -53.5,-17.5 @@ -113479,7 +113783,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17545 + - uid: 17601 components: - rot: 1.5707963267948966 rad pos: -54.5,-25.5 @@ -113487,7 +113791,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17546 + - uid: 17602 components: - rot: 1.5707963267948966 rad pos: -55.5,-25.5 @@ -113495,7 +113799,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17547 + - uid: 17603 components: - rot: 1.5707963267948966 rad pos: -56.5,-25.5 @@ -113503,7 +113807,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17548 + - uid: 17604 components: - rot: 1.5707963267948966 rad pos: -57.5,-25.5 @@ -113511,7 +113815,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17549 + - uid: 17605 components: - rot: 1.5707963267948966 rad pos: -58.5,-25.5 @@ -113519,7 +113823,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17550 + - uid: 17606 components: - rot: 1.5707963267948966 rad pos: -55.5,-23.5 @@ -113527,7 +113831,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17551 + - uid: 17607 components: - rot: 1.5707963267948966 rad pos: -57.5,-23.5 @@ -113535,7 +113839,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17552 + - uid: 17608 components: - rot: 1.5707963267948966 rad pos: -58.5,-23.5 @@ -113543,7 +113847,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17553 + - uid: 17609 components: - rot: -1.5707963267948966 rad pos: -59.5,-23.5 @@ -113551,7 +113855,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17554 + - uid: 17610 components: - rot: -1.5707963267948966 rad pos: -61.5,-23.5 @@ -113559,7 +113863,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17555 + - uid: 17611 components: - rot: -1.5707963267948966 rad pos: -63.5,-23.5 @@ -113567,7 +113871,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17556 + - uid: 17612 components: - rot: -1.5707963267948966 rad pos: -64.5,-23.5 @@ -113575,7 +113879,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17557 + - uid: 17613 components: - rot: -1.5707963267948966 rad pos: -65.5,-23.5 @@ -113583,7 +113887,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17558 + - uid: 17614 components: - rot: -1.5707963267948966 rad pos: -66.5,-23.5 @@ -113591,7 +113895,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17559 + - uid: 17615 components: - rot: -1.5707963267948966 rad pos: -67.5,-23.5 @@ -113599,49 +113903,49 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17560 + - uid: 17616 components: - pos: -68.5,-24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17561 + - uid: 17617 components: - pos: -68.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17562 + - uid: 17618 components: - pos: -68.5,-26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17563 + - uid: 17619 components: - pos: -68.5,-28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17564 + - uid: 17620 components: - pos: -68.5,-29.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17565 + - uid: 17621 components: - pos: -68.5,-30.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17566 + - uid: 17622 components: - rot: -1.5707963267948966 rad pos: -60.5,-25.5 @@ -113649,7 +113953,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17567 + - uid: 17623 components: - rot: -1.5707963267948966 rad pos: -61.5,-25.5 @@ -113657,7 +113961,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17568 + - uid: 17624 components: - rot: -1.5707963267948966 rad pos: -62.5,-25.5 @@ -113665,7 +113969,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17569 + - uid: 17625 components: - rot: -1.5707963267948966 rad pos: -63.5,-25.5 @@ -113673,14 +113977,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17570 + - uid: 17626 components: - pos: -64.5,-26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17571 + - uid: 17627 components: - rot: 3.141592653589793 rad pos: -64.5,-28.5 @@ -113688,7 +113992,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17572 + - uid: 17628 components: - rot: 3.141592653589793 rad pos: -64.5,-29.5 @@ -113696,7 +114000,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17573 + - uid: 17629 components: - rot: 3.141592653589793 rad pos: -64.5,-30.5 @@ -113704,486 +114008,486 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17574 + - uid: 17630 components: - rot: 1.5707963267948966 rad pos: -47.5,-42.5 parent: 2 type: Transform - - uid: 17575 + - uid: 17631 components: - rot: 1.5707963267948966 rad pos: -47.5,-44.5 parent: 2 type: Transform - - uid: 17576 + - uid: 17632 components: - rot: 1.5707963267948966 rad pos: -47.5,-46.5 parent: 2 type: Transform - - uid: 17577 + - uid: 17633 components: - rot: 1.5707963267948966 rad pos: -47.5,-48.5 parent: 2 type: Transform - - uid: 17578 + - uid: 17634 components: - rot: 1.5707963267948966 rad pos: -47.5,-50.5 parent: 2 type: Transform - - uid: 17579 + - uid: 17635 components: - rot: 1.5707963267948966 rad pos: -47.5,-52.5 parent: 2 type: Transform - - uid: 17580 + - uid: 17636 components: - rot: 1.5707963267948966 rad pos: -47.5,-54.5 parent: 2 type: Transform - - uid: 17581 + - uid: 17637 components: - rot: 1.5707963267948966 rad pos: -49.5,-55.5 parent: 2 type: Transform - - uid: 17582 + - uid: 17638 components: - rot: 1.5707963267948966 rad pos: -48.5,-55.5 parent: 2 type: Transform - - uid: 17583 + - uid: 17639 components: - rot: 1.5707963267948966 rad pos: -47.5,-55.5 parent: 2 type: Transform - - uid: 17584 + - uid: 17640 components: - rot: 1.5707963267948966 rad pos: -49.5,-53.5 parent: 2 type: Transform - - uid: 17585 + - uid: 17641 components: - rot: 1.5707963267948966 rad pos: -48.5,-53.5 parent: 2 type: Transform - - uid: 17586 + - uid: 17642 components: - rot: 1.5707963267948966 rad pos: -47.5,-53.5 parent: 2 type: Transform - - uid: 17587 + - uid: 17643 components: - rot: 1.5707963267948966 rad pos: -49.5,-51.5 parent: 2 type: Transform - - uid: 17588 + - uid: 17644 components: - rot: 1.5707963267948966 rad pos: -48.5,-51.5 parent: 2 type: Transform - - uid: 17589 + - uid: 17645 components: - rot: 1.5707963267948966 rad pos: -47.5,-51.5 parent: 2 type: Transform - - uid: 17590 + - uid: 17646 components: - rot: 1.5707963267948966 rad pos: -49.5,-49.5 parent: 2 type: Transform - - uid: 17591 + - uid: 17647 components: - rot: 1.5707963267948966 rad pos: -48.5,-49.5 parent: 2 type: Transform - - uid: 17592 + - uid: 17648 components: - rot: 1.5707963267948966 rad pos: -47.5,-49.5 parent: 2 type: Transform - - uid: 17593 + - uid: 17649 components: - rot: 1.5707963267948966 rad pos: -49.5,-47.5 parent: 2 type: Transform - - uid: 17594 + - uid: 17650 components: - rot: 1.5707963267948966 rad pos: -48.5,-47.5 parent: 2 type: Transform - - uid: 17595 + - uid: 17651 components: - rot: 1.5707963267948966 rad pos: -47.5,-47.5 parent: 2 type: Transform - - uid: 17596 + - uid: 17652 components: - rot: 1.5707963267948966 rad pos: -49.5,-45.5 parent: 2 type: Transform - - uid: 17597 + - uid: 17653 components: - rot: 1.5707963267948966 rad pos: -48.5,-45.5 parent: 2 type: Transform - - uid: 17598 + - uid: 17654 components: - rot: 1.5707963267948966 rad pos: -47.5,-45.5 parent: 2 type: Transform - - uid: 17599 + - uid: 17655 components: - rot: 1.5707963267948966 rad pos: -49.5,-43.5 parent: 2 type: Transform - - uid: 17600 + - uid: 17656 components: - rot: 1.5707963267948966 rad pos: -48.5,-43.5 parent: 2 type: Transform - - uid: 17601 + - uid: 17657 components: - rot: 1.5707963267948966 rad pos: -47.5,-43.5 parent: 2 type: Transform - - uid: 17602 + - uid: 17658 components: - rot: 1.5707963267948966 rad pos: -46.5,-52.5 parent: 2 type: Transform - - uid: 17603 + - uid: 17659 components: - rot: 1.5707963267948966 rad pos: -45.5,-52.5 parent: 2 type: Transform - - uid: 17604 + - uid: 17660 components: - rot: 1.5707963267948966 rad pos: -46.5,-54.5 parent: 2 type: Transform - - uid: 17605 + - uid: 17661 components: - rot: 1.5707963267948966 rad pos: -45.5,-54.5 parent: 2 type: Transform - - uid: 17606 + - uid: 17662 components: - rot: 1.5707963267948966 rad pos: -46.5,-50.5 parent: 2 type: Transform - - uid: 17607 + - uid: 17663 components: - rot: 1.5707963267948966 rad pos: -45.5,-50.5 parent: 2 type: Transform - - uid: 17608 + - uid: 17664 components: - rot: 1.5707963267948966 rad pos: -46.5,-48.5 parent: 2 type: Transform - - uid: 17609 + - uid: 17665 components: - rot: 1.5707963267948966 rad pos: -45.5,-48.5 parent: 2 type: Transform - - uid: 17610 + - uid: 17666 components: - rot: 1.5707963267948966 rad pos: -46.5,-46.5 parent: 2 type: Transform - - uid: 17611 + - uid: 17667 components: - rot: 1.5707963267948966 rad pos: -45.5,-46.5 parent: 2 type: Transform - - uid: 17612 + - uid: 17668 components: - rot: 1.5707963267948966 rad pos: -46.5,-44.5 parent: 2 type: Transform - - uid: 17613 + - uid: 17669 components: - rot: 1.5707963267948966 rad pos: -45.5,-44.5 parent: 2 type: Transform - - uid: 17614 + - uid: 17670 components: - rot: 1.5707963267948966 rad pos: -46.5,-42.5 parent: 2 type: Transform - - uid: 17615 + - uid: 17671 components: - rot: 1.5707963267948966 rad pos: -45.5,-42.5 parent: 2 type: Transform - - uid: 17616 + - uid: 17672 components: - rot: 1.5707963267948966 rad pos: -45.5,-55.5 parent: 2 type: Transform - - uid: 17617 + - uid: 17673 components: - rot: 1.5707963267948966 rad pos: -46.5,-55.5 parent: 2 type: Transform - - uid: 17618 + - uid: 17674 components: - rot: 1.5707963267948966 rad pos: -46.5,-53.5 parent: 2 type: Transform - - uid: 17619 + - uid: 17675 components: - rot: 1.5707963267948966 rad pos: -45.5,-53.5 parent: 2 type: Transform - - uid: 17620 + - uid: 17676 components: - rot: 1.5707963267948966 rad pos: -43.5,-53.5 parent: 2 type: Transform - - uid: 17621 + - uid: 17677 components: - rot: 1.5707963267948966 rad pos: -46.5,-51.5 parent: 2 type: Transform - - uid: 17622 + - uid: 17678 components: - rot: 1.5707963267948966 rad pos: -45.5,-51.5 parent: 2 type: Transform - - uid: 17623 + - uid: 17679 components: - rot: 1.5707963267948966 rad pos: -43.5,-51.5 parent: 2 type: Transform - - uid: 17624 + - uid: 17680 components: - rot: 1.5707963267948966 rad pos: -46.5,-49.5 parent: 2 type: Transform - - uid: 17625 + - uid: 17681 components: - rot: 1.5707963267948966 rad pos: -45.5,-49.5 parent: 2 type: Transform - - uid: 17626 + - uid: 17682 components: - rot: 1.5707963267948966 rad pos: -43.5,-49.5 parent: 2 type: Transform - - uid: 17627 + - uid: 17683 components: - rot: 1.5707963267948966 rad pos: -46.5,-47.5 parent: 2 type: Transform - - uid: 17628 + - uid: 17684 components: - rot: 1.5707963267948966 rad pos: -45.5,-47.5 parent: 2 type: Transform - - uid: 17629 + - uid: 17685 components: - rot: 1.5707963267948966 rad pos: -43.5,-47.5 parent: 2 type: Transform - - uid: 17630 + - uid: 17686 components: - rot: 1.5707963267948966 rad pos: -46.5,-45.5 parent: 2 type: Transform - - uid: 17631 + - uid: 17687 components: - rot: 1.5707963267948966 rad pos: -45.5,-45.5 parent: 2 type: Transform - - uid: 17632 + - uid: 17688 components: - rot: 1.5707963267948966 rad pos: -43.5,-45.5 parent: 2 type: Transform - - uid: 17633 + - uid: 17689 components: - rot: 1.5707963267948966 rad pos: -46.5,-43.5 parent: 2 type: Transform - - uid: 17634 + - uid: 17690 components: - rot: 1.5707963267948966 rad pos: -45.5,-43.5 parent: 2 type: Transform - - uid: 17635 + - uid: 17691 components: - rot: 1.5707963267948966 rad pos: -43.5,-43.5 parent: 2 type: Transform - - uid: 17636 + - uid: 17692 components: - rot: 3.141592653589793 rad pos: -42.5,-54.5 parent: 2 type: Transform - - uid: 17637 + - uid: 17693 components: - rot: 3.141592653589793 rad pos: -43.5,-54.5 parent: 2 type: Transform - - uid: 17638 + - uid: 17694 components: - rot: 3.141592653589793 rad pos: -43.5,-53.5 parent: 2 type: Transform - - uid: 17639 + - uid: 17695 components: - pos: -42.5,-50.5 parent: 2 type: Transform - - uid: 17640 + - uid: 17696 components: - pos: -42.5,-48.5 parent: 2 type: Transform - - uid: 17641 + - uid: 17697 components: - pos: -42.5,-46.5 parent: 2 type: Transform - - uid: 17642 + - uid: 17698 components: - pos: -42.5,-44.5 parent: 2 type: Transform - - uid: 17643 + - uid: 17699 components: - pos: -42.5,-42.5 parent: 2 type: Transform - - uid: 17644 + - uid: 17700 components: - pos: -44.5,-43.5 parent: 2 type: Transform - - uid: 17645 + - uid: 17701 components: - pos: -44.5,-45.5 parent: 2 type: Transform - - uid: 17646 + - uid: 17702 components: - pos: -44.5,-47.5 parent: 2 type: Transform - - uid: 17647 + - uid: 17703 components: - pos: -44.5,-49.5 parent: 2 type: Transform - - uid: 17648 + - uid: 17704 components: - pos: -44.5,-51.5 parent: 2 type: Transform - - uid: 17649 + - uid: 17705 components: - pos: -44.5,-53.5 parent: 2 type: Transform - - uid: 17650 + - uid: 17706 components: - pos: -44.5,-55.5 parent: 2 type: Transform - - uid: 17651 + - uid: 17707 components: - pos: -44.5,-56.5 parent: 2 type: Transform - - uid: 17652 + - uid: 17708 components: - rot: 1.5707963267948966 rad pos: -43.5,-57.5 parent: 2 type: Transform - - uid: 17653 + - uid: 17709 components: - rot: 1.5707963267948966 rad pos: -42.5,-57.5 parent: 2 type: Transform - - uid: 17654 + - uid: 17710 components: - rot: 1.5707963267948966 rad pos: -41.5,-57.5 parent: 2 type: Transform - - uid: 17655 + - uid: 17711 components: - rot: 1.5707963267948966 rad pos: -40.5,-57.5 parent: 2 type: Transform - - uid: 17656 + - uid: 17712 components: - rot: 1.5707963267948966 rad pos: -41.5,-55.5 @@ -114191,7 +114495,7 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 17657 + - uid: 17713 components: - rot: 1.5707963267948966 rad pos: -36.5,-57.5 @@ -114199,37 +114503,37 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17658 + - uid: 17714 components: - rot: 3.141592653589793 rad pos: -42.5,-39.5 parent: 2 type: Transform - - uid: 17659 + - uid: 17715 components: - rot: 3.141592653589793 rad pos: -42.5,-38.5 parent: 2 type: Transform - - uid: 17660 + - uid: 17716 components: - rot: 3.141592653589793 rad pos: -42.5,-37.5 parent: 2 type: Transform - - uid: 17661 + - uid: 17717 components: - rot: 3.141592653589793 rad pos: -42.5,-36.5 parent: 2 type: Transform - - uid: 17662 + - uid: 17718 components: - rot: 3.141592653589793 rad pos: -38.5,-59.5 parent: 2 type: Transform - - uid: 17663 + - uid: 17719 components: - rot: 3.141592653589793 rad pos: -40.5,-52.5 @@ -114237,7 +114541,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 17664 + - uid: 17720 components: - rot: 3.141592653589793 rad pos: -37.5,-52.5 @@ -114245,7 +114549,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 17665 + - uid: 17721 components: - rot: 1.5707963267948966 rad pos: -37.5,-55.5 @@ -114253,7 +114557,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17666 + - uid: 17722 components: - rot: -1.5707963267948966 rad pos: -38.5,-55.5 @@ -114261,7 +114565,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17667 + - uid: 17723 components: - rot: 1.5707963267948966 rad pos: -39.5,-48.5 @@ -114269,7 +114573,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 17668 + - uid: 17724 components: - rot: 3.141592653589793 rad pos: -38.5,-47.5 @@ -114277,7 +114581,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 17669 + - uid: 17725 components: - rot: 3.141592653589793 rad pos: -38.5,-46.5 @@ -114285,7 +114589,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 17670 + - uid: 17726 components: - rot: 1.5707963267948966 rad pos: -35.5,-57.5 @@ -114293,35 +114597,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17671 + - uid: 17727 components: - pos: -31.5,-31.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17672 + - uid: 17728 components: - pos: -32.5,-31.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17673 + - uid: 17729 components: - pos: -32.5,-32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17674 + - uid: 17730 components: - pos: -31.5,-32.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17675 + - uid: 17731 components: - rot: 3.141592653589793 rad pos: -31.5,-33.5 @@ -114329,7 +114633,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17676 + - uid: 17732 components: - rot: 3.141592653589793 rad pos: -32.5,-34.5 @@ -114337,7 +114641,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17677 + - uid: 17733 components: - rot: 1.5707963267948966 rad pos: -31.5,-33.5 @@ -114345,7 +114649,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17678 + - uid: 17734 components: - rot: 1.5707963267948966 rad pos: -30.5,-33.5 @@ -114353,7 +114657,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17679 + - uid: 17735 components: - rot: 1.5707963267948966 rad pos: -29.5,-33.5 @@ -114361,7 +114665,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17680 + - uid: 17736 components: - rot: 1.5707963267948966 rad pos: -28.5,-33.5 @@ -114369,7 +114673,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17681 + - uid: 17737 components: - rot: 1.5707963267948966 rad pos: -27.5,-33.5 @@ -114377,7 +114681,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17682 + - uid: 17738 components: - rot: 1.5707963267948966 rad pos: -26.5,-33.5 @@ -114385,7 +114689,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17683 + - uid: 17739 components: - rot: 1.5707963267948966 rad pos: -25.5,-33.5 @@ -114393,7 +114697,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17684 + - uid: 17740 components: - rot: 1.5707963267948966 rad pos: -34.5,-33.5 @@ -114401,7 +114705,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17685 + - uid: 17741 components: - rot: 1.5707963267948966 rad pos: -35.5,-33.5 @@ -114409,7 +114713,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17686 + - uid: 17742 components: - rot: 1.5707963267948966 rad pos: -36.5,-33.5 @@ -114417,7 +114721,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17687 + - uid: 17743 components: - rot: 1.5707963267948966 rad pos: -37.5,-33.5 @@ -114425,7 +114729,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17688 + - uid: 17744 components: - rot: 1.5707963267948966 rad pos: -32.5,-34.5 @@ -114433,7 +114737,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17689 + - uid: 17745 components: - rot: 1.5707963267948966 rad pos: -33.5,-34.5 @@ -114441,7 +114745,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17690 + - uid: 17746 components: - rot: 1.5707963267948966 rad pos: -34.5,-34.5 @@ -114449,7 +114753,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17691 + - uid: 17747 components: - rot: 1.5707963267948966 rad pos: -35.5,-34.5 @@ -114457,7 +114761,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17692 + - uid: 17748 components: - rot: 1.5707963267948966 rad pos: -36.5,-34.5 @@ -114465,7 +114769,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17693 + - uid: 17749 components: - rot: 1.5707963267948966 rad pos: -37.5,-34.5 @@ -114473,70 +114777,70 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17694 + - uid: 17750 components: - pos: -32.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17695 + - uid: 17751 components: - pos: -32.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17696 + - uid: 17752 components: - pos: -32.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17697 + - uid: 17753 components: - pos: -31.5,-35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17698 + - uid: 17754 components: - pos: -31.5,-36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17699 + - uid: 17755 components: - pos: -31.5,-38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17700 + - uid: 17756 components: - pos: -31.5,-37.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17701 + - uid: 17757 components: - pos: -31.5,-40.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17702 + - uid: 17758 components: - pos: -32.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17703 + - uid: 17759 components: - rot: -1.5707963267948966 rad pos: -29.5,-34.5 @@ -114544,7 +114848,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17704 + - uid: 17760 components: - rot: -1.5707963267948966 rad pos: -28.5,-34.5 @@ -114552,7 +114856,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17705 + - uid: 17761 components: - rot: -1.5707963267948966 rad pos: -27.5,-34.5 @@ -114560,7 +114864,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17706 + - uid: 17762 components: - rot: -1.5707963267948966 rad pos: -26.5,-34.5 @@ -114568,7 +114872,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17707 + - uid: 17763 components: - rot: -1.5707963267948966 rad pos: -25.5,-34.5 @@ -114576,7 +114880,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17708 + - uid: 17764 components: - rot: -1.5707963267948966 rad pos: -24.5,-34.5 @@ -114584,21 +114888,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17709 + - uid: 17765 components: - pos: -37.5,-55.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17710 + - uid: 17766 components: - pos: -37.5,-56.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17711 + - uid: 17767 components: - rot: 1.5707963267948966 rad pos: -36.5,-55.5 @@ -114606,7 +114910,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17712 + - uid: 17768 components: - rot: 3.141592653589793 rad pos: -35.5,-54.5 @@ -114614,7 +114918,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17713 + - uid: 17769 components: - rot: 3.141592653589793 rad pos: -35.5,-52.5 @@ -114622,7 +114926,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17714 + - uid: 17770 components: - rot: 3.141592653589793 rad pos: -35.5,-51.5 @@ -114630,7 +114934,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17715 + - uid: 17771 components: - rot: 3.141592653589793 rad pos: -35.5,-50.5 @@ -114638,7 +114942,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17716 + - uid: 17772 components: - rot: 3.141592653589793 rad pos: -35.5,-49.5 @@ -114646,7 +114950,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17717 + - uid: 17773 components: - rot: 3.141592653589793 rad pos: -35.5,-48.5 @@ -114654,7 +114958,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17718 + - uid: 17774 components: - rot: 3.141592653589793 rad pos: -35.5,-47.5 @@ -114662,7 +114966,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17719 + - uid: 17775 components: - rot: 3.141592653589793 rad pos: -35.5,-46.5 @@ -114670,7 +114974,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17720 + - uid: 17776 components: - rot: 3.141592653589793 rad pos: -35.5,-45.5 @@ -114678,7 +114982,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17721 + - uid: 17777 components: - rot: 3.141592653589793 rad pos: -35.5,-43.5 @@ -114686,7 +114990,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17722 + - uid: 17778 components: - rot: 3.141592653589793 rad pos: -35.5,-42.5 @@ -114694,7 +114998,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17723 + - uid: 17779 components: - rot: 3.141592653589793 rad pos: -34.5,-56.5 @@ -114702,7 +115006,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17724 + - uid: 17780 components: - rot: 3.141592653589793 rad pos: -34.5,-55.5 @@ -114710,7 +115014,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17725 + - uid: 17781 components: - rot: 3.141592653589793 rad pos: -34.5,-54.5 @@ -114718,7 +115022,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17726 + - uid: 17782 components: - rot: 3.141592653589793 rad pos: -34.5,-53.5 @@ -114726,7 +115030,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17727 + - uid: 17783 components: - rot: 3.141592653589793 rad pos: -34.5,-52.5 @@ -114734,7 +115038,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17728 + - uid: 17784 components: - rot: 3.141592653589793 rad pos: -34.5,-51.5 @@ -114742,7 +115046,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17729 + - uid: 17785 components: - rot: 3.141592653589793 rad pos: -34.5,-50.5 @@ -114750,7 +115054,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17730 + - uid: 17786 components: - rot: 3.141592653589793 rad pos: -34.5,-49.5 @@ -114758,7 +115062,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17731 + - uid: 17787 components: - rot: 3.141592653589793 rad pos: -34.5,-48.5 @@ -114766,7 +115070,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17732 + - uid: 17788 components: - rot: 3.141592653589793 rad pos: -34.5,-47.5 @@ -114774,7 +115078,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17733 + - uid: 17789 components: - rot: 3.141592653589793 rad pos: -34.5,-46.5 @@ -114782,7 +115086,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17734 + - uid: 17790 components: - rot: -1.5707963267948966 rad pos: -33.5,-40.5 @@ -114790,14 +115094,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17735 + - uid: 17791 components: - pos: -34.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17736 + - uid: 17792 components: - rot: -1.5707963267948966 rad pos: -34.5,-41.5 @@ -114805,7 +115109,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17737 + - uid: 17793 components: - rot: -1.5707963267948966 rad pos: -33.5,-41.5 @@ -114813,7 +115117,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17738 + - uid: 17794 components: - rot: -1.5707963267948966 rad pos: -32.5,-41.5 @@ -114821,63 +115125,63 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17739 + - uid: 17795 components: - pos: -38.5,-44.5 parent: 2 type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 17740 + - uid: 17796 components: - pos: -38.5,-43.5 parent: 2 type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 17741 + - uid: 17797 components: - pos: -38.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17742 + - uid: 17798 components: - pos: -38.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17743 + - uid: 17799 components: - pos: -38.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17744 + - uid: 17800 components: - pos: -38.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17745 + - uid: 17801 components: - pos: -38.5,-37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17746 + - uid: 17802 components: - pos: -38.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17747 + - uid: 17803 components: - rot: -1.5707963267948966 rad pos: -39.5,-35.5 @@ -114885,7 +115189,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17748 + - uid: 17804 components: - rot: -1.5707963267948966 rad pos: -41.5,-34.5 @@ -114893,7 +115197,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17749 + - uid: 17805 components: - rot: -1.5707963267948966 rad pos: -42.5,-34.5 @@ -114901,7 +115205,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17750 + - uid: 17806 components: - rot: 3.141592653589793 rad pos: -41.5,-8.5 @@ -114909,7 +115213,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17751 + - uid: 17807 components: - rot: -1.5707963267948966 rad pos: -23.5,-57.5 @@ -114917,7 +115221,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17752 + - uid: 17808 components: - rot: -1.5707963267948966 rad pos: -22.5,-57.5 @@ -114925,7 +115229,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17753 + - uid: 17809 components: - rot: -1.5707963267948966 rad pos: -20.5,-57.5 @@ -114933,7 +115237,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17754 + - uid: 17810 components: - rot: -1.5707963267948966 rad pos: -21.5,-57.5 @@ -114941,7 +115245,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17755 + - uid: 17811 components: - rot: -1.5707963267948966 rad pos: -19.5,-60.5 @@ -114949,7 +115253,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17756 + - uid: 17812 components: - rot: -1.5707963267948966 rad pos: -19.5,-71.5 @@ -114957,7 +115261,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17757 + - uid: 17813 components: - rot: -1.5707963267948966 rad pos: -20.5,-71.5 @@ -114965,7 +115269,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17758 + - uid: 17814 components: - rot: -1.5707963267948966 rad pos: -21.5,-71.5 @@ -114973,7 +115277,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17759 + - uid: 17815 components: - rot: -1.5707963267948966 rad pos: -22.5,-71.5 @@ -114981,7 +115285,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17760 + - uid: 17816 components: - rot: -1.5707963267948966 rad pos: -23.5,-71.5 @@ -114989,7 +115293,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17761 + - uid: 17817 components: - rot: -1.5707963267948966 rad pos: -24.5,-71.5 @@ -114997,7 +115301,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17762 + - uid: 17818 components: - rot: -1.5707963267948966 rad pos: -25.5,-71.5 @@ -115005,7 +115309,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17763 + - uid: 17819 components: - rot: -1.5707963267948966 rad pos: -26.5,-71.5 @@ -115013,7 +115317,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17764 + - uid: 17820 components: - rot: 3.141592653589793 rad pos: -28.5,-71.5 @@ -115021,7 +115325,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17765 + - uid: 17821 components: - rot: -1.5707963267948966 rad pos: -27.5,-71.5 @@ -115029,7 +115333,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17766 + - uid: 17822 components: - rot: 3.141592653589793 rad pos: -28.5,-70.5 @@ -115037,7 +115341,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17767 + - uid: 17823 components: - rot: -1.5707963267948966 rad pos: -31.5,-71.5 @@ -115045,7 +115349,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17768 + - uid: 17824 components: - rot: -1.5707963267948966 rad pos: -32.5,-71.5 @@ -115053,7 +115357,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17769 + - uid: 17825 components: - rot: -1.5707963267948966 rad pos: -33.5,-71.5 @@ -115061,7 +115365,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17770 + - uid: 17826 components: - rot: -1.5707963267948966 rad pos: -34.5,-71.5 @@ -115069,7 +115373,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17771 + - uid: 17827 components: - rot: -1.5707963267948966 rad pos: -35.5,-71.5 @@ -115077,7 +115381,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17772 + - uid: 17828 components: - rot: -1.5707963267948966 rad pos: -36.5,-71.5 @@ -115085,7 +115389,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17773 + - uid: 17829 components: - rot: -1.5707963267948966 rad pos: -37.5,-71.5 @@ -115093,7 +115397,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17774 + - uid: 17830 components: - rot: -1.5707963267948966 rad pos: -38.5,-71.5 @@ -115101,7 +115405,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17775 + - uid: 17831 components: - rot: -1.5707963267948966 rad pos: -39.5,-71.5 @@ -115109,7 +115413,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17776 + - uid: 17832 components: - rot: -1.5707963267948966 rad pos: -21.5,-69.5 @@ -115117,7 +115421,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17777 + - uid: 17833 components: - rot: -1.5707963267948966 rad pos: -22.5,-69.5 @@ -115125,7 +115429,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17778 + - uid: 17834 components: - rot: -1.5707963267948966 rad pos: -23.5,-69.5 @@ -115133,7 +115437,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17779 + - uid: 17835 components: - rot: -1.5707963267948966 rad pos: -24.5,-69.5 @@ -115141,7 +115445,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17780 + - uid: 17836 components: - rot: -1.5707963267948966 rad pos: -25.5,-69.5 @@ -115149,7 +115453,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17781 + - uid: 17837 components: - rot: -1.5707963267948966 rad pos: -26.5,-69.5 @@ -115157,7 +115461,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17782 + - uid: 17838 components: - rot: -1.5707963267948966 rad pos: -28.5,-71.5 @@ -115165,7 +115469,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17783 + - uid: 17839 components: - rot: -1.5707963267948966 rad pos: -29.5,-69.5 @@ -115173,7 +115477,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17784 + - uid: 17840 components: - rot: -1.5707963267948966 rad pos: -31.5,-69.5 @@ -115181,7 +115485,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17785 + - uid: 17841 components: - rot: -1.5707963267948966 rad pos: -32.5,-69.5 @@ -115189,7 +115493,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17786 + - uid: 17842 components: - rot: -1.5707963267948966 rad pos: -33.5,-69.5 @@ -115197,7 +115501,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17787 + - uid: 17843 components: - rot: -1.5707963267948966 rad pos: -34.5,-69.5 @@ -115205,7 +115509,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17788 + - uid: 17844 components: - rot: -1.5707963267948966 rad pos: -35.5,-69.5 @@ -115213,7 +115517,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17789 + - uid: 17845 components: - rot: -1.5707963267948966 rad pos: -36.5,-69.5 @@ -115221,7 +115525,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17790 + - uid: 17846 components: - rot: -1.5707963267948966 rad pos: -37.5,-69.5 @@ -115229,7 +115533,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17791 + - uid: 17847 components: - rot: -1.5707963267948966 rad pos: -38.5,-69.5 @@ -115237,7 +115541,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17792 + - uid: 17848 components: - rot: -1.5707963267948966 rad pos: -39.5,-69.5 @@ -115245,7 +115549,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17793 + - uid: 17849 components: - rot: -1.5707963267948966 rad pos: -40.5,-69.5 @@ -115253,7 +115557,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17794 + - uid: 17850 components: - rot: -1.5707963267948966 rad pos: -41.5,-69.5 @@ -115261,14 +115565,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17795 + - uid: 17851 components: - pos: -42.5,-70.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17796 + - uid: 17852 components: - rot: 1.5707963267948966 rad pos: -22.5,-58.5 @@ -115276,7 +115580,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17797 + - uid: 17853 components: - rot: 1.5707963267948966 rad pos: -21.5,-58.5 @@ -115284,7 +115588,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17798 + - uid: 17854 components: - rot: 3.141592653589793 rad pos: 21.5,-28.5 @@ -115292,14 +115596,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17799 + - uid: 17855 components: - pos: 23.5,-28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17800 + - uid: 17856 components: - rot: 1.5707963267948966 rad pos: -35.5,20.5 @@ -115307,7 +115611,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17801 + - uid: 17857 components: - rot: -1.5707963267948966 rad pos: -13.5,39.5 @@ -115315,7 +115619,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17802 + - uid: 17858 components: - rot: -1.5707963267948966 rad pos: -15.5,39.5 @@ -115323,7 +115627,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17803 + - uid: 17859 components: - rot: -1.5707963267948966 rad pos: -14.5,39.5 @@ -115331,7 +115635,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17804 + - uid: 17860 components: - rot: -1.5707963267948966 rad pos: -20.5,23.5 @@ -115339,91 +115643,91 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17805 + - uid: 17861 components: - pos: -20.5,14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17806 + - uid: 17862 components: - pos: -20.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17807 + - uid: 17863 components: - pos: -20.5,17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17808 + - uid: 17864 components: - pos: -20.5,18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17809 + - uid: 17865 components: - pos: -20.5,19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17810 + - uid: 17866 components: - pos: -18.5,13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17811 + - uid: 17867 components: - pos: -18.5,14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17812 + - uid: 17868 components: - pos: -18.5,15.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17813 + - uid: 17869 components: - pos: -18.5,16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17814 + - uid: 17870 components: - pos: -18.5,17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17815 + - uid: 17871 components: - pos: -18.5,18.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17816 + - uid: 17872 components: - pos: -18.5,20.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17817 + - uid: 17873 components: - rot: 3.141592653589793 rad pos: -18.5,21.5 @@ -115431,7 +115735,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17818 + - uid: 17874 components: - rot: -1.5707963267948966 rad pos: -21.5,20.5 @@ -115439,7 +115743,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17819 + - uid: 17875 components: - rot: -1.5707963267948966 rad pos: -22.5,20.5 @@ -115447,7 +115751,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17820 + - uid: 17876 components: - rot: 3.141592653589793 rad pos: -18.5,22.5 @@ -115455,7 +115759,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17821 + - uid: 17877 components: - rot: -1.5707963267948966 rad pos: -19.5,23.5 @@ -115463,7 +115767,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17822 + - uid: 17878 components: - rot: -1.5707963267948966 rad pos: -21.5,23.5 @@ -115471,7 +115775,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17823 + - uid: 17879 components: - rot: -1.5707963267948966 rad pos: -22.5,23.5 @@ -115479,7 +115783,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17824 + - uid: 17880 components: - rot: -1.5707963267948966 rad pos: -23.5,23.5 @@ -115487,7 +115791,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17825 + - uid: 17881 components: - rot: -1.5707963267948966 rad pos: -25.5,23.5 @@ -115495,7 +115799,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17826 + - uid: 17882 components: - rot: -1.5707963267948966 rad pos: -26.5,23.5 @@ -115503,7 +115807,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17827 + - uid: 17883 components: - rot: -1.5707963267948966 rad pos: -27.5,23.5 @@ -115511,7 +115815,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17828 + - uid: 17884 components: - rot: 1.5707963267948966 rad pos: -27.5,20.5 @@ -115519,7 +115823,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17829 + - uid: 17885 components: - rot: 1.5707963267948966 rad pos: -26.5,20.5 @@ -115527,7 +115831,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17830 + - uid: 17886 components: - rot: 1.5707963267948966 rad pos: -25.5,20.5 @@ -115535,7 +115839,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17831 + - uid: 17887 components: - rot: 1.5707963267948966 rad pos: -24.5,20.5 @@ -115543,7 +115847,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17832 + - uid: 17888 components: - rot: 1.5707963267948966 rad pos: -29.5,23.5 @@ -115551,7 +115855,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17833 + - uid: 17889 components: - rot: 1.5707963267948966 rad pos: -30.5,23.5 @@ -115559,7 +115863,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17834 + - uid: 17890 components: - rot: 1.5707963267948966 rad pos: -31.5,23.5 @@ -115567,7 +115871,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17835 + - uid: 17891 components: - rot: 1.5707963267948966 rad pos: -29.5,20.5 @@ -115575,7 +115879,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17836 + - uid: 17892 components: - rot: 1.5707963267948966 rad pos: -30.5,20.5 @@ -115583,7 +115887,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17837 + - uid: 17893 components: - rot: 1.5707963267948966 rad pos: -31.5,20.5 @@ -115591,7 +115895,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17838 + - uid: 17894 components: - rot: 1.5707963267948966 rad pos: -33.5,23.5 @@ -115599,7 +115903,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17839 + - uid: 17895 components: - rot: 1.5707963267948966 rad pos: -34.5,23.5 @@ -115607,7 +115911,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17840 + - uid: 17896 components: - rot: 1.5707963267948966 rad pos: -35.5,23.5 @@ -115615,7 +115919,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17841 + - uid: 17897 components: - rot: 1.5707963267948966 rad pos: -36.5,23.5 @@ -115623,84 +115927,84 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17842 + - uid: 17898 components: - pos: -32.5,24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17843 + - uid: 17899 components: - pos: -32.5,25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17844 + - uid: 17900 components: - pos: -32.5,26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17845 + - uid: 17901 components: - pos: -32.5,27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17846 + - uid: 17902 components: - pos: -33.5,21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17847 + - uid: 17903 components: - pos: -33.5,22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17848 + - uid: 17904 components: - pos: -33.5,23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17849 + - uid: 17905 components: - pos: -33.5,24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17850 + - uid: 17906 components: - pos: -33.5,25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17851 + - uid: 17907 components: - pos: -33.5,26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17852 + - uid: 17908 components: - pos: -33.5,27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17853 + - uid: 17909 components: - rot: 1.5707963267948966 rad pos: -37.5,23.5 @@ -115708,7 +116012,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17854 + - uid: 17910 components: - rot: 1.5707963267948966 rad pos: -38.5,23.5 @@ -115716,7 +116020,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17855 + - uid: 17911 components: - rot: 1.5707963267948966 rad pos: -39.5,23.5 @@ -115724,7 +116028,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17856 + - uid: 17912 components: - rot: 1.5707963267948966 rad pos: -37.5,20.5 @@ -115732,7 +116036,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17857 + - uid: 17913 components: - rot: 1.5707963267948966 rad pos: -38.5,20.5 @@ -115740,7 +116044,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17858 + - uid: 17914 components: - rot: 1.5707963267948966 rad pos: -39.5,20.5 @@ -115748,7 +116052,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17859 + - uid: 17915 components: - rot: 1.5707963267948966 rad pos: -40.5,20.5 @@ -115756,84 +116060,84 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17860 + - uid: 17916 components: - pos: -40.5,24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17861 + - uid: 17917 components: - pos: -40.5,25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17862 + - uid: 17918 components: - pos: -40.5,26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17863 + - uid: 17919 components: - pos: -40.5,27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17864 + - uid: 17920 components: - pos: -41.5,21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17865 + - uid: 17921 components: - pos: -41.5,22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17866 + - uid: 17922 components: - pos: -41.5,23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17867 + - uid: 17923 components: - pos: -41.5,24.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17868 + - uid: 17924 components: - pos: -41.5,25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17869 + - uid: 17925 components: - pos: -41.5,26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17870 + - uid: 17926 components: - pos: -41.5,27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17871 + - uid: 17927 components: - rot: -1.5707963267948966 rad pos: -12.5,39.5 @@ -115841,49 +116145,49 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17872 + - uid: 17928 components: - pos: -40.5,32.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17873 + - uid: 17929 components: - pos: -40.5,31.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17874 + - uid: 17930 components: - pos: -41.5,30.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17875 + - uid: 17931 components: - pos: -40.5,29.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17876 + - uid: 17932 components: - pos: -40.5,28.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17877 + - uid: 17933 components: - pos: -41.5,28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17878 + - uid: 17934 components: - rot: -1.5707963267948966 rad pos: -40.5,29.5 @@ -115891,7 +116195,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17879 + - uid: 17935 components: - rot: -1.5707963267948966 rad pos: -39.5,29.5 @@ -115899,7 +116203,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17880 + - uid: 17936 components: - rot: -1.5707963267948966 rad pos: -38.5,29.5 @@ -115907,7 +116211,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17881 + - uid: 17937 components: - rot: -1.5707963267948966 rad pos: -39.5,30.5 @@ -115915,7 +116219,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17882 + - uid: 17938 components: - rot: -1.5707963267948966 rad pos: -38.5,30.5 @@ -115923,7 +116227,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17883 + - uid: 17939 components: - rot: -1.5707963267948966 rad pos: -41.5,33.5 @@ -115931,7 +116235,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17884 + - uid: 17940 components: - rot: -1.5707963267948966 rad pos: -42.5,33.5 @@ -115939,7 +116243,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17885 + - uid: 17941 components: - rot: -1.5707963267948966 rad pos: -43.5,33.5 @@ -115947,7 +116251,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17886 + - uid: 17942 components: - rot: -1.5707963267948966 rad pos: -42.5,31.5 @@ -115955,7 +116259,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17887 + - uid: 17943 components: - rot: -1.5707963267948966 rad pos: -43.5,31.5 @@ -115963,14 +116267,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17888 + - uid: 17944 components: - pos: -49.5,32.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17889 + - uid: 17945 components: - rot: 1.5707963267948966 rad pos: -48.5,33.5 @@ -115978,7 +116282,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17890 + - uid: 17946 components: - rot: 1.5707963267948966 rad pos: -47.5,33.5 @@ -115986,7 +116290,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17891 + - uid: 17947 components: - rot: 1.5707963267948966 rad pos: -46.5,33.5 @@ -115994,7 +116298,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17892 + - uid: 17948 components: - rot: 1.5707963267948966 rad pos: -45.5,31.5 @@ -116002,7 +116306,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17893 + - uid: 17949 components: - rot: -1.5707963267948966 rad pos: -21.5,13.5 @@ -116010,7 +116314,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17894 + - uid: 17950 components: - rot: -1.5707963267948966 rad pos: -22.5,13.5 @@ -116018,7 +116322,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17895 + - uid: 17951 components: - rot: -1.5707963267948966 rad pos: -23.5,13.5 @@ -116026,7 +116330,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17896 + - uid: 17952 components: - rot: -1.5707963267948966 rad pos: -24.5,13.5 @@ -116034,7 +116338,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17897 + - uid: 17953 components: - rot: -1.5707963267948966 rad pos: -19.5,12.5 @@ -116042,7 +116346,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17898 + - uid: 17954 components: - rot: -1.5707963267948966 rad pos: -20.5,12.5 @@ -116050,7 +116354,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17899 + - uid: 17955 components: - rot: -1.5707963267948966 rad pos: -21.5,12.5 @@ -116058,7 +116362,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17900 + - uid: 17956 components: - rot: -1.5707963267948966 rad pos: -22.5,12.5 @@ -116066,7 +116370,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17901 + - uid: 17957 components: - rot: -1.5707963267948966 rad pos: -23.5,12.5 @@ -116074,7 +116378,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17902 + - uid: 17958 components: - rot: -1.5707963267948966 rad pos: -24.5,12.5 @@ -116082,7 +116386,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17903 + - uid: 17959 components: - rot: -1.5707963267948966 rad pos: -25.5,12.5 @@ -116090,14 +116394,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17904 + - uid: 17960 components: - pos: 71.5,-30.5 parent: 2 type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 17905 + - uid: 17961 components: - rot: -1.5707963267948966 rad pos: -27.5,1.5 @@ -116105,7 +116409,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17906 + - uid: 17962 components: - rot: -1.5707963267948966 rad pos: -29.5,1.5 @@ -116113,7 +116417,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17907 + - uid: 17963 components: - rot: -1.5707963267948966 rad pos: -30.5,1.5 @@ -116121,7 +116425,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17908 + - uid: 17964 components: - rot: -1.5707963267948966 rad pos: -31.5,1.5 @@ -116129,7 +116433,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17909 + - uid: 17965 components: - rot: -1.5707963267948966 rad pos: -32.5,1.5 @@ -116137,7 +116441,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17910 + - uid: 17966 components: - rot: -1.5707963267948966 rad pos: -33.5,1.5 @@ -116145,7 +116449,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17911 + - uid: 17967 components: - rot: -1.5707963267948966 rad pos: -34.5,1.5 @@ -116153,7 +116457,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17912 + - uid: 17968 components: - rot: -1.5707963267948966 rad pos: -35.5,1.5 @@ -116161,7 +116465,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17913 + - uid: 17969 components: - rot: -1.5707963267948966 rad pos: -36.5,1.5 @@ -116169,7 +116473,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17914 + - uid: 17970 components: - rot: -1.5707963267948966 rad pos: -25.5,0.5 @@ -116177,7 +116481,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17915 + - uid: 17971 components: - rot: -1.5707963267948966 rad pos: -26.5,0.5 @@ -116185,7 +116489,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17916 + - uid: 17972 components: - rot: -1.5707963267948966 rad pos: -27.5,0.5 @@ -116193,7 +116497,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17917 + - uid: 17973 components: - rot: -1.5707963267948966 rad pos: -28.5,0.5 @@ -116201,7 +116505,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17918 + - uid: 17974 components: - rot: -1.5707963267948966 rad pos: -30.5,0.5 @@ -116209,7 +116513,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17919 + - uid: 17975 components: - rot: -1.5707963267948966 rad pos: -31.5,0.5 @@ -116217,7 +116521,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17920 + - uid: 17976 components: - rot: -1.5707963267948966 rad pos: -32.5,0.5 @@ -116225,7 +116529,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17921 + - uid: 17977 components: - rot: -1.5707963267948966 rad pos: -33.5,0.5 @@ -116233,7 +116537,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17922 + - uid: 17978 components: - rot: -1.5707963267948966 rad pos: -34.5,0.5 @@ -116241,7 +116545,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17923 + - uid: 17979 components: - rot: -1.5707963267948966 rad pos: -35.5,0.5 @@ -116249,7 +116553,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17924 + - uid: 17980 components: - rot: -1.5707963267948966 rad pos: -36.5,0.5 @@ -116257,7 +116561,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17925 + - uid: 17981 components: - rot: -1.5707963267948966 rad pos: -37.5,0.5 @@ -116265,56 +116569,56 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17926 + - uid: 17982 components: - pos: -28.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17927 + - uid: 17983 components: - pos: -28.5,-0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17928 + - uid: 17984 components: - pos: -28.5,-1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17929 + - uid: 17985 components: - pos: -28.5,-2.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17930 + - uid: 17986 components: - pos: -29.5,-0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17931 + - uid: 17987 components: - pos: -29.5,-1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17932 + - uid: 17988 components: - pos: -29.5,-2.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17933 + - uid: 17989 components: - rot: 3.141592653589793 rad pos: -37.5,2.5 @@ -116322,7 +116626,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17934 + - uid: 17990 components: - rot: 3.141592653589793 rad pos: -37.5,3.5 @@ -116330,7 +116634,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17935 + - uid: 17991 components: - rot: 3.141592653589793 rad pos: -37.5,4.5 @@ -116338,7 +116642,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17936 + - uid: 17992 components: - rot: 3.141592653589793 rad pos: -37.5,6.5 @@ -116346,7 +116650,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17937 + - uid: 17993 components: - rot: 3.141592653589793 rad pos: -37.5,7.5 @@ -116354,7 +116658,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17938 + - uid: 17994 components: - rot: 3.141592653589793 rad pos: -38.5,1.5 @@ -116362,7 +116666,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17939 + - uid: 17995 components: - rot: 3.141592653589793 rad pos: -38.5,2.5 @@ -116370,7 +116674,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17940 + - uid: 17996 components: - rot: 3.141592653589793 rad pos: -38.5,4.5 @@ -116378,7 +116682,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17941 + - uid: 17997 components: - rot: 3.141592653589793 rad pos: -38.5,5.5 @@ -116386,7 +116690,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17942 + - uid: 17998 components: - rot: 3.141592653589793 rad pos: -38.5,6.5 @@ -116394,7 +116698,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17943 + - uid: 17999 components: - rot: 3.141592653589793 rad pos: -38.5,7.5 @@ -116402,7 +116706,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17944 + - uid: 18000 components: - rot: 3.141592653589793 rad pos: -37.5,9.5 @@ -116410,7 +116714,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17945 + - uid: 18001 components: - rot: 3.141592653589793 rad pos: -37.5,10.5 @@ -116418,7 +116722,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17946 + - uid: 18002 components: - rot: 3.141592653589793 rad pos: -37.5,11.5 @@ -116426,7 +116730,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17947 + - uid: 18003 components: - rot: 3.141592653589793 rad pos: -37.5,12.5 @@ -116434,7 +116738,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17948 + - uid: 18004 components: - rot: 3.141592653589793 rad pos: -38.5,9.5 @@ -116442,7 +116746,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17949 + - uid: 18005 components: - rot: 3.141592653589793 rad pos: -38.5,10.5 @@ -116450,7 +116754,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17950 + - uid: 18006 components: - rot: 3.141592653589793 rad pos: -38.5,11.5 @@ -116458,7 +116762,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17951 + - uid: 18007 components: - rot: 3.141592653589793 rad pos: -38.5,12.5 @@ -116466,14 +116770,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17952 + - uid: 18008 components: - pos: -38.5,13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17953 + - uid: 18009 components: - rot: 1.5707963267948966 rad pos: -37.5,14.5 @@ -116481,7 +116785,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17954 + - uid: 18010 components: - rot: 1.5707963267948966 rad pos: -36.5,14.5 @@ -116489,7 +116793,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17955 + - uid: 18011 components: - rot: 1.5707963267948966 rad pos: -35.5,14.5 @@ -116497,7 +116801,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17956 + - uid: 18012 components: - rot: 1.5707963267948966 rad pos: -34.5,14.5 @@ -116505,7 +116809,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17957 + - uid: 18013 components: - rot: 1.5707963267948966 rad pos: -33.5,14.5 @@ -116513,7 +116817,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17958 + - uid: 18014 components: - rot: 1.5707963267948966 rad pos: -32.5,14.5 @@ -116521,7 +116825,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17959 + - uid: 18015 components: - rot: 1.5707963267948966 rad pos: -31.5,14.5 @@ -116529,7 +116833,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17960 + - uid: 18016 components: - rot: 1.5707963267948966 rad pos: -36.5,13.5 @@ -116537,7 +116841,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17961 + - uid: 18017 components: - rot: 1.5707963267948966 rad pos: -35.5,13.5 @@ -116545,7 +116849,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17962 + - uid: 18018 components: - rot: 1.5707963267948966 rad pos: -34.5,13.5 @@ -116553,7 +116857,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17963 + - uid: 18019 components: - rot: 1.5707963267948966 rad pos: -33.5,13.5 @@ -116561,7 +116865,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17964 + - uid: 18020 components: - rot: 1.5707963267948966 rad pos: -32.5,13.5 @@ -116569,7 +116873,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17965 + - uid: 18021 components: - rot: 1.5707963267948966 rad pos: -31.5,13.5 @@ -116577,7 +116881,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17966 + - uid: 18022 components: - rot: -1.5707963267948966 rad pos: -38.5,1.5 @@ -116585,7 +116889,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17967 + - uid: 18023 components: - rot: -1.5707963267948966 rad pos: -39.5,1.5 @@ -116593,7 +116897,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17968 + - uid: 18024 components: - rot: -1.5707963267948966 rad pos: -40.5,1.5 @@ -116601,7 +116905,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17969 + - uid: 18025 components: - rot: -1.5707963267948966 rad pos: -40.5,0.5 @@ -116609,7 +116913,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17970 + - uid: 18026 components: - rot: -1.5707963267948966 rad pos: -41.5,0.5 @@ -116617,7 +116921,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17971 + - uid: 18027 components: - rot: -1.5707963267948966 rad pos: -42.5,0.5 @@ -116625,7 +116929,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17972 + - uid: 18028 components: - rot: -1.5707963267948966 rad pos: -43.5,0.5 @@ -116633,7 +116937,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17973 + - uid: 18029 components: - rot: -1.5707963267948966 rad pos: -42.5,1.5 @@ -116641,7 +116945,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17974 + - uid: 18030 components: - rot: -1.5707963267948966 rad pos: -43.5,1.5 @@ -116649,7 +116953,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17975 + - uid: 18031 components: - rot: -1.5707963267948966 rad pos: -30.5,13.5 @@ -116657,7 +116961,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17976 + - uid: 18032 components: - rot: 3.141592653589793 rad pos: -30.5,13.5 @@ -116665,7 +116969,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17977 + - uid: 18033 components: - rot: 3.141592653589793 rad pos: -30.5,12.5 @@ -116673,7 +116977,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17978 + - uid: 18034 components: - rot: 3.141592653589793 rad pos: -30.5,11.5 @@ -116681,7 +116985,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17979 + - uid: 18035 components: - rot: 3.141592653589793 rad pos: -30.5,10.5 @@ -116689,7 +116993,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17980 + - uid: 18036 components: - rot: 3.141592653589793 rad pos: -29.5,12.5 @@ -116697,7 +117001,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17981 + - uid: 18037 components: - rot: 3.141592653589793 rad pos: -29.5,11.5 @@ -116705,7 +117009,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17982 + - uid: 18038 components: - rot: 3.141592653589793 rad pos: -29.5,10.5 @@ -116713,7 +117017,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17983 + - uid: 18039 components: - rot: 3.141592653589793 rad pos: -29.5,14.5 @@ -116721,7 +117025,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17984 + - uid: 18040 components: - rot: -1.5707963267948966 rad pos: -44.5,1.5 @@ -116729,7 +117033,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17985 + - uid: 18041 components: - rot: -1.5707963267948966 rad pos: -44.5,0.5 @@ -116737,7 +117041,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17986 + - uid: 18042 components: - rot: -1.5707963267948966 rad pos: -45.5,0.5 @@ -116745,7 +117049,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17987 + - uid: 18043 components: - rot: -1.5707963267948966 rad pos: -46.5,0.5 @@ -116753,49 +117057,49 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17988 + - uid: 18044 components: - pos: -45.5,2.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17989 + - uid: 18045 components: - pos: -45.5,3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17990 + - uid: 18046 components: - pos: -45.5,4.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17991 + - uid: 18047 components: - pos: -45.5,5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 17992 + - uid: 18048 components: - pos: -47.5,1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17993 + - uid: 18049 components: - pos: -47.5,2.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17994 + - uid: 18050 components: - rot: 3.141592653589793 rad pos: -47.5,4.5 @@ -116803,7 +117107,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17995 + - uid: 18051 components: - rot: 3.141592653589793 rad pos: -47.5,5.5 @@ -116811,7 +117115,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17996 + - uid: 18052 components: - rot: 3.141592653589793 rad pos: -47.5,6.5 @@ -116819,7 +117123,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17997 + - uid: 18053 components: - rot: 3.141592653589793 rad pos: -47.5,7.5 @@ -116827,7 +117131,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17998 + - uid: 18054 components: - rot: 3.141592653589793 rad pos: -47.5,8.5 @@ -116835,7 +117139,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 17999 + - uid: 18055 components: - rot: 3.141592653589793 rad pos: -47.5,9.5 @@ -116843,7 +117147,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18000 + - uid: 18056 components: - rot: -1.5707963267948966 rad pos: -48.5,10.5 @@ -116851,7 +117155,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18001 + - uid: 18057 components: - rot: 3.141592653589793 rad pos: -46.5,11.5 @@ -116859,7 +117163,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18002 + - uid: 18058 components: - rot: 3.141592653589793 rad pos: -46.5,12.5 @@ -116867,7 +117171,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18003 + - uid: 18059 components: - rot: 3.141592653589793 rad pos: -46.5,13.5 @@ -116875,7 +117179,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18004 + - uid: 18060 components: - rot: 1.5707963267948966 rad pos: -49.5,10.5 @@ -116883,7 +117187,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18005 + - uid: 18061 components: - rot: 1.5707963267948966 rad pos: -50.5,10.5 @@ -116891,42 +117195,42 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18006 + - uid: 18062 components: - pos: -52.5,11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18007 + - uid: 18063 components: - pos: -52.5,12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18008 + - uid: 18064 components: - pos: -52.5,13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18009 + - uid: 18065 components: - pos: -52.5,9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18010 + - uid: 18066 components: - pos: -52.5,8.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18011 + - uid: 18067 components: - rot: -1.5707963267948966 rad pos: -45.5,10.5 @@ -116934,7 +117238,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18012 + - uid: 18068 components: - rot: -1.5707963267948966 rad pos: -44.5,10.5 @@ -116942,7 +117246,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18013 + - uid: 18069 components: - rot: -1.5707963267948966 rad pos: -43.5,10.5 @@ -116950,7 +117254,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18014 + - uid: 18070 components: - rot: 1.5707963267948966 rad pos: -46.5,7.5 @@ -116958,7 +117262,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18015 + - uid: 18071 components: - rot: 1.5707963267948966 rad pos: -47.5,7.5 @@ -116966,7 +117270,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18016 + - uid: 18072 components: - rot: 1.5707963267948966 rad pos: -48.5,7.5 @@ -116974,7 +117278,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18017 + - uid: 18073 components: - rot: 1.5707963267948966 rad pos: -49.5,7.5 @@ -116982,7 +117286,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18018 + - uid: 18074 components: - rot: 1.5707963267948966 rad pos: -50.5,7.5 @@ -116990,28 +117294,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18019 + - uid: 18075 components: - pos: -45.5,8.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18020 + - uid: 18076 components: - pos: -45.5,9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18021 + - uid: 18077 components: - pos: -45.5,10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18022 + - uid: 18078 components: - rot: 3.141592653589793 rad pos: -45.5,12.5 @@ -117019,7 +117323,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18023 + - uid: 18079 components: - rot: 3.141592653589793 rad pos: -45.5,13.5 @@ -117027,7 +117331,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18024 + - uid: 18080 components: - rot: 1.5707963267948966 rad pos: -44.5,11.5 @@ -117035,7 +117339,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18025 + - uid: 18081 components: - rot: 1.5707963267948966 rad pos: -46.5,11.5 @@ -117043,7 +117347,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18026 + - uid: 18082 components: - rot: 1.5707963267948966 rad pos: -47.5,11.5 @@ -117051,7 +117355,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18027 + - uid: 18083 components: - rot: 1.5707963267948966 rad pos: -48.5,11.5 @@ -117059,7 +117363,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18028 + - uid: 18084 components: - rot: -1.5707963267948966 rad pos: -49.5,11.5 @@ -117067,7 +117371,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18029 + - uid: 18085 components: - rot: 1.5707963267948966 rad pos: -50.5,11.5 @@ -117075,7 +117379,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18030 + - uid: 18086 components: - rot: 3.141592653589793 rad pos: -51.5,12.5 @@ -117083,7 +117387,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18031 + - uid: 18087 components: - rot: 3.141592653589793 rad pos: -51.5,13.5 @@ -117091,14 +117395,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18032 + - uid: 18088 components: - pos: -46.5,14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18033 + - uid: 18089 components: - rot: 3.141592653589793 rad pos: -18.5,25.5 @@ -117106,7 +117410,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18034 + - uid: 18090 components: - rot: 3.141592653589793 rad pos: -20.5,21.5 @@ -117114,7 +117418,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18035 + - uid: 18091 components: - rot: 3.141592653589793 rad pos: -20.5,22.5 @@ -117122,7 +117426,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18036 + - uid: 18092 components: - rot: 3.141592653589793 rad pos: -20.5,23.5 @@ -117130,7 +117434,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18037 + - uid: 18093 components: - rot: 3.141592653589793 rad pos: -20.5,24.5 @@ -117138,7 +117442,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18038 + - uid: 18094 components: - rot: 1.5707963267948966 rad pos: 37.5,-72.5 @@ -117146,7 +117450,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18039 + - uid: 18095 components: - rot: 1.5707963267948966 rad pos: 22.5,-54.5 @@ -117154,7 +117458,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18040 + - uid: 18096 components: - rot: 1.5707963267948966 rad pos: 25.5,-53.5 @@ -117162,7 +117466,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18041 + - uid: 18097 components: - rot: 1.5707963267948966 rad pos: 24.5,-53.5 @@ -117170,7 +117474,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18042 + - uid: 18098 components: - rot: 1.5707963267948966 rad pos: 23.5,-53.5 @@ -117178,7 +117482,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18043 + - uid: 18099 components: - rot: 1.5707963267948966 rad pos: 22.5,-53.5 @@ -117186,7 +117490,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18044 + - uid: 18100 components: - rot: 1.5707963267948966 rad pos: 21.5,-53.5 @@ -117194,7 +117498,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18045 + - uid: 18101 components: - rot: 1.5707963267948966 rad pos: 20.5,-53.5 @@ -117202,7 +117506,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18046 + - uid: 18102 components: - rot: -1.5707963267948966 rad pos: -43.5,-71.5 @@ -117210,7 +117514,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18047 + - uid: 18103 components: - rot: -1.5707963267948966 rad pos: -44.5,-71.5 @@ -117218,35 +117522,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18048 + - uid: 18104 components: - pos: -45.5,-72.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18049 + - uid: 18105 components: - pos: -45.5,-73.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18050 + - uid: 18106 components: - pos: -45.5,-74.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18051 + - uid: 18107 components: - pos: -45.5,-75.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18052 + - uid: 18108 components: - rot: -1.5707963267948966 rad pos: -46.5,-76.5 @@ -117254,7 +117558,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18053 + - uid: 18109 components: - rot: -1.5707963267948966 rad pos: -47.5,-76.5 @@ -117262,7 +117566,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18054 + - uid: 18110 components: - rot: -1.5707963267948966 rad pos: -48.5,-76.5 @@ -117270,7 +117574,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18055 + - uid: 18111 components: - rot: -1.5707963267948966 rad pos: -49.5,-76.5 @@ -117278,7 +117582,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18056 + - uid: 18112 components: - rot: -1.5707963267948966 rad pos: -50.5,-76.5 @@ -117286,7 +117590,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18057 + - uid: 18113 components: - rot: -1.5707963267948966 rad pos: -51.5,-76.5 @@ -117294,7 +117598,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18058 + - uid: 18114 components: - rot: -1.5707963267948966 rad pos: -52.5,-76.5 @@ -117302,7 +117606,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18059 + - uid: 18115 components: - rot: -1.5707963267948966 rad pos: -53.5,-76.5 @@ -117310,7 +117614,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18060 + - uid: 18116 components: - rot: -1.5707963267948966 rad pos: -41.5,-72.5 @@ -117318,7 +117622,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18061 + - uid: 18117 components: - rot: -1.5707963267948966 rad pos: -42.5,-72.5 @@ -117326,7 +117630,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18062 + - uid: 18118 components: - rot: -1.5707963267948966 rad pos: -43.5,-72.5 @@ -117334,7 +117638,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18063 + - uid: 18119 components: - rot: -1.5707963267948966 rad pos: -44.5,-72.5 @@ -117342,7 +117646,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18064 + - uid: 18120 components: - rot: -1.5707963267948966 rad pos: -45.5,-72.5 @@ -117350,7 +117654,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18065 + - uid: 18121 components: - rot: 3.141592653589793 rad pos: -46.5,-73.5 @@ -117358,7 +117662,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18066 + - uid: 18122 components: - rot: 3.141592653589793 rad pos: -46.5,-74.5 @@ -117366,7 +117670,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18067 + - uid: 18123 components: - rot: 1.5707963267948966 rad pos: -47.5,-75.5 @@ -117374,7 +117678,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18068 + - uid: 18124 components: - rot: 1.5707963267948966 rad pos: -48.5,-75.5 @@ -117382,7 +117686,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18069 + - uid: 18125 components: - rot: 1.5707963267948966 rad pos: -49.5,-75.5 @@ -117390,7 +117694,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18070 + - uid: 18126 components: - rot: 1.5707963267948966 rad pos: -50.5,-75.5 @@ -117398,7 +117702,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18071 + - uid: 18127 components: - rot: 1.5707963267948966 rad pos: -51.5,-75.5 @@ -117406,7 +117710,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18072 + - uid: 18128 components: - rot: 1.5707963267948966 rad pos: -52.5,-75.5 @@ -117414,7 +117718,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18073 + - uid: 18129 components: - rot: 1.5707963267948966 rad pos: -53.5,-75.5 @@ -117422,7 +117726,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18074 + - uid: 18130 components: - rot: 1.5707963267948966 rad pos: -18.5,-41.5 @@ -117430,7 +117734,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18075 + - uid: 18131 components: - rot: 1.5707963267948966 rad pos: -17.5,-41.5 @@ -117438,7 +117742,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18076 + - uid: 18132 components: - rot: 1.5707963267948966 rad pos: -16.5,-41.5 @@ -117446,21 +117750,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18077 + - uid: 18133 components: - pos: -15.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18078 + - uid: 18134 components: - pos: -19.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18079 + - uid: 18135 components: - rot: 3.141592653589793 rad pos: 1.5,12.5 @@ -117468,7 +117772,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18080 + - uid: 18136 components: - rot: 3.141592653589793 rad pos: 1.5,13.5 @@ -117476,7 +117780,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18081 + - uid: 18137 components: - rot: 3.141592653589793 rad pos: 1.5,14.5 @@ -117484,7 +117788,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18082 + - uid: 18138 components: - rot: 3.141592653589793 rad pos: 1.5,15.5 @@ -117492,7 +117796,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18083 + - uid: 18139 components: - rot: 3.141592653589793 rad pos: 1.5,16.5 @@ -117500,7 +117804,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18084 + - uid: 18140 components: - rot: 3.141592653589793 rad pos: 1.5,17.5 @@ -117508,7 +117812,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18085 + - uid: 18141 components: - rot: 3.141592653589793 rad pos: 1.5,18.5 @@ -117516,7 +117820,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18086 + - uid: 18142 components: - rot: 3.141592653589793 rad pos: 1.5,19.5 @@ -117524,7 +117828,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18087 + - uid: 18143 components: - rot: 3.141592653589793 rad pos: 1.5,20.5 @@ -117532,7 +117836,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18088 + - uid: 18144 components: - rot: 3.141592653589793 rad pos: 1.5,21.5 @@ -117540,7 +117844,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18089 + - uid: 18145 components: - rot: 3.141592653589793 rad pos: 1.5,22.5 @@ -117548,7 +117852,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18090 + - uid: 18146 components: - rot: 3.141592653589793 rad pos: 1.5,23.5 @@ -117556,7 +117860,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18091 + - uid: 18147 components: - rot: 3.141592653589793 rad pos: 1.5,24.5 @@ -117564,7 +117868,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18092 + - uid: 18148 components: - rot: 3.141592653589793 rad pos: 1.5,25.5 @@ -117572,7 +117876,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18093 + - uid: 18149 components: - rot: -1.5707963267948966 rad pos: 28.5,1.5 @@ -117580,14 +117884,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18094 + - uid: 18150 components: - pos: -20.5,-59.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18095 + - uid: 18151 components: - rot: -1.5707963267948966 rad pos: -69.5,-23.5 @@ -117595,7 +117899,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18096 + - uid: 18152 components: - rot: -1.5707963267948966 rad pos: -70.5,-23.5 @@ -117603,7 +117907,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18097 + - uid: 18153 components: - rot: -1.5707963267948966 rad pos: -71.5,-23.5 @@ -117611,7 +117915,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18098 + - uid: 18154 components: - rot: -1.5707963267948966 rad pos: -65.5,-25.5 @@ -117619,7 +117923,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18099 + - uid: 18155 components: - rot: -1.5707963267948966 rad pos: -66.5,-25.5 @@ -117627,7 +117931,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18100 + - uid: 18156 components: - rot: -1.5707963267948966 rad pos: -67.5,-25.5 @@ -117635,7 +117939,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18101 + - uid: 18157 components: - rot: -1.5707963267948966 rad pos: -68.5,-25.5 @@ -117643,7 +117947,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18102 + - uid: 18158 components: - rot: -1.5707963267948966 rad pos: -69.5,-25.5 @@ -117651,7 +117955,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18103 + - uid: 18159 components: - rot: -1.5707963267948966 rad pos: -70.5,-25.5 @@ -117659,7 +117963,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18104 + - uid: 18160 components: - rot: 1.5707963267948966 rad pos: 18.5,-30.5 @@ -117667,7 +117971,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18105 + - uid: 18161 components: - rot: 3.141592653589793 rad pos: -23.5,-61.5 @@ -117675,7 +117979,7 @@ entities: type: Transform - color: '#97C3FCCC' type: AtmosPipeColor - - uid: 18106 + - uid: 18162 components: - rot: 3.141592653589793 rad pos: 30.5,-83.5 @@ -117683,7 +117987,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18107 + - uid: 18163 components: - rot: 3.141592653589793 rad pos: 25.5,-58.5 @@ -117691,7 +117995,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18108 + - uid: 18164 components: - rot: 3.141592653589793 rad pos: 25.5,-57.5 @@ -117699,7 +118003,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18109 + - uid: 18165 components: - rot: 3.141592653589793 rad pos: 47.5,-80.5 @@ -117707,7 +118011,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18110 + - uid: 18166 components: - rot: 3.141592653589793 rad pos: 42.5,5.5 @@ -117715,7 +118019,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18111 + - uid: 18167 components: - rot: 3.141592653589793 rad pos: 42.5,2.5 @@ -117723,7 +118027,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18112 + - uid: 18168 components: - rot: 3.141592653589793 rad pos: 42.5,4.5 @@ -117731,7 +118035,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18113 + - uid: 18169 components: - rot: 3.141592653589793 rad pos: 42.5,3.5 @@ -117739,7 +118043,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18114 + - uid: 18170 components: - rot: -1.5707963267948966 rad pos: 25.5,-42.5 @@ -117747,7 +118051,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18115 + - uid: 18171 components: - rot: 3.141592653589793 rad pos: 45.5,21.5 @@ -117755,7 +118059,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18116 + - uid: 18172 components: - rot: 3.141592653589793 rad pos: 45.5,22.5 @@ -117763,7 +118067,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18117 + - uid: 18173 components: - rot: 3.141592653589793 rad pos: 45.5,23.5 @@ -117771,7 +118075,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18118 + - uid: 18174 components: - rot: 3.141592653589793 rad pos: 45.5,24.5 @@ -117779,7 +118083,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18119 + - uid: 18175 components: - rot: 3.141592653589793 rad pos: 45.5,25.5 @@ -117787,7 +118091,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18120 + - uid: 18176 components: - rot: 3.141592653589793 rad pos: 45.5,26.5 @@ -117795,7 +118099,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18121 + - uid: 18177 components: - rot: 3.141592653589793 rad pos: 44.5,21.5 @@ -117803,7 +118107,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18122 + - uid: 18178 components: - rot: 3.141592653589793 rad pos: 44.5,22.5 @@ -117811,7 +118115,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18123 + - uid: 18179 components: - rot: 3.141592653589793 rad pos: 44.5,23.5 @@ -117819,7 +118123,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18124 + - uid: 18180 components: - rot: 3.141592653589793 rad pos: 44.5,24.5 @@ -117827,7 +118131,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18125 + - uid: 18181 components: - rot: 3.141592653589793 rad pos: 44.5,25.5 @@ -117835,7 +118139,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18126 + - uid: 18182 components: - rot: 3.141592653589793 rad pos: 44.5,20.5 @@ -117843,7 +118147,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18127 + - uid: 18183 components: - rot: 1.5707963267948966 rad pos: 46.5,27.5 @@ -117851,7 +118155,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18128 + - uid: 18184 components: - rot: 1.5707963267948966 rad pos: 47.5,27.5 @@ -117859,7 +118163,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18129 + - uid: 18185 components: - rot: 1.5707963267948966 rad pos: 45.5,26.5 @@ -117867,7 +118171,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18130 + - uid: 18186 components: - rot: 1.5707963267948966 rad pos: 46.5,26.5 @@ -117875,7 +118179,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18131 + - uid: 18187 components: - rot: 1.5707963267948966 rad pos: 47.5,26.5 @@ -117883,7 +118187,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18132 + - uid: 18188 components: - rot: 1.5707963267948966 rad pos: 48.5,26.5 @@ -117891,7 +118195,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18133 + - uid: 18189 components: - rot: 1.5707963267948966 rad pos: 49.5,26.5 @@ -117899,7 +118203,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18134 + - uid: 18190 components: - rot: 1.5707963267948966 rad pos: 50.5,26.5 @@ -117907,7 +118211,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18135 + - uid: 18191 components: - rot: 1.5707963267948966 rad pos: 51.5,26.5 @@ -117915,7 +118219,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18136 + - uid: 18192 components: - rot: 1.5707963267948966 rad pos: 52.5,26.5 @@ -117923,7 +118227,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18137 + - uid: 18193 components: - rot: 1.5707963267948966 rad pos: 53.5,26.5 @@ -117931,7 +118235,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18138 + - uid: 18194 components: - rot: 1.5707963267948966 rad pos: 48.5,27.5 @@ -117939,7 +118243,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18139 + - uid: 18195 components: - rot: 1.5707963267948966 rad pos: 49.5,27.5 @@ -117947,7 +118251,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18140 + - uid: 18196 components: - rot: 1.5707963267948966 rad pos: 50.5,27.5 @@ -117955,7 +118259,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18141 + - uid: 18197 components: - rot: 1.5707963267948966 rad pos: 51.5,27.5 @@ -117963,7 +118267,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18142 + - uid: 18198 components: - rot: 3.141592653589793 rad pos: 52.5,28.5 @@ -117971,7 +118275,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18143 + - uid: 18199 components: - rot: 3.141592653589793 rad pos: 52.5,29.5 @@ -117979,7 +118283,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18144 + - uid: 18200 components: - rot: 3.141592653589793 rad pos: 52.5,30.5 @@ -117987,7 +118291,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18145 + - uid: 18201 components: - rot: 3.141592653589793 rad pos: 52.5,31.5 @@ -117995,7 +118299,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18146 + - uid: 18202 components: - rot: 3.141592653589793 rad pos: 52.5,32.5 @@ -118003,7 +118307,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18147 + - uid: 18203 components: - rot: 3.141592653589793 rad pos: 52.5,33.5 @@ -118011,7 +118315,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18148 + - uid: 18204 components: - rot: 3.141592653589793 rad pos: 52.5,34.5 @@ -118019,7 +118323,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18149 + - uid: 18205 components: - rot: 3.141592653589793 rad pos: 52.5,35.5 @@ -118027,7 +118331,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18150 + - uid: 18206 components: - rot: 3.141592653589793 rad pos: 52.5,36.5 @@ -118035,7 +118339,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18151 + - uid: 18207 components: - rot: 3.141592653589793 rad pos: 52.5,37.5 @@ -118043,7 +118347,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18152 + - uid: 18208 components: - rot: 3.141592653589793 rad pos: 52.5,38.5 @@ -118051,7 +118355,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18153 + - uid: 18209 components: - rot: 3.141592653589793 rad pos: 52.5,39.5 @@ -118059,7 +118363,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18154 + - uid: 18210 components: - rot: 3.141592653589793 rad pos: 52.5,40.5 @@ -118067,7 +118371,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18155 + - uid: 18211 components: - rot: 3.141592653589793 rad pos: 52.5,41.5 @@ -118075,7 +118379,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18156 + - uid: 18212 components: - rot: 3.141592653589793 rad pos: 52.5,42.5 @@ -118083,7 +118387,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18157 + - uid: 18213 components: - rot: 3.141592653589793 rad pos: 54.5,27.5 @@ -118091,7 +118395,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18158 + - uid: 18214 components: - rot: 3.141592653589793 rad pos: 54.5,28.5 @@ -118099,7 +118403,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18159 + - uid: 18215 components: - rot: 3.141592653589793 rad pos: 54.5,29.5 @@ -118107,7 +118411,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18160 + - uid: 18216 components: - rot: 3.141592653589793 rad pos: 54.5,30.5 @@ -118115,7 +118419,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18161 + - uid: 18217 components: - rot: 3.141592653589793 rad pos: 54.5,31.5 @@ -118123,7 +118427,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18162 + - uid: 18218 components: - rot: 3.141592653589793 rad pos: 54.5,32.5 @@ -118131,7 +118435,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18163 + - uid: 18219 components: - rot: 3.141592653589793 rad pos: 54.5,33.5 @@ -118139,7 +118443,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18164 + - uid: 18220 components: - rot: 3.141592653589793 rad pos: 54.5,34.5 @@ -118147,7 +118451,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18165 + - uid: 18221 components: - rot: 3.141592653589793 rad pos: 54.5,35.5 @@ -118155,7 +118459,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18166 + - uid: 18222 components: - rot: 3.141592653589793 rad pos: 54.5,36.5 @@ -118163,7 +118467,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18167 + - uid: 18223 components: - rot: 3.141592653589793 rad pos: 54.5,37.5 @@ -118171,7 +118475,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18168 + - uid: 18224 components: - rot: 3.141592653589793 rad pos: 54.5,38.5 @@ -118179,7 +118483,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18169 + - uid: 18225 components: - rot: 3.141592653589793 rad pos: 54.5,39.5 @@ -118187,7 +118491,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18170 + - uid: 18226 components: - rot: 3.141592653589793 rad pos: 54.5,40.5 @@ -118195,7 +118499,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18171 + - uid: 18227 components: - rot: 3.141592653589793 rad pos: 54.5,41.5 @@ -118203,7 +118507,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18172 + - uid: 18228 components: - rot: 3.141592653589793 rad pos: 54.5,42.5 @@ -118211,7 +118515,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18173 + - uid: 18229 components: - rot: 3.141592653589793 rad pos: 54.5,44.5 @@ -118219,7 +118523,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18174 + - uid: 18230 components: - rot: 3.141592653589793 rad pos: 54.5,45.5 @@ -118227,7 +118531,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18175 + - uid: 18231 components: - rot: 3.141592653589793 rad pos: 54.5,46.5 @@ -118235,7 +118539,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18176 + - uid: 18232 components: - rot: 3.141592653589793 rad pos: 54.5,47.5 @@ -118243,7 +118547,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18177 + - uid: 18233 components: - rot: 3.141592653589793 rad pos: 54.5,48.5 @@ -118251,7 +118555,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18178 + - uid: 18234 components: - rot: 3.141592653589793 rad pos: 54.5,49.5 @@ -118259,7 +118563,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18179 + - uid: 18235 components: - rot: 3.141592653589793 rad pos: 54.5,51.5 @@ -118267,7 +118571,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18180 + - uid: 18236 components: - rot: 3.141592653589793 rad pos: 54.5,52.5 @@ -118275,7 +118579,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18181 + - uid: 18237 components: - rot: 3.141592653589793 rad pos: 54.5,53.5 @@ -118283,7 +118587,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18182 + - uid: 18238 components: - rot: 3.141592653589793 rad pos: 54.5,54.5 @@ -118291,7 +118595,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18183 + - uid: 18239 components: - rot: 3.141592653589793 rad pos: 54.5,55.5 @@ -118299,7 +118603,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18184 + - uid: 18240 components: - rot: 3.141592653589793 rad pos: 52.5,44.5 @@ -118307,7 +118611,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18185 + - uid: 18241 components: - rot: 3.141592653589793 rad pos: 52.5,45.5 @@ -118315,7 +118619,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18186 + - uid: 18242 components: - rot: 3.141592653589793 rad pos: 52.5,46.5 @@ -118323,7 +118627,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18187 + - uid: 18243 components: - rot: 3.141592653589793 rad pos: 52.5,47.5 @@ -118331,7 +118635,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18188 + - uid: 18244 components: - rot: 3.141592653589793 rad pos: 52.5,48.5 @@ -118339,7 +118643,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18189 + - uid: 18245 components: - rot: 3.141592653589793 rad pos: 52.5,50.5 @@ -118347,7 +118651,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18190 + - uid: 18246 components: - rot: 3.141592653589793 rad pos: 52.5,51.5 @@ -118355,7 +118659,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18191 + - uid: 18247 components: - rot: 3.141592653589793 rad pos: 52.5,52.5 @@ -118363,7 +118667,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18192 + - uid: 18248 components: - rot: 3.141592653589793 rad pos: 52.5,53.5 @@ -118371,7 +118675,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18193 + - uid: 18249 components: - rot: 3.141592653589793 rad pos: 52.5,54.5 @@ -118379,7 +118683,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18194 + - uid: 18250 components: - rot: 3.141592653589793 rad pos: 52.5,55.5 @@ -118387,49 +118691,49 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18195 + - uid: 18251 components: - pos: -16.5,31.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18196 + - uid: 18252 components: - pos: -15.5,30.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18197 + - uid: 18253 components: - pos: -15.5,31.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18198 + - uid: 18254 components: - pos: -15.5,32.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18199 + - uid: 18255 components: - pos: -16.5,32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18200 + - uid: 18256 components: - pos: -16.5,33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18201 + - uid: 18257 components: - rot: 1.5707963267948966 rad pos: -15.5,34.5 @@ -118437,7 +118741,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18202 + - uid: 18258 components: - rot: 1.5707963267948966 rad pos: -14.5,34.5 @@ -118445,7 +118749,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18203 + - uid: 18259 components: - rot: 1.5707963267948966 rad pos: -13.5,34.5 @@ -118453,7 +118757,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18204 + - uid: 18260 components: - rot: 1.5707963267948966 rad pos: -14.5,33.5 @@ -118461,7 +118765,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18205 + - uid: 18261 components: - rot: 1.5707963267948966 rad pos: -13.5,33.5 @@ -118469,133 +118773,133 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18206 + - uid: 18262 components: - pos: -16.5,35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18207 + - uid: 18263 components: - pos: -16.5,36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18208 + - uid: 18264 components: - pos: -16.5,37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18209 + - uid: 18265 components: - pos: -16.5,38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18210 + - uid: 18266 components: - pos: -16.5,40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18211 + - uid: 18267 components: - pos: -16.5,41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18212 + - uid: 18268 components: - pos: -16.5,42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18213 + - uid: 18269 components: - pos: -15.5,34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18214 + - uid: 18270 components: - pos: -15.5,35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18215 + - uid: 18271 components: - pos: -15.5,36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18216 + - uid: 18272 components: - pos: -15.5,37.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18217 + - uid: 18273 components: - pos: -15.5,39.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18218 + - uid: 18274 components: - pos: -15.5,40.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18219 + - uid: 18275 components: - pos: -15.5,41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18220 + - uid: 18276 components: - pos: -15.5,42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18221 + - uid: 18277 components: - pos: -15.5,43.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18222 + - uid: 18278 components: - pos: -16.5,44.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18223 + - uid: 18279 components: - pos: -16.5,45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18224 + - uid: 18280 components: - rot: 1.5707963267948966 rad pos: -17.5,43.5 @@ -118603,7 +118907,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18225 + - uid: 18281 components: - rot: 1.5707963267948966 rad pos: -18.5,43.5 @@ -118611,7 +118915,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18226 + - uid: 18282 components: - rot: 1.5707963267948966 rad pos: -19.5,43.5 @@ -118619,7 +118923,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18227 + - uid: 18283 components: - rot: 1.5707963267948966 rad pos: -16.5,44.5 @@ -118627,7 +118931,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18228 + - uid: 18284 components: - rot: 1.5707963267948966 rad pos: -17.5,44.5 @@ -118635,7 +118939,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18229 + - uid: 18285 components: - rot: 1.5707963267948966 rad pos: -18.5,44.5 @@ -118643,7 +118947,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18230 + - uid: 18286 components: - rot: 1.5707963267948966 rad pos: -19.5,44.5 @@ -118651,7 +118955,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18231 + - uid: 18287 components: - rot: -1.5707963267948966 rad pos: -16.5,45.5 @@ -118659,7 +118963,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18232 + - uid: 18288 components: - rot: 3.141592653589793 rad pos: -17.5,46.5 @@ -118667,7 +118971,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18233 + - uid: 18289 components: - rot: 3.141592653589793 rad pos: -17.5,47.5 @@ -118675,7 +118979,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18234 + - uid: 18290 components: - rot: 3.141592653589793 rad pos: -17.5,48.5 @@ -118683,7 +118987,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18235 + - uid: 18291 components: - rot: 3.141592653589793 rad pos: -17.5,49.5 @@ -118691,7 +118995,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18236 + - uid: 18292 components: - rot: 3.141592653589793 rad pos: -16.5,47.5 @@ -118699,7 +119003,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18237 + - uid: 18293 components: - rot: 3.141592653589793 rad pos: -16.5,48.5 @@ -118707,7 +119011,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18238 + - uid: 18294 components: - rot: 3.141592653589793 rad pos: -16.5,49.5 @@ -118715,7 +119019,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18239 + - uid: 18295 components: - rot: 1.5707963267948966 rad pos: -15.5,43.5 @@ -118723,7 +119027,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18240 + - uid: 18296 components: - rot: -1.5707963267948966 rad pos: -15.5,46.5 @@ -118731,7 +119035,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18241 + - uid: 18297 components: - rot: -1.5707963267948966 rad pos: -14.5,46.5 @@ -118739,7 +119043,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18242 + - uid: 18298 components: - rot: -1.5707963267948966 rad pos: -13.5,46.5 @@ -118747,7 +119051,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18243 + - uid: 18299 components: - rot: -1.5707963267948966 rad pos: -12.5,46.5 @@ -118755,7 +119059,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18244 + - uid: 18300 components: - rot: -1.5707963267948966 rad pos: -13.5,44.5 @@ -118763,7 +119067,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18245 + - uid: 18301 components: - rot: -1.5707963267948966 rad pos: -12.5,44.5 @@ -118771,32 +119075,32 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18246 + - uid: 18302 components: - pos: 1.5,47.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18247 + - uid: 18303 components: - rot: 3.141592653589793 rad pos: 70.5,35.5 parent: 2 type: Transform - - uid: 18248 + - uid: 18304 components: - rot: 3.141592653589793 rad pos: 70.5,34.5 parent: 2 type: Transform - - uid: 18249 + - uid: 18305 components: - rot: 3.141592653589793 rad pos: 70.5,33.5 parent: 2 type: Transform - - uid: 18250 + - uid: 18306 components: - rot: -1.5707963267948966 rad pos: -14.5,38.5 @@ -118804,7 +119108,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18251 + - uid: 18307 components: - rot: -1.5707963267948966 rad pos: -13.5,38.5 @@ -118812,7 +119116,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18252 + - uid: 18308 components: - rot: -1.5707963267948966 rad pos: -12.5,38.5 @@ -118820,7 +119124,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18253 + - uid: 18309 components: - rot: -1.5707963267948966 rad pos: 53.5,50.5 @@ -118828,7 +119132,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18254 + - uid: 18310 components: - rot: -1.5707963267948966 rad pos: 52.5,50.5 @@ -118836,7 +119140,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18255 + - uid: 18311 components: - rot: -1.5707963267948966 rad pos: 51.5,50.5 @@ -118844,7 +119148,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18256 + - uid: 18312 components: - rot: -1.5707963267948966 rad pos: 50.5,50.5 @@ -118852,7 +119156,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18257 + - uid: 18313 components: - rot: -1.5707963267948966 rad pos: 49.5,50.5 @@ -118860,7 +119164,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18258 + - uid: 18314 components: - rot: -1.5707963267948966 rad pos: 48.5,50.5 @@ -118868,7 +119172,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18259 + - uid: 18315 components: - rot: -1.5707963267948966 rad pos: 51.5,49.5 @@ -118876,7 +119180,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18260 + - uid: 18316 components: - rot: -1.5707963267948966 rad pos: 50.5,49.5 @@ -118884,7 +119188,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18261 + - uid: 18317 components: - rot: -1.5707963267948966 rad pos: 49.5,49.5 @@ -118892,7 +119196,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18262 + - uid: 18318 components: - rot: -1.5707963267948966 rad pos: 48.5,49.5 @@ -118900,7 +119204,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18263 + - uid: 18319 components: - rot: -1.5707963267948966 rad pos: 47.5,49.5 @@ -118908,7 +119212,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18264 + - uid: 18320 components: - rot: -1.5707963267948966 rad pos: 46.5,49.5 @@ -118916,49 +119220,49 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18265 + - uid: 18321 components: - pos: 47.5,49.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18266 + - uid: 18322 components: - pos: 47.5,48.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18267 + - uid: 18323 components: - pos: 47.5,47.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18268 + - uid: 18324 components: - pos: 45.5,48.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18269 + - uid: 18325 components: - pos: 45.5,47.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18270 + - uid: 18326 components: - pos: 45.5,46.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18271 + - uid: 18327 components: - rot: -1.5707963267948966 rad pos: 46.5,46.5 @@ -118966,7 +119270,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18272 + - uid: 18328 components: - rot: -1.5707963267948966 rad pos: 45.5,46.5 @@ -118974,7 +119278,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18273 + - uid: 18329 components: - rot: -1.5707963267948966 rad pos: 43.5,46.5 @@ -118982,7 +119286,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18274 + - uid: 18330 components: - rot: -1.5707963267948966 rad pos: 44.5,46.5 @@ -118990,7 +119294,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18275 + - uid: 18331 components: - rot: -1.5707963267948966 rad pos: 42.5,46.5 @@ -118998,7 +119302,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18276 + - uid: 18332 components: - rot: -1.5707963267948966 rad pos: 41.5,46.5 @@ -119006,7 +119310,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18277 + - uid: 18333 components: - rot: -1.5707963267948966 rad pos: 44.5,45.5 @@ -119014,7 +119318,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18278 + - uid: 18334 components: - rot: -1.5707963267948966 rad pos: 43.5,45.5 @@ -119022,7 +119326,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18279 + - uid: 18335 components: - rot: -1.5707963267948966 rad pos: 42.5,45.5 @@ -119030,7 +119334,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18280 + - uid: 18336 components: - rot: -1.5707963267948966 rad pos: 41.5,45.5 @@ -119038,7 +119342,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18281 + - uid: 18337 components: - rot: 3.141592653589793 rad pos: 2.5,67.5 @@ -119046,7 +119350,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18282 + - uid: 18338 components: - rot: 3.141592653589793 rad pos: 2.5,66.5 @@ -119054,7 +119358,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18283 + - uid: 18339 components: - rot: 3.141592653589793 rad pos: 2.5,65.5 @@ -119062,7 +119366,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18284 + - uid: 18340 components: - rot: 3.141592653589793 rad pos: 2.5,64.5 @@ -119070,7 +119374,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18285 + - uid: 18341 components: - rot: 3.141592653589793 rad pos: -5.5,67.5 @@ -119078,7 +119382,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18286 + - uid: 18342 components: - rot: 3.141592653589793 rad pos: -5.5,66.5 @@ -119086,7 +119390,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18287 + - uid: 18343 components: - rot: 3.141592653589793 rad pos: -5.5,65.5 @@ -119094,7 +119398,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18288 + - uid: 18344 components: - rot: 3.141592653589793 rad pos: -5.5,64.5 @@ -119102,7 +119406,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18289 + - uid: 18345 components: - rot: 3.141592653589793 rad pos: -6.5,68.5 @@ -119110,7 +119414,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18290 + - uid: 18346 components: - rot: 3.141592653589793 rad pos: -6.5,67.5 @@ -119118,7 +119422,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18291 + - uid: 18347 components: - rot: 3.141592653589793 rad pos: -6.5,66.5 @@ -119126,7 +119430,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18292 + - uid: 18348 components: - rot: 3.141592653589793 rad pos: -6.5,65.5 @@ -119134,7 +119438,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18293 + - uid: 18349 components: - rot: 3.141592653589793 rad pos: 3.5,68.5 @@ -119142,7 +119446,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18294 + - uid: 18350 components: - rot: 3.141592653589793 rad pos: 3.5,67.5 @@ -119150,7 +119454,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18295 + - uid: 18351 components: - rot: 3.141592653589793 rad pos: 3.5,66.5 @@ -119158,7 +119462,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18296 + - uid: 18352 components: - rot: 3.141592653589793 rad pos: 3.5,65.5 @@ -119166,7 +119470,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18297 + - uid: 18353 components: - rot: 1.5707963267948966 rad pos: 0.5,69.5 @@ -119174,7 +119478,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18298 + - uid: 18354 components: - rot: 1.5707963267948966 rad pos: -3.5,69.5 @@ -119182,91 +119486,91 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18299 + - uid: 18355 components: - pos: -2.5,66.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18300 + - uid: 18356 components: - pos: -2.5,65.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18301 + - uid: 18357 components: - pos: -2.5,64.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18302 + - uid: 18358 components: - pos: -2.5,63.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18303 + - uid: 18359 components: - pos: -2.5,61.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18304 + - uid: 18360 components: - pos: -2.5,60.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18305 + - uid: 18361 components: - pos: -2.5,59.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18306 + - uid: 18362 components: - pos: -1.5,65.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18307 + - uid: 18363 components: - pos: -1.5,64.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18308 + - uid: 18364 components: - pos: -1.5,63.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18309 + - uid: 18365 components: - pos: -1.5,62.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18310 + - uid: 18366 components: - pos: -1.5,60.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18311 + - uid: 18367 components: - rot: -1.5707963267948966 rad pos: -11.5,46.5 @@ -119274,7 +119578,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18312 + - uid: 18368 components: - rot: -1.5707963267948966 rad pos: -10.5,46.5 @@ -119282,7 +119586,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18313 + - uid: 18369 components: - rot: -1.5707963267948966 rad pos: -9.5,46.5 @@ -119290,7 +119594,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18314 + - uid: 18370 components: - rot: -1.5707963267948966 rad pos: -8.5,46.5 @@ -119298,7 +119602,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18315 + - uid: 18371 components: - rot: -1.5707963267948966 rad pos: -7.5,46.5 @@ -119306,7 +119610,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18316 + - uid: 18372 components: - rot: -1.5707963267948966 rad pos: -6.5,46.5 @@ -119314,7 +119618,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18317 + - uid: 18373 components: - rot: -1.5707963267948966 rad pos: -5.5,46.5 @@ -119322,7 +119626,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18318 + - uid: 18374 components: - rot: -1.5707963267948966 rad pos: -4.5,46.5 @@ -119330,7 +119634,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18319 + - uid: 18375 components: - rot: -1.5707963267948966 rad pos: -3.5,46.5 @@ -119338,7 +119642,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18320 + - uid: 18376 components: - rot: -1.5707963267948966 rad pos: -2.5,46.5 @@ -119346,7 +119650,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18321 + - uid: 18377 components: - rot: -1.5707963267948966 rad pos: -1.5,46.5 @@ -119354,7 +119658,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18322 + - uid: 18378 components: - rot: -1.5707963267948966 rad pos: -11.5,44.5 @@ -119362,7 +119666,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18323 + - uid: 18379 components: - rot: -1.5707963267948966 rad pos: -10.5,44.5 @@ -119370,7 +119674,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18324 + - uid: 18380 components: - rot: -1.5707963267948966 rad pos: -9.5,44.5 @@ -119378,7 +119682,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18325 + - uid: 18381 components: - rot: -1.5707963267948966 rad pos: -8.5,44.5 @@ -119386,7 +119690,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18326 + - uid: 18382 components: - rot: -1.5707963267948966 rad pos: -7.5,44.5 @@ -119394,7 +119698,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18327 + - uid: 18383 components: - rot: -1.5707963267948966 rad pos: -6.5,44.5 @@ -119402,7 +119706,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18328 + - uid: 18384 components: - rot: -1.5707963267948966 rad pos: -5.5,44.5 @@ -119410,7 +119714,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18329 + - uid: 18385 components: - rot: -1.5707963267948966 rad pos: -4.5,44.5 @@ -119418,7 +119722,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18330 + - uid: 18386 components: - rot: -1.5707963267948966 rad pos: -3.5,44.5 @@ -119426,7 +119730,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18331 + - uid: 18387 components: - rot: -1.5707963267948966 rad pos: -2.5,44.5 @@ -119434,7 +119738,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18332 + - uid: 18388 components: - rot: -1.5707963267948966 rad pos: -1.5,44.5 @@ -119442,7 +119746,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18333 + - uid: 18389 components: - rot: -1.5707963267948966 rad pos: -0.5,44.5 @@ -119450,7 +119754,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18334 + - uid: 18390 components: - rot: -1.5707963267948966 rad pos: 0.5,44.5 @@ -119458,7 +119762,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18335 + - uid: 18391 components: - rot: 3.141592653589793 rad pos: 1.5,45.5 @@ -119466,7 +119770,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18336 + - uid: 18392 components: - rot: 3.141592653589793 rad pos: -0.5,47.5 @@ -119474,98 +119778,98 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18337 + - uid: 18393 components: - pos: 1.5,48.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18338 + - uid: 18394 components: - pos: 1.5,49.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18339 + - uid: 18395 components: - pos: 1.5,50.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18340 + - uid: 18396 components: - pos: 1.5,51.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18341 + - uid: 18397 components: - pos: 1.5,52.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18342 + - uid: 18398 components: - pos: 1.5,53.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18343 + - uid: 18399 components: - pos: 1.5,54.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18344 + - uid: 18400 components: - pos: -0.5,49.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18345 + - uid: 18401 components: - pos: -0.5,50.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18346 + - uid: 18402 components: - pos: -0.5,51.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18347 + - uid: 18403 components: - pos: -0.5,52.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18348 + - uid: 18404 components: - pos: -0.5,53.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18349 + - uid: 18405 components: - pos: -0.5,54.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18350 + - uid: 18406 components: - rot: -1.5707963267948966 rad pos: -17.5,51.5 @@ -119573,7 +119877,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18351 + - uid: 18407 components: - rot: -1.5707963267948966 rad pos: -18.5,51.5 @@ -119581,7 +119885,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18352 + - uid: 18408 components: - rot: -1.5707963267948966 rad pos: -19.5,51.5 @@ -119589,7 +119893,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18353 + - uid: 18409 components: - rot: -1.5707963267948966 rad pos: -18.5,50.5 @@ -119597,7 +119901,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18354 + - uid: 18410 components: - rot: -1.5707963267948966 rad pos: -19.5,50.5 @@ -119605,7 +119909,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18355 + - uid: 18411 components: - rot: -1.5707963267948966 rad pos: -20.5,50.5 @@ -119613,7 +119917,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18356 + - uid: 18412 components: - rot: 3.141592653589793 rad pos: -20.5,50.5 @@ -119621,7 +119925,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18357 + - uid: 18413 components: - rot: 3.141592653589793 rad pos: -20.5,49.5 @@ -119629,7 +119933,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18358 + - uid: 18414 components: - rot: 3.141592653589793 rad pos: -21.5,49.5 @@ -119637,7 +119941,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18359 + - uid: 18415 components: - rot: 3.141592653589793 rad pos: -16.5,50.5 @@ -119645,7 +119949,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18360 + - uid: 18416 components: - rot: 1.5707963267948966 rad pos: -16.5,50.5 @@ -119653,7 +119957,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18361 + - uid: 18417 components: - rot: 1.5707963267948966 rad pos: -15.5,50.5 @@ -119661,7 +119965,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18362 + - uid: 18418 components: - rot: 1.5707963267948966 rad pos: -14.5,50.5 @@ -119669,7 +119973,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18363 + - uid: 18419 components: - rot: 1.5707963267948966 rad pos: -13.5,50.5 @@ -119677,7 +119981,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18364 + - uid: 18420 components: - rot: 1.5707963267948966 rad pos: -15.5,51.5 @@ -119685,7 +119989,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18365 + - uid: 18421 components: - rot: 1.5707963267948966 rad pos: -14.5,51.5 @@ -119693,140 +119997,140 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18366 + - uid: 18422 components: - pos: -21.5,52.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18367 + - uid: 18423 components: - pos: -21.5,53.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18368 + - uid: 18424 components: - pos: -21.5,54.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18369 + - uid: 18425 components: - pos: -21.5,55.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18370 + - uid: 18426 components: - pos: -21.5,56.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18371 + - uid: 18427 components: - pos: -21.5,57.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18372 + - uid: 18428 components: - pos: -22.5,51.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18373 + - uid: 18429 components: - pos: -22.5,52.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18374 + - uid: 18430 components: - pos: -22.5,53.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18375 + - uid: 18431 components: - pos: -22.5,54.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18376 + - uid: 18432 components: - pos: -22.5,55.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18377 + - uid: 18433 components: - pos: -22.5,56.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18378 + - uid: 18434 components: - pos: -22.5,57.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18379 + - uid: 18435 components: - pos: -22.5,58.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18380 + - uid: 18436 components: - pos: -22.5,59.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18381 + - uid: 18437 components: - pos: -21.5,59.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18382 + - uid: 18438 components: - pos: -21.5,60.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18383 + - uid: 18439 components: - pos: -21.5,61.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18384 + - uid: 18440 components: - pos: -22.5,62.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18385 + - uid: 18441 components: - rot: -1.5707963267948966 rad pos: -20.5,62.5 @@ -119834,7 +120138,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18386 + - uid: 18442 components: - rot: -1.5707963267948966 rad pos: -19.5,62.5 @@ -119842,7 +120146,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18387 + - uid: 18443 components: - rot: -1.5707963267948966 rad pos: -18.5,62.5 @@ -119850,7 +120154,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18388 + - uid: 18444 components: - rot: -1.5707963267948966 rad pos: -21.5,61.5 @@ -119858,7 +120162,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18389 + - uid: 18445 components: - rot: -1.5707963267948966 rad pos: -20.5,61.5 @@ -119866,7 +120170,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18390 + - uid: 18446 components: - rot: -1.5707963267948966 rad pos: -19.5,61.5 @@ -119874,7 +120178,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18391 + - uid: 18447 components: - rot: -1.5707963267948966 rad pos: -18.5,61.5 @@ -119882,140 +120186,140 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18392 + - uid: 18448 components: - pos: -22.5,63.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18393 + - uid: 18449 components: - pos: -22.5,64.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18394 + - uid: 18450 components: - pos: -22.5,65.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18395 + - uid: 18451 components: - pos: -22.5,67.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18396 + - uid: 18452 components: - pos: -22.5,68.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18397 + - uid: 18453 components: - pos: -22.5,69.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18398 + - uid: 18454 components: - pos: -22.5,70.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18399 + - uid: 18455 components: - pos: -22.5,71.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18400 + - uid: 18456 components: - pos: -22.5,72.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18401 + - uid: 18457 components: - pos: -21.5,63.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18402 + - uid: 18458 components: - pos: -21.5,64.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18403 + - uid: 18459 components: - pos: -21.5,65.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18404 + - uid: 18460 components: - pos: -21.5,66.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18405 + - uid: 18461 components: - pos: -21.5,67.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18406 + - uid: 18462 components: - pos: -21.5,68.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18407 + - uid: 18463 components: - pos: -21.5,69.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18408 + - uid: 18464 components: - pos: -21.5,70.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18409 + - uid: 18465 components: - pos: -21.5,71.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18410 + - uid: 18466 components: - pos: -21.5,72.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18411 + - uid: 18467 components: - rot: -1.5707963267948966 rad pos: -16.5,62.5 @@ -120023,7 +120327,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18412 + - uid: 18468 components: - rot: -1.5707963267948966 rad pos: -15.5,62.5 @@ -120031,7 +120335,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18413 + - uid: 18469 components: - rot: -1.5707963267948966 rad pos: -14.5,62.5 @@ -120039,7 +120343,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18414 + - uid: 18470 components: - rot: -1.5707963267948966 rad pos: -16.5,61.5 @@ -120047,7 +120351,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18415 + - uid: 18471 components: - rot: -1.5707963267948966 rad pos: -15.5,61.5 @@ -120055,7 +120359,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18416 + - uid: 18472 components: - rot: -1.5707963267948966 rad pos: -14.5,61.5 @@ -120063,7 +120367,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18417 + - uid: 18473 components: - rot: -1.5707963267948966 rad pos: -13.5,61.5 @@ -120071,168 +120375,168 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18418 + - uid: 18474 components: - pos: -13.5,61.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18419 + - uid: 18475 components: - pos: -13.5,60.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18420 + - uid: 18476 components: - pos: -13.5,59.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18421 + - uid: 18477 components: - pos: -12.5,62.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18422 + - uid: 18478 components: - pos: -12.5,63.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18423 + - uid: 18479 components: - pos: -12.5,64.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18424 + - uid: 18480 components: - pos: -12.5,65.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18425 + - uid: 18481 components: - pos: -12.5,66.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18426 + - uid: 18482 components: - pos: -12.5,67.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18427 + - uid: 18483 components: - pos: -12.5,68.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18428 + - uid: 18484 components: - pos: -12.5,69.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18429 + - uid: 18485 components: - pos: -12.5,70.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18430 + - uid: 18486 components: - pos: -12.5,71.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18431 + - uid: 18487 components: - pos: -12.5,72.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18432 + - uid: 18488 components: - pos: -13.5,63.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18433 + - uid: 18489 components: - pos: -13.5,64.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18434 + - uid: 18490 components: - pos: -13.5,65.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18435 + - uid: 18491 components: - pos: -13.5,67.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18436 + - uid: 18492 components: - pos: -13.5,68.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18437 + - uid: 18493 components: - pos: -13.5,69.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18438 + - uid: 18494 components: - pos: -13.5,70.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18439 + - uid: 18495 components: - pos: -13.5,71.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18440 + - uid: 18496 components: - pos: -13.5,72.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18441 + - uid: 18497 components: - rot: 1.5707963267948966 rad pos: -11.5,59.5 @@ -120240,7 +120544,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18442 + - uid: 18498 components: - rot: 1.5707963267948966 rad pos: -10.5,59.5 @@ -120248,7 +120552,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18443 + - uid: 18499 components: - rot: 1.5707963267948966 rad pos: -9.5,59.5 @@ -120256,7 +120560,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18444 + - uid: 18500 components: - rot: 1.5707963267948966 rad pos: -8.5,59.5 @@ -120264,7 +120568,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18445 + - uid: 18501 components: - rot: 1.5707963267948966 rad pos: -7.5,59.5 @@ -120272,7 +120576,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18446 + - uid: 18502 components: - rot: 1.5707963267948966 rad pos: -6.5,59.5 @@ -120280,7 +120584,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18447 + - uid: 18503 components: - rot: 1.5707963267948966 rad pos: -5.5,59.5 @@ -120288,7 +120592,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18448 + - uid: 18504 components: - rot: 1.5707963267948966 rad pos: -4.5,59.5 @@ -120296,7 +120600,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18449 + - uid: 18505 components: - rot: 1.5707963267948966 rad pos: -12.5,58.5 @@ -120304,7 +120608,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18450 + - uid: 18506 components: - rot: 1.5707963267948966 rad pos: -11.5,58.5 @@ -120312,7 +120616,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18451 + - uid: 18507 components: - rot: 1.5707963267948966 rad pos: -10.5,58.5 @@ -120320,7 +120624,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18452 + - uid: 18508 components: - rot: 1.5707963267948966 rad pos: -9.5,58.5 @@ -120328,7 +120632,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18453 + - uid: 18509 components: - rot: 1.5707963267948966 rad pos: -8.5,58.5 @@ -120336,7 +120640,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18454 + - uid: 18510 components: - rot: 1.5707963267948966 rad pos: -7.5,58.5 @@ -120344,7 +120648,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18455 + - uid: 18511 components: - rot: 1.5707963267948966 rad pos: -6.5,58.5 @@ -120352,7 +120656,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18456 + - uid: 18512 components: - rot: 1.5707963267948966 rad pos: -5.5,58.5 @@ -120360,98 +120664,98 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18457 + - uid: 18513 components: - pos: -12.5,58.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18458 + - uid: 18514 components: - pos: -12.5,57.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18459 + - uid: 18515 components: - pos: -12.5,56.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18460 + - uid: 18516 components: - pos: -12.5,55.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18461 + - uid: 18517 components: - pos: -12.5,54.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18462 + - uid: 18518 components: - pos: -12.5,53.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18463 + - uid: 18519 components: - pos: -12.5,52.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18464 + - uid: 18520 components: - pos: -12.5,51.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18465 + - uid: 18521 components: - pos: -13.5,56.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18466 + - uid: 18522 components: - pos: -13.5,55.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18467 + - uid: 18523 components: - pos: -13.5,54.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18468 + - uid: 18524 components: - pos: -13.5,53.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18469 + - uid: 18525 components: - pos: -13.5,52.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18470 + - uid: 18526 components: - rot: 1.5707963267948966 rad pos: -3.5,59.5 @@ -120459,7 +120763,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18471 + - uid: 18527 components: - rot: 1.5707963267948966 rad pos: -2.5,59.5 @@ -120467,7 +120771,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18472 + - uid: 18528 components: - rot: 1.5707963267948966 rad pos: -4.5,58.5 @@ -120475,7 +120779,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18473 + - uid: 18529 components: - rot: 1.5707963267948966 rad pos: -3.5,58.5 @@ -120483,7 +120787,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18474 + - uid: 18530 components: - rot: -1.5707963267948966 rad pos: 0.5,59.5 @@ -120491,7 +120795,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18475 + - uid: 18531 components: - rot: 1.5707963267948966 rad pos: -1.5,58.5 @@ -120499,14 +120803,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18476 + - uid: 18532 components: - pos: -0.5,57.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18477 + - uid: 18533 components: - rot: 1.5707963267948966 rad pos: -0.5,59.5 @@ -120514,43 +120818,35 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18478 + - uid: 18534 components: - pos: -0.5,55.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18479 + - uid: 18535 components: - pos: 1.5,58.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18480 + - uid: 18536 components: - pos: 1.5,56.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18481 + - uid: 18537 components: - pos: 1.5,55.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18482 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,47.5 - parent: 2 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 18483 + - uid: 18538 components: - rot: -1.5707963267948966 rad pos: 38.5,47.5 @@ -120558,7 +120854,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18484 + - uid: 18539 components: - rot: -1.5707963267948966 rad pos: 37.5,47.5 @@ -120566,7 +120862,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18485 + - uid: 18540 components: - rot: -1.5707963267948966 rad pos: 36.5,47.5 @@ -120574,7 +120870,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18486 + - uid: 18541 components: - rot: -1.5707963267948966 rad pos: 35.5,47.5 @@ -120582,7 +120878,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18487 + - uid: 18542 components: - rot: -1.5707963267948966 rad pos: 34.5,47.5 @@ -120590,7 +120886,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18488 + - uid: 18543 components: - rot: -1.5707963267948966 rad pos: 33.5,47.5 @@ -120598,7 +120894,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18489 + - uid: 18544 components: - rot: -1.5707963267948966 rad pos: 32.5,47.5 @@ -120606,7 +120902,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18490 + - uid: 18545 components: - rot: -1.5707963267948966 rad pos: 31.5,47.5 @@ -120614,7 +120910,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18491 + - uid: 18546 components: - rot: -1.5707963267948966 rad pos: 30.5,47.5 @@ -120622,7 +120918,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18492 + - uid: 18547 components: - rot: -1.5707963267948966 rad pos: 28.5,45.5 @@ -120630,7 +120926,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18493 + - uid: 18548 components: - rot: -1.5707963267948966 rad pos: 27.5,45.5 @@ -120638,7 +120934,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18494 + - uid: 18549 components: - rot: -1.5707963267948966 rad pos: 26.5,45.5 @@ -120646,7 +120942,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18495 + - uid: 18550 components: - rot: -1.5707963267948966 rad pos: 25.5,45.5 @@ -120654,7 +120950,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18496 + - uid: 18551 components: - rot: -1.5707963267948966 rad pos: 28.5,46.5 @@ -120662,7 +120958,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18497 + - uid: 18552 components: - rot: -1.5707963267948966 rad pos: 27.5,46.5 @@ -120670,7 +120966,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18498 + - uid: 18553 components: - rot: -1.5707963267948966 rad pos: 26.5,46.5 @@ -120678,7 +120974,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18499 + - uid: 18554 components: - rot: -1.5707963267948966 rad pos: 25.5,46.5 @@ -120686,7 +120982,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18500 + - uid: 18555 components: - rot: -1.5707963267948966 rad pos: 24.5,46.5 @@ -120694,7 +120990,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18501 + - uid: 18556 components: - rot: 1.5707963267948966 rad pos: 30.5,44.5 @@ -120702,7 +120998,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18502 + - uid: 18557 components: - rot: 1.5707963267948966 rad pos: 31.5,44.5 @@ -120710,7 +121006,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18503 + - uid: 18558 components: - rot: 1.5707963267948966 rad pos: 32.5,44.5 @@ -120718,7 +121014,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18504 + - uid: 18559 components: - rot: 1.5707963267948966 rad pos: 33.5,44.5 @@ -120726,7 +121022,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18505 + - uid: 18560 components: - rot: 1.5707963267948966 rad pos: 34.5,44.5 @@ -120734,7 +121030,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18506 + - uid: 18561 components: - rot: 1.5707963267948966 rad pos: 35.5,44.5 @@ -120742,7 +121038,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18507 + - uid: 18562 components: - rot: 1.5707963267948966 rad pos: 36.5,44.5 @@ -120750,7 +121046,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18508 + - uid: 18563 components: - rot: 1.5707963267948966 rad pos: 37.5,44.5 @@ -120758,7 +121054,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18509 + - uid: 18564 components: - rot: 1.5707963267948966 rad pos: 38.5,44.5 @@ -120766,7 +121062,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18510 + - uid: 18565 components: - rot: 1.5707963267948966 rad pos: 39.5,44.5 @@ -120774,7 +121070,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18511 + - uid: 18566 components: - rot: 3.141592653589793 rad pos: -6.5,-91.5 @@ -120782,98 +121078,98 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18512 + - uid: 18567 components: - pos: -22.5,-90.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18513 + - uid: 18568 components: - pos: -22.5,-91.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18514 + - uid: 18569 components: - pos: -22.5,-92.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18515 + - uid: 18570 components: - pos: -22.5,-93.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18516 + - uid: 18571 components: - pos: -22.5,-94.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18517 + - uid: 18572 components: - pos: -22.5,-95.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18518 + - uid: 18573 components: - pos: -20.5,-89.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18519 + - uid: 18574 components: - pos: -20.5,-90.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18520 + - uid: 18575 components: - pos: -20.5,-91.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18521 + - uid: 18576 components: - pos: -20.5,-92.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18522 + - uid: 18577 components: - pos: -20.5,-93.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18523 + - uid: 18578 components: - pos: -20.5,-94.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18524 + - uid: 18579 components: - pos: -20.5,-95.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18525 + - uid: 18580 components: - rot: 3.141592653589793 rad pos: -22.5,-97.5 @@ -120881,7 +121177,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18526 + - uid: 18581 components: - rot: 1.5707963267948966 rad pos: -21.5,-97.5 @@ -120889,7 +121185,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18527 + - uid: 18582 components: - rot: 1.5707963267948966 rad pos: -22.5,-97.5 @@ -120897,7 +121193,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18528 + - uid: 18583 components: - rot: 1.5707963267948966 rad pos: -23.5,-97.5 @@ -120905,7 +121201,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18529 + - uid: 18584 components: - rot: 1.5707963267948966 rad pos: -24.5,-97.5 @@ -120913,7 +121209,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18530 + - uid: 18585 components: - rot: 1.5707963267948966 rad pos: -25.5,-97.5 @@ -120921,7 +121217,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18531 + - uid: 18586 components: - rot: 1.5707963267948966 rad pos: -26.5,-97.5 @@ -120929,7 +121225,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18532 + - uid: 18587 components: - rot: 1.5707963267948966 rad pos: -27.5,-97.5 @@ -120937,7 +121233,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18533 + - uid: 18588 components: - rot: 1.5707963267948966 rad pos: -28.5,-97.5 @@ -120945,7 +121241,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18534 + - uid: 18589 components: - rot: 1.5707963267948966 rad pos: -29.5,-97.5 @@ -120953,7 +121249,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18535 + - uid: 18590 components: - rot: 1.5707963267948966 rad pos: -30.5,-97.5 @@ -120961,7 +121257,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18536 + - uid: 18591 components: - rot: 1.5707963267948966 rad pos: -23.5,-96.5 @@ -120969,7 +121265,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18537 + - uid: 18592 components: - rot: 1.5707963267948966 rad pos: -24.5,-96.5 @@ -120977,7 +121273,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18538 + - uid: 18593 components: - rot: 1.5707963267948966 rad pos: -25.5,-96.5 @@ -120985,7 +121281,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18539 + - uid: 18594 components: - rot: 1.5707963267948966 rad pos: -26.5,-96.5 @@ -120993,7 +121289,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18540 + - uid: 18595 components: - rot: 1.5707963267948966 rad pos: -27.5,-96.5 @@ -121001,7 +121297,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18541 + - uid: 18596 components: - rot: 1.5707963267948966 rad pos: -28.5,-96.5 @@ -121009,7 +121305,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18542 + - uid: 18597 components: - rot: 1.5707963267948966 rad pos: -29.5,-96.5 @@ -121017,7 +121313,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18543 + - uid: 18598 components: - rot: 1.5707963267948966 rad pos: -30.5,-96.5 @@ -121025,7 +121321,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18544 + - uid: 18599 components: - rot: 1.5707963267948966 rad pos: -20.5,-98.5 @@ -121033,7 +121329,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18545 + - uid: 18600 components: - rot: 1.5707963267948966 rad pos: -19.5,-98.5 @@ -121041,7 +121337,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18546 + - uid: 18601 components: - rot: 1.5707963267948966 rad pos: -18.5,-98.5 @@ -121049,7 +121345,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18547 + - uid: 18602 components: - rot: 1.5707963267948966 rad pos: -17.5,-98.5 @@ -121057,7 +121353,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18548 + - uid: 18603 components: - rot: 1.5707963267948966 rad pos: -16.5,-98.5 @@ -121065,7 +121361,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18549 + - uid: 18604 components: - rot: 1.5707963267948966 rad pos: -19.5,-97.5 @@ -121073,7 +121369,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18550 + - uid: 18605 components: - rot: 1.5707963267948966 rad pos: -18.5,-97.5 @@ -121081,7 +121377,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18551 + - uid: 18606 components: - rot: 1.5707963267948966 rad pos: -17.5,-97.5 @@ -121089,7 +121385,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18552 + - uid: 18607 components: - rot: 1.5707963267948966 rad pos: -16.5,-97.5 @@ -121097,7 +121393,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18553 + - uid: 18608 components: - rot: 1.5707963267948966 rad pos: -15.5,-97.5 @@ -121105,7 +121401,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18554 + - uid: 18609 components: - rot: 1.5707963267948966 rad pos: -14.5,-97.5 @@ -121113,7 +121409,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18555 + - uid: 18610 components: - rot: 1.5707963267948966 rad pos: -13.5,-97.5 @@ -121121,7 +121417,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18556 + - uid: 18611 components: - rot: 1.5707963267948966 rad pos: -12.5,-97.5 @@ -121129,7 +121425,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18557 + - uid: 18612 components: - rot: 1.5707963267948966 rad pos: -11.5,-97.5 @@ -121137,7 +121433,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18558 + - uid: 18613 components: - rot: 1.5707963267948966 rad pos: -10.5,-97.5 @@ -121145,7 +121441,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18559 + - uid: 18614 components: - rot: 1.5707963267948966 rad pos: -15.5,-98.5 @@ -121153,7 +121449,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18560 + - uid: 18615 components: - rot: 1.5707963267948966 rad pos: -14.5,-98.5 @@ -121161,7 +121457,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18561 + - uid: 18616 components: - rot: 1.5707963267948966 rad pos: -13.5,-98.5 @@ -121169,7 +121465,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18562 + - uid: 18617 components: - rot: 1.5707963267948966 rad pos: -12.5,-98.5 @@ -121177,7 +121473,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18563 + - uid: 18618 components: - rot: 1.5707963267948966 rad pos: -11.5,-98.5 @@ -121185,7 +121481,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18564 + - uid: 18619 components: - rot: 1.5707963267948966 rad pos: -10.5,-98.5 @@ -121193,7 +121489,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18565 + - uid: 18620 components: - rot: 1.5707963267948966 rad pos: -9.5,-98.5 @@ -121201,7 +121497,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18566 + - uid: 18621 components: - rot: 1.5707963267948966 rad pos: -8.5,-98.5 @@ -121209,7 +121505,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18567 + - uid: 18622 components: - rot: 1.5707963267948966 rad pos: -9.5,-97.5 @@ -121217,112 +121513,112 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18568 + - uid: 18623 components: - pos: -8.5,-96.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18569 + - uid: 18624 components: - pos: -8.5,-95.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18570 + - uid: 18625 components: - pos: -8.5,-94.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18571 + - uid: 18626 components: - pos: -8.5,-93.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18572 + - uid: 18627 components: - pos: -8.5,-92.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18573 + - uid: 18628 components: - pos: -7.5,-97.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18574 + - uid: 18629 components: - pos: -7.5,-96.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18575 + - uid: 18630 components: - pos: -7.5,-95.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18576 + - uid: 18631 components: - pos: -7.5,-94.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18577 + - uid: 18632 components: - pos: -8.5,-90.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18578 + - uid: 18633 components: - pos: -8.5,-89.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18579 + - uid: 18634 components: - pos: -8.5,-88.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18580 + - uid: 18635 components: - pos: -8.5,-87.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18581 + - uid: 18636 components: - pos: -8.5,-86.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18582 + - uid: 18637 components: - pos: -8.5,-85.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18583 + - uid: 18638 components: - rot: 3.141592653589793 rad pos: -6.5,-89.5 @@ -121330,7 +121626,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18584 + - uid: 18639 components: - rot: 3.141592653589793 rad pos: -6.5,-90.5 @@ -121338,7 +121634,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18585 + - uid: 18640 components: - rot: 3.141592653589793 rad pos: -6.5,-92.5 @@ -121346,7 +121642,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18586 + - uid: 18641 components: - rot: 3.141592653589793 rad pos: -6.5,-88.5 @@ -121354,7 +121650,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18587 + - uid: 18642 components: - rot: 3.141592653589793 rad pos: -6.5,-87.5 @@ -121362,7 +121658,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18588 + - uid: 18643 components: - rot: 3.141592653589793 rad pos: -6.5,-86.5 @@ -121370,7 +121666,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18589 + - uid: 18644 components: - rot: 3.141592653589793 rad pos: -6.5,-85.5 @@ -121378,7 +121674,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18590 + - uid: 18645 components: - rot: -1.5707963267948966 rad pos: -31.5,-96.5 @@ -121386,7 +121682,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18591 + - uid: 18646 components: - rot: -1.5707963267948966 rad pos: -31.5,-97.5 @@ -121394,7 +121690,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18592 + - uid: 18647 components: - rot: -1.5707963267948966 rad pos: -32.5,-96.5 @@ -121402,7 +121698,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18593 + - uid: 18648 components: - rot: -1.5707963267948966 rad pos: -32.5,-97.5 @@ -121410,7 +121706,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18594 + - uid: 18649 components: - rot: -1.5707963267948966 rad pos: -33.5,-96.5 @@ -121418,7 +121714,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18595 + - uid: 18650 components: - rot: -1.5707963267948966 rad pos: -33.5,-97.5 @@ -121426,7 +121722,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18596 + - uid: 18651 components: - rot: 1.5707963267948966 rad pos: 36.5,-72.5 @@ -121434,7 +121730,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18597 + - uid: 18652 components: - rot: 1.5707963267948966 rad pos: 63.5,-34.5 @@ -121442,14 +121738,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18598 + - uid: 18653 components: - pos: 70.5,-48.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18599 + - uid: 18654 components: - rot: -1.5707963267948966 rad pos: 61.5,-33.5 @@ -121457,7 +121753,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18600 + - uid: 18655 components: - rot: -1.5707963267948966 rad pos: 62.5,-33.5 @@ -121465,7 +121761,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18601 + - uid: 18656 components: - rot: -1.5707963267948966 rad pos: 63.5,-33.5 @@ -121473,7 +121769,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18602 + - uid: 18657 components: - rot: -1.5707963267948966 rad pos: 64.5,-33.5 @@ -121481,7 +121777,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18603 + - uid: 18658 components: - rot: -1.5707963267948966 rad pos: 66.5,-33.5 @@ -121489,7 +121785,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18604 + - uid: 18659 components: - rot: -1.5707963267948966 rad pos: 67.5,-33.5 @@ -121497,7 +121793,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18605 + - uid: 18660 components: - rot: -1.5707963267948966 rad pos: 66.5,-34.5 @@ -121505,7 +121801,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18606 + - uid: 18661 components: - rot: -1.5707963267948966 rad pos: 68.5,-34.5 @@ -121513,7 +121809,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18607 + - uid: 18662 components: - rot: -1.5707963267948966 rad pos: 69.5,-34.5 @@ -121521,7 +121817,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18608 + - uid: 18663 components: - rot: -1.5707963267948966 rad pos: 69.5,-33.5 @@ -121529,7 +121825,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18609 + - uid: 18664 components: - rot: -1.5707963267948966 rad pos: 70.5,-33.5 @@ -121537,7 +121833,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18610 + - uid: 18665 components: - rot: -1.5707963267948966 rad pos: 70.5,-34.5 @@ -121545,14 +121841,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18611 + - uid: 18666 components: - pos: 72.5,-32.5 parent: 2 type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 18612 + - uid: 18667 components: - rot: -1.5707963267948966 rad pos: 71.5,-34.5 @@ -121560,7 +121856,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18613 + - uid: 18668 components: - rot: -1.5707963267948966 rad pos: 72.5,-34.5 @@ -121568,70 +121864,70 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18614 + - uid: 18669 components: - pos: 74.5,-35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18615 + - uid: 18670 components: - pos: 74.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18616 + - uid: 18671 components: - pos: 74.5,-37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18617 + - uid: 18672 components: - pos: 74.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18618 + - uid: 18673 components: - pos: 74.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18619 + - uid: 18674 components: - pos: 74.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18620 + - uid: 18675 components: - pos: 75.5,-34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18621 + - uid: 18676 components: - pos: 75.5,-35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18622 + - uid: 18677 components: - pos: 75.5,-36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18623 + - uid: 18678 components: - rot: 1.5707963267948966 rad pos: 74.5,-37.5 @@ -121639,21 +121935,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18624 + - uid: 18679 components: - pos: 75.5,-38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18625 + - uid: 18680 components: - pos: 75.5,-39.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18626 + - uid: 18681 components: - rot: 3.141592653589793 rad pos: 72.5,-30.5 @@ -121661,7 +121957,7 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 18627 + - uid: 18682 components: - rot: 3.141592653589793 rad pos: 75.5,-41.5 @@ -121669,7 +121965,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18628 + - uid: 18683 components: - rot: 3.141592653589793 rad pos: 75.5,-42.5 @@ -121677,7 +121973,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18629 + - uid: 18684 components: - rot: 3.141592653589793 rad pos: 74.5,-42.5 @@ -121685,7 +121981,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18630 + - uid: 18685 components: - rot: 3.141592653589793 rad pos: 74.5,-43.5 @@ -121693,7 +121989,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18631 + - uid: 18686 components: - rot: 3.141592653589793 rad pos: 74.5,-44.5 @@ -121701,7 +121997,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18632 + - uid: 18687 components: - rot: 3.141592653589793 rad pos: 75.5,-43.5 @@ -121709,7 +122005,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18633 + - uid: 18688 components: - rot: 3.141592653589793 rad pos: 75.5,-44.5 @@ -121717,7 +122013,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18634 + - uid: 18689 components: - rot: 3.141592653589793 rad pos: 75.5,-45.5 @@ -121725,7 +122021,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18635 + - uid: 18690 components: - rot: 1.5707963267948966 rad pos: 71.5,-48.5 @@ -121733,7 +122029,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18636 + - uid: 18691 components: - rot: 1.5707963267948966 rad pos: 74.5,-46.5 @@ -121741,7 +122037,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18637 + - uid: 18692 components: - rot: 1.5707963267948966 rad pos: 69.5,-47.5 @@ -121749,7 +122045,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18638 + - uid: 18693 components: - rot: -1.5707963267948966 rad pos: 73.5,-45.5 @@ -121757,7 +122053,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18639 + - uid: 18694 components: - rot: -1.5707963267948966 rad pos: 72.5,-45.5 @@ -121765,21 +122061,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18640 + - uid: 18695 components: - pos: 5.5,-26.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18641 + - uid: 18696 components: - pos: 5.5,-27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18642 + - uid: 18697 components: - rot: -1.5707963267948966 rad pos: 4.5,-25.5 @@ -121787,7 +122083,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18643 + - uid: 18698 components: - rot: -1.5707963267948966 rad pos: 62.5,-11.5 @@ -121795,14 +122091,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18644 + - uid: 18699 components: - pos: 66.5,-39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18645 + - uid: 18700 components: - rot: 1.5707963267948966 rad pos: 73.5,-37.5 @@ -121810,7 +122106,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18646 + - uid: 18701 components: - rot: -1.5707963267948966 rad pos: 70.5,-36.5 @@ -121818,7 +122114,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18647 + - uid: 18702 components: - rot: -1.5707963267948966 rad pos: 68.5,-36.5 @@ -121826,7 +122122,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18648 + - uid: 18703 components: - rot: -1.5707963267948966 rad pos: 69.5,-37.5 @@ -121834,7 +122130,7 @@ entities: type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 18649 + - uid: 18704 components: - rot: -1.5707963267948966 rad pos: 69.5,-36.5 @@ -121842,14 +122138,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18650 + - uid: 18705 components: - pos: 71.5,-32.5 parent: 2 type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 18651 + - uid: 18706 components: - rot: 1.5707963267948966 rad pos: 71.5,-33.5 @@ -121857,7 +122153,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18652 + - uid: 18707 components: - rot: 1.5707963267948966 rad pos: 72.5,-33.5 @@ -121865,12 +122161,12 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18653 + - uid: 18708 components: - pos: -55.5,-62.5 parent: 2 type: Transform - - uid: 18654 + - uid: 18709 components: - rot: -1.5707963267948966 rad pos: 71.5,-38.5 @@ -121878,7 +122174,7 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 18655 + - uid: 18710 components: - rot: -1.5707963267948966 rad pos: 69.5,-38.5 @@ -121886,7 +122182,7 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 18656 + - uid: 18711 components: - rot: 3.141592653589793 rad pos: 73.5,-31.5 @@ -121894,7 +122190,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18657 + - uid: 18712 components: - rot: 3.141592653589793 rad pos: 73.5,-30.5 @@ -121902,21 +122198,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18658 + - uid: 18713 components: - pos: 5.5,-28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18659 + - uid: 18714 components: - pos: 5.5,-29.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18660 + - uid: 18715 components: - rot: 1.5707963267948966 rad pos: 60.5,-34.5 @@ -121924,35 +122220,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18661 + - uid: 18716 components: - rot: 3.141592653589793 rad pos: 55.5,-50.5 parent: 2 type: Transform - - uid: 18662 + - uid: 18717 components: - rot: 3.141592653589793 rad pos: 55.5,-49.5 parent: 2 type: Transform - - uid: 18663 + - uid: 18718 components: - rot: 1.5707963267948966 rad pos: 54.5,-48.5 parent: 2 type: Transform - - uid: 18664 + - uid: 18719 components: - pos: -54.5,-62.5 parent: 2 type: Transform - - uid: 18665 + - uid: 18720 components: - pos: -54.5,-61.5 parent: 2 type: Transform - - uid: 18666 + - uid: 18721 components: - rot: -1.5707963267948966 rad pos: 61.5,-11.5 @@ -121960,7 +122256,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18667 + - uid: 18722 components: - rot: -1.5707963267948966 rad pos: 60.5,-11.5 @@ -121968,7 +122264,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18668 + - uid: 18723 components: - rot: -1.5707963267948966 rad pos: 59.5,-11.5 @@ -121976,7 +122272,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18669 + - uid: 18724 components: - rot: -1.5707963267948966 rad pos: 58.5,-11.5 @@ -121984,7 +122280,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18670 + - uid: 18725 components: - rot: -1.5707963267948966 rad pos: 57.5,-11.5 @@ -121992,7 +122288,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18671 + - uid: 18726 components: - rot: -1.5707963267948966 rad pos: 56.5,-11.5 @@ -122000,7 +122296,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18672 + - uid: 18727 components: - rot: 1.5707963267948966 rad pos: 54.5,-6.5 @@ -122008,7 +122304,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18673 + - uid: 18728 components: - rot: 1.5707963267948966 rad pos: 55.5,-6.5 @@ -122016,7 +122312,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18674 + - uid: 18729 components: - rot: 1.5707963267948966 rad pos: 56.5,-6.5 @@ -122024,7 +122320,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18675 + - uid: 18730 components: - rot: 1.5707963267948966 rad pos: 57.5,-6.5 @@ -122032,7 +122328,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18676 + - uid: 18731 components: - rot: 1.5707963267948966 rad pos: 58.5,-6.5 @@ -122040,7 +122336,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18677 + - uid: 18732 components: - rot: 1.5707963267948966 rad pos: 59.5,-6.5 @@ -122048,7 +122344,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18678 + - uid: 18733 components: - rot: 1.5707963267948966 rad pos: 60.5,-6.5 @@ -122056,7 +122352,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18679 + - uid: 18734 components: - rot: 1.5707963267948966 rad pos: 31.5,-72.5 @@ -122064,7 +122360,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18680 + - uid: 18735 components: - rot: 1.5707963267948966 rad pos: 35.5,-72.5 @@ -122072,7 +122368,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18681 + - uid: 18736 components: - rot: 1.5707963267948966 rad pos: -19.5,25.5 @@ -122080,7 +122376,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18682 + - uid: 18737 components: - rot: 1.5707963267948966 rad pos: -18.5,25.5 @@ -122088,7 +122384,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18683 + - uid: 18738 components: - rot: 1.5707963267948966 rad pos: -17.5,25.5 @@ -122096,7 +122392,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18684 + - uid: 18739 components: - rot: 1.5707963267948966 rad pos: -16.5,25.5 @@ -122104,7 +122400,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18685 + - uid: 18740 components: - rot: 1.5707963267948966 rad pos: -17.5,24.5 @@ -122112,7 +122408,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18686 + - uid: 18741 components: - rot: 1.5707963267948966 rad pos: -16.5,24.5 @@ -122120,7 +122416,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18687 + - uid: 18742 components: - rot: -1.5707963267948966 rad pos: 71.5,-36.5 @@ -122128,7 +122424,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18688 + - uid: 18743 components: - rot: -1.5707963267948966 rad pos: 71.5,-37.5 @@ -122136,14 +122432,14 @@ entities: type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 18689 + - uid: 18744 components: - pos: -5.5,-9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18690 + - uid: 18745 components: - rot: -1.5707963267948966 rad pos: -4.5,-12.5 @@ -122151,7 +122447,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18691 + - uid: 18746 components: - rot: -1.5707963267948966 rad pos: -5.5,-12.5 @@ -122159,7 +122455,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18692 + - uid: 18747 components: - rot: -1.5707963267948966 rad pos: -6.5,-12.5 @@ -122167,7 +122463,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18693 + - uid: 18748 components: - rot: -1.5707963267948966 rad pos: -7.5,-12.5 @@ -122175,7 +122471,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18694 + - uid: 18749 components: - rot: -1.5707963267948966 rad pos: -6.5,-14.5 @@ -122183,7 +122479,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18695 + - uid: 18750 components: - rot: -1.5707963267948966 rad pos: -7.5,-14.5 @@ -122191,7 +122487,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18696 + - uid: 18751 components: - rot: 3.141592653589793 rad pos: -11.5,-23.5 @@ -122199,7 +122495,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18697 + - uid: 18752 components: - rot: 3.141592653589793 rad pos: -11.5,-21.5 @@ -122207,7 +122503,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18698 + - uid: 18753 components: - rot: 3.141592653589793 rad pos: -11.5,-20.5 @@ -122215,7 +122511,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18699 + - uid: 18754 components: - rot: 3.141592653589793 rad pos: -11.5,-19.5 @@ -122223,7 +122519,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18700 + - uid: 18755 components: - rot: 3.141592653589793 rad pos: -10.5,-19.5 @@ -122231,7 +122527,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18701 + - uid: 18756 components: - rot: 3.141592653589793 rad pos: -10.5,-20.5 @@ -122239,7 +122535,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18702 + - uid: 18757 components: - rot: -1.5707963267948966 rad pos: -9.5,-21.5 @@ -122247,14 +122543,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18703 + - uid: 18758 components: - pos: -25.5,-58.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18704 + - uid: 18759 components: - rot: 3.141592653589793 rad pos: -28.5,-72.5 @@ -122262,7 +122558,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18705 + - uid: 18760 components: - rot: 3.141592653589793 rad pos: -28.5,-73.5 @@ -122270,7 +122566,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18706 + - uid: 18761 components: - rot: 3.141592653589793 rad pos: -30.5,-72.5 @@ -122278,7 +122574,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18707 + - uid: 18762 components: - rot: 3.141592653589793 rad pos: -30.5,-73.5 @@ -122286,7 +122582,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18708 + - uid: 18763 components: - rot: 1.5707963267948966 rad pos: 34.5,-72.5 @@ -122294,7 +122590,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18709 + - uid: 18764 components: - rot: 1.5707963267948966 rad pos: 33.5,-72.5 @@ -122302,25 +122598,25 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18710 + - uid: 18765 components: - rot: -1.5707963267948966 rad pos: -45.5,-35.5 parent: 2 type: Transform - - uid: 18711 + - uid: 18766 components: - rot: -1.5707963267948966 rad pos: -46.5,-35.5 parent: 2 type: Transform - - uid: 18712 + - uid: 18767 components: - rot: -1.5707963267948966 rad pos: -47.5,-35.5 parent: 2 type: Transform - - uid: 18713 + - uid: 18768 components: - rot: 3.141592653589793 rad pos: 30.5,-80.5 @@ -122328,7 +122624,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18714 + - uid: 18769 components: - rot: 3.141592653589793 rad pos: 47.5,-76.5 @@ -122336,7 +122632,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18715 + - uid: 18770 components: - rot: 3.141592653589793 rad pos: 47.5,-77.5 @@ -122344,7 +122640,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18716 + - uid: 18771 components: - rot: 3.141592653589793 rad pos: 47.5,-78.5 @@ -122352,7 +122648,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18717 + - uid: 18772 components: - rot: 3.141592653589793 rad pos: 29.5,-82.5 @@ -122360,7 +122656,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18718 + - uid: 18773 components: - rot: 1.5707963267948966 rad pos: 47.5,-73.5 @@ -122368,7 +122664,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18719 + - uid: 18774 components: - rot: 3.141592653589793 rad pos: 48.5,-80.5 @@ -122376,7 +122672,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18720 + - uid: 18775 components: - rot: 1.5707963267948966 rad pos: 43.5,-72.5 @@ -122384,7 +122680,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18721 + - uid: 18776 components: - rot: 3.141592653589793 rad pos: 29.5,-75.5 @@ -122392,7 +122688,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18722 + - uid: 18777 components: - rot: 1.5707963267948966 rad pos: 29.5,-72.5 @@ -122400,7 +122696,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18723 + - uid: 18778 components: - rot: 1.5707963267948966 rad pos: 28.5,-72.5 @@ -122408,7 +122704,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18724 + - uid: 18779 components: - rot: 1.5707963267948966 rad pos: 27.5,-72.5 @@ -122416,7 +122712,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18725 + - uid: 18780 components: - rot: 1.5707963267948966 rad pos: 26.5,-72.5 @@ -122424,7 +122720,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18726 + - uid: 18781 components: - rot: 1.5707963267948966 rad pos: 39.5,-73.5 @@ -122432,7 +122728,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18727 + - uid: 18782 components: - rot: 1.5707963267948966 rad pos: 38.5,-73.5 @@ -122440,7 +122736,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18728 + - uid: 18783 components: - rot: 1.5707963267948966 rad pos: 37.5,-73.5 @@ -122448,7 +122744,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18729 + - uid: 18784 components: - rot: 1.5707963267948966 rad pos: 36.5,-73.5 @@ -122456,7 +122752,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18730 + - uid: 18785 components: - rot: 1.5707963267948966 rad pos: 35.5,-73.5 @@ -122464,7 +122760,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18731 + - uid: 18786 components: - rot: 1.5707963267948966 rad pos: 34.5,-73.5 @@ -122472,7 +122768,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18732 + - uid: 18787 components: - rot: 1.5707963267948966 rad pos: 33.5,-73.5 @@ -122480,7 +122776,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18733 + - uid: 18788 components: - rot: 1.5707963267948966 rad pos: 31.5,-73.5 @@ -122488,7 +122784,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18734 + - uid: 18789 components: - rot: 1.5707963267948966 rad pos: 30.5,-73.5 @@ -122496,7 +122792,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18735 + - uid: 18790 components: - rot: 3.141592653589793 rad pos: 29.5,-74.5 @@ -122504,7 +122800,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18736 + - uid: 18791 components: - rot: 1.5707963267948966 rad pos: 28.5,-73.5 @@ -122512,7 +122808,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18737 + - uid: 18792 components: - rot: 1.5707963267948966 rad pos: 27.5,-73.5 @@ -122520,7 +122816,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18738 + - uid: 18793 components: - rot: 1.5707963267948966 rad pos: 26.5,-73.5 @@ -122528,7 +122824,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18739 + - uid: 18794 components: - rot: -1.5707963267948966 rad pos: 25.5,-73.5 @@ -122536,7 +122832,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18740 + - uid: 18795 components: - rot: 1.5707963267948966 rad pos: 26.5,-82.5 @@ -122544,7 +122840,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18741 + - uid: 18796 components: - rot: 3.141592653589793 rad pos: 29.5,-76.5 @@ -122552,7 +122848,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18742 + - uid: 18797 components: - rot: 3.141592653589793 rad pos: 29.5,-77.5 @@ -122560,7 +122856,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18743 + - uid: 18798 components: - rot: 1.5707963267948966 rad pos: 27.5,-82.5 @@ -122568,7 +122864,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18744 + - uid: 18799 components: - rot: 1.5707963267948966 rad pos: 28.5,-82.5 @@ -122576,7 +122872,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18745 + - uid: 18800 components: - rot: 1.5707963267948966 rad pos: 24.5,-83.5 @@ -122584,7 +122880,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18746 + - uid: 18801 components: - rot: 1.5707963267948966 rad pos: 25.5,-83.5 @@ -122592,7 +122888,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18747 + - uid: 18802 components: - rot: 1.5707963267948966 rad pos: 26.5,-83.5 @@ -122600,7 +122896,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18748 + - uid: 18803 components: - rot: 1.5707963267948966 rad pos: 27.5,-83.5 @@ -122608,7 +122904,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18749 + - uid: 18804 components: - rot: 1.5707963267948966 rad pos: 28.5,-83.5 @@ -122616,7 +122912,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18750 + - uid: 18805 components: - rot: -1.5707963267948966 rad pos: 23.5,-82.5 @@ -122624,7 +122920,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18751 + - uid: 18806 components: - rot: -1.5707963267948966 rad pos: 22.5,-82.5 @@ -122632,7 +122928,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18752 + - uid: 18807 components: - rot: -1.5707963267948966 rad pos: 21.5,-82.5 @@ -122640,7 +122936,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18753 + - uid: 18808 components: - rot: -1.5707963267948966 rad pos: 20.5,-82.5 @@ -122648,7 +122944,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18754 + - uid: 18809 components: - rot: -1.5707963267948966 rad pos: 19.5,-82.5 @@ -122656,7 +122952,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18755 + - uid: 18810 components: - rot: -1.5707963267948966 rad pos: 23.5,-83.5 @@ -122664,7 +122960,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18756 + - uid: 18811 components: - rot: -1.5707963267948966 rad pos: 22.5,-83.5 @@ -122672,7 +122968,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18757 + - uid: 18812 components: - rot: -1.5707963267948966 rad pos: 21.5,-83.5 @@ -122680,7 +122976,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18758 + - uid: 18813 components: - rot: -1.5707963267948966 rad pos: 20.5,-83.5 @@ -122688,7 +122984,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18759 + - uid: 18814 components: - rot: -1.5707963267948966 rad pos: 29.5,-82.5 @@ -122696,7 +122992,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18760 + - uid: 18815 components: - rot: 1.5707963267948966 rad pos: 25.5,-82.5 @@ -122704,7 +123000,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18761 + - uid: 18816 components: - rot: 1.5707963267948966 rad pos: 24.5,-82.5 @@ -122712,7 +123008,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18762 + - uid: 18817 components: - rot: 3.141592653589793 rad pos: 30.5,-74.5 @@ -122720,7 +123016,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18763 + - uid: 18818 components: - rot: 3.141592653589793 rad pos: 30.5,-78.5 @@ -122728,7 +123024,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18764 + - uid: 18819 components: - rot: 3.141592653589793 rad pos: 30.5,-77.5 @@ -122736,7 +123032,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18765 + - uid: 18820 components: - rot: 3.141592653589793 rad pos: 30.5,-75.5 @@ -122744,7 +123040,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18766 + - uid: 18821 components: - rot: 3.141592653589793 rad pos: 30.5,-76.5 @@ -122752,7 +123048,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18767 + - uid: 18822 components: - rot: 3.141592653589793 rad pos: 30.5,-79.5 @@ -122760,7 +123056,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18768 + - uid: 18823 components: - rot: 1.5707963267948966 rad pos: 41.5,-73.5 @@ -122768,7 +123064,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18769 + - uid: 18824 components: - rot: 3.141592653589793 rad pos: 48.5,-74.5 @@ -122776,7 +123072,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18770 + - uid: 18825 components: - rot: 3.141592653589793 rad pos: 48.5,-76.5 @@ -122784,7 +123080,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18771 + - uid: 18826 components: - rot: 3.141592653589793 rad pos: 48.5,-83.5 @@ -122792,7 +123088,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18772 + - uid: 18827 components: - rot: 3.141592653589793 rad pos: 48.5,-84.5 @@ -122800,7 +123096,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18773 + - uid: 18828 components: - rot: 3.141592653589793 rad pos: 48.5,-77.5 @@ -122808,7 +123104,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18774 + - uid: 18829 components: - rot: 3.141592653589793 rad pos: 48.5,-78.5 @@ -122816,7 +123112,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18775 + - uid: 18830 components: - rot: 3.141592653589793 rad pos: 48.5,-81.5 @@ -122824,7 +123120,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18776 + - uid: 18831 components: - rot: 3.141592653589793 rad pos: 48.5,-82.5 @@ -122832,7 +123128,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18777 + - uid: 18832 components: - rot: 1.5707963267948966 rad pos: 44.5,-72.5 @@ -122840,7 +123136,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18778 + - uid: 18833 components: - rot: 1.5707963267948966 rad pos: 42.5,-72.5 @@ -122848,7 +123144,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18779 + - uid: 18834 components: - rot: 3.141592653589793 rad pos: 47.5,-84.5 @@ -122856,7 +123152,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18780 + - uid: 18835 components: - rot: 3.141592653589793 rad pos: 47.5,-74.5 @@ -122864,7 +123160,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18781 + - uid: 18836 components: - rot: 3.141592653589793 rad pos: 47.5,-75.5 @@ -122872,7 +123168,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18782 + - uid: 18837 components: - rot: 1.5707963267948966 rad pos: 45.5,-73.5 @@ -122880,7 +123176,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18783 + - uid: 18838 components: - rot: 1.5707963267948966 rad pos: 46.5,-73.5 @@ -122888,7 +123184,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18784 + - uid: 18839 components: - rot: 3.141592653589793 rad pos: 47.5,-85.5 @@ -122896,7 +123192,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18785 + - uid: 18840 components: - rot: 3.141592653589793 rad pos: 47.5,-81.5 @@ -122904,7 +123200,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18786 + - uid: 18841 components: - rot: 3.141592653589793 rad pos: 47.5,-82.5 @@ -122912,7 +123208,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18787 + - uid: 18842 components: - rot: 3.141592653589793 rad pos: 47.5,-83.5 @@ -122920,7 +123216,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18788 + - uid: 18843 components: - rot: 1.5707963267948966 rad pos: -21.5,66.5 @@ -122928,7 +123224,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18789 + - uid: 18844 components: - rot: 1.5707963267948966 rad pos: -20.5,66.5 @@ -122936,7 +123232,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18790 + - uid: 18845 components: - rot: 1.5707963267948966 rad pos: -19.5,66.5 @@ -122944,7 +123240,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18791 + - uid: 18846 components: - rot: 1.5707963267948966 rad pos: -15.5,66.5 @@ -122952,7 +123248,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18792 + - uid: 18847 components: - rot: 1.5707963267948966 rad pos: -14.5,66.5 @@ -122960,7 +123256,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18793 + - uid: 18848 components: - rot: -1.5707963267948966 rad pos: 32.5,-72.5 @@ -122968,7 +123264,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18794 + - uid: 18849 components: - rot: -1.5707963267948966 rad pos: 32.5,-73.5 @@ -122976,7 +123272,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18795 + - uid: 18850 components: - rot: -1.5707963267948966 rad pos: 14.5,-22.5 @@ -122984,7 +123280,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18796 + - uid: 18851 components: - rot: -1.5707963267948966 rad pos: 13.5,-22.5 @@ -122992,7 +123288,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18797 + - uid: 18852 components: - rot: -1.5707963267948966 rad pos: 12.5,-22.5 @@ -123000,7 +123296,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18798 + - uid: 18853 components: - rot: -1.5707963267948966 rad pos: 11.5,-22.5 @@ -123008,7 +123304,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18799 + - uid: 18854 components: - rot: -1.5707963267948966 rad pos: 10.5,-22.5 @@ -123016,7 +123312,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18800 + - uid: 18855 components: - rot: -1.5707963267948966 rad pos: 9.5,-22.5 @@ -123024,7 +123320,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18801 + - uid: 18856 components: - rot: -1.5707963267948966 rad pos: 8.5,-22.5 @@ -123032,35 +123328,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18802 + - uid: 18857 components: - pos: 12.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18803 + - uid: 18858 components: - pos: 12.5,-26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18804 + - uid: 18859 components: - pos: 12.5,-23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18805 + - uid: 18860 components: - pos: 12.5,-24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18806 + - uid: 18861 components: - rot: 3.141592653589793 rad pos: 40.5,9.5 @@ -123068,7 +123364,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18807 + - uid: 18862 components: - rot: 3.141592653589793 rad pos: 40.5,8.5 @@ -123076,7 +123372,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18808 + - uid: 18863 components: - rot: 1.5707963267948966 rad pos: 43.5,6.5 @@ -123084,7 +123380,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18809 + - uid: 18864 components: - rot: 1.5707963267948966 rad pos: 44.5,6.5 @@ -123092,7 +123388,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18810 + - uid: 18865 components: - rot: 1.5707963267948966 rad pos: 41.5,5.5 @@ -123100,7 +123396,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18811 + - uid: 18866 components: - rot: 1.5707963267948966 rad pos: 42.5,5.5 @@ -123108,7 +123404,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18812 + - uid: 18867 components: - rot: 1.5707963267948966 rad pos: 43.5,5.5 @@ -123116,7 +123412,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18813 + - uid: 18868 components: - rot: 1.5707963267948966 rad pos: 44.5,5.5 @@ -123124,7 +123420,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18814 + - uid: 18869 components: - rot: 1.5707963267948966 rad pos: -46.5,31.5 @@ -123132,147 +123428,147 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18815 + - uid: 18870 components: - pos: -47.5,33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18816 + - uid: 18871 components: - pos: -47.5,32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18817 + - uid: 18872 components: - pos: -45.5,34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18818 + - uid: 18873 components: - pos: -45.5,35.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18819 + - uid: 18874 components: - pos: -45.5,36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18820 + - uid: 18875 components: - pos: -45.5,37.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18821 + - uid: 18876 components: - pos: -45.5,38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18822 + - uid: 18877 components: - pos: -45.5,39.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18823 + - uid: 18878 components: - pos: -45.5,40.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18824 + - uid: 18879 components: - pos: -45.5,41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18825 + - uid: 18880 components: - pos: -45.5,42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18826 + - uid: 18881 components: - pos: -46.5,35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18827 + - uid: 18882 components: - pos: -46.5,36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18828 + - uid: 18883 components: - pos: -46.5,37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18829 + - uid: 18884 components: - pos: -46.5,38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18830 + - uid: 18885 components: - pos: -46.5,39.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18831 + - uid: 18886 components: - pos: -46.5,40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18832 + - uid: 18887 components: - pos: -46.5,41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18833 + - uid: 18888 components: - pos: -46.5,42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18834 + - uid: 18889 components: - pos: 68.5,-32.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18835 + - uid: 18890 components: - rot: 1.5707963267948966 rad pos: 64.5,-31.5 @@ -123280,7 +123576,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18836 + - uid: 18891 components: - rot: 1.5707963267948966 rad pos: 65.5,-31.5 @@ -123288,7 +123584,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18837 + - uid: 18892 components: - rot: 1.5707963267948966 rad pos: 66.5,-31.5 @@ -123296,7 +123592,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18838 + - uid: 18893 components: - rot: 3.141592653589793 rad pos: -3.5,10.5 @@ -123304,14 +123600,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18839 + - uid: 18894 components: - pos: -3.5,14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18840 + - uid: 18895 components: - rot: -1.5707963267948966 rad pos: -70.5,-40.5 @@ -123319,26 +123615,26 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18841 + - uid: 18896 components: - rot: -1.5707963267948966 rad pos: -64.5,-43.5 parent: 2 type: Transform - - uid: 18842 + - uid: 18897 components: - pos: -70.5,-45.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18843 + - uid: 18898 components: - rot: 1.5707963267948966 rad pos: -74.5,-41.5 parent: 2 type: Transform - - uid: 18844 + - uid: 18899 components: - rot: 1.5707963267948966 rad pos: -74.5,-42.5 @@ -123346,7 +123642,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18845 + - uid: 18900 components: - rot: 1.5707963267948966 rad pos: -75.5,-42.5 @@ -123354,7 +123650,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18846 + - uid: 18901 components: - rot: 1.5707963267948966 rad pos: -75.5,-40.5 @@ -123362,7 +123658,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18847 + - uid: 18902 components: - rot: 1.5707963267948966 rad pos: -73.5,-40.5 @@ -123370,7 +123666,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18848 + - uid: 18903 components: - rot: 1.5707963267948966 rad pos: -74.5,-40.5 @@ -123378,7 +123674,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18849 + - uid: 18904 components: - rot: 1.5707963267948966 rad pos: -68.5,-41.5 @@ -123386,7 +123682,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18850 + - uid: 18905 components: - rot: 1.5707963267948966 rad pos: -69.5,-41.5 @@ -123394,22 +123690,22 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18851 + - uid: 18906 components: - pos: -44.5,-37.5 parent: 2 type: Transform - - uid: 18852 + - uid: 18907 components: - pos: -44.5,-39.5 parent: 2 type: Transform - - uid: 18853 + - uid: 18908 components: - pos: -44.5,-38.5 parent: 2 type: Transform - - uid: 18854 + - uid: 18909 components: - rot: -1.5707963267948966 rad pos: -50.5,-23.5 @@ -123417,7 +123713,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18855 + - uid: 18910 components: - rot: -1.5707963267948966 rad pos: -48.5,-23.5 @@ -123425,7 +123721,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18856 + - uid: 18911 components: - rot: -1.5707963267948966 rad pos: -47.5,-23.5 @@ -123433,7 +123729,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18857 + - uid: 18912 components: - rot: -1.5707963267948966 rad pos: -46.5,-23.5 @@ -123441,56 +123737,56 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18858 + - uid: 18913 components: - pos: 2.5,-3.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18859 + - uid: 18914 components: - pos: -0.5,-3.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18860 + - uid: 18915 components: - pos: -1.5,-2.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18861 + - uid: 18916 components: - pos: -0.5,-2.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18862 + - uid: 18917 components: - pos: -0.5,-1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18863 + - uid: 18918 components: - pos: -0.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18864 + - uid: 18919 components: - pos: -0.5,-0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18865 + - uid: 18920 components: - rot: 1.5707963267948966 rad pos: -3.5,-21.5 @@ -123498,7 +123794,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18866 + - uid: 18921 components: - rot: 1.5707963267948966 rad pos: -4.5,-21.5 @@ -123506,7 +123802,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18867 + - uid: 18922 components: - rot: 3.141592653589793 rad pos: -1.5,-23.5 @@ -123514,7 +123810,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18868 + - uid: 18923 components: - rot: 1.5707963267948966 rad pos: -2.5,-21.5 @@ -123522,7 +123818,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18869 + - uid: 18924 components: - rot: 3.141592653589793 rad pos: -1.5,-24.5 @@ -123530,52 +123826,157 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18870 + - uid: 18925 components: - pos: 28.5,-36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18871 + - uid: 18926 components: - pos: 28.5,-37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18872 + - uid: 18927 components: - pos: 22.5,-36.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18873 + - uid: 18928 components: - rot: -1.5707963267948966 rad pos: 15.5,17.5 parent: 2 type: Transform - - uid: 18874 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 18929 components: - pos: 17.5,16.5 parent: 2 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 18930 + components: + - pos: 39.5,59.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 18931 + components: + - pos: 40.5,60.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 18932 + components: + - pos: 40.5,59.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 18933 + components: + - pos: 39.5,55.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 18934 + components: + - pos: 39.5,56.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 18935 + components: + - pos: 39.5,57.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 18936 + components: + - pos: 39.5,58.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 18937 + components: + - pos: 39.5,60.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 18938 + components: + - pos: 39.5,52.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 18939 + components: + - pos: 39.5,51.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 18940 + components: + - pos: 39.5,50.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 18941 + components: + - pos: 39.5,49.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 18942 + components: + - pos: 39.5,48.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - proto: GasPipeTJunction entities: - - uid: 16446 + - uid: 18943 + components: + - rot: 3.141592653589793 rad + pos: 39.5,47.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 18944 components: - rot: -1.5707963267948966 rad pos: 2.5,13.5 parent: 2 type: Transform - - uid: 18875 + - uid: 18945 components: - pos: 18.5,17.5 parent: 2 type: Transform - - uid: 18876 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 18946 components: - rot: 3.141592653589793 rad pos: 26.5,-30.5 @@ -123583,7 +123984,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18877 + - uid: 18947 components: - rot: 3.141592653589793 rad pos: 24.5,-29.5 @@ -123591,7 +123992,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18878 + - uid: 18948 components: - rot: 3.141592653589793 rad pos: -1.5,-25.5 @@ -123599,7 +124000,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18879 + - uid: 18949 components: - rot: 1.5707963267948966 rad pos: -5.5,-21.5 @@ -123607,21 +124008,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18880 + - uid: 18950 components: - pos: -0.5,1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18881 + - uid: 18951 components: - pos: -1.5,-1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18882 + - uid: 18952 components: - rot: 1.5707963267948966 rad pos: -50.5,-19.5 @@ -123629,7 +124030,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18883 + - uid: 18953 components: - rot: 1.5707963267948966 rad pos: -51.5,-23.5 @@ -123637,14 +124038,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18884 + - uid: 18954 components: - pos: -71.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18885 + - uid: 18955 components: - rot: 1.5707963267948966 rad pos: -70.5,-39.5 @@ -123652,7 +124053,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18886 + - uid: 18956 components: - rot: 1.5707963267948966 rad pos: -72.5,-37.5 @@ -123660,7 +124061,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18887 + - uid: 18957 components: - rot: -1.5707963267948966 rad pos: -73.5,-31.5 @@ -123668,7 +124069,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18888 + - uid: 18958 components: - rot: 3.141592653589793 rad pos: -69.5,-39.5 @@ -123676,7 +124077,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18889 + - uid: 18959 components: - rot: 3.141592653589793 rad pos: -66.5,-39.5 @@ -123684,7 +124085,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18890 + - uid: 18960 components: - rot: 3.141592653589793 rad pos: -68.5,-39.5 @@ -123692,7 +124093,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18891 + - uid: 18961 components: - rot: 3.141592653589793 rad pos: -67.5,-39.5 @@ -123700,7 +124101,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18892 + - uid: 18962 components: - rot: 1.5707963267948966 rad pos: -71.5,-31.5 @@ -123708,7 +124109,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18893 + - uid: 18963 components: - rot: 3.141592653589793 rad pos: -71.5,-46.5 @@ -123716,7 +124117,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18894 + - uid: 18964 components: - rot: 1.5707963267948966 rad pos: -68.5,-43.5 @@ -123724,7 +124125,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18895 + - uid: 18965 components: - rot: 3.141592653589793 rad pos: -67.5,-46.5 @@ -123732,7 +124133,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18896 + - uid: 18966 components: - rot: 1.5707963267948966 rad pos: -67.5,-44.5 @@ -123740,7 +124141,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18897 + - uid: 18967 components: - rot: 1.5707963267948966 rad pos: -3.5,11.5 @@ -123748,7 +124149,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18898 + - uid: 18968 components: - rot: 1.5707963267948966 rad pos: 63.5,-31.5 @@ -123756,7 +124157,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18899 + - uid: 18969 components: - rot: 1.5707963267948966 rad pos: 40.5,5.5 @@ -123764,28 +124165,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18900 + - uid: 18970 components: - pos: 28.5,-29.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18901 + - uid: 18971 components: - pos: -8.5,-53.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18902 + - uid: 18972 components: - pos: -12.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18903 + - uid: 18973 components: - rot: -1.5707963267948966 rad pos: 26.5,-7.5 @@ -123793,7 +124194,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18904 + - uid: 18974 components: - rot: 1.5707963267948966 rad pos: 8.5,10.5 @@ -123801,7 +124202,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18905 + - uid: 18975 components: - rot: 1.5707963267948966 rad pos: 8.5,0.5 @@ -123809,7 +124210,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18906 + - uid: 18976 components: - rot: -1.5707963267948966 rad pos: -11.5,-38.5 @@ -123817,7 +124218,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18907 + - uid: 18977 components: - rot: -1.5707963267948966 rad pos: 7.5,14.5 @@ -123825,7 +124226,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18908 + - uid: 18978 components: - rot: 3.141592653589793 rad pos: 22.5,21.5 @@ -123833,7 +124234,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18909 + - uid: 18979 components: - rot: 3.141592653589793 rad pos: 2.5,-60.5 @@ -123841,21 +124242,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18910 + - uid: 18980 components: - pos: -5.5,-60.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18911 + - uid: 18981 components: - pos: -8.5,-61.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18912 + - uid: 18982 components: - rot: 1.5707963267948966 rad pos: -8.5,-64.5 @@ -123863,7 +124264,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18913 + - uid: 18983 components: - rot: 3.141592653589793 rad pos: -24.5,-80.5 @@ -123871,7 +124272,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18914 + - uid: 18984 components: - rot: -1.5707963267948966 rad pos: 20.5,13.5 @@ -123879,7 +124280,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18915 + - uid: 18985 components: - rot: 3.141592653589793 rad pos: 31.5,-43.5 @@ -123887,7 +124288,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18916 + - uid: 18986 components: - rot: 3.141592653589793 rad pos: 17.5,-43.5 @@ -123895,7 +124296,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18917 + - uid: 18987 components: - rot: 1.5707963267948966 rad pos: 35.5,8.5 @@ -123903,7 +124304,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18918 + - uid: 18988 components: - rot: -1.5707963267948966 rad pos: 26.5,10.5 @@ -123911,14 +124312,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18919 + - uid: 18989 components: - pos: 7.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18920 + - uid: 18990 components: - rot: -1.5707963267948966 rad pos: 0.5,13.5 @@ -123926,14 +124327,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18921 + - uid: 18991 components: - pos: -24.5,-57.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18922 + - uid: 18992 components: - rot: -1.5707963267948966 rad pos: 2.5,-1.5 @@ -123941,7 +124342,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18923 + - uid: 18993 components: - rot: 1.5707963267948966 rad pos: 2.5,0.5 @@ -123949,7 +124350,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18924 + - uid: 18994 components: - rot: 1.5707963267948966 rad pos: -20.5,-33.5 @@ -123957,7 +124358,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18925 + - uid: 18995 components: - rot: 1.5707963267948966 rad pos: 15.5,-29.5 @@ -123965,7 +124366,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18926 + - uid: 18996 components: - rot: 3.141592653589793 rad pos: -11.5,-41.5 @@ -123973,7 +124374,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18927 + - uid: 18997 components: - rot: -1.5707963267948966 rad pos: -14.5,-43.5 @@ -123981,7 +124382,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18928 + - uid: 18998 components: - rot: 3.141592653589793 rad pos: -17.5,-60.5 @@ -123989,7 +124390,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18929 + - uid: 18999 components: - rot: 3.141592653589793 rad pos: -9.5,-42.5 @@ -123997,21 +124398,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18930 + - uid: 19000 components: - pos: -0.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18931 + - uid: 19001 components: - pos: -8.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18932 + - uid: 19002 components: - rot: -1.5707963267948966 rad pos: -7.5,-60.5 @@ -124019,7 +124420,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18933 + - uid: 19003 components: - rot: -1.5707963267948966 rad pos: -3.5,-59.5 @@ -124027,7 +124428,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18934 + - uid: 19004 components: - rot: 1.5707963267948966 rad pos: 35.5,5.5 @@ -124035,7 +124436,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18935 + - uid: 19005 components: - rot: 3.141592653589793 rad pos: 28.5,9.5 @@ -124043,7 +124444,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18936 + - uid: 19006 components: - rot: -1.5707963267948966 rad pos: 17.5,-0.5 @@ -124051,14 +124452,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18937 + - uid: 19007 components: - pos: 41.5,14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18938 + - uid: 19008 components: - rot: 3.141592653589793 rad pos: 33.5,1.5 @@ -124066,7 +124467,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18939 + - uid: 19009 components: - rot: 1.5707963267948966 rad pos: 23.5,17.5 @@ -124074,7 +124475,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18940 + - uid: 19010 components: - rot: 1.5707963267948966 rad pos: 7.5,16.5 @@ -124082,14 +124483,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18941 + - uid: 19011 components: - pos: 44.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18942 + - uid: 19012 components: - rot: 3.141592653589793 rad pos: -3.5,-42.5 @@ -124097,7 +124498,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18943 + - uid: 19013 components: - rot: 3.141592653589793 rad pos: 12.5,-27.5 @@ -124105,14 +124506,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18944 + - uid: 19014 components: - pos: -7.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18945 + - uid: 19015 components: - rot: 3.141592653589793 rad pos: 33.5,-16.5 @@ -124120,7 +124521,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18946 + - uid: 19016 components: - rot: 1.5707963267948966 rad pos: -18.5,-25.5 @@ -124128,7 +124529,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18947 + - uid: 19017 components: - rot: 3.141592653589793 rad pos: -8.5,1.5 @@ -124136,7 +124537,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18948 + - uid: 19018 components: - rot: 3.141592653589793 rad pos: 17.5,13.5 @@ -124144,14 +124545,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18949 + - uid: 19019 components: - pos: 28.5,12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18950 + - uid: 19020 components: - rot: -1.5707963267948966 rad pos: 38.5,8.5 @@ -124159,7 +124560,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18951 + - uid: 19021 components: - rot: -1.5707963267948966 rad pos: 38.5,5.5 @@ -124167,7 +124568,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18952 + - uid: 19022 components: - rot: -1.5707963267948966 rad pos: 38.5,11.5 @@ -124175,14 +124576,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18953 + - uid: 19023 components: - pos: 34.5,12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18954 + - uid: 19024 components: - rot: 3.141592653589793 rad pos: -8.5,-27.5 @@ -124190,7 +124591,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18955 + - uid: 19025 components: - rot: -1.5707963267948966 rad pos: -8.5,2.5 @@ -124198,7 +124599,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18956 + - uid: 19026 components: - rot: 3.141592653589793 rad pos: 2.5,-27.5 @@ -124206,7 +124607,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18957 + - uid: 19027 components: - rot: 3.141592653589793 rad pos: 12.5,16.5 @@ -124214,7 +124615,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18958 + - uid: 19028 components: - rot: 3.141592653589793 rad pos: -5.5,-41.5 @@ -124222,14 +124623,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18959 + - uid: 19029 components: - pos: 3.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18960 + - uid: 19030 components: - rot: 3.141592653589793 rad pos: 8.5,-0.5 @@ -124237,7 +124638,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18961 + - uid: 19031 components: - rot: 3.141592653589793 rad pos: 16.5,16.5 @@ -124245,7 +124646,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18962 + - uid: 19032 components: - rot: 3.141592653589793 rad pos: 25.5,7.5 @@ -124253,7 +124654,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18963 + - uid: 19033 components: - rot: 3.141592653589793 rad pos: 28.5,17.5 @@ -124261,7 +124662,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18964 + - uid: 19034 components: - rot: 1.5707963267948966 rad pos: 20.5,10.5 @@ -124269,14 +124670,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18965 + - uid: 19035 components: - pos: 4.5,17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18966 + - uid: 19036 components: - rot: -1.5707963267948966 rad pos: 9.5,1.5 @@ -124284,7 +124685,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18967 + - uid: 19037 components: - rot: 1.5707963267948966 rad pos: 19.5,18.5 @@ -124292,7 +124693,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18968 + - uid: 19038 components: - rot: -1.5707963267948966 rad pos: 30.5,18.5 @@ -124300,14 +124701,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18969 + - uid: 19039 components: - pos: 21.5,-5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18970 + - uid: 19040 components: - rot: -1.5707963267948966 rad pos: 26.5,-12.5 @@ -124315,7 +124716,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18971 + - uid: 19041 components: - rot: 1.5707963267948966 rad pos: 26.5,-24.5 @@ -124323,7 +124724,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18972 + - uid: 19042 components: - rot: -1.5707963267948966 rad pos: 21.5,-17.5 @@ -124331,14 +124732,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18973 + - uid: 19043 components: - pos: 20.5,-17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18974 + - uid: 19044 components: - rot: 3.141592653589793 rad pos: 23.5,-29.5 @@ -124346,7 +124747,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18975 + - uid: 19045 components: - rot: 1.5707963267948966 rad pos: -8.5,-22.5 @@ -124354,21 +124755,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18976 + - uid: 19046 components: - pos: -10.5,1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18977 + - uid: 19047 components: - pos: -2.5,-61.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18978 + - uid: 19048 components: - rot: 3.141592653589793 rad pos: -9.5,-61.5 @@ -124376,21 +124777,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18979 + - uid: 19049 components: - pos: -15.5,-61.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18980 + - uid: 19050 components: - pos: -0.5,-60.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18981 + - uid: 19051 components: - rot: 3.141592653589793 rad pos: -1.5,-60.5 @@ -124398,14 +124799,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18982 + - uid: 19052 components: - pos: -12.5,-60.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18983 + - uid: 19053 components: - rot: 3.141592653589793 rad pos: 3.5,-61.5 @@ -124413,14 +124814,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18984 + - uid: 19054 components: - pos: 5.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18985 + - uid: 19055 components: - rot: 1.5707963267948966 rad pos: -8.5,-46.5 @@ -124428,14 +124829,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18986 + - uid: 19056 components: - pos: 5.5,-25.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18987 + - uid: 19057 components: - rot: 3.141592653589793 rad pos: -11.5,-27.5 @@ -124443,21 +124844,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18988 + - uid: 19058 components: - pos: 24.5,-43.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18989 + - uid: 19059 components: - pos: 20.5,-43.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18990 + - uid: 19060 components: - rot: 3.141592653589793 rad pos: 31.5,9.5 @@ -124465,7 +124866,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18991 + - uid: 19061 components: - rot: -1.5707963267948966 rad pos: -23.5,-78.5 @@ -124473,7 +124874,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18992 + - uid: 19062 components: - rot: -1.5707963267948966 rad pos: -23.5,-80.5 @@ -124481,7 +124882,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18993 + - uid: 19063 components: - rot: 3.141592653589793 rad pos: 34.5,9.5 @@ -124489,7 +124890,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18994 + - uid: 19064 components: - rot: -1.5707963267948966 rad pos: 1.5,6.5 @@ -124497,7 +124898,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18995 + - uid: 19065 components: - rot: 1.5707963267948966 rad pos: 2.5,1.5 @@ -124505,14 +124906,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18996 + - uid: 19066 components: - pos: 10.5,-0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18997 + - uid: 19067 components: - rot: 1.5707963267948966 rad pos: -9.5,-39.5 @@ -124520,14 +124921,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 18998 + - uid: 19068 components: - pos: 0.5,17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 18999 + - uid: 19069 components: - rot: 3.141592653589793 rad pos: -7.5,8.5 @@ -124535,7 +124936,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19000 + - uid: 19070 components: - rot: -1.5707963267948966 rad pos: -20.5,-84.5 @@ -124543,7 +124944,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19001 + - uid: 19071 components: - rot: 3.141592653589793 rad pos: 15.5,-43.5 @@ -124551,7 +124952,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19002 + - uid: 19072 components: - rot: 1.5707963267948966 rad pos: 14.5,-32.5 @@ -124559,7 +124960,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19003 + - uid: 19073 components: - rot: 3.141592653589793 rad pos: 21.5,-30.5 @@ -124567,7 +124968,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19004 + - uid: 19074 components: - rot: 1.5707963267948966 rad pos: 15.5,-23.5 @@ -124575,7 +124976,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19005 + - uid: 19075 components: - rot: 1.5707963267948966 rad pos: 14.5,-30.5 @@ -124583,14 +124984,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19006 + - uid: 19076 components: - pos: 22.5,-30.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19007 + - uid: 19077 components: - rot: 3.141592653589793 rad pos: -8.5,-25.5 @@ -124598,7 +124999,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19008 + - uid: 19078 components: - rot: -1.5707963267948966 rad pos: 15.5,-25.5 @@ -124606,7 +125007,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19009 + - uid: 19079 components: - rot: -1.5707963267948966 rad pos: 15.5,-22.5 @@ -124614,7 +125015,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19010 + - uid: 19080 components: - rot: -1.5707963267948966 rad pos: -0.5,-46.5 @@ -124622,14 +125023,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19011 + - uid: 19081 components: - pos: 0.5,11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19012 + - uid: 19082 components: - rot: -1.5707963267948966 rad pos: -3.5,-11.5 @@ -124637,7 +125038,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19013 + - uid: 19083 components: - rot: 1.5707963267948966 rad pos: -5.5,-10.5 @@ -124645,7 +125046,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19014 + - uid: 19084 components: - rot: -1.5707963267948966 rad pos: 36.5,-31.5 @@ -124653,14 +125054,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19015 + - uid: 19085 components: - pos: -5.5,7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19016 + - uid: 19086 components: - rot: 1.5707963267948966 rad pos: -4.5,13.5 @@ -124668,7 +125069,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19017 + - uid: 19087 components: - rot: -1.5707963267948966 rad pos: -3.5,-12.5 @@ -124676,14 +125077,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19018 + - uid: 19088 components: - pos: -20.5,-88.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19019 + - uid: 19089 components: - rot: -1.5707963267948966 rad pos: 10.5,3.5 @@ -124691,7 +125092,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19020 + - uid: 19090 components: - rot: 1.5707963267948966 rad pos: -11.5,-22.5 @@ -124699,7 +125100,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19021 + - uid: 19091 components: - rot: 3.141592653589793 rad pos: 44.5,-24.5 @@ -124707,7 +125108,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19022 + - uid: 19092 components: - rot: 1.5707963267948966 rad pos: 34.5,3.5 @@ -124715,7 +125116,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19023 + - uid: 19093 components: - rot: 3.141592653589793 rad pos: -19.5,-61.5 @@ -124723,14 +125124,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19024 + - uid: 19094 components: - pos: -5.5,1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19025 + - uid: 19095 components: - rot: 3.141592653589793 rad pos: -8.5,-1.5 @@ -124738,7 +125139,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19026 + - uid: 19096 components: - rot: -1.5707963267948966 rad pos: -11.5,-39.5 @@ -124746,7 +125147,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19027 + - uid: 19097 components: - rot: 3.141592653589793 rad pos: 5.5,17.5 @@ -124754,7 +125155,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19028 + - uid: 19098 components: - rot: 3.141592653589793 rad pos: -2.5,-53.5 @@ -124762,7 +125163,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19029 + - uid: 19099 components: - rot: -1.5707963267948966 rad pos: 21.5,-14.5 @@ -124770,7 +125171,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19030 + - uid: 19100 components: - rot: 3.141592653589793 rad pos: 31.5,-18.5 @@ -124778,7 +125179,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19031 + - uid: 19101 components: - rot: -1.5707963267948966 rad pos: -18.5,-64.5 @@ -124786,7 +125187,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19032 + - uid: 19102 components: - rot: 1.5707963267948966 rad pos: 21.5,-16.5 @@ -124794,7 +125195,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19033 + - uid: 19103 components: - rot: -1.5707963267948966 rad pos: 20.5,-41.5 @@ -124802,7 +125203,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19034 + - uid: 19104 components: - rot: -1.5707963267948966 rad pos: 10.5,8.5 @@ -124810,7 +125211,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19035 + - uid: 19105 components: - rot: -1.5707963267948966 rad pos: 11.5,11.5 @@ -124818,35 +125219,35 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19036 + - uid: 19106 components: - pos: -22.5,-89.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19037 + - uid: 19107 components: - pos: 26.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19038 + - uid: 19108 components: - pos: 10.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19039 + - uid: 19109 components: - pos: 9.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19040 + - uid: 19110 components: - rot: 3.141592653589793 rad pos: 14.5,-41.5 @@ -124854,14 +125255,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19041 + - uid: 19111 components: - pos: 5.5,16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19042 + - uid: 19112 components: - rot: 1.5707963267948966 rad pos: -24.5,-88.5 @@ -124869,7 +125270,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19043 + - uid: 19113 components: - rot: -1.5707963267948966 rad pos: 24.5,-24.5 @@ -124877,35 +125278,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19044 + - uid: 19114 components: - pos: 7.5,19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19045 + - uid: 19115 components: - pos: -3.5,-1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19046 + - uid: 19116 components: - pos: -19.5,-57.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19047 + - uid: 19117 components: - pos: 41.5,-26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19048 + - uid: 19118 components: - rot: 3.141592653589793 rad pos: 41.5,-25.5 @@ -124913,7 +125314,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19049 + - uid: 19119 components: - rot: 1.5707963267948966 rad pos: 36.5,-25.5 @@ -124921,7 +125322,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19050 + - uid: 19120 components: - rot: 1.5707963267948966 rad pos: 34.5,-26.5 @@ -124929,14 +125330,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19051 + - uid: 19121 components: - pos: -27.5,-77.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19052 + - uid: 19122 components: - rot: 3.141592653589793 rad pos: -25.5,-77.5 @@ -124944,7 +125345,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19053 + - uid: 19123 components: - rot: -1.5707963267948966 rad pos: -23.5,-85.5 @@ -124952,7 +125353,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19054 + - uid: 19124 components: - rot: 1.5707963267948966 rad pos: -18.5,-72.5 @@ -124960,7 +125361,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19055 + - uid: 19125 components: - rot: -1.5707963267948966 rad pos: -18.5,-73.5 @@ -124968,7 +125369,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19056 + - uid: 19126 components: - rot: -1.5707963267948966 rad pos: -20.5,-72.5 @@ -124976,7 +125377,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19057 + - uid: 19127 components: - rot: -1.5707963267948966 rad pos: -20.5,-69.5 @@ -124984,7 +125385,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19058 + - uid: 19128 components: - rot: 1.5707963267948966 rad pos: -20.5,-75.5 @@ -124992,7 +125393,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19059 + - uid: 19129 components: - rot: 1.5707963267948966 rad pos: -20.5,-70.5 @@ -125000,7 +125401,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19060 + - uid: 19130 components: - rot: -1.5707963267948966 rad pos: -18.5,-71.5 @@ -125008,7 +125409,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19061 + - uid: 19131 components: - rot: -1.5707963267948966 rad pos: -21.5,-89.5 @@ -125016,7 +125417,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19062 + - uid: 19132 components: - rot: -1.5707963267948966 rad pos: -18.5,-67.5 @@ -125024,7 +125425,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19063 + - uid: 19133 components: - rot: 1.5707963267948966 rad pos: -20.5,-66.5 @@ -125032,7 +125433,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19064 + - uid: 19134 components: - rot: 1.5707963267948966 rad pos: -20.5,-63.5 @@ -125040,14 +125441,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19065 + - uid: 19135 components: - pos: -18.5,-60.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19066 + - uid: 19136 components: - rot: 1.5707963267948966 rad pos: 34.5,-23.5 @@ -125055,7 +125456,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19067 + - uid: 19137 components: - rot: 3.141592653589793 rad pos: 36.5,-43.5 @@ -125063,7 +125464,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19068 + - uid: 19138 components: - rot: 3.141592653589793 rad pos: 34.5,-41.5 @@ -125071,14 +125472,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19069 + - uid: 19139 components: - pos: 33.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19070 + - uid: 19140 components: - rot: 3.141592653589793 rad pos: 10.5,17.5 @@ -125086,7 +125487,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19071 + - uid: 19141 components: - rot: 3.141592653589793 rad pos: 11.5,16.5 @@ -125094,7 +125495,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19072 + - uid: 19142 components: - rot: -1.5707963267948966 rad pos: -9.5,-37.5 @@ -125102,7 +125503,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19073 + - uid: 19143 components: - rot: 1.5707963267948966 rad pos: -3.5,-14.5 @@ -125110,14 +125511,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19074 + - uid: 19144 components: - pos: 21.5,-42.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19075 + - uid: 19145 components: - rot: 3.141592653589793 rad pos: 56.5,21.5 @@ -125125,14 +125526,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19076 + - uid: 19146 components: - pos: 40.5,10.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19077 + - uid: 19147 components: - rot: 1.5707963267948966 rad pos: 28.5,22.5 @@ -125140,7 +125541,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19078 + - uid: 19148 components: - rot: -1.5707963267948966 rad pos: 30.5,19.5 @@ -125148,21 +125549,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19079 + - uid: 19149 components: - pos: 42.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19080 + - uid: 19150 components: - pos: 44.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19081 + - uid: 19151 components: - rot: 3.141592653589793 rad pos: 45.5,14.5 @@ -125170,14 +125571,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19082 + - uid: 19152 components: - pos: 47.5,14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19083 + - uid: 19153 components: - rot: 3.141592653589793 rad pos: 47.5,15.5 @@ -125185,7 +125586,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19084 + - uid: 19154 components: - rot: -1.5707963267948966 rad pos: 49.5,15.5 @@ -125193,7 +125594,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19085 + - uid: 19155 components: - rot: -1.5707963267948966 rad pos: 50.5,14.5 @@ -125201,7 +125602,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19086 + - uid: 19156 components: - rot: -1.5707963267948966 rad pos: 50.5,19.5 @@ -125209,7 +125610,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19087 + - uid: 19157 components: - rot: 3.141592653589793 rad pos: 46.5,20.5 @@ -125217,7 +125618,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19088 + - uid: 19158 components: - rot: 3.141592653589793 rad pos: 53.5,21.5 @@ -125225,7 +125626,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19089 + - uid: 19159 components: - rot: -1.5707963267948966 rad pos: 58.5,20.5 @@ -125233,7 +125634,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19090 + - uid: 19160 components: - rot: 3.141592653589793 rad pos: 55.5,20.5 @@ -125241,7 +125642,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19091 + - uid: 19161 components: - rot: 3.141592653589793 rad pos: 52.5,20.5 @@ -125249,7 +125650,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19092 + - uid: 19162 components: - rot: -1.5707963267948966 rad pos: 59.5,21.5 @@ -125257,7 +125658,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19093 + - uid: 19163 components: - rot: 1.5707963267948966 rad pos: 59.5,18.5 @@ -125265,7 +125666,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19094 + - uid: 19164 components: - rot: 1.5707963267948966 rad pos: 59.5,15.5 @@ -125273,7 +125674,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19095 + - uid: 19165 components: - rot: 1.5707963267948966 rad pos: 58.5,16.5 @@ -125281,7 +125682,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19096 + - uid: 19166 components: - rot: 1.5707963267948966 rad pos: 58.5,19.5 @@ -125289,14 +125690,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19097 + - uid: 19167 components: - pos: 40.5,20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19098 + - uid: 19168 components: - rot: 3.141592653589793 rad pos: 45.5,20.5 @@ -125304,7 +125705,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19099 + - uid: 19169 components: - rot: 3.141592653589793 rad pos: 39.5,19.5 @@ -125312,7 +125713,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19100 + - uid: 19170 components: - rot: 3.141592653589793 rad pos: 40.5,0.5 @@ -125320,14 +125721,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19101 + - uid: 19171 components: - pos: 44.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19102 + - uid: 19172 components: - rot: 3.141592653589793 rad pos: 45.5,0.5 @@ -125335,21 +125736,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19103 + - uid: 19173 components: - pos: 53.5,0.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19104 + - uid: 19174 components: - pos: 52.5,1.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19105 + - uid: 19175 components: - rot: 1.5707963267948966 rad pos: 53.5,-5.5 @@ -125357,7 +125758,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19106 + - uid: 19176 components: - rot: -1.5707963267948966 rad pos: 42.5,-1.5 @@ -125365,7 +125766,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19107 + - uid: 19177 components: - rot: 3.141592653589793 rad pos: 42.5,-2.5 @@ -125373,7 +125774,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19108 + - uid: 19178 components: - rot: -1.5707963267948966 rad pos: 41.5,10.5 @@ -125381,7 +125782,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19109 + - uid: 19179 components: - rot: -1.5707963267948966 rad pos: 42.5,9.5 @@ -125389,7 +125790,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19110 + - uid: 19180 components: - rot: -1.5707963267948966 rad pos: 26.5,-53.5 @@ -125397,7 +125798,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19111 + - uid: 19181 components: - rot: -1.5707963267948966 rad pos: 26.5,-56.5 @@ -125405,7 +125806,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19112 + - uid: 19182 components: - rot: 3.141592653589793 rad pos: 61.5,-6.5 @@ -125413,7 +125814,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19113 + - uid: 19183 components: - rot: -1.5707963267948966 rad pos: 63.5,-11.5 @@ -125421,7 +125822,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19114 + - uid: 19184 components: - rot: -1.5707963267948966 rad pos: 62.5,-39.5 @@ -125429,7 +125830,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19115 + - uid: 19185 components: - rot: 3.141592653589793 rad pos: 42.5,-41.5 @@ -125437,7 +125838,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19116 + - uid: 19186 components: - rot: 3.141592653589793 rad pos: 43.5,-43.5 @@ -125445,7 +125846,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19117 + - uid: 19187 components: - rot: 3.141592653589793 rad pos: 45.5,-43.5 @@ -125453,28 +125854,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19118 + - uid: 19188 components: - pos: 44.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19119 + - uid: 19189 components: - pos: 49.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19120 + - uid: 19190 components: - pos: 49.5,-43.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19121 + - uid: 19191 components: - rot: 3.141592653589793 rad pos: 49.5,-45.5 @@ -125482,21 +125883,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19122 + - uid: 19192 components: - pos: 50.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19123 + - uid: 19193 components: - pos: 56.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19124 + - uid: 19194 components: - rot: 3.141592653589793 rad pos: 56.5,-45.5 @@ -125504,7 +125905,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19125 + - uid: 19195 components: - rot: 3.141592653589793 rad pos: 55.5,-45.5 @@ -125512,7 +125913,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19126 + - uid: 19196 components: - rot: -1.5707963267948966 rad pos: 50.5,-46.5 @@ -125520,7 +125921,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19127 + - uid: 19197 components: - rot: 1.5707963267948966 rad pos: 49.5,-54.5 @@ -125528,7 +125929,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19128 + - uid: 19198 components: - rot: 1.5707963267948966 rad pos: 57.5,-44.5 @@ -125536,7 +125937,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19129 + - uid: 19199 components: - rot: -1.5707963267948966 rad pos: 63.5,-45.5 @@ -125544,7 +125945,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19130 + - uid: 19200 components: - rot: -1.5707963267948966 rad pos: 61.5,-44.5 @@ -125552,7 +125953,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19131 + - uid: 19201 components: - rot: 1.5707963267948966 rad pos: 63.5,-46.5 @@ -125560,7 +125961,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19132 + - uid: 19202 components: - rot: -1.5707963267948966 rad pos: 61.5,-46.5 @@ -125568,7 +125969,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19133 + - uid: 19203 components: - rot: 1.5707963267948966 rad pos: 60.5,-33.5 @@ -125576,14 +125977,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19134 + - uid: 19204 components: - pos: 60.5,-32.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19135 + - uid: 19205 components: - rot: -1.5707963267948966 rad pos: 63.5,-26.5 @@ -125591,7 +125992,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19136 + - uid: 19206 components: - rot: 1.5707963267948966 rad pos: 61.5,-24.5 @@ -125599,14 +126000,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19137 + - uid: 19207 components: - pos: 55.5,-11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19138 + - uid: 19208 components: - rot: 1.5707963267948966 rad pos: 60.5,-48.5 @@ -125614,7 +126015,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19139 + - uid: 19209 components: - rot: 1.5707963267948966 rad pos: 64.5,-47.5 @@ -125622,7 +126023,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19140 + - uid: 19210 components: - rot: 1.5707963267948966 rad pos: 50.5,-52.5 @@ -125630,7 +126031,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19141 + - uid: 19211 components: - rot: 3.141592653589793 rad pos: 29.5,-58.5 @@ -125638,7 +126039,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19142 + - uid: 19212 components: - rot: 3.141592653589793 rad pos: 32.5,-60.5 @@ -125646,7 +126047,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19143 + - uid: 19213 components: - rot: 1.5707963267948966 rad pos: 29.5,-56.5 @@ -125654,7 +126055,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19144 + - uid: 19214 components: - rot: 1.5707963267948966 rad pos: 29.5,-52.5 @@ -125662,7 +126063,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19145 + - uid: 19215 components: - rot: 1.5707963267948966 rad pos: 32.5,-56.5 @@ -125670,7 +126071,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19146 + - uid: 19216 components: - rot: -1.5707963267948966 rad pos: 34.5,-48.5 @@ -125678,14 +126079,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19147 + - uid: 19217 components: - pos: 32.5,-52.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19148 + - uid: 19218 components: - rot: -1.5707963267948966 rad pos: 34.5,-49.5 @@ -125693,19 +126094,19 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19149 + - uid: 19219 components: - rot: -1.5707963267948966 rad pos: 51.5,-58.5 parent: 2 type: Transform - - uid: 19150 + - uid: 19220 components: - rot: -1.5707963267948966 rad pos: 48.5,-58.5 parent: 2 type: Transform - - uid: 19151 + - uid: 19221 components: - rot: 1.5707963267948966 rad pos: 49.5,-61.5 @@ -125713,14 +126114,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19152 + - uid: 19222 components: - pos: -19.5,7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19153 + - uid: 19223 components: - rot: 3.141592653589793 rad pos: -13.5,1.5 @@ -125728,7 +126129,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19154 + - uid: 19224 components: - rot: 3.141592653589793 rad pos: -14.5,1.5 @@ -125736,14 +126137,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19155 + - uid: 19225 components: - pos: -13.5,7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19156 + - uid: 19226 components: - rot: 1.5707963267948966 rad pos: -20.5,-27.5 @@ -125751,7 +126152,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19157 + - uid: 19227 components: - rot: -1.5707963267948966 rad pos: -18.5,-19.5 @@ -125759,7 +126160,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19158 + - uid: 19228 components: - rot: -1.5707963267948966 rad pos: -20.5,-22.5 @@ -125767,7 +126168,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19159 + - uid: 19229 components: - rot: -1.5707963267948966 rad pos: -18.5,-21.5 @@ -125775,7 +126176,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19160 + - uid: 19230 components: - rot: 1.5707963267948966 rad pos: -20.5,-14.5 @@ -125783,7 +126184,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19161 + - uid: 19231 components: - rot: -1.5707963267948966 rad pos: -20.5,-13.5 @@ -125791,7 +126192,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19162 + - uid: 19232 components: - rot: -1.5707963267948966 rad pos: -18.5,-10.5 @@ -125799,14 +126200,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19163 + - uid: 19233 components: - pos: -23.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19164 + - uid: 19234 components: - rot: 3.141592653589793 rad pos: -24.5,-10.5 @@ -125814,21 +126215,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19165 + - uid: 19235 components: - pos: -24.5,-13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19166 + - uid: 19236 components: - pos: -28.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19167 + - uid: 19237 components: - rot: 3.141592653589793 rad pos: -28.5,-13.5 @@ -125836,14 +126237,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19168 + - uid: 19238 components: - pos: -25.5,-13.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19169 + - uid: 19239 components: - rot: 3.141592653589793 rad pos: -28.5,-17.5 @@ -125851,7 +126252,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19170 + - uid: 19240 components: - rot: 1.5707963267948966 rad pos: -18.5,-42.5 @@ -125859,7 +126260,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19171 + - uid: 19241 components: - rot: -1.5707963267948966 rad pos: 38.5,-58.5 @@ -125867,7 +126268,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19172 + - uid: 19242 components: - rot: -1.5707963267948966 rad pos: 40.5,-60.5 @@ -125875,7 +126276,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19173 + - uid: 19243 components: - rot: 1.5707963267948966 rad pos: 38.5,-63.5 @@ -125883,7 +126284,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19174 + - uid: 19244 components: - rot: -1.5707963267948966 rad pos: 40.5,-65.5 @@ -125891,7 +126292,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19175 + - uid: 19245 components: - rot: 3.141592653589793 rad pos: -18.5,6.5 @@ -125899,7 +126300,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19176 + - uid: 19246 components: - rot: 3.141592653589793 rad pos: -20.5,7.5 @@ -125907,7 +126308,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19177 + - uid: 19247 components: - rot: 1.5707963267948966 rad pos: -31.5,-13.5 @@ -125915,7 +126316,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19178 + - uid: 19248 components: - rot: -1.5707963267948966 rad pos: -18.5,-31.5 @@ -125923,7 +126324,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19179 + - uid: 19249 components: - rot: 1.5707963267948966 rad pos: -20.5,-41.5 @@ -125931,7 +126332,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19180 + - uid: 19250 components: - rot: 1.5707963267948966 rad pos: -18.5,-43.5 @@ -125939,7 +126340,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19181 + - uid: 19251 components: - rot: 1.5707963267948966 rad pos: -20.5,-43.5 @@ -125947,14 +126348,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19182 + - uid: 19252 components: - pos: 48.5,-73.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19183 + - uid: 19253 components: - rot: 1.5707963267948966 rad pos: 40.5,-71.5 @@ -125962,7 +126363,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19184 + - uid: 19254 components: - rot: -1.5707963267948966 rad pos: 38.5,-71.5 @@ -125970,7 +126371,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19185 + - uid: 19255 components: - rot: -1.5707963267948966 rad pos: 29.5,-83.5 @@ -125978,21 +126379,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19186 + - uid: 19256 components: - pos: 47.5,-72.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19187 + - uid: 19257 components: - pos: -29.5,-16.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19188 + - uid: 19258 components: - rot: 1.5707963267948966 rad pos: -32.5,-16.5 @@ -126000,7 +126401,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19189 + - uid: 19259 components: - rot: 1.5707963267948966 rad pos: -31.5,-17.5 @@ -126008,7 +126409,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19190 + - uid: 19260 components: - rot: -1.5707963267948966 rad pos: -32.5,-17.5 @@ -126016,7 +126417,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19191 + - uid: 19261 components: - rot: -1.5707963267948966 rad pos: -31.5,-15.5 @@ -126024,7 +126425,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19192 + - uid: 19262 components: - rot: 1.5707963267948966 rad pos: -32.5,-25.5 @@ -126032,7 +126433,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19193 + - uid: 19263 components: - rot: -1.5707963267948966 rad pos: -31.5,-27.5 @@ -126040,7 +126441,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19194 + - uid: 19264 components: - rot: 3.141592653589793 rad pos: -35.5,-10.5 @@ -126048,14 +126449,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19195 + - uid: 19265 components: - pos: -36.5,-11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19196 + - uid: 19266 components: - rot: 1.5707963267948966 rad pos: 42.5,6.5 @@ -126063,7 +126464,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19197 + - uid: 19267 components: - rot: -1.5707963267948966 rad pos: -24.5,-2.5 @@ -126071,7 +126472,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19198 + - uid: 19268 components: - rot: -1.5707963267948966 rad pos: -24.5,0.5 @@ -126079,7 +126480,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19199 + - uid: 19269 components: - rot: -1.5707963267948966 rad pos: -26.5,1.5 @@ -126087,7 +126488,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19200 + - uid: 19270 components: - rot: -1.5707963267948966 rad pos: -18.5,12.5 @@ -126095,7 +126496,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19201 + - uid: 19271 components: - rot: 3.141592653589793 rad pos: -52.5,-17.5 @@ -126103,21 +126504,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19202 + - uid: 19272 components: - pos: -32.5,-10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19203 + - uid: 19273 components: - pos: -46.5,-5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19204 + - uid: 19274 components: - rot: 3.141592653589793 rad pos: -47.5,-6.5 @@ -126125,7 +126526,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19205 + - uid: 19275 components: - rot: -1.5707963267948966 rad pos: -53.5,-13.5 @@ -126133,7 +126534,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19206 + - uid: 19276 components: - rot: -1.5707963267948966 rad pos: -52.5,-16.5 @@ -126141,7 +126542,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19207 + - uid: 19277 components: - rot: 1.5707963267948966 rad pos: -53.5,-19.5 @@ -126149,7 +126550,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19208 + - uid: 19278 components: - rot: 3.141592653589793 rad pos: -59.5,-25.5 @@ -126157,21 +126558,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19209 + - uid: 19279 components: - pos: -56.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19210 + - uid: 19280 components: - pos: -68.5,-23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19211 + - uid: 19281 components: - rot: 1.5707963267948966 rad pos: -68.5,-27.5 @@ -126179,14 +126580,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19212 + - uid: 19282 components: - pos: -64.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19213 + - uid: 19283 components: - rot: -1.5707963267948966 rad pos: -64.5,-27.5 @@ -126194,19 +126595,19 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19214 + - uid: 19284 components: - rot: 3.141592653589793 rad pos: -43.5,-55.5 parent: 2 type: Transform - - uid: 19215 + - uid: 19285 components: - rot: -1.5707963267948966 rad pos: -42.5,-53.5 parent: 2 type: Transform - - uid: 19216 + - uid: 19286 components: - rot: 3.141592653589793 rad pos: -40.5,-55.5 @@ -126214,7 +126615,7 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 19217 + - uid: 19287 components: - rot: 1.5707963267948966 rad pos: -44.5,-41.5 @@ -126222,13 +126623,13 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19218 + - uid: 19288 components: - rot: -1.5707963267948966 rad pos: -42.5,-41.5 parent: 2 type: Transform - - uid: 19219 + - uid: 19289 components: - rot: 3.141592653589793 rad pos: -37.5,-57.5 @@ -126236,7 +126637,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19220 + - uid: 19290 components: - rot: -1.5707963267948966 rad pos: -37.5,-51.5 @@ -126244,7 +126645,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 19221 + - uid: 19291 components: - rot: 1.5707963267948966 rad pos: -40.5,-51.5 @@ -126252,7 +126653,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 19222 + - uid: 19292 components: - rot: 1.5707963267948966 rad pos: -40.5,-50.5 @@ -126260,7 +126661,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 19223 + - uid: 19293 components: - rot: 1.5707963267948966 rad pos: -40.5,-49.5 @@ -126268,7 +126669,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 19224 + - uid: 19294 components: - rot: -1.5707963267948966 rad pos: -37.5,-49.5 @@ -126276,7 +126677,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 19225 + - uid: 19295 components: - rot: -1.5707963267948966 rad pos: -37.5,-50.5 @@ -126284,14 +126685,14 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 19226 + - uid: 19296 components: - pos: -38.5,-57.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19227 + - uid: 19297 components: - rot: 3.141592653589793 rad pos: -38.5,-48.5 @@ -126299,14 +126700,14 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 19228 + - uid: 19298 components: - pos: -33.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19229 + - uid: 19299 components: - rot: 3.141592653589793 rad pos: -30.5,-34.5 @@ -126314,7 +126715,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19230 + - uid: 19300 components: - rot: 1.5707963267948966 rad pos: -32.5,-37.5 @@ -126322,7 +126723,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19231 + - uid: 19301 components: - rot: -1.5707963267948966 rad pos: -31.5,-39.5 @@ -126330,7 +126731,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19232 + - uid: 19302 components: - rot: 3.141592653589793 rad pos: -35.5,-55.5 @@ -126338,7 +126739,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19233 + - uid: 19303 components: - rot: 1.5707963267948966 rad pos: -35.5,-53.5 @@ -126346,7 +126747,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19234 + - uid: 19304 components: - rot: -1.5707963267948966 rad pos: -35.5,-44.5 @@ -126354,7 +126755,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19235 + - uid: 19305 components: - rot: 1.5707963267948966 rad pos: -34.5,-43.5 @@ -126362,7 +126763,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19236 + - uid: 19306 components: - rot: 1.5707963267948966 rad pos: -34.5,-45.5 @@ -126370,7 +126771,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19237 + - uid: 19307 components: - rot: 1.5707963267948966 rad pos: -34.5,-44.5 @@ -126378,7 +126779,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19238 + - uid: 19308 components: - rot: -1.5707963267948966 rad pos: -34.5,-42.5 @@ -126386,7 +126787,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19239 + - uid: 19309 components: - rot: -1.5707963267948966 rad pos: -23.5,-60.5 @@ -126394,21 +126795,21 @@ entities: type: Transform - color: '#97C3FCCC' type: AtmosPipeColor - - uid: 19240 + - uid: 19310 components: - pos: -27.5,-69.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19241 + - uid: 19311 components: - pos: -40.5,-71.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19242 + - uid: 19312 components: - rot: 3.141592653589793 rad pos: -29.5,-71.5 @@ -126416,14 +126817,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19243 + - uid: 19313 components: - pos: -30.5,-69.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19244 + - uid: 19314 components: - rot: -1.5707963267948966 rad pos: -42.5,-71.5 @@ -126431,7 +126832,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19245 + - uid: 19315 components: - rot: 1.5707963267948966 rad pos: -23.5,-58.5 @@ -126439,7 +126840,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19246 + - uid: 19316 components: - rot: -1.5707963267948966 rad pos: -20.5,13.5 @@ -126447,7 +126848,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19247 + - uid: 19317 components: - rot: 1.5707963267948966 rad pos: -20.5,16.5 @@ -126455,7 +126856,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19248 + - uid: 19318 components: - rot: -1.5707963267948966 rad pos: -18.5,19.5 @@ -126463,7 +126864,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19249 + - uid: 19319 components: - rot: -1.5707963267948966 rad pos: -20.5,20.5 @@ -126471,7 +126872,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19250 + - uid: 19320 components: - rot: -1.5707963267948966 rad pos: -18.5,23.5 @@ -126479,28 +126880,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19251 + - uid: 19321 components: - pos: -24.5,23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19252 + - uid: 19322 components: - pos: -23.5,20.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19253 + - uid: 19323 components: - pos: -28.5,23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19254 + - uid: 19324 components: - rot: 3.141592653589793 rad pos: -28.5,20.5 @@ -126508,7 +126909,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19255 + - uid: 19325 components: - rot: 3.141592653589793 rad pos: -40.5,23.5 @@ -126516,7 +126917,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19256 + - uid: 19326 components: - rot: 3.141592653589793 rad pos: -41.5,20.5 @@ -126524,7 +126925,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19257 + - uid: 19327 components: - rot: 1.5707963267948966 rad pos: -40.5,30.5 @@ -126532,7 +126933,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19258 + - uid: 19328 components: - rot: 1.5707963267948966 rad pos: -41.5,29.5 @@ -126540,7 +126941,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19259 + - uid: 19329 components: - rot: 3.141592653589793 rad pos: -44.5,33.5 @@ -126548,28 +126949,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19260 + - uid: 19330 components: - pos: -49.5,33.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19261 + - uid: 19331 components: - pos: -28.5,1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19262 + - uid: 19332 components: - pos: -29.5,0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19263 + - uid: 19333 components: - rot: 3.141592653589793 rad pos: -37.5,1.5 @@ -126577,7 +126978,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19264 + - uid: 19334 components: - rot: 3.141592653589793 rad pos: -38.5,0.5 @@ -126585,7 +126986,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19265 + - uid: 19335 components: - rot: 1.5707963267948966 rad pos: -38.5,3.5 @@ -126593,7 +126994,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19266 + - uid: 19336 components: - rot: -1.5707963267948966 rad pos: -37.5,5.5 @@ -126601,7 +127002,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19267 + - uid: 19337 components: - rot: 1.5707963267948966 rad pos: -37.5,8.5 @@ -126609,7 +127010,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19268 + - uid: 19338 components: - rot: -1.5707963267948966 rad pos: -38.5,8.5 @@ -126617,21 +127018,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19269 + - uid: 19339 components: - pos: -39.5,0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19270 + - uid: 19340 components: - pos: -41.5,1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19271 + - uid: 19341 components: - rot: -1.5707963267948966 rad pos: -30.5,14.5 @@ -126639,7 +127040,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19272 + - uid: 19342 components: - rot: -1.5707963267948966 rad pos: -29.5,13.5 @@ -126647,7 +127048,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19273 + - uid: 19343 components: - rot: 1.5707963267948966 rad pos: -47.5,0.5 @@ -126655,7 +127056,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19274 + - uid: 19344 components: - rot: 1.5707963267948966 rad pos: -45.5,1.5 @@ -126663,7 +127064,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19275 + - uid: 19345 components: - rot: -1.5707963267948966 rad pos: -47.5,3.5 @@ -126671,14 +127072,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19276 + - uid: 19346 components: - pos: -47.5,10.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19277 + - uid: 19347 components: - rot: 3.141592653589793 rad pos: -46.5,10.5 @@ -126686,7 +127087,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19278 + - uid: 19348 components: - rot: 3.141592653589793 rad pos: -51.5,10.5 @@ -126694,7 +127095,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19279 + - uid: 19349 components: - rot: 1.5707963267948966 rad pos: -52.5,10.5 @@ -126702,7 +127103,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19280 + - uid: 19350 components: - rot: 1.5707963267948966 rad pos: -45.5,6.5 @@ -126710,7 +127111,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19281 + - uid: 19351 components: - rot: -1.5707963267948966 rad pos: -45.5,7.5 @@ -126718,7 +127119,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19282 + - uid: 19352 components: - rot: 3.141592653589793 rad pos: -51.5,11.5 @@ -126726,7 +127127,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19283 + - uid: 19353 components: - rot: 1.5707963267948966 rad pos: -20.5,25.5 @@ -126734,7 +127135,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19284 + - uid: 19354 components: - rot: 1.5707963267948966 rad pos: -18.5,24.5 @@ -126742,7 +127143,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19285 + - uid: 19355 components: - rot: 3.141592653589793 rad pos: -4.5,-41.5 @@ -126750,14 +127151,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19286 + - uid: 19356 components: - pos: -4.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19287 + - uid: 19357 components: - rot: 1.5707963267948966 rad pos: -26.5,-4.5 @@ -126765,7 +127166,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19288 + - uid: 19358 components: - rot: -1.5707963267948966 rad pos: 25.5,-52.5 @@ -126773,7 +127174,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19289 + - uid: 19359 components: - rot: 3.141592653589793 rad pos: 44.5,19.5 @@ -126781,7 +127182,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19290 + - uid: 19360 components: - rot: 1.5707963267948966 rad pos: 54.5,43.5 @@ -126789,7 +127190,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19291 + - uid: 19361 components: - rot: -1.5707963267948966 rad pos: 52.5,43.5 @@ -126797,7 +127198,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19292 + - uid: 19362 components: - rot: -1.5707963267948966 rad pos: 54.5,50.5 @@ -126805,7 +127206,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19293 + - uid: 19363 components: - rot: -1.5707963267948966 rad pos: 52.5,49.5 @@ -126813,7 +127214,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19294 + - uid: 19364 components: - rot: 1.5707963267948966 rad pos: -16.5,34.5 @@ -126821,7 +127222,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19295 + - uid: 19365 components: - rot: 1.5707963267948966 rad pos: -15.5,33.5 @@ -126829,7 +127230,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19296 + - uid: 19366 components: - rot: 1.5707963267948966 rad pos: -16.5,39.5 @@ -126837,7 +127238,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19297 + - uid: 19367 components: - rot: 1.5707963267948966 rad pos: -15.5,38.5 @@ -126845,7 +127246,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19298 + - uid: 19368 components: - rot: 1.5707963267948966 rad pos: -16.5,46.5 @@ -126853,7 +127254,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19299 + - uid: 19369 components: - rot: 3.141592653589793 rad pos: -14.5,44.5 @@ -126861,7 +127262,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19300 + - uid: 19370 components: - rot: 3.141592653589793 rad pos: 40.5,46.5 @@ -126869,14 +127270,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19301 + - uid: 19371 components: - pos: 40.5,45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19302 + - uid: 19372 components: - rot: 1.5707963267948966 rad pos: -1.5,61.5 @@ -126884,7 +127285,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19303 + - uid: 19373 components: - rot: 1.5707963267948966 rad pos: -2.5,62.5 @@ -126892,7 +127293,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19304 + - uid: 19374 components: - rot: 3.141592653589793 rad pos: -1.5,59.5 @@ -126900,7 +127301,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19305 + - uid: 19375 components: - rot: -1.5707963267948966 rad pos: 1.5,46.5 @@ -126908,7 +127309,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19306 + - uid: 19376 components: - rot: 1.5707963267948966 rad pos: -0.5,48.5 @@ -126916,35 +127317,35 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19307 + - uid: 19377 components: - pos: -17.5,50.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19308 + - uid: 19378 components: - pos: -16.5,51.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19309 + - uid: 19379 components: - pos: -21.5,50.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19310 + - uid: 19380 components: - pos: -20.5,51.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19311 + - uid: 19381 components: - rot: -1.5707963267948966 rad pos: -21.5,58.5 @@ -126952,7 +127353,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19312 + - uid: 19382 components: - rot: 1.5707963267948966 rad pos: -22.5,60.5 @@ -126960,7 +127361,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19313 + - uid: 19383 components: - rot: 1.5707963267948966 rad pos: -22.5,61.5 @@ -126968,7 +127369,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19314 + - uid: 19384 components: - rot: 1.5707963267948966 rad pos: -21.5,62.5 @@ -126976,7 +127377,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19315 + - uid: 19385 components: - rot: 3.141592653589793 rad pos: -17.5,62.5 @@ -126984,14 +127385,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19316 + - uid: 19386 components: - pos: -17.5,61.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19317 + - uid: 19387 components: - rot: 1.5707963267948966 rad pos: -22.5,66.5 @@ -126999,7 +127400,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19318 + - uid: 19388 components: - rot: -1.5707963267948966 rad pos: -13.5,62.5 @@ -127007,7 +127408,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19319 + - uid: 19389 components: - rot: -1.5707963267948966 rad pos: -12.5,61.5 @@ -127015,7 +127416,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19320 + - uid: 19390 components: - rot: -1.5707963267948966 rad pos: -12.5,60.5 @@ -127023,7 +127424,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19321 + - uid: 19391 components: - rot: 1.5707963267948966 rad pos: -13.5,58.5 @@ -127031,7 +127432,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19322 + - uid: 19392 components: - rot: -1.5707963267948966 rad pos: -13.5,66.5 @@ -127039,7 +127440,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19323 + - uid: 19393 components: - rot: 1.5707963267948966 rad pos: -12.5,59.5 @@ -127047,7 +127448,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19324 + - uid: 19394 components: - rot: 1.5707963267948966 rad pos: -13.5,57.5 @@ -127055,7 +127456,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19325 + - uid: 19395 components: - rot: 3.141592653589793 rad pos: -2.5,58.5 @@ -127063,7 +127464,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19326 + - uid: 19396 components: - rot: 1.5707963267948966 rad pos: -0.5,56.5 @@ -127071,7 +127472,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19327 + - uid: 19397 components: - rot: -1.5707963267948966 rad pos: 1.5,57.5 @@ -127079,7 +127480,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19328 + - uid: 19398 components: - rot: 3.141592653589793 rad pos: 29.5,46.5 @@ -127087,14 +127488,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19329 + - uid: 19399 components: - pos: 29.5,45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19330 + - uid: 19400 components: - rot: -1.5707963267948966 rad pos: -22.5,-96.5 @@ -127102,7 +127503,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19331 + - uid: 19401 components: - rot: -1.5707963267948966 rad pos: -20.5,-96.5 @@ -127110,7 +127511,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19332 + - uid: 19402 components: - rot: 3.141592653589793 rad pos: -20.5,-97.5 @@ -127118,7 +127519,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19333 + - uid: 19403 components: - rot: 3.141592653589793 rad pos: -21.5,-98.5 @@ -127126,7 +127527,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19334 + - uid: 19404 components: - rot: 3.141592653589793 rad pos: -8.5,-97.5 @@ -127134,7 +127535,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19335 + - uid: 19405 components: - rot: 3.141592653589793 rad pos: -7.5,-98.5 @@ -127142,7 +127543,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19336 + - uid: 19406 components: - rot: 1.5707963267948966 rad pos: -8.5,-91.5 @@ -127150,7 +127551,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19337 + - uid: 19407 components: - rot: 1.5707963267948966 rad pos: -7.5,-93.5 @@ -127158,7 +127559,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19338 + - uid: 19408 components: - rot: 3.141592653589793 rad pos: 65.5,-33.5 @@ -127166,14 +127567,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19339 + - uid: 19409 components: - pos: 65.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19340 + - uid: 19410 components: - rot: 3.141592653589793 rad pos: 67.5,-34.5 @@ -127181,14 +127582,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19341 + - uid: 19411 components: - pos: 73.5,-34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19342 + - uid: 19412 components: - rot: 3.141592653589793 rad pos: 73.5,-33.5 @@ -127196,7 +127597,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19343 + - uid: 19413 components: - rot: -1.5707963267948966 rad pos: 75.5,-40.5 @@ -127204,7 +127605,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19344 + - uid: 19414 components: - rot: 1.5707963267948966 rad pos: 74.5,-41.5 @@ -127212,14 +127613,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19345 + - uid: 19415 components: - pos: 72.5,-48.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19346 + - uid: 19416 components: - rot: 1.5707963267948966 rad pos: 73.5,-47.5 @@ -127227,14 +127628,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19347 + - uid: 19417 components: - pos: 70.5,-47.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19348 + - uid: 19418 components: - rot: 1.5707963267948966 rad pos: 71.5,-46.5 @@ -127242,7 +127643,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19349 + - uid: 19419 components: - rot: -1.5707963267948966 rad pos: 75.5,-37.5 @@ -127250,7 +127651,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19350 + - uid: 19420 components: - rot: 3.141592653589793 rad pos: 74.5,-33.5 @@ -127258,13 +127659,13 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19351 + - uid: 19421 components: - rot: -1.5707963267948966 rad pos: -56.5,-60.5 parent: 2 type: Transform - - uid: 19352 + - uid: 19422 components: - rot: 1.5707963267948966 rad pos: 61.5,-38.5 @@ -127272,14 +127673,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19353 + - uid: 19423 components: - pos: 3.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19354 + - uid: 19424 components: - rot: 3.141592653589793 rad pos: 38.5,-72.5 @@ -127287,7 +127688,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19355 + - uid: 19425 components: - rot: 3.141592653589793 rad pos: 40.5,-73.5 @@ -127295,21 +127696,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19356 + - uid: 19426 components: - pos: -30.5,-71.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19357 + - uid: 19427 components: - pos: -28.5,-69.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19358 + - uid: 19428 components: - rot: -1.5707963267948966 rad pos: 30.5,-82.5 @@ -127317,28 +127718,28 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19359 + - uid: 19429 components: - pos: 30.5,-72.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19360 + - uid: 19430 components: - pos: 29.5,-73.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19361 + - uid: 19431 components: - pos: -44.5,31.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19362 + - uid: 19432 components: - rot: 1.5707963267948966 rad pos: -6.5,14.5 @@ -127346,14 +127747,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19363 + - uid: 19433 components: - pos: -71.5,-25.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19364 + - uid: 19434 components: - rot: -1.5707963267948966 rad pos: -73.5,-24.5 @@ -127361,21 +127762,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19365 + - uid: 19435 components: - pos: -68.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19366 + - uid: 19436 components: - pos: -71.5,-40.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19367 + - uid: 19437 components: - rot: 1.5707963267948966 rad pos: -70.5,-41.5 @@ -127385,13 +127786,13 @@ entities: type: AtmosPipeColor - proto: GasPort entities: - - uid: 19368 + - uid: 19438 components: - rot: -1.5707963267948966 rad pos: -66.5,-41.5 parent: 2 type: Transform - - uid: 19369 + - uid: 19439 components: - rot: -1.5707963267948966 rad pos: -66.5,-46.5 @@ -127399,52 +127800,52 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19370 + - uid: 19440 components: - pos: 45.5,-58.5 parent: 2 type: Transform - - uid: 19371 + - uid: 19441 components: - rot: -1.5707963267948966 rad pos: 46.5,-59.5 parent: 2 type: Transform - - uid: 19372 + - uid: 19442 components: - rot: 3.141592653589793 rad pos: 45.5,-60.5 parent: 2 type: Transform - - uid: 19373 + - uid: 19443 components: - pos: 47.5,-56.5 parent: 2 type: Transform - - uid: 19374 + - uid: 19444 components: - pos: 50.5,-56.5 parent: 2 type: Transform - - uid: 19375 + - uid: 19445 components: - rot: 3.141592653589793 rad pos: 55.5,-61.5 parent: 2 type: Transform - - uid: 19376 + - uid: 19446 components: - rot: 1.5707963267948966 rad pos: 53.5,-59.5 parent: 2 type: Transform - - uid: 19377 + - uid: 19447 components: - rot: -1.5707963267948966 rad pos: 57.5,-59.5 parent: 2 type: Transform - - uid: 19378 + - uid: 19448 components: - name: scrubber to connector port type: MetaData @@ -127452,7 +127853,7 @@ entities: pos: 54.5,-60.5 parent: 2 type: Transform - - uid: 19379 + - uid: 19449 components: - rot: -1.5707963267948966 rad pos: -39.5,-49.5 @@ -127460,7 +127861,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 19380 + - uid: 19450 components: - rot: -1.5707963267948966 rad pos: -39.5,-50.5 @@ -127468,7 +127869,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 19381 + - uid: 19451 components: - rot: -1.5707963267948966 rad pos: -39.5,-51.5 @@ -127476,7 +127877,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 19382 + - uid: 19452 components: - rot: 1.5707963267948966 rad pos: -38.5,-49.5 @@ -127484,7 +127885,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 19383 + - uid: 19453 components: - rot: 1.5707963267948966 rad pos: -38.5,-50.5 @@ -127492,7 +127893,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 19384 + - uid: 19454 components: - rot: 1.5707963267948966 rad pos: -38.5,-51.5 @@ -127500,13 +127901,13 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 19385 + - uid: 19455 components: - rot: 3.141592653589793 rad pos: -24.5,-62.5 parent: 2 type: Transform - - uid: 19386 + - uid: 19456 components: - rot: 3.141592653589793 rad pos: -5.5,-65.5 @@ -127514,7 +127915,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19387 + - uid: 19457 components: - rot: -1.5707963267948966 rad pos: -33.5,-43.5 @@ -127522,7 +127923,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19388 + - uid: 19458 components: - rot: -1.5707963267948966 rad pos: -33.5,-44.5 @@ -127530,7 +127931,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19389 + - uid: 19459 components: - rot: -1.5707963267948966 rad pos: -33.5,-45.5 @@ -127538,12 +127939,12 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19390 + - uid: 19460 components: - pos: 70.5,38.5 parent: 2 type: Transform - - uid: 19391 + - uid: 19461 components: - rot: -1.5707963267948966 rad pos: 72.5,-37.5 @@ -127551,7 +127952,7 @@ entities: type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 19392 + - uid: 19462 components: - rot: -1.5707963267948966 rad pos: 72.5,-38.5 @@ -127559,7 +127960,7 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 19393 + - uid: 19463 components: - rot: 3.141592653589793 rad pos: 71.5,-33.5 @@ -127567,7 +127968,7 @@ entities: type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 19394 + - uid: 19464 components: - rot: 3.141592653589793 rad pos: 72.5,-33.5 @@ -127575,30 +127976,30 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 19395 + - uid: 19465 components: - rot: 1.5707963267948966 rad pos: -57.5,-58.5 parent: 2 type: Transform - - uid: 19396 + - uid: 19466 components: - pos: -54.5,-59.5 parent: 2 type: Transform - - uid: 19397 + - uid: 19467 components: - rot: 3.141592653589793 rad pos: -48.5,-38.5 parent: 2 type: Transform - - uid: 19398 + - uid: 19468 components: - rot: -1.5707963267948966 rad pos: -66.5,-40.5 parent: 2 type: Transform - - uid: 19399 + - uid: 19469 components: - rot: 1.5707963267948966 rad pos: -72.5,-46.5 @@ -127608,7 +128009,7 @@ entities: type: AtmosPipeColor - proto: GasPressurePump entities: - - uid: 19400 + - uid: 19470 components: - rot: -1.5707963267948966 rad pos: -67.5,-41.5 @@ -127616,92 +128017,92 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19401 + - uid: 19471 components: - rot: 1.5707963267948966 rad pos: -73.5,-41.5 parent: 2 type: Transform - - uid: 19402 + - uid: 19472 components: - pos: -70.5,-38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19403 + - uid: 19473 components: - pos: -68.5,-45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19404 + - uid: 19474 components: - rot: 3.141592653589793 rad pos: 50.5,-57.5 parent: 2 type: Transform - - uid: 19405 + - uid: 19475 components: - pos: 47.5,-57.5 parent: 2 type: Transform - - uid: 19406 + - uid: 19476 components: - rot: 3.141592653589793 rad pos: 55.5,-60.5 parent: 2 type: Transform - - uid: 19407 + - uid: 19477 components: - rot: 1.5707963267948966 rad pos: 54.5,-59.5 parent: 2 type: Transform - - uid: 19408 + - uid: 19478 components: - rot: 1.5707963267948966 rad pos: -44.5,-53.5 parent: 2 type: Transform - - uid: 19409 + - uid: 19479 components: - rot: 1.5707963267948966 rad pos: -44.5,-55.5 parent: 2 type: Transform - - uid: 19410 + - uid: 19480 components: - rot: 1.5707963267948966 rad pos: -44.5,-51.5 parent: 2 type: Transform - - uid: 19411 + - uid: 19481 components: - rot: 1.5707963267948966 rad pos: -44.5,-49.5 parent: 2 type: Transform - - uid: 19412 + - uid: 19482 components: - rot: 1.5707963267948966 rad pos: -44.5,-47.5 parent: 2 type: Transform - - uid: 19413 + - uid: 19483 components: - rot: 1.5707963267948966 rad pos: -44.5,-45.5 parent: 2 type: Transform - - uid: 19414 + - uid: 19484 components: - rot: 1.5707963267948966 rad pos: -44.5,-43.5 parent: 2 type: Transform - - uid: 19415 + - uid: 19485 components: - rot: 1.5707963267948966 rad pos: -39.5,-55.5 @@ -127709,34 +128110,34 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19416 + - uid: 19486 components: - pos: -40.5,-54.5 parent: 2 type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 19417 + - uid: 19487 components: - rot: 3.141592653589793 rad pos: -42.5,-40.5 parent: 2 type: Transform - - uid: 19418 + - uid: 19488 components: - pos: -37.5,-54.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19419 + - uid: 19489 components: - pos: -38.5,-45.5 parent: 2 type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 19420 + - uid: 19490 components: - rot: 3.141592653589793 rad pos: -24.5,-61.5 @@ -127744,7 +128145,7 @@ entities: type: Transform - color: '#97C3FCCC' type: AtmosPipeColor - - uid: 19421 + - uid: 19491 components: - rot: 3.141592653589793 rad pos: -25.5,-59.5 @@ -127752,14 +128153,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19422 + - uid: 19492 components: - pos: -23.5,-59.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19423 + - uid: 19493 components: - rot: 3.141592653589793 rad pos: 72.5,-31.5 @@ -127767,19 +128168,19 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 19424 + - uid: 19494 components: - pos: 71.5,-31.5 parent: 2 type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 19425 + - uid: 19495 components: - pos: -56.5,-59.5 parent: 2 type: Transform - - uid: 19426 + - uid: 19496 components: - rot: -1.5707963267948966 rad pos: 70.5,-38.5 @@ -127787,13 +128188,13 @@ entities: type: Transform - color: '#999000FF' type: AtmosPipeColor - - uid: 19427 + - uid: 19497 components: - rot: 3.141592653589793 rad pos: -54.5,-60.5 parent: 2 type: Transform - - uid: 19428 + - uid: 19498 components: - rot: 1.5707963267948966 rad pos: 70.5,-37.5 @@ -127801,12 +128202,12 @@ entities: type: Transform - color: '#9755CCFF' type: AtmosPipeColor - - uid: 19429 + - uid: 19499 components: - pos: -48.5,-37.5 parent: 2 type: Transform - - uid: 19430 + - uid: 19500 components: - rot: 3.141592653589793 rad pos: -70.5,-43.5 @@ -127814,7 +128215,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19431 + - uid: 19501 components: - rot: -1.5707963267948966 rad pos: -67.5,-40.5 @@ -127824,62 +128225,62 @@ entities: type: AtmosPipeColor - proto: GasRecyclerMachineCircuitboard entities: - - uid: 19432 + - uid: 19502 components: - pos: 53.993114,35.55658 parent: 2 type: Transform - proto: GasThermoMachineFreezer entities: - - uid: 19433 + - uid: 19503 components: - pos: 51.5,-57.5 parent: 2 type: Transform - - uid: 19434 + - uid: 19504 components: - pos: 2.5,14.5 parent: 2 type: Transform - - uid: 19435 + - uid: 19505 components: - pos: -33.5,-52.5 parent: 2 type: Transform - - uid: 19436 + - uid: 19506 components: - pos: 2.5,68.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19437 + - uid: 19507 components: - pos: 2.5,70.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19438 + - uid: 19508 components: - pos: -5.5,68.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19439 + - uid: 19509 components: - pos: -5.5,70.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19440 + - uid: 19510 components: - pos: 53.5,-47.5 parent: 2 type: Transform - - uid: 19441 + - uid: 19511 components: - pos: -22.5,-61.5 parent: 2 @@ -127888,28 +128289,28 @@ entities: type: AtmosPipeColor - proto: GasThermoMachineFreezerEnabled entities: - - uid: 19442 + - uid: 19512 components: - pos: -66.5,-38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19443 + - uid: 19513 components: - pos: -69.5,-38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19444 + - uid: 19514 components: - pos: -67.5,-38.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19445 + - uid: 19515 components: - pos: -68.5,-38.5 parent: 2 @@ -127918,31 +128319,31 @@ entities: type: AtmosPipeColor - proto: GasThermoMachineHeater entities: - - uid: 19446 + - uid: 19516 components: - pos: 48.5,-57.5 parent: 2 type: Transform - - uid: 19447 + - uid: 19517 components: - pos: -33.5,-54.5 parent: 2 type: Transform - - uid: 19448 + - uid: 19518 components: - pos: -57.5,-59.5 parent: 2 type: Transform - proto: GasValve entities: - - uid: 19449 + - uid: 19519 components: - pos: -44.5,-40.5 parent: 2 type: Transform - open: False type: GasValve - - uid: 19450 + - uid: 19520 components: - rot: 1.5707963267948966 rad pos: -72.5,-41.5 @@ -127952,7 +128353,7 @@ entities: type: GasValve - color: '#990000FF' type: AtmosPipeColor - - uid: 19451 + - uid: 19521 components: - rot: -1.5707963267948966 rad pos: -72.5,-40.5 @@ -127962,7 +128363,7 @@ entities: type: GasValve - color: '#990000FF' type: AtmosPipeColor - - uid: 19452 + - uid: 19522 components: - rot: -1.5707963267948966 rad pos: -72.5,-42.5 @@ -127972,7 +128373,7 @@ entities: type: GasValve - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19453 + - uid: 19523 components: - rot: -1.5707963267948966 rad pos: 56.5,-59.5 @@ -127980,7 +128381,7 @@ entities: type: Transform - open: False type: GasValve - - uid: 19454 + - uid: 19524 components: - rot: 1.5707963267948966 rad pos: 53.5,-60.5 @@ -127988,7 +128389,7 @@ entities: type: Transform - open: False type: GasValve - - uid: 19455 + - uid: 19525 components: - rot: -1.5707963267948966 rad pos: -43.5,-41.5 @@ -127996,7 +128397,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19456 + - uid: 19526 components: - pos: -40.5,-53.5 parent: 2 @@ -128005,7 +128406,7 @@ entities: type: GasValve - color: '#947507FF' type: AtmosPipeColor - - uid: 19457 + - uid: 19527 components: - rot: 3.141592653589793 rad pos: -38.5,-58.5 @@ -128015,7 +128416,7 @@ entities: type: GasValve - color: '#990000FF' type: AtmosPipeColor - - uid: 19458 + - uid: 19528 components: - pos: -37.5,-53.5 parent: 2 @@ -128024,7 +128425,7 @@ entities: type: GasValve - color: '#947507FF' type: AtmosPipeColor - - uid: 19459 + - uid: 19529 components: - pos: -38.5,-42.5 parent: 2 @@ -128033,7 +128434,7 @@ entities: type: GasValve - color: '#990000FF' type: AtmosPipeColor - - uid: 19460 + - uid: 19530 components: - rot: -1.5707963267948966 rad pos: -34.5,-53.5 @@ -128043,7 +128444,7 @@ entities: type: GasValve - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19461 + - uid: 19531 components: - rot: 1.5707963267948966 rad pos: -34.5,-55.5 @@ -128053,14 +128454,14 @@ entities: type: GasValve - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19462 + - uid: 19532 components: - pos: -48.5,-36.5 parent: 2 type: Transform - open: False type: GasValve - - uid: 19463 + - uid: 19533 components: - rot: 1.5707963267948966 rad pos: -66.5,-44.5 @@ -128070,7 +128471,7 @@ entities: type: GasValve - color: '#990000FF' type: AtmosPipeColor - - uid: 19464 + - uid: 19534 components: - rot: 1.5707963267948966 rad pos: -71.5,-37.5 @@ -128082,35 +128483,37 @@ entities: type: AtmosPipeColor - proto: GasVentPump entities: - - uid: 19465 + - uid: 19535 components: - rot: 3.141592653589793 rad pos: 18.5,16.5 parent: 2 type: Transform - - uid: 19466 + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 19536 components: - rot: 3.141592653589793 rad pos: -0.5,-4.5 parent: 2 type: Transform - ShutdownSubscribers: - - 99 + - 100 type: DeviceNetwork - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19467 + - uid: 19537 components: - rot: 3.141592653589793 rad pos: 1.5,-5.5 parent: 2 type: Transform - ShutdownSubscribers: - - 98 + - 99 type: DeviceNetwork - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19468 + - uid: 19538 components: - rot: -1.5707963267948966 rad pos: -70.5,-31.5 @@ -128118,7 +128521,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19469 + - uid: 19539 components: - rot: 3.141592653589793 rad pos: -72.5,-38.5 @@ -128126,7 +128529,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19470 + - uid: 19540 components: - rot: 1.5707963267948966 rad pos: -72.5,-25.5 @@ -128134,7 +128537,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19471 + - uid: 19541 components: - rot: 1.5707963267948966 rad pos: -9.5,2.5 @@ -128142,14 +128545,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19472 + - uid: 19542 components: - pos: -1.5,-59.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19473 + - uid: 19543 components: - rot: 3.141592653589793 rad pos: -14.5,-46.5 @@ -128157,14 +128560,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19474 + - uid: 19544 components: - pos: 25.5,-5.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19475 + - uid: 19545 components: - rot: 1.5707963267948966 rad pos: -12.5,-39.5 @@ -128172,7 +128575,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19476 + - uid: 19546 components: - rot: 3.141592653589793 rad pos: -0.5,-65.5 @@ -128180,7 +128583,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19477 + - uid: 19547 components: - rot: 3.141592653589793 rad pos: -23.5,-86.5 @@ -128188,21 +128591,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19478 + - uid: 19548 components: - pos: 2.5,-26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19479 + - uid: 19549 components: - pos: 20.5,-40.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19480 + - uid: 19550 components: - rot: -1.5707963267948966 rad pos: 6.5,16.5 @@ -128210,14 +128613,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19481 + - uid: 19551 components: - pos: 26.5,11.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19482 + - uid: 19552 components: - rot: 1.5707963267948966 rad pos: 5.5,8.5 @@ -128225,7 +128628,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19483 + - uid: 19553 components: - rot: -1.5707963267948966 rad pos: -4.5,-14.5 @@ -128233,14 +128636,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19484 + - uid: 19554 components: - pos: -17.5,-57.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19485 + - uid: 19555 components: - rot: -1.5707963267948966 rad pos: 32.5,10.5 @@ -128248,7 +128651,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19486 + - uid: 19556 components: - rot: 1.5707963267948966 rad pos: 16.5,13.5 @@ -128256,7 +128659,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19487 + - uid: 19557 components: - rot: -1.5707963267948966 rad pos: 45.5,-27.5 @@ -128264,14 +128667,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19488 + - uid: 19558 components: - pos: 10.5,19.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19489 + - uid: 19559 components: - rot: -1.5707963267948966 rad pos: 29.5,10.5 @@ -128279,7 +128682,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19490 + - uid: 19560 components: - rot: 3.141592653589793 rad pos: 18.5,3.5 @@ -128287,7 +128690,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19491 + - uid: 19561 components: - rot: 1.5707963267948966 rad pos: 8.5,1.5 @@ -128295,7 +128698,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19492 + - uid: 19562 components: - rot: 1.5707963267948966 rad pos: 8.5,-9.5 @@ -128303,14 +128706,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19493 + - uid: 19563 components: - pos: 22.5,22.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19494 + - uid: 19564 components: - rot: 1.5707963267948966 rad pos: -0.5,17.5 @@ -128318,7 +128721,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19495 + - uid: 19565 components: - rot: -1.5707963267948966 rad pos: -10.5,-22.5 @@ -128326,7 +128729,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19496 + - uid: 19566 components: - rot: -1.5707963267948966 rad pos: -9.5,-6.5 @@ -128334,7 +128737,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19497 + - uid: 19567 components: - rot: 3.141592653589793 rad pos: -6.5,-65.5 @@ -128342,7 +128745,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19498 + - uid: 19568 components: - rot: 3.141592653589793 rad pos: -12.5,-65.5 @@ -128350,14 +128753,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19499 + - uid: 19569 components: - pos: -2.5,-52.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19500 + - uid: 19570 components: - rot: 3.141592653589793 rad pos: 5.5,-45.5 @@ -128365,7 +128768,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19501 + - uid: 19571 components: - rot: 3.141592653589793 rad pos: -0.5,-47.5 @@ -128373,7 +128776,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19502 + - uid: 19572 components: - rot: -1.5707963267948966 rad pos: 9.5,-60.5 @@ -128381,7 +128784,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19503 + - uid: 19573 components: - rot: -1.5707963267948966 rad pos: 35.5,10.5 @@ -128389,7 +128792,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19504 + - uid: 19574 components: - rot: 1.5707963267948966 rad pos: -30.5,-80.5 @@ -128397,7 +128800,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19505 + - uid: 19575 components: - rot: 3.141592653589793 rad pos: 36.5,7.5 @@ -128405,7 +128808,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19506 + - uid: 19576 components: - rot: 3.141592653589793 rad pos: 11.5,9.5 @@ -128413,7 +128816,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19507 + - uid: 19577 components: - rot: 1.5707963267948966 rad pos: 9.5,3.5 @@ -128421,21 +128824,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19508 + - uid: 19578 components: - pos: 20.5,14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19509 + - uid: 19579 components: - pos: 5.5,19.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19510 + - uid: 19580 components: - rot: 3.141592653589793 rad pos: 0.5,12.5 @@ -128443,14 +128846,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19511 + - uid: 19581 components: - pos: -24.5,-79.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19512 + - uid: 19582 components: - rot: 3.141592653589793 rad pos: -18.5,-78.5 @@ -128458,7 +128861,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19513 + - uid: 19583 components: - rot: -1.5707963267948966 rad pos: 20.5,18.5 @@ -128466,14 +128869,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19514 + - uid: 19584 components: - pos: 17.5,20.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19515 + - uid: 19585 components: - rot: 1.5707963267948966 rad pos: 33.5,5.5 @@ -128481,14 +128884,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19516 + - uid: 19586 components: - pos: -4.5,-40.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19517 + - uid: 19587 components: - rot: 3.141592653589793 rad pos: -4.5,12.5 @@ -128496,14 +128899,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19518 + - uid: 19588 components: - pos: -29.5,-70.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19519 + - uid: 19589 components: - rot: 1.5707963267948966 rad pos: -23.5,29.5 @@ -128511,14 +128914,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19520 + - uid: 19590 components: - pos: 47.5,-23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19521 + - uid: 19591 components: - rot: 1.5707963267948966 rad pos: 27.5,0.5 @@ -128526,14 +128929,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19522 + - uid: 19592 components: - pos: -7.5,9.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19523 + - uid: 19593 components: - rot: -1.5707963267948966 rad pos: 15.5,-32.5 @@ -128541,7 +128944,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19524 + - uid: 19594 components: - rot: 1.5707963267948966 rad pos: 17.5,-12.5 @@ -128549,21 +128952,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19525 + - uid: 19595 components: - pos: 30.5,-17.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19526 + - uid: 19596 components: - pos: -18.5,33.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19527 + - uid: 19597 components: - rot: 3.141592653589793 rad pos: 36.5,4.5 @@ -128571,7 +128974,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19528 + - uid: 19598 components: - rot: -1.5707963267948966 rad pos: 27.5,-24.5 @@ -128579,7 +128982,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19529 + - uid: 19599 components: - rot: 3.141592653589793 rad pos: -24.5,-89.5 @@ -128587,7 +128990,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19530 + - uid: 19600 components: - rot: 1.5707963267948966 rad pos: -19.5,-64.5 @@ -128595,14 +128998,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19531 + - uid: 19601 components: - pos: 31.5,-14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19532 + - uid: 19602 components: - rot: -1.5707963267948966 rad pos: 42.5,-26.5 @@ -128610,7 +129013,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19533 + - uid: 19603 components: - rot: -1.5707963267948966 rad pos: -17.5,-72.5 @@ -128618,7 +129021,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19534 + - uid: 19604 components: - rot: 1.5707963267948966 rad pos: -19.5,-67.5 @@ -128626,7 +129029,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19535 + - uid: 19605 components: - rot: -1.5707963267948966 rad pos: -19.5,-88.5 @@ -128634,7 +129037,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19536 + - uid: 19606 components: - rot: 3.141592653589793 rad pos: 10.5,-46.5 @@ -128642,7 +129045,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19537 + - uid: 19607 components: - rot: -1.5707963267948966 rad pos: 35.5,-23.5 @@ -128650,21 +129053,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19538 + - uid: 19608 components: - pos: -16.5,-37.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19539 + - uid: 19609 components: - pos: -11.5,-32.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19540 + - uid: 19610 components: - rot: -1.5707963267948966 rad pos: -0.5,-10.5 @@ -128672,7 +129075,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19541 + - uid: 19611 components: - rot: 3.141592653589793 rad pos: 21.5,-46.5 @@ -128680,21 +129083,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19542 + - uid: 19612 components: - pos: 30.5,28.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19543 + - uid: 19613 components: - pos: 45.5,15.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19544 + - uid: 19614 components: - rot: -1.5707963267948966 rad pos: 61.5,15.5 @@ -128702,7 +129105,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19545 + - uid: 19615 components: - rot: -1.5707963267948966 rad pos: 52.5,13.5 @@ -128710,7 +129113,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19546 + - uid: 19616 components: - rot: -1.5707963267948966 rad pos: 61.5,18.5 @@ -128718,42 +129121,42 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19547 + - uid: 19617 components: - pos: 59.5,23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19548 + - uid: 19618 components: - pos: 56.5,23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19549 + - uid: 19619 components: - pos: 53.5,23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19550 + - uid: 19620 components: - pos: 50.5,23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19551 + - uid: 19621 components: - pos: 47.5,23.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19552 + - uid: 19622 components: - rot: 3.141592653589793 rad pos: 47.5,13.5 @@ -128761,7 +129164,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19553 + - uid: 19623 components: - rot: -1.5707963267948966 rad pos: 60.5,11.5 @@ -128769,14 +129172,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19554 + - uid: 19624 components: - pos: 39.5,20.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19555 + - uid: 19625 components: - rot: 1.5707963267948966 rad pos: 34.5,19.5 @@ -128784,14 +129187,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19556 + - uid: 19626 components: - pos: 45.5,1.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19557 + - uid: 19627 components: - rot: -1.5707963267948966 rad pos: 57.5,0.5 @@ -128799,7 +129202,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19558 + - uid: 19628 components: - rot: 1.5707963267948966 rad pos: 43.5,-1.5 @@ -128807,7 +129210,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19559 + - uid: 19629 components: - rot: 1.5707963267948966 rad pos: 36.5,-3.5 @@ -128815,7 +129218,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19560 + - uid: 19630 components: - rot: 3.141592653589793 rad pos: 41.5,8.5 @@ -128823,7 +129226,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19561 + - uid: 19631 components: - rot: 1.5707963267948966 rad pos: 29.5,19.5 @@ -128831,7 +129234,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19562 + - uid: 19632 components: - rot: 1.5707963267948966 rad pos: 38.5,10.5 @@ -128839,7 +129242,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19563 + - uid: 19633 components: - rot: -1.5707963267948966 rad pos: 46.5,-1.5 @@ -128847,7 +129250,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19564 + - uid: 19634 components: - rot: -1.5707963267948966 rad pos: 57.5,-5.5 @@ -128855,7 +129258,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19565 + - uid: 19635 components: - rot: 3.141592653589793 rad pos: 49.5,-42.5 @@ -128863,7 +129266,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19566 + - uid: 19636 components: - rot: 3.141592653589793 rad pos: 56.5,-42.5 @@ -128871,7 +129274,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19567 + - uid: 19637 components: - rot: 3.141592653589793 rad pos: 44.5,-42.5 @@ -128879,7 +129282,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19568 + - uid: 19638 components: - rot: 3.141592653589793 rad pos: 57.5,-45.5 @@ -128887,7 +129290,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19569 + - uid: 19639 components: - rot: 3.141592653589793 rad pos: 61.5,-47.5 @@ -128895,7 +129298,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19570 + - uid: 19640 components: - rot: 1.5707963267948966 rad pos: 59.5,-32.5 @@ -128903,7 +129306,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19571 + - uid: 19641 components: - rot: -1.5707963267948966 rad pos: 62.5,-24.5 @@ -128911,14 +129314,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19572 + - uid: 19642 components: - pos: 61.5,-2.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19573 + - uid: 19643 components: - rot: 3.141592653589793 rad pos: 60.5,-52.5 @@ -128926,7 +129329,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19574 + - uid: 19644 components: - rot: 1.5707963267948966 rad pos: 44.5,-46.5 @@ -128934,7 +129337,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19575 + - uid: 19645 components: - rot: -1.5707963267948966 rad pos: 51.5,-52.5 @@ -128942,7 +129345,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19576 + - uid: 19646 components: - rot: 1.5707963267948966 rad pos: 25.5,-56.5 @@ -128950,7 +129353,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19577 + - uid: 19647 components: - rot: -1.5707963267948966 rad pos: 30.5,-56.5 @@ -128958,7 +129361,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19578 + - uid: 19648 components: - rot: -1.5707963267948966 rad pos: 30.5,-52.5 @@ -128966,7 +129369,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19579 + - uid: 19649 components: - rot: 1.5707963267948966 rad pos: 28.5,-47.5 @@ -128974,7 +129377,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19580 + - uid: 19650 components: - rot: -1.5707963267948966 rad pos: 33.5,-47.5 @@ -128982,14 +129385,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19581 + - uid: 19651 components: - pos: 29.5,-45.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19582 + - uid: 19652 components: - rot: -1.5707963267948966 rad pos: 53.5,-57.5 @@ -128997,14 +129400,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19583 + - uid: 19653 components: - pos: -13.5,2.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19584 + - uid: 19654 components: - rot: 1.5707963267948966 rad pos: -17.5,1.5 @@ -129012,7 +129415,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19585 + - uid: 19655 components: - rot: 3.141592653589793 rad pos: -24.5,-14.5 @@ -129020,14 +129423,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19586 + - uid: 19656 components: - pos: -28.5,-12.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19587 + - uid: 19657 components: - rot: -1.5707963267948966 rad pos: -19.5,-14.5 @@ -129035,7 +129438,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19588 + - uid: 19658 components: - rot: 3.141592653589793 rad pos: -24.5,-23.5 @@ -129043,14 +129446,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19589 + - uid: 19659 components: - pos: 38.5,-55.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19590 + - uid: 19660 components: - rot: -1.5707963267948966 rad pos: 39.5,-63.5 @@ -129058,7 +129461,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19591 + - uid: 19661 components: - rot: -1.5707963267948966 rad pos: -19.5,-41.5 @@ -129066,7 +129469,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19592 + - uid: 19662 components: - rot: -1.5707963267948966 rad pos: -19.5,-47.5 @@ -129074,7 +129477,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19593 + - uid: 19663 components: - rot: -1.5707963267948966 rad pos: -19.5,-33.5 @@ -129082,7 +129485,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19594 + - uid: 19664 components: - rot: 1.5707963267948966 rad pos: 37.5,-71.5 @@ -129090,7 +129493,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19595 + - uid: 19665 components: - rot: -1.5707963267948966 rad pos: 3.5,-56.5 @@ -129098,14 +129501,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19596 + - uid: 19666 components: - pos: -28.5,-16.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19597 + - uid: 19667 components: - rot: 1.5707963267948966 rad pos: -32.5,-27.5 @@ -129113,7 +129516,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19598 + - uid: 19668 components: - rot: 1.5707963267948966 rad pos: -34.5,-15.5 @@ -129121,7 +129524,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19599 + - uid: 19669 components: - rot: 3.141592653589793 rad pos: -36.5,-12.5 @@ -129129,7 +129532,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19600 + - uid: 19670 components: - rot: 3.141592653589793 rad pos: -41.5,-16.5 @@ -129137,7 +129540,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19601 + - uid: 19671 components: - rot: -1.5707963267948966 rad pos: -25.5,-4.5 @@ -129145,7 +129548,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19602 + - uid: 19672 components: - rot: 3.141592653589793 rad pos: -44.5,-12.5 @@ -129153,7 +129556,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19603 + - uid: 19673 components: - rot: 3.141592653589793 rad pos: -46.5,-6.5 @@ -129161,7 +129564,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19604 + - uid: 19674 components: - rot: 1.5707963267948966 rad pos: -54.5,-13.5 @@ -129169,7 +129572,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19605 + - uid: 19675 components: - rot: -1.5707963267948966 rad pos: -50.5,-24.5 @@ -129177,21 +129580,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19606 + - uid: 19676 components: - pos: -45.5,-22.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19607 + - uid: 19677 components: - pos: -59.5,-24.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19608 + - uid: 19678 components: - rot: 1.5707963267948966 rad pos: -65.5,-27.5 @@ -129199,7 +129602,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19609 + - uid: 19679 components: - rot: 3.141592653589793 rad pos: -64.5,-31.5 @@ -129207,7 +129610,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19610 + - uid: 19680 components: - rot: 1.5707963267948966 rad pos: -32.5,-39.5 @@ -129215,14 +129618,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19611 + - uid: 19681 components: - pos: -30.5,-33.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19612 + - uid: 19682 components: - rot: 1.5707963267948966 rad pos: -38.5,-34.5 @@ -129230,7 +129633,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19613 + - uid: 19683 components: - rot: -1.5707963267948966 rad pos: -23.5,-34.5 @@ -129238,14 +129641,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19614 + - uid: 19684 components: - pos: -23.5,-57.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19615 + - uid: 19685 components: - rot: 1.5707963267948966 rad pos: -41.5,-71.5 @@ -129253,14 +129656,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19616 + - uid: 19686 components: - pos: 21.5,-27.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19617 + - uid: 19687 components: - rot: -1.5707963267948966 rad pos: 29.5,-30.5 @@ -129268,7 +129671,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19618 + - uid: 19688 components: - rot: 1.5707963267948966 rad pos: -19.5,19.5 @@ -129276,7 +129679,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19619 + - uid: 19689 components: - rot: 3.141592653589793 rad pos: -28.5,22.5 @@ -129284,7 +129687,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19620 + - uid: 19690 components: - rot: 3.141592653589793 rad pos: -32.5,22.5 @@ -129292,14 +129695,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19621 + - uid: 19691 components: - pos: -32.5,28.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19622 + - uid: 19692 components: - rot: 1.5707963267948966 rad pos: -41.5,23.5 @@ -129307,7 +129710,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19623 + - uid: 19693 components: - rot: 3.141592653589793 rad pos: -24.5,22.5 @@ -129315,7 +129718,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19624 + - uid: 19694 components: - rot: 1.5707963267948966 rad pos: -50.5,33.5 @@ -129323,7 +129726,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19625 + - uid: 19695 components: - rot: 1.5707963267948966 rad pos: -50.5,31.5 @@ -129331,14 +129734,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19626 + - uid: 19696 components: - pos: -44.5,34.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19627 + - uid: 19697 components: - rot: -1.5707963267948966 rad pos: -37.5,30.5 @@ -129346,7 +129749,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19628 + - uid: 19698 components: - rot: 1.5707963267948966 rad pos: -26.5,12.5 @@ -129354,7 +129757,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19629 + - uid: 19699 components: - rot: 3.141592653589793 rad pos: -28.5,-3.5 @@ -129362,7 +129765,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19630 + - uid: 19700 components: - rot: 3.141592653589793 rad pos: -29.5,9.5 @@ -129370,14 +129773,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19631 + - uid: 19701 components: - pos: -29.5,15.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19632 + - uid: 19702 components: - rot: -1.5707963267948966 rad pos: -36.5,8.5 @@ -129385,7 +129788,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19633 + - uid: 19703 components: - rot: 1.5707963267948966 rad pos: -38.5,5.5 @@ -129393,7 +129796,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19634 + - uid: 19704 components: - rot: 3.141592653589793 rad pos: -41.5,0.5 @@ -129401,7 +129804,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19635 + - uid: 19705 components: - rot: 3.141592653589793 rad pos: -45.5,0.5 @@ -129409,7 +129812,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19636 + - uid: 19706 components: - rot: -1.5707963267948966 rad pos: -44.5,6.5 @@ -129417,7 +129820,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19637 + - uid: 19707 components: - rot: 1.5707963267948966 rad pos: -51.5,7.5 @@ -129425,7 +129828,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19638 + - uid: 19708 components: - rot: -1.5707963267948966 rad pos: -43.5,11.5 @@ -129433,21 +129836,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19639 + - uid: 19709 components: - pos: -45.5,14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19640 + - uid: 19710 components: - pos: -51.5,14.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19641 + - uid: 19711 components: - rot: 1.5707963267948966 rad pos: -52.5,11.5 @@ -129455,7 +129858,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19642 + - uid: 19712 components: - rot: 3.141592653589793 rad pos: 19.5,-54.5 @@ -129463,7 +129866,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19643 + - uid: 19713 components: - rot: 3.141592653589793 rad pos: 19.5,-54.5 @@ -129471,21 +129874,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19644 + - uid: 19714 components: - pos: -54.5,-74.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19645 + - uid: 19715 components: - pos: -8.5,-26.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19646 + - uid: 19716 components: - rot: 3.141592653589793 rad pos: 33.5,-42.5 @@ -129493,7 +129896,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19647 + - uid: 19717 components: - rot: 1.5707963267948966 rad pos: -36.5,-44.5 @@ -129501,7 +129904,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19648 + - uid: 19718 components: - rot: 1.5707963267948966 rad pos: -30.5,-78.5 @@ -129509,7 +129912,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19649 + - uid: 19719 components: - rot: 1.5707963267948966 rad pos: 39.5,46.5 @@ -129517,14 +129920,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19650 + - uid: 19720 components: - pos: 54.5,56.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19651 + - uid: 19721 components: - rot: -1.5707963267948966 rad pos: 55.5,43.5 @@ -129532,7 +129935,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19652 + - uid: 19722 components: - rot: -1.5707963267948966 rad pos: -12.5,33.5 @@ -129540,7 +129943,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19653 + - uid: 19723 components: - rot: 1.5707963267948966 rad pos: -20.5,44.5 @@ -129548,20 +129951,20 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19654 + - uid: 19724 components: - pos: -14.5,45.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19655 + - uid: 19725 components: - rot: 3.141592653589793 rad pos: 70.5,37.5 parent: 2 type: Transform - - uid: 19656 + - uid: 19726 components: - rot: -1.5707963267948966 rad pos: -11.5,38.5 @@ -129569,14 +129972,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19657 + - uid: 19727 components: - pos: -1.5,66.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19658 + - uid: 19728 components: - rot: -1.5707963267948966 rad pos: -0.5,61.5 @@ -129584,7 +129987,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19659 + - uid: 19729 components: - rot: 1.5707963267948966 rad pos: 0.5,46.5 @@ -129592,18 +129995,18 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19660 + - uid: 19730 components: - rot: 1.5707963267948966 rad pos: -13.5,60.5 parent: 2 type: Transform - ShutdownSubscribers: - - 73 + - 74 type: DeviceNetwork - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19661 + - uid: 19731 components: - rot: 3.141592653589793 rad pos: -17.5,60.5 @@ -129611,21 +130014,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19662 + - uid: 19732 components: - pos: -12.5,73.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19663 + - uid: 19733 components: - pos: -22.5,73.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19664 + - uid: 19734 components: - rot: -1.5707963267948966 rad pos: -21.5,60.5 @@ -129633,7 +130036,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19665 + - uid: 19735 components: - rot: 1.5707963267948966 rad pos: 0.5,57.5 @@ -129641,7 +130044,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19666 + - uid: 19736 components: - rot: -1.5707963267948966 rad pos: 30.5,46.5 @@ -129649,7 +130052,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19667 + - uid: 19737 components: - rot: 3.141592653589793 rad pos: 23.5,45.5 @@ -129657,7 +130060,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19668 + - uid: 19738 components: - rot: -1.5707963267948966 rad pos: -7.5,-91.5 @@ -129665,7 +130068,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19669 + - uid: 19739 components: - rot: 1.5707963267948966 rad pos: -21.5,-96.5 @@ -129673,7 +130076,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19670 + - uid: 19740 components: - rot: -1.5707963267948966 rad pos: -7.5,-97.5 @@ -129681,14 +130084,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19671 + - uid: 19741 components: - pos: -8.5,-84.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19672 + - uid: 19742 components: - rot: 1.5707963267948966 rad pos: -34.5,-97.5 @@ -129696,14 +130099,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19673 + - uid: 19743 components: - pos: 65.5,-32.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19674 + - uid: 19744 components: - rot: 3.141592653589793 rad pos: 68.5,-34.5 @@ -129711,7 +130114,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19675 + - uid: 19745 components: - rot: 1.5707963267948966 rad pos: 74.5,-40.5 @@ -129719,7 +130122,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19676 + - uid: 19746 components: - rot: -1.5707963267948966 rad pos: 74.5,-47.5 @@ -129727,7 +130130,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19677 + - uid: 19747 components: - rot: 1.5707963267948966 rad pos: 66.5,-37.5 @@ -129735,21 +130138,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19678 + - uid: 19748 components: - pos: 74.5,-32.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19679 + - uid: 19749 components: - pos: 73.5,-29.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19680 + - uid: 19750 components: - rot: 3.141592653589793 rad pos: 3.5,-30.5 @@ -129757,7 +130160,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19681 + - uid: 19751 components: - rot: -1.5707963267948966 rad pos: -18.5,66.5 @@ -129765,7 +130168,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19682 + - uid: 19752 components: - rot: 3.141592653589793 rad pos: 72.5,-49.5 @@ -129773,7 +130176,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19683 + - uid: 19753 components: - rot: -1.5707963267948966 rad pos: -15.5,24.5 @@ -129781,7 +130184,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19684 + - uid: 19754 components: - rot: 1.5707963267948966 rad pos: -8.5,-14.5 @@ -129789,14 +130192,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19685 + - uid: 19755 components: - pos: -11.5,-18.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19686 + - uid: 19756 components: - rot: 3.141592653589793 rad pos: -30.5,-74.5 @@ -129804,7 +130207,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19687 + - uid: 19757 components: - rot: -1.5707963267948966 rad pos: 62.5,-38.5 @@ -129812,7 +130215,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19688 + - uid: 19758 components: - rot: 3.141592653589793 rad pos: 30.5,-84.5 @@ -129820,7 +130223,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19689 + - uid: 19759 components: - rot: -1.5707963267948966 rad pos: 48.5,-72.5 @@ -129828,14 +130231,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19690 + - uid: 19760 components: - pos: 25.5,-71.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19691 + - uid: 19761 components: - rot: 3.141592653589793 rad pos: 18.5,-83.5 @@ -129843,7 +130246,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19692 + - uid: 19762 components: - rot: -1.5707963267948966 rad pos: 48.5,-86.5 @@ -129851,14 +130254,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19693 + - uid: 19763 components: - pos: 12.5,-22.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19694 + - uid: 19764 components: - rot: -1.5707963267948966 rad pos: 45.5,5.5 @@ -129866,72 +130269,82 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19695 + - uid: 19765 components: - pos: -45.5,43.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19696 + - uid: 19766 components: - pos: 68.5,-31.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19697 + - uid: 19767 components: - rot: -1.5707963267948966 rad pos: -5.5,16.5 parent: 2 type: Transform - ShutdownSubscribers: - - 94 + - 95 type: DeviceNetwork - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19698 + - uid: 19768 components: - rot: -1.5707963267948966 rad pos: -1.5,-21.5 parent: 2 type: Transform - ShutdownSubscribers: - - 100 + - 101 type: DeviceNetwork - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19699 + - uid: 19769 components: - rot: 3.141592653589793 rad pos: 22.5,-37.5 parent: 2 type: Transform - ShutdownSubscribers: - - 78 + - 79 type: DeviceNetwork - color: '#0055CCFF' type: AtmosPipeColor - - uid: 19700 + - uid: 19770 components: - pos: 42.5,-37.5 parent: 2 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 19771 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,61.5 + parent: 2 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - proto: GasVentScrubber entities: - - uid: 19701 + - uid: 19772 components: - rot: 1.5707963267948966 rad pos: 1.5,-6.5 parent: 2 type: Transform - ShutdownSubscribers: - - 98 + - 99 type: DeviceNetwork - color: '#990000FF' type: AtmosPipeColor - - uid: 19702 + - uid: 19773 components: - rot: 1.5707963267948966 rad pos: -74.5,-24.5 @@ -129939,7 +130352,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19703 + - uid: 19774 components: - rot: 3.141592653589793 rad pos: -73.5,-38.5 @@ -129947,7 +130360,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19704 + - uid: 19775 components: - rot: -1.5707963267948966 rad pos: -2.5,11.5 @@ -129955,28 +130368,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19705 + - uid: 19776 components: - pos: 25.5,-51.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19706 + - uid: 19777 components: - pos: 22.5,-4.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19707 + - uid: 19778 components: - pos: 11.5,19.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19708 + - uid: 19779 components: - rot: 1.5707963267948966 rad pos: 27.5,1.5 @@ -129984,7 +130397,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19709 + - uid: 19780 components: - rot: 3.141592653589793 rad pos: 7.5,-26.5 @@ -129992,28 +130405,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19710 + - uid: 19781 components: - pos: -8.5,-0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19711 + - uid: 19782 components: - pos: 31.5,-41.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19712 + - uid: 19783 components: - pos: 31.5,16.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19713 + - uid: 19784 components: - rot: 3.141592653589793 rad pos: -5.5,6.5 @@ -130021,7 +130434,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19714 + - uid: 19785 components: - rot: -1.5707963267948966 rad pos: -8.5,-39.5 @@ -130029,7 +130442,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19715 + - uid: 19786 components: - rot: 3.141592653589793 rad pos: 31.5,11.5 @@ -130037,7 +130450,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19716 + - uid: 19787 components: - rot: 1.5707963267948966 rad pos: 37.5,8.5 @@ -130045,7 +130458,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19717 + - uid: 19788 components: - rot: 1.5707963267948966 rad pos: 37.5,5.5 @@ -130053,7 +130466,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19718 + - uid: 19789 components: - rot: 3.141592653589793 rad pos: 28.5,11.5 @@ -130061,14 +130474,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19719 + - uid: 19790 components: - pos: 38.5,12.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19720 + - uid: 19791 components: - rot: 3.141592653589793 rad pos: -4.5,-43.5 @@ -130076,7 +130489,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19721 + - uid: 19792 components: - rot: 1.5707963267948966 rad pos: 16.5,12.5 @@ -130084,7 +130497,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19722 + - uid: 19793 components: - rot: 3.141592653589793 rad pos: 34.5,11.5 @@ -130092,7 +130505,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19723 + - uid: 19794 components: - rot: -1.5707963267948966 rad pos: 26.5,7.5 @@ -130100,7 +130513,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19724 + - uid: 19795 components: - rot: -1.5707963267948966 rad pos: 8.5,19.5 @@ -130108,7 +130521,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19725 + - uid: 19796 components: - rot: -1.5707963267948966 rad pos: 22.5,-18.5 @@ -130116,7 +130529,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19726 + - uid: 19797 components: - rot: -1.5707963267948966 rad pos: 29.5,-29.5 @@ -130124,14 +130537,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19727 + - uid: 19798 components: - pos: 23.5,-27.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19728 + - uid: 19799 components: - rot: -1.5707963267948966 rad pos: -8.5,-5.5 @@ -130139,7 +130552,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19729 + - uid: 19800 components: - rot: 3.141592653589793 rad pos: -2.5,-65.5 @@ -130147,7 +130560,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19730 + - uid: 19801 components: - rot: 3.141592653589793 rad pos: -8.5,-65.5 @@ -130155,7 +130568,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19731 + - uid: 19802 components: - rot: 3.141592653589793 rad pos: -15.5,-65.5 @@ -130163,7 +130576,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19732 + - uid: 19803 components: - rot: 3.141592653589793 rad pos: -5.5,-61.5 @@ -130171,7 +130584,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19733 + - uid: 19804 components: - rot: 3.141592653589793 rad pos: -8.5,-54.5 @@ -130179,7 +130592,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19734 + - uid: 19805 components: - rot: 3.141592653589793 rad pos: 3.5,-45.5 @@ -130187,7 +130600,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19735 + - uid: 19806 components: - rot: 3.141592653589793 rad pos: -8.5,-47.5 @@ -130195,7 +130608,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19736 + - uid: 19807 components: - rot: -1.5707963267948966 rad pos: 9.5,-61.5 @@ -130203,7 +130616,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19737 + - uid: 19808 components: - rot: 3.141592653589793 rad pos: -12.5,-47.5 @@ -130211,7 +130624,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19738 + - uid: 19809 components: - rot: 3.141592653589793 rad pos: -20.5,-85.5 @@ -130219,7 +130632,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19739 + - uid: 19810 components: - rot: -1.5707963267948966 rad pos: -24.5,-77.5 @@ -130227,7 +130640,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19740 + - uid: 19811 components: - rot: 1.5707963267948966 rad pos: -28.5,-77.5 @@ -130235,21 +130648,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19741 + - uid: 19812 components: - pos: 17.5,0.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19742 + - uid: 19813 components: - pos: 33.5,2.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19743 + - uid: 19814 components: - rot: -1.5707963267948966 rad pos: 1.5,11.5 @@ -130257,7 +130670,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19744 + - uid: 19815 components: - rot: -1.5707963267948966 rad pos: 9.5,0.5 @@ -130265,7 +130678,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19745 + - uid: 19816 components: - rot: 1.5707963267948966 rad pos: -23.5,-89.5 @@ -130273,7 +130686,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19746 + - uid: 19817 components: - rot: 3.141592653589793 rad pos: -21.5,-90.5 @@ -130281,14 +130694,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19747 + - uid: 19818 components: - pos: 33.5,-14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19748 + - uid: 19819 components: - rot: 3.141592653589793 rad pos: 10.5,-4.5 @@ -130296,21 +130709,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19749 + - uid: 19820 components: - pos: 25.5,22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19750 + - uid: 19821 components: - pos: 16.5,22.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19751 + - uid: 19822 components: - rot: -1.5707963267948966 rad pos: 16.5,-23.5 @@ -130318,7 +130731,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19752 + - uid: 19823 components: - rot: 1.5707963267948966 rad pos: -4.5,-11.5 @@ -130326,7 +130739,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19753 + - uid: 19824 components: - rot: -1.5707963267948966 rad pos: 22.5,12.5 @@ -130334,7 +130747,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19754 + - uid: 19825 components: - rot: 3.141592653589793 rad pos: 46.5,-30.5 @@ -130342,7 +130755,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19755 + - uid: 19826 components: - rot: -1.5707963267948966 rad pos: 45.5,-24.5 @@ -130350,14 +130763,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19756 + - uid: 19827 components: - pos: -20.5,33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19757 + - uid: 19828 components: - rot: -1.5707963267948966 rad pos: 3.5,1.5 @@ -130365,14 +130778,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19758 + - uid: 19829 components: - pos: 21.5,17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19759 + - uid: 19830 components: - rot: 1.5707963267948966 rad pos: 0.5,6.5 @@ -130380,7 +130793,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19760 + - uid: 19831 components: - rot: 1.5707963267948966 rad pos: -28.5,-79.5 @@ -130388,7 +130801,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19761 + - uid: 19832 components: - rot: 1.5707963267948966 rad pos: 20.5,-14.5 @@ -130396,14 +130809,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19762 + - uid: 19833 components: - pos: 12.5,17.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19763 + - uid: 19834 components: - rot: 1.5707963267948966 rad pos: 23.5,-24.5 @@ -130411,7 +130824,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19764 + - uid: 19835 components: - rot: 1.5707963267948966 rad pos: 6.5,14.5 @@ -130419,7 +130832,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19765 + - uid: 19836 components: - rot: -1.5707963267948966 rad pos: 42.5,-25.5 @@ -130427,7 +130840,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19766 + - uid: 19837 components: - rot: -1.5707963267948966 rad pos: -19.5,-75.5 @@ -130435,7 +130848,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19767 + - uid: 19838 components: - rot: -1.5707963267948966 rad pos: -19.5,-70.5 @@ -130443,7 +130856,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19768 + - uid: 19839 components: - rot: -1.5707963267948966 rad pos: -19.5,-66.5 @@ -130451,7 +130864,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19769 + - uid: 19840 components: - rot: -1.5707963267948966 rad pos: -19.5,-63.5 @@ -130459,7 +130872,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19770 + - uid: 19841 components: - rot: 3.141592653589793 rad pos: 9.5,-46.5 @@ -130467,7 +130880,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19771 + - uid: 19842 components: - rot: 1.5707963267948966 rad pos: 35.5,-31.5 @@ -130475,7 +130888,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19772 + - uid: 19843 components: - rot: -1.5707963267948966 rad pos: 9.5,10.5 @@ -130483,7 +130896,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19773 + - uid: 19844 components: - rot: 1.5707963267948966 rad pos: -14.5,-37.5 @@ -130491,14 +130904,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19774 + - uid: 19845 components: - pos: -9.5,-32.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19775 + - uid: 19846 components: - rot: 1.5707963267948966 rad pos: 0.5,19.5 @@ -130506,14 +130919,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19776 + - uid: 19847 components: - pos: -0.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19777 + - uid: 19848 components: - rot: 3.141592653589793 rad pos: 20.5,-47.5 @@ -130521,14 +130934,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19778 + - uid: 19849 components: - pos: 28.5,28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19779 + - uid: 19850 components: - rot: 3.141592653589793 rad pos: 44.5,14.5 @@ -130536,14 +130949,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19780 + - uid: 19851 components: - pos: 47.5,16.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19781 + - uid: 19852 components: - rot: -1.5707963267948966 rad pos: 52.5,12.5 @@ -130551,42 +130964,42 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19782 + - uid: 19853 components: - pos: 46.5,23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19783 + - uid: 19854 components: - pos: 49.5,23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19784 + - uid: 19855 components: - pos: 52.5,23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19785 + - uid: 19856 components: - pos: 55.5,23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19786 + - uid: 19857 components: - pos: 58.5,23.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19787 + - uid: 19858 components: - rot: -1.5707963267948966 rad pos: 61.5,19.5 @@ -130594,7 +131007,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19788 + - uid: 19859 components: - rot: -1.5707963267948966 rad pos: 61.5,16.5 @@ -130602,7 +131015,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19789 + - uid: 19860 components: - rot: 1.5707963267948966 rad pos: 57.5,12.5 @@ -130610,7 +131023,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19790 + - uid: 19861 components: - rot: 3.141592653589793 rad pos: 40.5,19.5 @@ -130618,7 +131031,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19791 + - uid: 19862 components: - rot: 1.5707963267948966 rad pos: 34.5,20.5 @@ -130626,7 +131039,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19792 + - uid: 19863 components: - rot: -1.5707963267948966 rad pos: 56.5,1.5 @@ -130634,7 +131047,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19793 + - uid: 19864 components: - rot: 1.5707963267948966 rad pos: 41.5,-1.5 @@ -130642,7 +131055,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19794 + - uid: 19865 components: - rot: 1.5707963267948966 rad pos: 36.5,-2.5 @@ -130650,7 +131063,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19795 + - uid: 19866 components: - rot: -1.5707963267948966 rad pos: 29.5,22.5 @@ -130658,7 +131071,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19796 + - uid: 19867 components: - rot: 3.141592653589793 rad pos: 38.5,0.5 @@ -130666,7 +131079,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19797 + - uid: 19868 components: - rot: -1.5707963267948966 rad pos: 46.5,-2.5 @@ -130674,7 +131087,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19798 + - uid: 19869 components: - rot: 1.5707963267948966 rad pos: 41.5,9.5 @@ -130682,7 +131095,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19799 + - uid: 19870 components: - rot: -1.5707963267948966 rad pos: 57.5,-12.5 @@ -130690,7 +131103,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19800 + - uid: 19871 components: - rot: 3.141592653589793 rad pos: 73.5,-28.5 @@ -130698,14 +131111,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19801 + - uid: 19872 components: - pos: 43.5,-37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19802 + - uid: 19873 components: - rot: -1.5707963267948966 rad pos: 50.5,-43.5 @@ -130713,28 +131126,28 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19803 + - uid: 19874 components: - pos: 55.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19804 + - uid: 19875 components: - pos: 45.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19805 + - uid: 19876 components: - pos: 56.5,-44.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19806 + - uid: 19877 components: - rot: 3.141592653589793 rad pos: 63.5,-47.5 @@ -130742,7 +131155,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19807 + - uid: 19878 components: - rot: 1.5707963267948966 rad pos: 62.5,-26.5 @@ -130750,14 +131163,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19808 + - uid: 19879 components: - pos: 63.5,-2.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19809 + - uid: 19880 components: - rot: 3.141592653589793 rad pos: 64.5,-52.5 @@ -130765,7 +131178,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19810 + - uid: 19881 components: - rot: 3.141592653589793 rad pos: 42.5,-46.5 @@ -130773,7 +131186,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19811 + - uid: 19882 components: - rot: -1.5707963267948966 rad pos: 50.5,-54.5 @@ -130781,7 +131194,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19812 + - uid: 19883 components: - rot: 1.5707963267948966 rad pos: 48.5,-52.5 @@ -130789,7 +131202,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19813 + - uid: 19884 components: - rot: 3.141592653589793 rad pos: 70.5,-49.5 @@ -130797,7 +131210,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19814 + - uid: 19885 components: - rot: 1.5707963267948966 rad pos: 31.5,-52.5 @@ -130805,7 +131218,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19815 + - uid: 19886 components: - rot: -1.5707963267948966 rad pos: 33.5,-56.5 @@ -130813,7 +131226,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19816 + - uid: 19887 components: - rot: 1.5707963267948966 rad pos: 33.5,-48.5 @@ -130821,21 +131234,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19817 + - uid: 19888 components: - pos: 34.5,-45.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19818 + - uid: 19889 components: - pos: 28.5,-48.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19819 + - uid: 19890 components: - rot: 3.141592653589793 rad pos: -13.5,6.5 @@ -130843,7 +131256,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19820 + - uid: 19891 components: - rot: 3.141592653589793 rad pos: -19.5,4.5 @@ -130851,14 +131264,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19821 + - uid: 19892 components: - pos: -24.5,-9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19822 + - uid: 19893 components: - rot: 3.141592653589793 rad pos: -28.5,-11.5 @@ -130866,7 +131279,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19823 + - uid: 19894 components: - rot: 1.5707963267948966 rad pos: -19.5,-19.5 @@ -130874,7 +131287,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19824 + - uid: 19895 components: - rot: 3.141592653589793 rad pos: -23.5,-22.5 @@ -130882,7 +131295,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19825 + - uid: 19896 components: - rot: -1.5707963267948966 rad pos: 54.5,-61.5 @@ -130890,20 +131303,20 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19826 + - uid: 19897 components: - rot: 1.5707963267948966 rad pos: 50.5,-60.5 parent: 2 type: Transform - - uid: 19827 + - uid: 19898 components: - pos: 40.5,-55.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19828 + - uid: 19899 components: - rot: 1.5707963267948966 rad pos: 39.5,-65.5 @@ -130911,7 +131324,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19829 + - uid: 19900 components: - rot: -1.5707963267948966 rad pos: -17.5,-43.5 @@ -130919,7 +131332,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19830 + - uid: 19901 components: - rot: 1.5707963267948966 rad pos: -19.5,-31.5 @@ -130927,7 +131340,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19831 + - uid: 19902 components: - rot: 1.5707963267948966 rad pos: -19.5,-46.5 @@ -130935,7 +131348,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19832 + - uid: 19903 components: - rot: -1.5707963267948966 rad pos: 30.5,-85.5 @@ -130943,7 +131356,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19833 + - uid: 19904 components: - rot: -1.5707963267948966 rad pos: 49.5,-73.5 @@ -130951,7 +131364,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19834 + - uid: 19905 components: - rot: -1.5707963267948966 rad pos: 41.5,-71.5 @@ -130959,14 +131372,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19835 + - uid: 19906 components: - pos: 3.5,-57.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19836 + - uid: 19907 components: - rot: 3.141592653589793 rad pos: -29.5,-17.5 @@ -130974,7 +131387,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19837 + - uid: 19908 components: - rot: -1.5707963267948966 rad pos: -31.5,-25.5 @@ -130982,7 +131395,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19838 + - uid: 19909 components: - rot: 1.5707963267948966 rad pos: -34.5,-17.5 @@ -130990,14 +131403,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19839 + - uid: 19910 components: - pos: -35.5,-9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19840 + - uid: 19911 components: - rot: -1.5707963267948966 rad pos: -41.5,-15.5 @@ -131005,14 +131418,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19841 + - uid: 19912 components: - pos: -44.5,-9.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19842 + - uid: 19913 components: - rot: 3.141592653589793 rad pos: -47.5,-22.5 @@ -131020,7 +131433,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19843 + - uid: 19914 components: - rot: 3.141592653589793 rad pos: -50.5,-22.5 @@ -131028,7 +131441,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19844 + - uid: 19915 components: - rot: 1.5707963267948966 rad pos: -53.5,-16.5 @@ -131036,14 +131449,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19845 + - uid: 19916 components: - pos: -47.5,-5.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19846 + - uid: 19917 components: - rot: 3.141592653589793 rad pos: -56.5,-24.5 @@ -131051,7 +131464,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19847 + - uid: 19918 components: - rot: -1.5707963267948966 rad pos: -67.5,-27.5 @@ -131059,7 +131472,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19848 + - uid: 19919 components: - rot: 3.141592653589793 rad pos: -68.5,-31.5 @@ -131067,7 +131480,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19849 + - uid: 19920 components: - rot: -1.5707963267948966 rad pos: -31.5,-37.5 @@ -131075,7 +131488,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19850 + - uid: 19921 components: - rot: 3.141592653589793 rad pos: -33.5,-34.5 @@ -131083,7 +131496,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19851 + - uid: 19922 components: - rot: 1.5707963267948966 rad pos: -38.5,-33.5 @@ -131091,7 +131504,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19852 + - uid: 19923 components: - rot: -1.5707963267948966 rad pos: -24.5,-33.5 @@ -131099,18 +131512,18 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19853 + - uid: 19924 components: - rot: 1.5707963267948966 rad pos: -43.5,-34.5 parent: 2 type: Transform - ShutdownSubscribers: - - 97 + - 98 type: DeviceNetwork - color: '#990000FF' type: AtmosPipeColor - - uid: 19854 + - uid: 19925 components: - rot: 3.141592653589793 rad pos: -24.5,-58.5 @@ -131118,7 +131531,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19855 + - uid: 19926 components: - rot: 3.141592653589793 rad pos: -27.5,-70.5 @@ -131126,7 +131539,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19856 + - uid: 19927 components: - rot: -1.5707963267948966 rad pos: -18.5,-57.5 @@ -131134,7 +131547,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19857 + - uid: 19928 components: - rot: 3.141592653589793 rad pos: -42.5,-72.5 @@ -131142,7 +131555,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19858 + - uid: 19929 components: - rot: -1.5707963267948966 rad pos: -19.5,16.5 @@ -131150,7 +131563,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19859 + - uid: 19930 components: - rot: 3.141592653589793 rad pos: -23.5,19.5 @@ -131158,14 +131571,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19860 + - uid: 19931 components: - pos: -28.5,21.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19861 + - uid: 19932 components: - rot: 3.141592653589793 rad pos: -33.5,19.5 @@ -131173,7 +131586,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19862 + - uid: 19933 components: - rot: 1.5707963267948966 rad pos: -42.5,20.5 @@ -131181,14 +131594,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19863 + - uid: 19934 components: - pos: -33.5,28.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19864 + - uid: 19935 components: - rot: -1.5707963267948966 rad pos: -37.5,29.5 @@ -131196,7 +131609,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19865 + - uid: 19936 components: - rot: 1.5707963267948966 rad pos: -25.5,13.5 @@ -131204,7 +131617,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19866 + - uid: 19937 components: - rot: 3.141592653589793 rad pos: -29.5,-3.5 @@ -131212,7 +131625,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19867 + - uid: 19938 components: - rot: 3.141592653589793 rad pos: -39.5,-0.5 @@ -131220,7 +131633,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19868 + - uid: 19939 components: - rot: -1.5707963267948966 rad pos: -37.5,3.5 @@ -131228,7 +131641,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19869 + - uid: 19940 components: - rot: 1.5707963267948966 rad pos: -39.5,8.5 @@ -131236,14 +131649,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19870 + - uid: 19941 components: - pos: -30.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19871 + - uid: 19942 components: - rot: 3.141592653589793 rad pos: -30.5,9.5 @@ -131251,7 +131664,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19872 + - uid: 19943 components: - rot: 3.141592653589793 rad pos: -52.5,7.5 @@ -131259,21 +131672,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19873 + - uid: 19944 components: - pos: -51.5,11.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19874 + - uid: 19945 components: - pos: -52.5,14.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19875 + - uid: 19946 components: - rot: -1.5707963267948966 rad pos: -42.5,10.5 @@ -131281,7 +131694,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19876 + - uid: 19947 components: - rot: 1.5707963267948966 rad pos: -48.5,3.5 @@ -131289,7 +131702,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19877 + - uid: 19948 components: - rot: 3.141592653589793 rad pos: -47.5,-0.5 @@ -131297,14 +131710,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19878 + - uid: 19949 components: - pos: -46.5,15.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19879 + - uid: 19950 components: - rot: 1.5707963267948966 rad pos: 21.5,-54.5 @@ -131312,7 +131725,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19880 + - uid: 19951 components: - rot: 3.141592653589793 rad pos: -54.5,-77.5 @@ -131320,7 +131733,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19881 + - uid: 19952 components: - rot: 3.141592653589793 rad pos: -7.5,-26.5 @@ -131328,14 +131741,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19882 + - uid: 19953 components: - pos: 17.5,-42.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19883 + - uid: 19954 components: - rot: 1.5707963267948966 rad pos: -25.5,-2.5 @@ -131343,7 +131756,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19884 + - uid: 19955 components: - rot: 1.5707963267948966 rad pos: -35.5,-42.5 @@ -131351,7 +131764,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19885 + - uid: 19956 components: - rot: 1.5707963267948966 rad pos: 39.5,45.5 @@ -131359,7 +131772,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19886 + - uid: 19957 components: - rot: 1.5707963267948966 rad pos: 51.5,43.5 @@ -131367,14 +131780,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19887 + - uid: 19958 components: - pos: 52.5,56.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19888 + - uid: 19959 components: - rot: -1.5707963267948966 rad pos: -12.5,34.5 @@ -131382,7 +131795,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19889 + - uid: 19960 components: - rot: 1.5707963267948966 rad pos: -24.5,30.5 @@ -131390,7 +131803,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19890 + - uid: 19961 components: - rot: -1.5707963267948966 rad pos: -14.5,43.5 @@ -131398,7 +131811,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19891 + - uid: 19962 components: - rot: 1.5707963267948966 rad pos: -20.5,43.5 @@ -131406,12 +131819,12 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19892 + - uid: 19963 components: - pos: 70.5,36.5 parent: 2 type: Transform - - uid: 19893 + - uid: 19964 components: - rot: -1.5707963267948966 rad pos: -11.5,39.5 @@ -131419,7 +131832,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19894 + - uid: 19965 components: - rot: -1.5707963267948966 rad pos: 1.5,69.5 @@ -131427,7 +131840,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19895 + - uid: 19966 components: - rot: 1.5707963267948966 rad pos: -4.5,69.5 @@ -131435,7 +131848,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19896 + - uid: 19967 components: - rot: -1.5707963267948966 rad pos: -1.5,62.5 @@ -131443,14 +131856,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19897 + - uid: 19968 components: - pos: -1.5,68.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19898 + - uid: 19969 components: - rot: -1.5707963267948966 rad pos: 0.5,48.5 @@ -131458,7 +131871,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19899 + - uid: 19970 components: - rot: 1.5707963267948966 rad pos: -22.5,58.5 @@ -131466,39 +131879,39 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19900 + - uid: 19971 components: - pos: -17.5,63.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19901 + - uid: 19972 components: - pos: -21.5,73.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19902 + - uid: 19973 components: - pos: -13.5,73.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19903 + - uid: 19974 components: - rot: -1.5707963267948966 rad pos: -12.5,57.5 parent: 2 type: Transform - ShutdownSubscribers: - - 73 + - 74 type: DeviceNetwork - color: '#990000FF' type: AtmosPipeColor - - uid: 19904 + - uid: 19975 components: - rot: -1.5707963267948966 rad pos: 0.5,56.5 @@ -131506,7 +131919,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19905 + - uid: 19976 components: - rot: -1.5707963267948966 rad pos: 30.5,45.5 @@ -131514,7 +131927,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19906 + - uid: 19977 components: - rot: 1.5707963267948966 rad pos: 24.5,45.5 @@ -131522,21 +131935,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19907 + - uid: 19978 components: - pos: -7.5,-92.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19908 + - uid: 19979 components: - pos: -21.5,-97.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19909 + - uid: 19980 components: - rot: -1.5707963267948966 rad pos: -6.5,-98.5 @@ -131544,14 +131957,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19910 + - uid: 19981 components: - pos: -6.5,-84.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19911 + - uid: 19982 components: - rot: 1.5707963267948966 rad pos: -34.5,-96.5 @@ -131559,7 +131972,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19912 + - uid: 19983 components: - rot: 3.141592653589793 rad pos: 65.5,-35.5 @@ -131567,14 +131980,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19913 + - uid: 19984 components: - pos: 67.5,-33.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19914 + - uid: 19985 components: - rot: 3.141592653589793 rad pos: 73.5,-35.5 @@ -131582,7 +131995,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19915 + - uid: 19986 components: - rot: -1.5707963267948966 rad pos: 75.5,-41.5 @@ -131590,7 +132003,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19916 + - uid: 19987 components: - rot: -1.5707963267948966 rad pos: 72.5,-46.5 @@ -131598,14 +132011,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19917 + - uid: 19988 components: - pos: 66.5,-38.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19918 + - uid: 19989 components: - rot: 3.141592653589793 rad pos: 5.5,-30.5 @@ -131613,7 +132026,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19919 + - uid: 19990 components: - rot: 1.5707963267948966 rad pos: 59.5,-34.5 @@ -131621,13 +132034,13 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19920 + - uid: 19991 components: - rot: 3.141592653589793 rad pos: -54.5,-63.5 parent: 2 type: Transform - - uid: 19921 + - uid: 19992 components: - rot: -1.5707963267948966 rad pos: -15.5,25.5 @@ -131635,7 +132048,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19922 + - uid: 19993 components: - rot: 1.5707963267948966 rad pos: -8.5,-12.5 @@ -131643,7 +132056,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19923 + - uid: 19994 components: - rot: -1.5707963267948966 rad pos: -7.5,-22.5 @@ -131651,14 +132064,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19924 + - uid: 19995 components: - pos: -10.5,-18.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19925 + - uid: 19996 components: - rot: 3.141592653589793 rad pos: -30.5,-70.5 @@ -131666,7 +132079,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19926 + - uid: 19997 components: - rot: 3.141592653589793 rad pos: -28.5,-74.5 @@ -131674,7 +132087,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19927 + - uid: 19998 components: - rot: 1.5707963267948966 rad pos: 61.5,-39.5 @@ -131682,7 +132095,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19928 + - uid: 19999 components: - rot: 1.5707963267948966 rad pos: 19.5,-83.5 @@ -131690,14 +132103,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19929 + - uid: 20000 components: - pos: 24.5,-72.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19930 + - uid: 20001 components: - rot: 3.141592653589793 rad pos: 48.5,-85.5 @@ -131705,7 +132118,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19931 + - uid: 20002 components: - rot: 1.5707963267948966 rad pos: -16.5,66.5 @@ -131713,7 +132126,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19932 + - uid: 20003 components: - rot: 1.5707963267948966 rad pos: 7.5,-22.5 @@ -131721,14 +132134,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19933 + - uid: 20004 components: - pos: 45.5,7.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19934 + - uid: 20005 components: - rot: 3.141592653589793 rad pos: -44.5,30.5 @@ -131736,14 +132149,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19935 + - uid: 20006 components: - pos: -46.5,43.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19936 + - uid: 20007 components: - rot: -1.5707963267948966 rad pos: 67.5,-31.5 @@ -131751,61 +132164,68 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 19937 + - uid: 20008 components: - rot: 1.5707963267948966 rad pos: -4.5,16.5 parent: 2 type: Transform - ShutdownSubscribers: - - 94 + - 95 type: DeviceNetwork - color: '#990000FF' type: AtmosPipeColor - - uid: 19938 + - uid: 20009 components: - rot: 1.5707963267948966 rad pos: -75.5,-41.5 parent: 2 type: Transform - ShutdownSubscribers: - - 96 + - 97 type: DeviceNetwork - - uid: 19939 + - uid: 20010 components: - rot: 3.141592653589793 rad pos: -1.5,-3.5 parent: 2 type: Transform - ShutdownSubscribers: - - 99 + - 100 type: DeviceNetwork - color: '#990000FF' type: AtmosPipeColor - - uid: 19940 + - uid: 20011 components: - pos: -1.5,-22.5 parent: 2 type: Transform - ShutdownSubscribers: - - 100 + - 101 type: DeviceNetwork - color: '#990000FF' type: AtmosPipeColor - - uid: 19941 + - uid: 20012 components: - rot: 3.141592653589793 rad pos: 28.5,-38.5 parent: 2 type: Transform - ShutdownSubscribers: - - 78 + - 79 type: DeviceNetwork - color: '#990000FF' type: AtmosPipeColor + - uid: 20013 + components: + - pos: 40.5,61.5 + parent: 2 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor - proto: GasVolumePump entities: - - uid: 19942 + - uid: 20014 components: - rot: -1.5707963267948966 rad pos: -39.5,-57.5 @@ -131815,5235 +132235,5670 @@ entities: type: AtmosPipeColor - proto: Gauze1 entities: - - uid: 19943 + - uid: 20015 components: - pos: -6.3074856,-49.39305 parent: 2 type: Transform - proto: GeneratorBasic15kW entities: - - uid: 19944 + - uid: 20016 components: - - pos: -58.5,-88.5 + - pos: -58.5,-87.5 parent: 2 type: Transform - proto: Girder entities: - - uid: 19945 + - uid: 20017 components: - pos: -36.5,-68.5 parent: 2 type: Transform - - uid: 19946 + - uid: 20018 components: - pos: 20.5,-54.5 parent: 2 type: Transform - - uid: 19947 + - uid: 20019 components: - pos: -22.5,-64.5 parent: 2 type: Transform - - uid: 19948 + - uid: 20020 components: - pos: -23.5,-42.5 parent: 2 type: Transform - - uid: 19949 + - uid: 20021 components: - pos: -28.5,-39.5 parent: 2 type: Transform - - uid: 19950 + - uid: 20022 components: - pos: -16.5,13.5 parent: 2 type: Transform - proto: GoldOre1 entities: - - uid: 19951 + - uid: 20023 components: - rot: 3.141592653589793 rad pos: 19.789879,45.273663 parent: 2 type: Transform - - uid: 19952 + - uid: 20024 components: - pos: 79.30878,-64.25522 parent: 2 type: Transform - proto: GrassBattlemap entities: - - uid: 19953 + - uid: 20025 components: - pos: 10.688803,-6.590752 parent: 2 type: Transform - proto: GravityGenerator entities: - - uid: 19954 + - uid: 20026 components: - pos: -19.5,2.5 parent: 2 type: Transform - proto: GrenadeFlashBang entities: - - uid: 19955 + - uid: 20027 components: - pos: 52.279568,11.553763 parent: 2 type: Transform - proto: Grille entities: - - uid: 626 + - uid: 20028 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-91.5 + parent: 2 + type: Transform + - uid: 20029 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-90.5 + parent: 2 + type: Transform + - uid: 20030 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-91.5 + parent: 2 + type: Transform + - uid: 20031 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-91.5 + parent: 2 + type: Transform + - uid: 20032 components: - rot: -1.5707963267948966 rad pos: -6.5,-12.5 parent: 2 type: Transform - - uid: 19956 + - uid: 20033 components: - pos: -51.5,-21.5 parent: 2 type: Transform - - uid: 19957 + - uid: 20034 components: - pos: 9.5,29.5 parent: 2 type: Transform - - uid: 19958 + - uid: 20035 components: - pos: -62.5,-35.5 parent: 2 type: Transform - - uid: 19959 + - uid: 20036 components: - pos: -44.5,-37.5 parent: 2 type: Transform - - uid: 19960 + - uid: 20037 components: - rot: -1.5707963267948966 rad pos: -77.5,-43.5 parent: 2 type: Transform - - uid: 19961 + - uid: 20038 components: - rot: 3.141592653589793 rad pos: -71.5,-27.5 parent: 2 type: Transform - - uid: 19962 + - uid: 20039 components: - rot: -1.5707963267948966 rad pos: -74.5,-42.5 parent: 2 type: Transform - - uid: 19963 + - uid: 20040 components: - pos: -76.5,-32.5 parent: 2 type: Transform - - uid: 19964 + - uid: 20041 components: - rot: 1.5707963267948966 rad pos: -64.5,-42.5 parent: 2 type: Transform - - uid: 19965 + - uid: 20042 components: - rot: 1.5707963267948966 rad pos: -64.5,-41.5 parent: 2 type: Transform - - uid: 19966 + - uid: 20043 components: - rot: 1.5707963267948966 rad pos: -64.5,-40.5 parent: 2 type: Transform - - uid: 19967 + - uid: 20044 components: - rot: 1.5707963267948966 rad pos: -64.5,-39.5 parent: 2 type: Transform - - uid: 19968 + - uid: 20045 components: - rot: 1.5707963267948966 rad pos: -74.5,-35.5 parent: 2 type: Transform - - uid: 19969 + - uid: 20046 components: - rot: 1.5707963267948966 rad pos: -74.5,-34.5 parent: 2 type: Transform - - uid: 19970 + - uid: 20047 components: - rot: -1.5707963267948966 rad pos: -75.5,-43.5 parent: 2 type: Transform - - uid: 19971 + - uid: 20048 components: - rot: -1.5707963267948966 rad pos: -77.5,-39.5 parent: 2 type: Transform - - uid: 19972 + - uid: 20049 components: - rot: -1.5707963267948966 rad pos: -75.5,-39.5 parent: 2 type: Transform - - uid: 19973 + - uid: 20050 components: - rot: -1.5707963267948966 rad pos: -76.5,-43.5 parent: 2 type: Transform - - uid: 19974 + - uid: 20051 components: - pos: -5.5,20.5 parent: 2 type: Transform - - uid: 19975 + - uid: 20052 components: - rot: 1.5707963267948966 rad pos: -7.5,13.5 parent: 2 type: Transform - - uid: 19976 + - uid: 20053 components: - pos: -4.5,20.5 parent: 2 type: Transform - - uid: 19977 + - uid: 20054 components: - rot: 3.141592653589793 rad pos: 5.5,18.5 parent: 2 type: Transform - - uid: 19978 + - uid: 20055 components: - rot: -1.5707963267948966 rad pos: -46.5,45.5 parent: 2 type: Transform - - uid: 19979 + - uid: 20056 components: - rot: -1.5707963267948966 rad pos: -45.5,45.5 parent: 2 type: Transform - - uid: 19980 + - uid: 20057 components: - rot: -1.5707963267948966 rad pos: -47.5,45.5 parent: 2 type: Transform - - uid: 19981 + - uid: 20058 components: - pos: 32.5,-9.5 parent: 2 type: Transform - - uid: 19982 + - uid: 20059 components: - rot: 3.141592653589793 rad pos: 28.5,-63.5 parent: 2 type: Transform - - uid: 19983 + - uid: 20060 components: - pos: 19.5,-0.5 parent: 2 type: Transform - - uid: 19984 - components: - - pos: -24.5,-91.5 - parent: 2 - type: Transform - - uid: 19985 + - uid: 20061 components: - pos: -18.5,-88.5 parent: 2 type: Transform - - uid: 19986 + - uid: 20062 components: - pos: -18.5,-58.5 parent: 2 type: Transform - - uid: 19987 + - uid: 20063 components: - pos: 31.5,-15.5 parent: 2 type: Transform - - uid: 19988 + - uid: 20064 components: - pos: -9.5,-55.5 parent: 2 type: Transform - - uid: 19989 + - uid: 20065 components: - pos: -12.5,-55.5 parent: 2 type: Transform - - uid: 19990 + - uid: 20066 components: - pos: -4.5,-56.5 parent: 2 type: Transform - - uid: 19991 + - uid: 20067 components: - pos: 22.5,-20.5 parent: 2 type: Transform - - uid: 19992 + - uid: 20068 components: - pos: 21.5,5.5 parent: 2 type: Transform - - uid: 19993 + - uid: 20069 components: - pos: 23.5,5.5 parent: 2 type: Transform - - uid: 19994 + - uid: 20070 components: - pos: 25.5,5.5 parent: 2 type: Transform - - uid: 19995 + - uid: 20071 components: - pos: 3.5,-39.5 parent: 2 type: Transform - - uid: 19996 + - uid: 20072 components: - pos: -7.5,-56.5 parent: 2 type: Transform - - uid: 19997 + - uid: 20073 components: - pos: 1.5,-47.5 parent: 2 type: Transform - - uid: 19998 + - uid: 20074 components: - pos: 29.5,26.5 parent: 2 type: Transform - - uid: 19999 + - uid: 20075 components: - pos: -13.5,-56.5 parent: 2 type: Transform - - uid: 20000 + - uid: 20076 components: - pos: -7.5,-57.5 parent: 2 type: Transform - - uid: 20001 + - uid: 20077 components: - pos: 7.5,-59.5 parent: 2 type: Transform - - uid: 20002 + - uid: 20078 components: - pos: -18.5,-68.5 parent: 2 type: Transform - - uid: 20003 + - uid: 20079 components: - pos: -20.5,-68.5 parent: 2 type: Transform - - uid: 20004 + - uid: 20080 components: - pos: -3.5,-44.5 parent: 2 type: Transform - - uid: 20005 + - uid: 20081 components: - pos: 12.5,-34.5 parent: 2 type: Transform - - uid: 20006 + - uid: 20082 components: - pos: -1.5,49.5 parent: 2 type: Transform - - uid: 20007 + - uid: 20083 components: - rot: 3.141592653589793 rad pos: 3.5,-44.5 parent: 2 type: Transform - - uid: 20008 + - uid: 20084 components: - pos: 7.5,18.5 parent: 2 type: Transform - - uid: 20009 + - uid: 20085 components: - rot: 1.5707963267948966 rad pos: 23.5,-46.5 parent: 2 type: Transform - - uid: 20010 + - uid: 20086 components: - pos: 2.5,-62.5 parent: 2 type: Transform - - uid: 20011 + - uid: 20087 components: - pos: 3.5,-78.5 parent: 2 type: Transform - - uid: 20012 + - uid: 20088 components: - pos: -6.5,-55.5 parent: 2 type: Transform - - uid: 20013 + - uid: 20089 components: - pos: -12.5,-58.5 parent: 2 type: Transform - - uid: 20014 + - uid: 20090 components: - rot: 1.5707963267948966 rad pos: -17.5,26.5 parent: 2 type: Transform - - uid: 20015 + - uid: 20091 components: - pos: -1.5,-35.5 parent: 2 type: Transform - - uid: 20016 + - uid: 20092 components: - pos: -28.5,-47.5 parent: 2 type: Transform - - uid: 20017 + - uid: 20093 components: - pos: 24.5,-60.5 parent: 2 type: Transform - - uid: 20018 + - uid: 20094 components: - rot: 3.141592653589793 rad pos: 22.5,30.5 parent: 2 type: Transform - - uid: 20019 + - uid: 20095 components: - pos: 21.5,-3.5 parent: 2 type: Transform - - uid: 20020 + - uid: 20096 components: - pos: 23.5,-3.5 parent: 2 type: Transform - - uid: 20021 + - uid: 20097 components: - pos: -6.5,-58.5 parent: 2 type: Transform - - uid: 20022 + - uid: 20098 components: - pos: 25.5,24.5 parent: 2 type: Transform - - uid: 20023 + - uid: 20099 components: - pos: -10.5,-57.5 parent: 2 type: Transform - - uid: 20024 + - uid: 20100 components: - pos: 29.5,9.5 parent: 2 type: Transform - - uid: 20025 + - uid: 20101 components: - rot: 3.141592653589793 rad pos: 22.5,32.5 parent: 2 type: Transform - - uid: 20026 + - uid: 20102 components: - pos: 15.5,18.5 parent: 2 type: Transform - - uid: 20027 + - uid: 20103 components: - pos: -13.5,-11.5 parent: 2 type: Transform - - uid: 20028 + - uid: 20104 components: - rot: 3.141592653589793 rad pos: 33.5,-63.5 parent: 2 type: Transform - - uid: 20029 + - uid: 20105 components: - rot: 3.141592653589793 rad pos: 22.5,-55.5 parent: 2 type: Transform - - uid: 20030 + - uid: 20106 components: - pos: -9.5,-62.5 parent: 2 type: Transform - - uid: 20031 + - uid: 20107 components: - pos: 4.5,-85.5 parent: 2 type: Transform - - uid: 20032 + - uid: 20108 components: - pos: 18.5,-38.5 parent: 2 type: Transform - - uid: 20033 + - uid: 20109 components: - pos: 17.5,-36.5 parent: 2 type: Transform - - uid: 20034 + - uid: 20110 components: - pos: 17.5,-34.5 parent: 2 type: Transform - - uid: 20035 + - uid: 20111 components: - pos: -27.5,-89.5 parent: 2 type: Transform - - uid: 20036 + - uid: 20112 components: - pos: -1.5,-33.5 parent: 2 type: Transform - - uid: 20037 + - uid: 20113 components: - pos: 4.5,-84.5 parent: 2 type: Transform - - uid: 20038 + - uid: 20114 components: - pos: -14.5,-77.5 parent: 2 type: Transform - - uid: 20039 - components: - - pos: -21.5,-91.5 - parent: 2 - type: Transform - - uid: 20040 + - uid: 20115 components: - pos: 4.5,-88.5 parent: 2 type: Transform - - uid: 20041 - components: - - pos: -25.5,-91.5 - parent: 2 - type: Transform - - uid: 20042 + - uid: 20116 components: - pos: 4.5,-81.5 parent: 2 type: Transform - - uid: 20043 + - uid: 20117 components: - pos: -18.5,-89.5 parent: 2 type: Transform - - uid: 20044 + - uid: 20118 components: - pos: 4.5,-87.5 parent: 2 type: Transform - - uid: 20045 + - uid: 20119 components: - pos: 19.5,0.5 parent: 2 type: Transform - - uid: 20046 + - uid: 20120 components: - pos: 19.5,-38.5 parent: 2 type: Transform - - uid: 20047 + - uid: 20121 components: - pos: 23.5,-12.5 parent: 2 type: Transform - - uid: 20048 + - uid: 20122 components: - pos: 21.5,-15.5 parent: 2 type: Transform - - uid: 20049 + - uid: 20123 components: - pos: 19.5,1.5 parent: 2 type: Transform - - uid: 20050 + - uid: 20124 components: - pos: 28.5,-20.5 parent: 2 type: Transform - - uid: 20051 + - uid: 20125 components: - rot: 3.141592653589793 rad pos: 20.5,-55.5 parent: 2 type: Transform - - uid: 20052 + - uid: 20126 components: - rot: 3.141592653589793 rad pos: 21.5,-55.5 parent: 2 type: Transform - - uid: 20053 + - uid: 20127 components: - pos: 18.5,-66.5 parent: 2 type: Transform - - uid: 20054 + - uid: 20128 components: - pos: 18.5,-65.5 parent: 2 type: Transform - - uid: 20055 + - uid: 20129 components: - rot: 3.141592653589793 rad pos: 28.5,-62.5 parent: 2 type: Transform - - uid: 20056 + - uid: 20130 components: - pos: 42.5,-23.5 parent: 2 type: Transform - - uid: 20057 + - uid: 20131 components: - pos: 41.5,-23.5 parent: 2 type: Transform - - uid: 20058 + - uid: 20132 components: - rot: 3.141592653589793 rad pos: 31.5,-64.5 parent: 2 type: Transform - - uid: 20059 + - uid: 20133 components: - pos: -21.5,11.5 parent: 2 type: Transform - - uid: 20060 + - uid: 20134 components: - pos: -10.5,-11.5 parent: 2 type: Transform - - uid: 20061 + - uid: 20135 components: - pos: -12.5,-16.5 parent: 2 type: Transform - - uid: 20062 + - uid: 20136 components: - rot: -1.5707963267948966 rad pos: -26.5,-9.5 parent: 2 type: Transform - - uid: 20063 + - uid: 20137 components: - pos: 12.5,-33.5 parent: 2 type: Transform - - uid: 20064 + - uid: 20138 components: - pos: 12.5,-32.5 parent: 2 type: Transform - - uid: 20065 + - uid: 20139 components: - rot: 3.141592653589793 rad pos: 26.5,-20.5 parent: 2 type: Transform - - uid: 20066 + - uid: 20140 components: - pos: 3.5,-36.5 parent: 2 type: Transform - - uid: 20067 + - uid: 20141 components: - pos: 2.5,-39.5 parent: 2 type: Transform - - uid: 20068 + - uid: 20142 components: - rot: 3.141592653589793 rad pos: 22.5,29.5 parent: 2 type: Transform - - uid: 20069 + - uid: 20143 components: - rot: 3.141592653589793 rad pos: 22.5,31.5 parent: 2 type: Transform - - uid: 20070 + - uid: 20144 components: - rot: 3.141592653589793 rad pos: 22.5,33.5 parent: 2 type: Transform - - uid: 20071 + - uid: 20145 components: - rot: 3.141592653589793 rad pos: 22.5,37.5 parent: 2 type: Transform - - uid: 20072 + - uid: 20146 components: - pos: 5.5,-58.5 parent: 2 type: Transform - - uid: 20073 + - uid: 20147 components: - rot: -1.5707963267948966 rad pos: 43.5,5.5 parent: 2 type: Transform - - uid: 20074 + - uid: 20148 components: - pos: 4.5,-86.5 parent: 2 type: Transform - - uid: 20075 + - uid: 20149 components: - pos: 4.5,-83.5 parent: 2 type: Transform - - uid: 20076 + - uid: 20150 components: - pos: 18.5,33.5 parent: 2 type: Transform - - uid: 20077 + - uid: 20151 components: - pos: -1.5,-31.5 parent: 2 type: Transform - - uid: 20078 + - uid: 20152 components: - pos: 15.5,-68.5 parent: 2 type: Transform - - uid: 20079 + - uid: 20153 components: - pos: 42.5,-28.5 parent: 2 type: Transform - - uid: 20080 + - uid: 20154 components: - pos: 41.5,-28.5 parent: 2 type: Transform - - uid: 20081 + - uid: 20155 components: - rot: -1.5707963267948966 rad pos: -31.5,-77.5 parent: 2 type: Transform - - uid: 20082 + - uid: 20156 components: - pos: -1.5,-32.5 parent: 2 type: Transform - - uid: 20083 + - uid: 20157 components: - rot: 3.141592653589793 rad pos: 6.5,-20.5 parent: 2 type: Transform - - uid: 20084 + - uid: 20158 components: - pos: 0.5,-62.5 parent: 2 type: Transform - - uid: 20085 + - uid: 20159 components: - pos: 7.5,-61.5 parent: 2 type: Transform - - uid: 20086 + - uid: 20160 components: - pos: 26.5,-3.5 parent: 2 type: Transform - - uid: 20087 + - uid: 20161 components: - pos: -13.5,37.5 parent: 2 type: Transform - - uid: 20088 + - uid: 20162 components: - pos: -15.5,-77.5 parent: 2 type: Transform - - uid: 20089 + - uid: 20163 components: - pos: 3.5,-79.5 parent: 2 type: Transform - - uid: 20090 + - uid: 20164 components: - pos: 19.5,2.5 parent: 2 type: Transform - - uid: 20091 + - uid: 20165 components: - rot: -1.5707963267948966 rad pos: -21.5,-20.5 parent: 2 type: Transform - - uid: 20092 + - uid: 20166 components: - pos: 34.5,9.5 parent: 2 type: Transform - - uid: 20093 + - uid: 20167 components: - pos: 35.5,4.5 parent: 2 type: Transform - - uid: 20094 + - uid: 20168 components: - pos: 1.5,-56.5 parent: 2 type: Transform - - uid: 20095 + - uid: 20169 components: - pos: 1.5,-57.5 parent: 2 type: Transform - - uid: 20096 + - uid: 20170 components: - pos: -10.5,-56.5 parent: 2 type: Transform - - uid: 20097 + - uid: 20171 components: - pos: -13.5,-57.5 parent: 2 type: Transform - - uid: 20098 + - uid: 20172 components: - pos: -4.5,-44.5 parent: 2 type: Transform - - uid: 20099 + - uid: 20173 components: - pos: -5.5,-44.5 parent: 2 type: Transform - - uid: 20100 + - uid: 20174 components: - pos: 5.5,-44.5 parent: 2 type: Transform - - uid: 20101 + - uid: 20175 components: - pos: 4.5,-44.5 parent: 2 type: Transform - - uid: 20102 + - uid: 20176 components: - pos: 18.5,32.5 parent: 2 type: Transform - - uid: 20103 + - uid: 20177 components: - pos: -0.5,-62.5 parent: 2 type: Transform - - uid: 20104 + - uid: 20178 components: - pos: -8.5,-62.5 parent: 2 type: Transform - - uid: 20105 + - uid: 20179 components: - pos: 3.5,-77.5 parent: 2 type: Transform - - uid: 20106 + - uid: 20180 components: - rot: 3.141592653589793 rad pos: 33.5,-62.5 parent: 2 type: Transform - - uid: 20107 + - uid: 20181 components: - rot: 3.141592653589793 rad pos: 30.5,-64.5 parent: 2 type: Transform - - uid: 20108 + - uid: 20182 components: - pos: 9.5,14.5 parent: 2 type: Transform - - uid: 20109 + - uid: 20183 components: - rot: 3.141592653589793 rad pos: 22.5,28.5 parent: 2 type: Transform - - uid: 20110 + - uid: 20184 components: - pos: 68.5,-56.5 parent: 2 type: Transform - - uid: 20111 + - uid: 20185 components: - pos: -1.5,-57.5 parent: 2 type: Transform - - uid: 20112 + - uid: 20186 components: - pos: -1.5,-56.5 parent: 2 type: Transform - - uid: 20113 + - uid: 20187 components: - pos: 2.5,-58.5 parent: 2 type: Transform - - uid: 20114 + - uid: 20188 components: - pos: -3.5,-58.5 parent: 2 type: Transform - - uid: 20115 + - uid: 20189 components: - pos: 4.5,-62.5 parent: 2 type: Transform - - uid: 20116 + - uid: 20190 components: - pos: -0.5,-58.5 parent: 2 type: Transform - - uid: 20117 + - uid: 20191 components: - pos: 31.5,-38.5 parent: 2 type: Transform - - uid: 20118 + - uid: 20192 components: - pos: 33.5,-36.5 parent: 2 type: Transform - - uid: 20119 + - uid: 20193 components: - pos: 33.5,-34.5 parent: 2 type: Transform - - uid: 20120 + - uid: 20194 components: - pos: 26.5,5.5 parent: 2 type: Transform - - uid: 20121 + - uid: 20195 components: - pos: 9.5,13.5 parent: 2 type: Transform - - uid: 20122 + - uid: 20196 components: - pos: 17.5,18.5 parent: 2 type: Transform - - uid: 20123 + - uid: 20197 components: - rot: 3.141592653589793 rad pos: -7.5,-76.5 parent: 2 type: Transform - - uid: 20124 + - uid: 20198 components: - pos: 24.5,-59.5 parent: 2 type: Transform - - uid: 20125 + - uid: 20199 components: - pos: -29.5,45.5 parent: 2 type: Transform - - uid: 20126 + - uid: 20200 components: - pos: 24.5,-58.5 parent: 2 type: Transform - - uid: 20127 + - uid: 20201 components: - pos: -6.5,-36.5 parent: 2 type: Transform - - uid: 20128 + - uid: 20202 components: - pos: 19.5,-1.5 parent: 2 type: Transform - - uid: 20129 + - uid: 20203 components: - pos: -1.5,-34.5 parent: 2 type: Transform - - uid: 20130 + - uid: 20204 components: - pos: -27.5,-88.5 parent: 2 type: Transform - - uid: 20131 - components: - - pos: -20.5,-91.5 - parent: 2 - type: Transform - - uid: 20132 + - uid: 20205 components: - pos: 17.5,-35.5 parent: 2 type: Transform - - uid: 20133 + - uid: 20206 components: - pos: 33.5,-35.5 parent: 2 type: Transform - - uid: 20134 + - uid: 20207 components: - pos: 22.5,5.5 parent: 2 type: Transform - - uid: 20135 + - uid: 20208 components: - pos: 27.5,5.5 parent: 2 type: Transform - - uid: 20136 + - uid: 20209 components: - pos: 35.5,7.5 parent: 2 type: Transform - - uid: 20137 + - uid: 20210 components: - pos: 32.5,9.5 parent: 2 type: Transform - - uid: 20138 + - uid: 20211 components: - rot: 3.141592653589793 rad pos: 22.5,34.5 parent: 2 type: Transform - - uid: 20139 + - uid: 20212 components: - pos: -3.5,-55.5 parent: 2 type: Transform - - uid: 20140 + - uid: 20213 components: - pos: -0.5,-55.5 parent: 2 type: Transform - - uid: 20141 + - uid: 20214 components: - pos: 2.5,-55.5 parent: 2 type: Transform - - uid: 20142 + - uid: 20215 components: - pos: -20.5,-58.5 parent: 2 type: Transform - - uid: 20143 + - uid: 20216 components: - pos: -9.5,-58.5 parent: 2 type: Transform - - uid: 20144 + - uid: 20217 components: - rot: -1.5707963267948966 rad pos: -31.5,-79.5 parent: 2 type: Transform - - uid: 20145 + - uid: 20218 components: - rot: 3.141592653589793 rad pos: 37.5,-35.5 parent: 2 type: Transform - - uid: 20146 + - uid: 20219 components: - pos: 33.5,-15.5 parent: 2 type: Transform - - uid: 20147 + - uid: 20220 components: - pos: -13.5,39.5 parent: 2 type: Transform - - uid: 20148 + - uid: 20221 components: - pos: -4.5,-57.5 parent: 2 type: Transform - - uid: 20149 + - uid: 20222 components: - pos: 19.5,3.5 parent: 2 type: Transform - - uid: 20150 + - uid: 20223 components: - pos: 4.5,-82.5 parent: 2 type: Transform - - uid: 20151 + - uid: 20224 components: - pos: 32.5,-38.5 parent: 2 type: Transform - - uid: 20152 + - uid: 20225 components: - rot: 3.141592653589793 rad pos: 6.5,-19.5 parent: 2 type: Transform - - uid: 20153 + - uid: 20226 components: - pos: 23.5,-20.5 parent: 2 type: Transform - - uid: 20154 + - uid: 20227 components: - pos: 25.5,-20.5 parent: 2 type: Transform - - uid: 20155 + - uid: 20228 components: - pos: 27.5,-20.5 parent: 2 type: Transform - - uid: 20156 + - uid: 20229 components: - pos: 19.5,-15.5 parent: 2 type: Transform - - uid: 20157 + - uid: 20230 components: - pos: 23.5,-11.5 parent: 2 type: Transform - - uid: 20158 + - uid: 20231 components: - pos: 25.5,-3.5 parent: 2 type: Transform - - uid: 20159 + - uid: 20232 components: - pos: 27.5,-3.5 parent: 2 type: Transform - - uid: 20160 + - uid: 20233 components: - pos: 22.5,-3.5 parent: 2 type: Transform - - uid: 20161 + - uid: 20234 components: - rot: 3.141592653589793 rad pos: -9.5,-76.5 parent: 2 type: Transform - - uid: 20162 + - uid: 20235 components: - rot: 3.141592653589793 rad pos: 24.5,-20.5 parent: 2 type: Transform - - uid: 20163 + - uid: 20236 components: - pos: 16.5,-68.5 parent: 2 type: Transform - - uid: 20164 + - uid: 20237 components: - rot: 3.141592653589793 rad pos: 31.5,13.5 parent: 2 type: Transform - - uid: 20165 + - uid: 20238 components: - rot: 3.141592653589793 rad pos: 34.5,13.5 parent: 2 type: Transform - - uid: 20166 + - uid: 20239 components: - pos: -6.5,-37.5 parent: 2 type: Transform - - uid: 20167 + - uid: 20240 components: - pos: -6.5,-38.5 parent: 2 type: Transform - - uid: 20168 + - uid: 20241 components: - pos: -9.5,-40.5 parent: 2 type: Transform - - uid: 20169 + - uid: 20242 components: - pos: -10.5,-40.5 parent: 2 type: Transform - - uid: 20170 + - uid: 20243 components: - pos: -11.5,-40.5 parent: 2 type: Transform - - uid: 20171 + - uid: 20244 components: - rot: -1.5707963267948966 rad pos: 68.5,-4.5 parent: 2 type: Transform - - uid: 20172 + - uid: 20245 components: - pos: -12.5,-11.5 parent: 2 type: Transform - - uid: 20173 + - uid: 20246 components: - pos: -9.5,-11.5 parent: 2 type: Transform - - uid: 20174 + - uid: 20247 components: - pos: -8.5,-11.5 parent: 2 type: Transform - - uid: 20175 + - uid: 20248 components: - pos: -10.5,-16.5 parent: 2 type: Transform - - uid: 20176 + - uid: 20249 components: - rot: 3.141592653589793 rad pos: 28.5,13.5 parent: 2 type: Transform - - uid: 20177 + - uid: 20250 components: - rot: 3.141592653589793 rad pos: 39.5,8.5 parent: 2 type: Transform - - uid: 20178 + - uid: 20251 components: - rot: 3.141592653589793 rad pos: 39.5,5.5 parent: 2 type: Transform - - uid: 20179 + - uid: 20252 components: - pos: -12.5,14.5 parent: 2 type: Transform - - uid: 20180 + - uid: 20253 components: - rot: 1.5707963267948966 rad pos: 20.5,-44.5 parent: 2 type: Transform - - uid: 20181 + - uid: 20254 components: - pos: 37.5,-36.5 parent: 2 type: Transform - - uid: 20182 + - uid: 20255 components: - pos: 33.5,37.5 parent: 2 type: Transform - - uid: 20183 + - uid: 20256 components: - pos: 32.5,37.5 parent: 2 type: Transform - - uid: 20184 + - uid: 20257 components: - pos: 31.5,37.5 parent: 2 type: Transform - - uid: 20185 + - uid: 20258 components: - pos: 30.5,37.5 parent: 2 type: Transform - - uid: 20186 + - uid: 20259 components: - pos: 29.5,37.5 parent: 2 type: Transform - - uid: 20187 + - uid: 20260 components: - pos: 28.5,37.5 parent: 2 type: Transform - - uid: 20188 + - uid: 20261 components: - pos: 27.5,37.5 parent: 2 type: Transform - - uid: 20189 + - uid: 20262 components: - pos: 26.5,37.5 parent: 2 type: Transform - - uid: 20190 + - uid: 20263 components: - pos: 25.5,37.5 parent: 2 type: Transform - - uid: 20191 + - uid: 20264 components: - rot: 3.141592653589793 rad pos: 23.5,37.5 parent: 2 type: Transform - - uid: 20192 + - uid: 20265 components: - pos: 43.5,11.5 parent: 2 type: Transform - - uid: 20193 + - uid: 20266 components: - pos: 43.5,10.5 parent: 2 type: Transform - - uid: 20194 + - uid: 20267 components: - pos: 53.5,14.5 parent: 2 type: Transform - - uid: 20195 + - uid: 20268 components: - pos: 52.5,14.5 parent: 2 type: Transform - - uid: 20196 + - uid: 20269 components: - pos: 54.5,14.5 parent: 2 type: Transform - - uid: 20197 + - uid: 20270 components: - pos: 51.5,13.5 parent: 2 type: Transform - - uid: 20198 + - uid: 20271 components: - pos: 51.5,11.5 parent: 2 type: Transform - - uid: 20199 + - uid: 20272 components: - pos: 55.5,13.5 parent: 2 type: Transform - - uid: 20200 + - uid: 20273 components: - pos: 55.5,12.5 parent: 2 type: Transform - - uid: 20201 + - uid: 20274 components: - pos: 55.5,11.5 parent: 2 type: Transform - - uid: 20202 + - uid: 20275 components: - pos: 52.5,10.5 parent: 2 type: Transform - - uid: 20203 + - uid: 20276 components: - pos: 54.5,10.5 parent: 2 type: Transform - - uid: 20204 + - uid: 20277 components: - pos: 27.5,22.5 parent: 2 type: Transform - - uid: 20205 + - uid: 20278 components: - pos: -15.5,2.5 parent: 2 type: Transform - - uid: 20206 + - uid: 20279 components: - pos: 48.5,-0.5 parent: 2 type: Transform - - uid: 20207 + - uid: 20280 components: - pos: 43.5,-0.5 parent: 2 type: Transform - - uid: 20208 + - uid: 20281 components: - pos: 42.5,-0.5 parent: 2 type: Transform - - uid: 20209 + - uid: 20282 components: - pos: 41.5,-0.5 parent: 2 type: Transform - - uid: 20210 + - uid: 20283 components: - pos: 39.5,-0.5 parent: 2 type: Transform - - uid: 20211 + - uid: 20284 components: - pos: 37.5,-0.5 parent: 2 type: Transform - - uid: 20212 + - uid: 20285 components: - pos: 35.5,-1.5 parent: 2 type: Transform - - uid: 20213 + - uid: 20286 components: - pos: 35.5,-2.5 parent: 2 type: Transform - - uid: 20214 + - uid: 20287 components: - pos: 35.5,-4.5 parent: 2 type: Transform - - uid: 20215 + - uid: 20288 components: - pos: 35.5,-5.5 parent: 2 type: Transform - - uid: 20216 + - uid: 20289 components: - rot: -1.5707963267948966 rad pos: 36.5,24.5 parent: 2 type: Transform - - uid: 20217 + - uid: 20290 components: - rot: -1.5707963267948966 rad pos: 38.5,24.5 parent: 2 type: Transform - - uid: 20218 + - uid: 20291 components: - rot: -1.5707963267948966 rad pos: 40.5,24.5 parent: 2 type: Transform - - uid: 20219 + - uid: 20292 components: - rot: -1.5707963267948966 rad pos: 42.5,24.5 parent: 2 type: Transform - - uid: 20220 + - uid: 20293 components: - rot: 3.141592653589793 rad pos: 22.5,27.5 parent: 2 type: Transform - - uid: 20221 + - uid: 20294 components: - pos: 43.5,7.5 parent: 2 type: Transform - - uid: 20222 + - uid: 20295 components: - pos: 66.5,25.5 parent: 2 type: Transform - - uid: 20223 + - uid: 20296 components: - pos: 66.5,23.5 parent: 2 type: Transform - - uid: 20224 + - uid: 20297 components: - pos: 64.5,27.5 parent: 2 type: Transform - - uid: 20225 + - uid: 20298 components: - pos: 62.5,27.5 parent: 2 type: Transform - - uid: 20226 + - uid: 20299 components: - rot: -1.5707963267948966 rad pos: 42.5,-44.5 parent: 2 type: Transform - - uid: 20227 + - uid: 20300 components: - pos: 46.5,9.5 parent: 2 type: Transform - - uid: 20228 + - uid: 20301 components: - rot: -1.5707963267948966 rad pos: 67.5,-7.5 parent: 2 type: Transform - - uid: 20229 + - uid: 20302 components: - rot: -1.5707963267948966 rad pos: 66.5,-0.5 parent: 2 type: Transform - - uid: 20230 + - uid: 20303 components: - rot: -1.5707963267948966 rad pos: 66.5,-1.5 parent: 2 type: Transform - - uid: 20231 + - uid: 20304 components: - pos: 60.5,-4.5 parent: 2 type: Transform - - uid: 20232 + - uid: 20305 components: - rot: -1.5707963267948966 rad pos: 67.5,-8.5 parent: 2 type: Transform - - uid: 20233 + - uid: 20306 components: - rot: -1.5707963267948966 rad pos: 67.5,-9.5 parent: 2 type: Transform - - uid: 20234 + - uid: 20307 components: - rot: -1.5707963267948966 rad pos: 68.5,-2.5 parent: 2 type: Transform - - uid: 20235 + - uid: 20308 components: - rot: -1.5707963267948966 rad pos: 68.5,-10.5 parent: 2 type: Transform - - uid: 20236 + - uid: 20309 components: - rot: -1.5707963267948966 rad pos: 68.5,-12.5 parent: 2 type: Transform - - uid: 20237 + - uid: 20310 components: - rot: -1.5707963267948966 rad pos: 68.5,-6.5 parent: 2 type: Transform - - uid: 20238 + - uid: 20311 components: - pos: 61.5,-18.5 parent: 2 type: Transform - - uid: 20239 + - uid: 20312 components: - pos: 63.5,-18.5 parent: 2 type: Transform - - uid: 20240 + - uid: 20313 components: - pos: 61.5,-20.5 parent: 2 type: Transform - - uid: 20241 + - uid: 20314 components: - pos: 63.5,-20.5 parent: 2 type: Transform - - uid: 20242 + - uid: 20315 components: - pos: 61.5,-22.5 parent: 2 type: Transform - - uid: 20243 + - uid: 20316 components: - pos: 63.5,-22.5 parent: 2 type: Transform - - uid: 20244 + - uid: 20317 components: - pos: 61.5,-24.5 parent: 2 type: Transform - - uid: 20245 + - uid: 20318 components: - pos: 63.5,-24.5 parent: 2 type: Transform - - uid: 20246 + - uid: 20319 components: - pos: 63.5,-26.5 parent: 2 type: Transform - - uid: 20247 + - uid: 20320 components: - pos: 49.5,-62.5 parent: 2 type: Transform - - uid: 20248 + - uid: 20321 components: - pos: 56.5,-46.5 parent: 2 type: Transform - - uid: 20249 + - uid: 20322 components: - pos: 63.5,-50.5 parent: 2 type: Transform - - uid: 20250 + - uid: 20323 components: - pos: 61.5,-50.5 parent: 2 type: Transform - - uid: 20251 + - uid: 20324 components: - pos: 58.5,-51.5 parent: 2 type: Transform - - uid: 20252 + - uid: 20325 components: - pos: 58.5,-52.5 parent: 2 type: Transform - - uid: 20253 + - uid: 20326 components: - pos: 54.5,-51.5 parent: 2 type: Transform - - uid: 20254 + - uid: 20327 components: - pos: 54.5,-52.5 parent: 2 type: Transform - - uid: 20255 + - uid: 20328 components: - pos: 54.5,-53.5 parent: 2 type: Transform - - uid: 20256 + - uid: 20329 components: - pos: 61.5,-56.5 parent: 2 type: Transform - - uid: 20257 + - uid: 20330 components: - pos: 62.5,-56.5 parent: 2 type: Transform - - uid: 20258 + - uid: 20331 components: - pos: 63.5,-56.5 parent: 2 type: Transform - - uid: 20259 + - uid: 20332 components: - pos: 66.5,-51.5 parent: 2 type: Transform - - uid: 20260 + - uid: 20333 components: - pos: 66.5,-52.5 parent: 2 type: Transform - - uid: 20261 + - uid: 20334 components: - pos: 36.5,33.5 parent: 2 type: Transform - - uid: 20262 + - uid: 20335 components: - pos: 36.5,32.5 parent: 2 type: Transform - - uid: 20263 + - uid: 20336 components: - pos: 36.5,31.5 parent: 2 type: Transform - - uid: 20264 + - uid: 20337 components: - pos: 36.5,30.5 parent: 2 type: Transform - - uid: 20265 + - uid: 20338 components: - pos: 36.5,29.5 parent: 2 type: Transform - - uid: 20266 + - uid: 20339 components: - pos: 36.5,28.5 parent: 2 type: Transform - - uid: 20267 + - uid: 20340 components: - pos: 36.5,27.5 parent: 2 type: Transform - - uid: 20268 + - uid: 20341 components: - pos: 51.5,-62.5 parent: 2 type: Transform - - uid: 20269 + - uid: 20342 components: - rot: -1.5707963267948966 rad pos: 71.5,-50.5 parent: 2 type: Transform - - uid: 20270 + - uid: 20343 components: - pos: 68.5,-42.5 parent: 2 type: Transform - - uid: 20271 + - uid: 20344 components: - pos: 77.5,-38.5 parent: 2 type: Transform - - uid: 20272 + - uid: 20345 components: - pos: 78.5,-46.5 parent: 2 type: Transform - - uid: 20273 + - uid: 20346 components: - rot: 1.5707963267948966 rad pos: 33.5,-57.5 parent: 2 type: Transform - - uid: 20274 + - uid: 20347 components: - rot: 1.5707963267948966 rad pos: 32.5,-57.5 parent: 2 type: Transform - - uid: 20275 + - uid: 20348 components: - rot: 1.5707963267948966 rad pos: 30.5,-57.5 parent: 2 type: Transform - - uid: 20276 + - uid: 20349 components: - rot: 1.5707963267948966 rad pos: 29.5,-57.5 parent: 2 type: Transform - - uid: 20277 + - uid: 20350 components: - rot: 1.5707963267948966 rad pos: 27.5,-54.5 parent: 2 type: Transform - - uid: 20278 + - uid: 20351 components: - rot: 1.5707963267948966 rad pos: 27.5,-55.5 parent: 2 type: Transform - - uid: 20279 + - uid: 20352 components: - rot: 1.5707963267948966 rad pos: 27.5,-51.5 parent: 2 type: Transform - - uid: 20280 + - uid: 20353 components: - rot: 1.5707963267948966 rad pos: 27.5,-47.5 parent: 2 type: Transform - - uid: 20281 + - uid: 20354 components: - rot: 3.141592653589793 rad pos: 64.5,-37.5 parent: 2 type: Transform - - uid: 20282 + - uid: 20355 components: - pos: -12.5,-44.5 parent: 2 type: Transform - - uid: 20283 + - uid: 20356 components: - pos: -13.5,-44.5 parent: 2 type: Transform - - uid: 20284 + - uid: 20357 components: - pos: -14.5,-44.5 parent: 2 type: Transform - - uid: 20285 + - uid: 20358 components: - rot: 3.141592653589793 rad pos: 49.5,-59.5 parent: 2 type: Transform - - uid: 20286 + - uid: 20359 components: - rot: 3.141592653589793 rad pos: 50.5,-59.5 parent: 2 type: Transform - - uid: 20287 + - uid: 20360 components: - pos: -19.5,5.5 parent: 2 type: Transform - - uid: 20288 + - uid: 20361 components: - pos: -23.5,2.5 parent: 2 type: Transform - - uid: 20289 + - uid: 20362 components: - pos: -2.5,42.5 parent: 2 type: Transform - - uid: 20290 + - uid: 20363 components: - rot: -1.5707963267948966 rad pos: -21.5,-22.5 parent: 2 type: Transform - - uid: 20291 + - uid: 20364 components: - pos: -21.5,-13.5 parent: 2 type: Transform - - uid: 20292 + - uid: 20365 components: - pos: -21.5,-14.5 parent: 2 type: Transform - - uid: 20293 + - uid: 20366 components: - pos: -21.5,-9.5 parent: 2 type: Transform - - uid: 20294 + - uid: 20367 components: - pos: -21.5,-10.5 parent: 2 type: Transform - - uid: 20295 + - uid: 20368 components: - pos: -26.5,-10.5 parent: 2 type: Transform - - uid: 20296 + - uid: 20369 components: - pos: -26.5,-11.5 parent: 2 type: Transform - - uid: 20297 + - uid: 20370 components: - pos: -30.5,-12.5 parent: 2 type: Transform - - uid: 20298 + - uid: 20371 components: - pos: -30.5,-13.5 parent: 2 type: Transform - - uid: 20299 + - uid: 20372 components: - pos: -22.5,-3.5 parent: 2 type: Transform - - uid: 20300 + - uid: 20373 components: - pos: -21.5,-3.5 parent: 2 type: Transform - - uid: 20301 + - uid: 20374 components: - pos: -22.5,-1.5 parent: 2 type: Transform - - uid: 20302 + - uid: 20375 components: - pos: -21.5,-1.5 parent: 2 type: Transform - - uid: 20303 + - uid: 20376 components: - pos: -17.5,-1.5 parent: 2 type: Transform - - uid: 20304 + - uid: 20377 components: - pos: -16.5,-1.5 parent: 2 type: Transform - - uid: 20305 + - uid: 20378 components: - pos: -19.5,0.5 parent: 2 type: Transform - - uid: 20306 + - uid: 20379 components: - pos: -17.5,0.5 parent: 2 type: Transform - - uid: 20307 + - uid: 20380 components: - pos: -16.5,0.5 parent: 2 type: Transform - - uid: 20308 + - uid: 20381 components: - pos: -17.5,-3.5 parent: 2 type: Transform - - uid: 20309 + - uid: 20382 components: - pos: -16.5,-3.5 parent: 2 type: Transform - - uid: 20310 + - uid: 20383 components: - rot: 1.5707963267948966 rad pos: -26.5,-13.5 parent: 2 type: Transform - - uid: 20311 + - uid: 20384 components: - rot: -1.5707963267948966 rad pos: -24.5,-18.5 parent: 2 type: Transform - - uid: 20312 + - uid: 20385 components: - pos: 52.5,-57.5 parent: 2 type: Transform - - uid: 20313 + - uid: 20386 components: - rot: 3.141592653589793 rad pos: 56.5,-55.5 parent: 2 type: Transform - - uid: 20314 + - uid: 20387 components: - rot: 3.141592653589793 rad pos: 59.5,-54.5 parent: 2 type: Transform - - uid: 20315 + - uid: 20388 components: - rot: 3.141592653589793 rad pos: 65.5,-54.5 parent: 2 type: Transform - - uid: 20316 + - uid: 20389 components: - pos: 41.5,-74.5 parent: 2 type: Transform - - uid: 20317 + - uid: 20390 components: - pos: 32.5,-77.5 parent: 2 type: Transform - - uid: 20318 + - uid: 20391 components: - pos: 32.5,-78.5 parent: 2 type: Transform - - uid: 20319 + - uid: 20392 components: - pos: 32.5,-79.5 parent: 2 type: Transform - - uid: 20320 + - uid: 20393 components: - rot: 3.141592653589793 rad pos: 25.5,-80.5 parent: 2 type: Transform - - uid: 20321 + - uid: 20394 components: - rot: 3.141592653589793 rad pos: 51.5,-73.5 parent: 2 type: Transform - - uid: 20322 + - uid: 20395 components: - rot: 1.5707963267948966 rad pos: 34.5,-84.5 parent: 2 type: Transform - - uid: 20323 + - uid: 20396 components: - pos: 17.5,-71.5 parent: 2 type: Transform - - uid: 20324 + - uid: 20397 components: - pos: 18.5,-71.5 parent: 2 type: Transform - - uid: 20325 + - uid: 20398 components: - rot: 1.5707963267948966 rad pos: 34.5,-85.5 parent: 2 type: Transform - - uid: 20326 + - uid: 20399 components: - rot: 1.5707963267948966 rad pos: 34.5,-86.5 parent: 2 type: Transform - - uid: 20327 + - uid: 20400 components: - pos: 15.5,-71.5 parent: 2 type: Transform - - uid: 20328 + - uid: 20401 components: - pos: 18.5,-74.5 parent: 2 type: Transform - - uid: 20329 + - uid: 20402 components: - pos: 17.5,-74.5 parent: 2 type: Transform - - uid: 20330 + - uid: 20403 components: - pos: 14.5,-71.5 parent: 2 type: Transform - - uid: 20331 + - uid: 20404 components: - pos: 14.5,-74.5 parent: 2 type: Transform - - uid: 20332 + - uid: 20405 components: - pos: 15.5,-74.5 parent: 2 type: Transform - - uid: 20333 + - uid: 20406 components: - rot: 1.5707963267948966 rad pos: 44.5,-86.5 parent: 2 type: Transform - - uid: 20334 + - uid: 20407 components: - rot: 1.5707963267948966 rad pos: 44.5,-87.5 parent: 2 type: Transform - - uid: 20335 + - uid: 20408 components: - rot: 1.5707963267948966 rad pos: 34.5,-87.5 parent: 2 type: Transform - - uid: 20336 + - uid: 20409 components: - rot: 1.5707963267948966 rad pos: 44.5,-84.5 parent: 2 type: Transform - - uid: 20337 + - uid: 20410 components: - rot: 1.5707963267948966 rad pos: 44.5,-85.5 parent: 2 type: Transform - - uid: 20338 + - uid: 20411 components: - rot: 1.5707963267948966 rad pos: 42.5,-69.5 parent: 2 type: Transform - - uid: 20339 + - uid: 20412 components: - rot: 1.5707963267948966 rad pos: 43.5,-69.5 parent: 2 type: Transform - - uid: 20340 + - uid: 20413 components: - rot: 1.5707963267948966 rad pos: 44.5,-69.5 parent: 2 type: Transform - - uid: 20341 + - uid: 20414 components: - rot: 1.5707963267948966 rad pos: 34.5,-69.5 parent: 2 type: Transform - - uid: 20342 + - uid: 20415 components: - rot: 1.5707963267948966 rad pos: 35.5,-69.5 parent: 2 type: Transform - - uid: 20343 + - uid: 20416 components: - rot: 1.5707963267948966 rad pos: 36.5,-69.5 parent: 2 type: Transform - - uid: 20344 + - uid: 20417 components: - rot: 1.5707963267948966 rad pos: 37.5,-66.5 parent: 2 type: Transform - - uid: 20345 + - uid: 20418 components: - rot: -1.5707963267948966 rad pos: -37.5,-14.5 parent: 2 type: Transform - - uid: 20346 + - uid: 20419 components: - pos: -33.5,-17.5 parent: 2 type: Transform - - uid: 20347 + - uid: 20420 components: - pos: -33.5,-15.5 parent: 2 type: Transform - - uid: 20348 + - uid: 20421 components: - rot: 3.141592653589793 rad pos: -33.5,-12.5 parent: 2 type: Transform - - uid: 20349 + - uid: 20422 components: - rot: 3.141592653589793 rad pos: -33.5,-9.5 parent: 2 type: Transform - - uid: 20350 + - uid: 20423 components: - rot: 3.141592653589793 rad pos: -40.5,-9.5 parent: 2 type: Transform - - uid: 20351 + - uid: 20424 components: - rot: 3.141592653589793 rad pos: -40.5,-12.5 parent: 2 type: Transform - - uid: 20352 + - uid: 20425 components: - pos: 50.5,-31.5 parent: 2 type: Transform - - uid: 20353 + - uid: 20426 components: - pos: 51.5,-31.5 parent: 2 type: Transform - - uid: 20354 + - uid: 20427 components: - rot: -1.5707963267948966 rad pos: -21.5,-35.5 parent: 2 type: Transform - - uid: 20355 + - uid: 20428 components: - pos: -38.5,-37.5 parent: 2 type: Transform - - uid: 20356 + - uid: 20429 components: - pos: -37.5,-37.5 parent: 2 type: Transform - - uid: 20357 + - uid: 20430 components: - pos: -45.5,-18.5 parent: 2 type: Transform - - uid: 20358 + - uid: 20431 components: - rot: 3.141592653589793 rad pos: -43.5,-13.5 parent: 2 type: Transform - - uid: 20359 + - uid: 20432 components: - rot: 3.141592653589793 rad pos: -46.5,-7.5 parent: 2 type: Transform - - uid: 20360 + - uid: 20433 components: - rot: 3.141592653589793 rad pos: -49.5,-19.5 parent: 2 type: Transform - - uid: 20361 + - uid: 20434 components: - pos: -68.5,-22.5 parent: 2 type: Transform - - uid: 20362 + - uid: 20435 components: - pos: -67.5,-22.5 parent: 2 type: Transform - - uid: 20363 + - uid: 20436 components: - pos: -66.5,-22.5 parent: 2 type: Transform - - uid: 20364 + - uid: 20437 components: - pos: -65.5,-22.5 parent: 2 type: Transform - - uid: 20365 + - uid: 20438 components: - pos: -64.5,-22.5 parent: 2 type: Transform - - uid: 20366 + - uid: 20439 components: - pos: -66.5,-29.5 parent: 2 type: Transform - - uid: 20367 + - uid: 20440 components: - pos: -56.5,-11.5 parent: 2 type: Transform - - uid: 20368 + - uid: 20441 components: - pos: -56.5,-12.5 parent: 2 type: Transform - - uid: 20369 + - uid: 20442 components: - pos: -56.5,-13.5 parent: 2 type: Transform - - uid: 20370 + - uid: 20443 components: - pos: -56.5,-14.5 parent: 2 type: Transform - - uid: 20371 + - uid: 20444 components: - pos: -56.5,-15.5 parent: 2 type: Transform - - uid: 20372 + - uid: 20445 components: - pos: -61.5,-35.5 parent: 2 type: Transform - - uid: 20373 + - uid: 20446 components: - pos: -60.5,-35.5 parent: 2 type: Transform - - uid: 20374 + - uid: 20447 components: - pos: -62.5,-38.5 parent: 2 type: Transform - - uid: 20375 + - uid: 20448 components: - pos: -61.5,-31.5 parent: 2 type: Transform - - uid: 20376 + - uid: 20449 components: - pos: -47.5,-54.5 parent: 2 type: Transform - - uid: 20377 + - uid: 20450 components: - pos: -47.5,-52.5 parent: 2 type: Transform - - uid: 20378 + - uid: 20451 components: - pos: -47.5,-50.5 parent: 2 type: Transform - - uid: 20379 + - uid: 20452 components: - pos: -47.5,-48.5 parent: 2 type: Transform - - uid: 20380 + - uid: 20453 components: - pos: -47.5,-46.5 parent: 2 type: Transform - - uid: 20381 + - uid: 20454 components: - pos: -47.5,-44.5 parent: 2 type: Transform - - uid: 20382 + - uid: 20455 components: - pos: -47.5,-42.5 parent: 2 type: Transform - - uid: 20383 + - uid: 20456 components: - pos: -41.5,-34.5 parent: 2 type: Transform - - uid: 20384 + - uid: 20457 components: - pos: -41.5,-35.5 parent: 2 type: Transform - - uid: 20385 + - uid: 20458 components: - pos: -59.5,-3.5 parent: 2 type: Transform - - uid: 20386 + - uid: 20459 components: - pos: -60.5,-3.5 parent: 2 type: Transform - - uid: 20387 + - uid: 20460 components: - pos: -61.5,-3.5 parent: 2 type: Transform - - uid: 20388 + - uid: 20461 components: - pos: -62.5,-3.5 parent: 2 type: Transform - - uid: 20389 + - uid: 20462 components: - pos: -66.5,-3.5 parent: 2 type: Transform - - uid: 20390 + - uid: 20463 components: - pos: -67.5,-3.5 parent: 2 type: Transform - - uid: 20391 + - uid: 20464 components: - pos: -68.5,-3.5 parent: 2 type: Transform - - uid: 20392 + - uid: 20465 components: - pos: -69.5,-3.5 parent: 2 type: Transform - - uid: 20393 + - uid: 20466 components: - pos: -76.5,-3.5 parent: 2 type: Transform - - uid: 20394 + - uid: 20467 components: - pos: -73.5,-3.5 parent: 2 type: Transform - - uid: 20395 + - uid: 20468 components: - pos: -74.5,-3.5 parent: 2 type: Transform - - uid: 20396 + - uid: 20469 components: - pos: -75.5,-3.5 parent: 2 type: Transform - - uid: 20397 + - uid: 20470 components: - pos: -76.5,-7.5 parent: 2 type: Transform - - uid: 20398 + - uid: 20471 components: - pos: -76.5,-8.5 parent: 2 type: Transform - - uid: 20399 + - uid: 20472 components: - pos: -76.5,-9.5 parent: 2 type: Transform - - uid: 20400 + - uid: 20473 components: - pos: -76.5,-10.5 parent: 2 type: Transform - - uid: 20401 + - uid: 20474 components: - pos: -76.5,-14.5 parent: 2 type: Transform - - uid: 20402 + - uid: 20475 components: - pos: -76.5,-15.5 parent: 2 type: Transform - - uid: 20403 + - uid: 20476 components: - pos: -76.5,-16.5 parent: 2 type: Transform - - uid: 20404 + - uid: 20477 components: - pos: -76.5,-17.5 parent: 2 type: Transform - - uid: 20405 + - uid: 20478 components: - pos: -76.5,-21.5 parent: 2 type: Transform - - uid: 20406 + - uid: 20479 components: - pos: -76.5,-22.5 parent: 2 type: Transform - - uid: 20407 + - uid: 20480 components: - rot: -1.5707963267948966 rad pos: -76.5,-24.5 parent: 2 type: Transform - - uid: 20408 + - uid: 20481 components: - pos: -76.5,-23.5 parent: 2 type: Transform - - uid: 20409 + - uid: 20482 components: - pos: -35.5,-58.5 parent: 2 type: Transform - - uid: 20410 + - uid: 20483 components: - rot: 3.141592653589793 rad pos: -38.5,-59.5 parent: 2 type: Transform - - uid: 20411 + - uid: 20484 components: - pos: -41.5,-58.5 parent: 2 type: Transform - - uid: 20412 + - uid: 20485 components: - pos: -42.5,-58.5 parent: 2 type: Transform - - uid: 20413 + - uid: 20486 components: - pos: -44.5,-58.5 parent: 2 type: Transform - - uid: 20414 + - uid: 20487 components: - pos: -21.5,-61.5 parent: 2 type: Transform - - uid: 20415 + - uid: 20488 components: - rot: -1.5707963267948966 rad pos: -53.5,-83.5 parent: 2 type: Transform - - uid: 20416 + - uid: 20489 components: - pos: -28.5,-72.5 parent: 2 type: Transform - - uid: 20417 + - uid: 20490 components: - pos: -35.5,-76.5 parent: 2 type: Transform - - uid: 20418 + - uid: 20491 components: - pos: -35.5,-77.5 parent: 2 type: Transform - - uid: 20419 + - uid: 20492 components: - pos: -35.5,-78.5 parent: 2 type: Transform - - uid: 20420 + - uid: 20493 components: - pos: -35.5,-81.5 parent: 2 type: Transform - - uid: 20421 + - uid: 20494 components: - pos: -35.5,-82.5 parent: 2 type: Transform - - uid: 20422 + - uid: 20495 components: - pos: -35.5,-83.5 parent: 2 type: Transform - - uid: 20423 + - uid: 20496 components: - pos: -40.5,-86.5 parent: 2 type: Transform - - uid: 20424 + - uid: 20497 components: - pos: -43.5,-86.5 parent: 2 type: Transform - - uid: 20425 + - uid: 20498 components: - pos: -21.5,-59.5 parent: 2 type: Transform - - uid: 20426 + - uid: 20499 components: - rot: -1.5707963267948966 rad pos: -55.5,-83.5 parent: 2 type: Transform - - uid: 20427 + - uid: 20500 components: - pos: -57.5,-75.5 parent: 2 type: Transform - - uid: 20428 + - uid: 20501 components: - pos: -57.5,-76.5 parent: 2 type: Transform - - uid: 20429 + - uid: 20502 components: - pos: -57.5,-77.5 parent: 2 type: Transform - - uid: 20430 + - uid: 20503 components: - pos: -58.5,-52.5 parent: 2 type: Transform - - uid: 20431 + - uid: 20504 components: - pos: -58.5,-51.5 parent: 2 type: Transform - - uid: 20432 + - uid: 20505 components: - pos: -58.5,-48.5 parent: 2 type: Transform - - uid: 20433 + - uid: 20506 components: - pos: -58.5,-47.5 parent: 2 type: Transform - - uid: 20434 - components: - - pos: -55.5,-85.5 - parent: 2 - type: Transform - - uid: 20435 + - uid: 20507 components: - rot: 1.5707963267948966 rad pos: -58.5,-59.5 parent: 2 type: Transform - - uid: 20436 + - uid: 20508 components: - pos: -48.5,-81.5 parent: 2 type: Transform - - uid: 20437 - components: - - pos: 50.5,58.5 - parent: 2 - type: Transform - - uid: 20438 + - uid: 20509 components: - rot: -1.5707963267948966 rad pos: -3.5,27.5 parent: 2 type: Transform - - uid: 20439 - components: - - pos: 50.5,57.5 - parent: 2 - type: Transform - - uid: 20440 - components: - - pos: 58.5,58.5 - parent: 2 - type: Transform - - uid: 20441 + - uid: 20510 components: - pos: -2.5,35.5 parent: 2 type: Transform - - uid: 20442 + - uid: 20511 components: - pos: -1.5,35.5 parent: 2 type: Transform - - uid: 20443 + - uid: 20512 components: - pos: -0.5,35.5 parent: 2 type: Transform - - uid: 20444 + - uid: 20513 components: - pos: 6.5,25.5 parent: 2 type: Transform - - uid: 20445 + - uid: 20514 components: - pos: 4.5,25.5 parent: 2 type: Transform - - uid: 20446 + - uid: 20515 components: - pos: 2.5,25.5 parent: 2 type: Transform - - uid: 20447 - components: - - pos: 58.5,56.5 - parent: 2 - type: Transform - - uid: 20448 + - uid: 20516 components: - rot: -1.5707963267948966 rad pos: -1.5,27.5 parent: 2 type: Transform - - uid: 20449 + - uid: 20517 components: - pos: -21.5,24.5 parent: 2 type: Transform - - uid: 20450 + - uid: 20518 components: - pos: -21.5,23.5 parent: 2 type: Transform - - uid: 20451 + - uid: 20519 components: - pos: -26.5,21.5 parent: 2 type: Transform - - uid: 20452 + - uid: 20520 components: - rot: -1.5707963267948966 rad pos: -26.5,23.5 parent: 2 type: Transform - - uid: 20453 + - uid: 20521 components: - pos: -1.5,42.5 parent: 2 type: Transform - - uid: 20454 + - uid: 20522 components: - pos: -29.5,23.5 parent: 2 type: Transform - - uid: 20455 + - uid: 20523 components: - pos: -29.5,21.5 parent: 2 type: Transform - - uid: 20456 + - uid: 20524 components: - rot: 1.5707963267948966 rad pos: -50.5,21.5 parent: 2 type: Transform - - uid: 20457 + - uid: 20525 components: - rot: 1.5707963267948966 rad pos: -49.5,21.5 parent: 2 type: Transform - - uid: 20458 + - uid: 20526 components: - rot: -1.5707963267948966 rad pos: -50.5,18.5 parent: 2 type: Transform - - uid: 20459 + - uid: 20527 components: - rot: -1.5707963267948966 rad pos: -50.5,24.5 parent: 2 type: Transform - - uid: 20460 - components: - - pos: 58.5,57.5 - parent: 2 - type: Transform - - uid: 20461 - components: - - pos: 50.5,56.5 - parent: 2 - type: Transform - - uid: 20462 + - uid: 20528 components: - pos: -33.5,27.5 parent: 2 type: Transform - - uid: 20463 + - uid: 20529 components: - pos: -33.5,32.5 parent: 2 type: Transform - - uid: 20464 + - uid: 20530 components: - pos: -32.5,32.5 parent: 2 type: Transform - - uid: 20465 + - uid: 20531 components: - pos: -31.5,32.5 parent: 2 type: Transform - - uid: 20466 + - uid: 20532 components: - pos: -31.5,27.5 parent: 2 type: Transform - - uid: 20467 + - uid: 20533 components: - pos: -30.5,27.5 parent: 2 type: Transform - - uid: 20468 + - uid: 20534 components: - rot: -1.5707963267948966 rad pos: -52.5,21.5 parent: 2 type: Transform - - uid: 20469 + - uid: 20535 components: - rot: -1.5707963267948966 rad pos: -53.5,21.5 parent: 2 type: Transform - - uid: 20470 + - uid: 20536 components: - rot: -1.5707963267948966 rad pos: -49.5,29.5 parent: 2 type: Transform - - uid: 20471 + - uid: 20537 components: - rot: -1.5707963267948966 rad pos: -52.5,29.5 parent: 2 type: Transform - - uid: 20472 + - uid: 20538 components: - rot: -1.5707963267948966 rad pos: -52.5,35.5 parent: 2 type: Transform - - uid: 20473 + - uid: 20539 components: - rot: -1.5707963267948966 rad pos: -49.5,35.5 parent: 2 type: Transform - - uid: 20474 + - uid: 20540 components: - pos: -52.5,24.5 parent: 2 type: Transform - - uid: 20475 + - uid: 20541 components: - pos: -52.5,18.5 parent: 2 type: Transform - - uid: 20476 + - uid: 20542 components: - pos: -39.5,31.5 parent: 2 type: Transform - - uid: 20477 + - uid: 20543 components: - rot: 1.5707963267948966 rad pos: -17.5,24.5 parent: 2 type: Transform - - uid: 20478 + - uid: 20544 components: - rot: 1.5707963267948966 rad pos: -21.5,12.5 parent: 2 type: Transform - - uid: 20479 + - uid: 20545 components: - rot: 1.5707963267948966 rad pos: -22.5,9.5 parent: 2 type: Transform - - uid: 20480 + - uid: 20546 components: - rot: 1.5707963267948966 rad pos: -23.5,9.5 parent: 2 type: Transform - - uid: 20481 + - uid: 20547 components: - rot: 1.5707963267948966 rad pos: -25.5,9.5 parent: 2 type: Transform - - uid: 20482 + - uid: 20548 components: - rot: 1.5707963267948966 rad pos: -26.5,9.5 parent: 2 type: Transform - - uid: 20483 + - uid: 20549 components: - pos: -36.5,7.5 parent: 2 type: Transform - - uid: 20484 + - uid: 20550 components: - pos: -41.5,2.5 parent: 2 type: Transform - - uid: 20485 + - uid: 20551 components: - pos: -35.5,2.5 parent: 2 type: Transform - - uid: 20486 + - uid: 20552 components: - pos: -34.5,2.5 parent: 2 type: Transform - - uid: 20487 + - uid: 20553 components: - pos: -40.5,2.5 parent: 2 type: Transform - - uid: 20488 + - uid: 20554 components: - pos: -39.5,2.5 parent: 2 type: Transform - - uid: 20489 + - uid: 20555 components: - pos: -36.5,2.5 parent: 2 type: Transform - - uid: 20490 + - uid: 20556 components: - pos: -39.5,7.5 parent: 2 type: Transform - - uid: 20491 + - uid: 20557 components: - pos: -1.5,50.5 parent: 2 type: Transform - - uid: 20492 + - uid: 20558 components: - pos: 29.5,24.5 parent: 2 type: Transform - - uid: 20493 + - uid: 20559 components: - rot: -1.5707963267948966 rad pos: -49.5,13.5 parent: 2 type: Transform - - uid: 20494 + - uid: 20560 components: - pos: -46.5,13.5 parent: 2 type: Transform - - uid: 20495 + - uid: 20561 components: - pos: -53.5,11.5 parent: 2 type: Transform - - uid: 20496 + - uid: 20562 components: - pos: -53.5,10.5 parent: 2 type: Transform - - uid: 20497 + - uid: 20563 components: - rot: -1.5707963267948966 rad pos: -48.5,13.5 parent: 2 type: Transform - - uid: 20498 + - uid: 20564 components: - rot: 1.5707963267948966 rad pos: -52.5,-0.5 parent: 2 type: Transform - - uid: 20499 + - uid: 20565 components: - pos: 2.5,-94.5 parent: 2 type: Transform - - uid: 20500 + - uid: 20566 components: - pos: 2.5,-95.5 parent: 2 type: Transform - - uid: 20501 + - uid: 20567 components: - pos: 2.5,-96.5 parent: 2 type: Transform - - uid: 20502 + - uid: 20568 components: - pos: 2.5,-97.5 parent: 2 type: Transform - - uid: 20503 + - uid: 20569 components: - pos: 2.5,-98.5 parent: 2 type: Transform - - uid: 20504 + - uid: 20570 components: - pos: 2.5,-99.5 parent: 2 type: Transform - - uid: 20505 + - uid: 20571 components: - pos: 2.5,-100.5 parent: 2 type: Transform - - uid: 20506 + - uid: 20572 components: - pos: 2.5,-101.5 parent: 2 type: Transform - - uid: 20507 + - uid: 20573 components: - pos: 2.5,-102.5 parent: 2 type: Transform - - uid: 20508 + - uid: 20574 components: - pos: 2.5,-103.5 parent: 2 type: Transform - - uid: 20509 + - uid: 20575 components: - pos: 2.5,-104.5 parent: 2 type: Transform - - uid: 20510 + - uid: 20576 components: - pos: 4.5,-107.5 parent: 2 type: Transform - - uid: 20511 + - uid: 20577 components: - pos: 5.5,-107.5 parent: 2 type: Transform - - uid: 20512 + - uid: 20578 components: - pos: 6.5,-107.5 parent: 2 type: Transform - - uid: 20513 + - uid: 20579 components: - pos: 7.5,-107.5 parent: 2 type: Transform - - uid: 20514 + - uid: 20580 components: - pos: 8.5,-107.5 parent: 2 type: Transform - - uid: 20515 + - uid: 20581 components: - pos: 9.5,-107.5 parent: 2 type: Transform - - uid: 20516 + - uid: 20582 components: - pos: 10.5,-107.5 parent: 2 type: Transform - - uid: 20517 + - uid: 20583 components: - pos: 11.5,-107.5 parent: 2 type: Transform - - uid: 20518 + - uid: 20584 components: - pos: 12.5,-107.5 parent: 2 type: Transform - - uid: 20519 + - uid: 20585 components: - pos: 13.5,-107.5 parent: 2 type: Transform - - uid: 20520 + - uid: 20586 components: - pos: 14.5,-107.5 parent: 2 type: Transform - - uid: 20521 + - uid: 20587 components: - pos: 15.5,-107.5 parent: 2 type: Transform - - uid: 20522 + - uid: 20588 components: - pos: 16.5,-107.5 parent: 2 type: Transform - - uid: 20523 + - uid: 20589 components: - pos: 17.5,-107.5 parent: 2 type: Transform - - uid: 20524 + - uid: 20590 components: - pos: 20.5,-105.5 parent: 2 type: Transform - - uid: 20525 + - uid: 20591 components: - pos: 20.5,-104.5 parent: 2 type: Transform - - uid: 20526 + - uid: 20592 components: - pos: 20.5,-103.5 parent: 2 type: Transform - - uid: 20527 + - uid: 20593 components: - pos: 20.5,-102.5 parent: 2 type: Transform - - uid: 20528 + - uid: 20594 components: - pos: 20.5,-101.5 parent: 2 type: Transform - - uid: 20529 + - uid: 20595 components: - pos: 20.5,-100.5 parent: 2 type: Transform - - uid: 20530 + - uid: 20596 components: - pos: 20.5,-99.5 parent: 2 type: Transform - - uid: 20531 + - uid: 20597 components: - pos: 20.5,-98.5 parent: 2 type: Transform - - uid: 20532 + - uid: 20598 components: - pos: 20.5,-97.5 parent: 2 type: Transform - - uid: 20533 + - uid: 20599 components: - pos: 20.5,-96.5 parent: 2 type: Transform - - uid: 20534 + - uid: 20600 components: - pos: 20.5,-95.5 parent: 2 type: Transform - - uid: 20535 + - uid: 20601 components: - pos: 20.5,-94.5 parent: 2 type: Transform - - uid: 20536 + - uid: 20602 components: - pos: 13.5,-92.5 parent: 2 type: Transform - - uid: 20537 + - uid: 20603 components: - pos: 14.5,-92.5 parent: 2 type: Transform - - uid: 20538 + - uid: 20604 components: - pos: 15.5,-92.5 parent: 2 type: Transform - - uid: 20539 + - uid: 20605 components: - pos: 16.5,-92.5 parent: 2 type: Transform - - uid: 20540 + - uid: 20606 components: - pos: 17.5,-92.5 parent: 2 type: Transform - - uid: 20541 + - uid: 20607 components: - pos: 18.5,-92.5 parent: 2 type: Transform - - uid: 20542 + - uid: 20608 components: - pos: 38.5,-57.5 parent: 2 type: Transform - - uid: 20543 + - uid: 20609 components: - pos: 40.5,-57.5 parent: 2 type: Transform - - uid: 20544 + - uid: 20610 components: - pos: 37.5,-21.5 parent: 2 type: Transform - - uid: 20545 + - uid: 20611 components: - pos: 37.5,-22.5 parent: 2 type: Transform - - uid: 20546 + - uid: 20612 components: - rot: -1.5707963267948966 rad pos: -76.5,-11.5 parent: 2 type: Transform - - uid: 20547 + - uid: 20613 components: - rot: -1.5707963267948966 rad pos: -76.5,-13.5 parent: 2 type: Transform - - uid: 20548 + - uid: 20614 components: - pos: 55.5,-15.5 parent: 2 type: Transform - - uid: 20549 + - uid: 20615 components: - pos: 56.5,-15.5 parent: 2 type: Transform - - uid: 20550 + - uid: 20616 components: - pos: 58.5,-15.5 parent: 2 type: Transform - - uid: 20551 + - uid: 20617 components: - pos: 59.5,-15.5 parent: 2 type: Transform - - uid: 20552 + - uid: 20618 components: - pos: 58.5,-59.5 parent: 2 type: Transform - - uid: 20553 + - uid: 20619 components: - pos: 58.5,-60.5 parent: 2 type: Transform - - uid: 20554 + - uid: 20620 components: - pos: 42.5,-31.5 parent: 2 type: Transform - - uid: 20555 + - uid: 20621 components: - pos: 37.5,-64.5 parent: 2 type: Transform - - uid: 20556 + - uid: 20622 components: - rot: 3.141592653589793 rad pos: 24.5,37.5 parent: 2 type: Transform - - uid: 20557 + - uid: 20623 components: - rot: 3.141592653589793 rad pos: 21.5,37.5 parent: 2 type: Transform - - uid: 20558 + - uid: 20624 components: - pos: 32.5,35.5 parent: 2 type: Transform - - uid: 20559 + - uid: 20625 components: - pos: 26.5,35.5 parent: 2 type: Transform - - uid: 20560 + - uid: 20626 components: - pos: 34.5,37.5 parent: 2 type: Transform - - uid: 20561 + - uid: 20627 components: - pos: 35.5,37.5 parent: 2 type: Transform - - uid: 20562 + - uid: 20628 components: - pos: 36.5,37.5 parent: 2 type: Transform - - uid: 20563 + - uid: 20629 components: - pos: 36.5,36.5 parent: 2 type: Transform - - uid: 20564 + - uid: 20630 components: - pos: 36.5,35.5 parent: 2 type: Transform - - uid: 20565 + - uid: 20631 components: - pos: 36.5,34.5 parent: 2 type: Transform - - uid: 20566 + - uid: 20632 components: - pos: -45.5,-42.5 parent: 2 type: Transform - - uid: 20567 + - uid: 20633 components: - pos: -45.5,-43.5 parent: 2 type: Transform - - uid: 20568 + - uid: 20634 components: - pos: -45.5,-44.5 parent: 2 type: Transform - - uid: 20569 + - uid: 20635 components: - pos: -45.5,-45.5 parent: 2 type: Transform - - uid: 20570 + - uid: 20636 components: - pos: -45.5,-46.5 parent: 2 type: Transform - - uid: 20571 + - uid: 20637 components: - pos: -45.5,-47.5 parent: 2 type: Transform - - uid: 20572 + - uid: 20638 components: - pos: -45.5,-48.5 parent: 2 type: Transform - - uid: 20573 + - uid: 20639 components: - pos: -45.5,-49.5 parent: 2 type: Transform - - uid: 20574 + - uid: 20640 components: - pos: -45.5,-50.5 parent: 2 type: Transform - - uid: 20575 + - uid: 20641 components: - pos: -45.5,-51.5 parent: 2 type: Transform - - uid: 20576 + - uid: 20642 components: - pos: -45.5,-52.5 parent: 2 type: Transform - - uid: 20577 + - uid: 20643 components: - pos: -45.5,-53.5 parent: 2 type: Transform - - uid: 20578 + - uid: 20644 components: - pos: -45.5,-54.5 parent: 2 type: Transform - - uid: 20579 + - uid: 20645 components: - pos: -45.5,-55.5 parent: 2 type: Transform - - uid: 20580 + - uid: 20646 components: - rot: 3.141592653589793 rad pos: 46.5,3.5 parent: 2 type: Transform - - uid: 20581 + - uid: 20647 components: - rot: -1.5707963267948966 rad pos: 27.5,20.5 parent: 2 type: Transform - - uid: 20582 + - uid: 20648 components: - pos: 41.5,-31.5 parent: 2 type: Transform - - uid: 20583 + - uid: 20649 components: - pos: -48.5,-82.5 parent: 2 type: Transform - - uid: 20584 + - uid: 20650 components: - pos: -48.5,-83.5 parent: 2 type: Transform - - uid: 20585 - components: - - pos: 54.5,61.5 - parent: 2 - type: Transform - - uid: 20586 - components: - - pos: 55.5,61.5 - parent: 2 - type: Transform - - uid: 20587 - components: - - pos: 53.5,61.5 - parent: 2 - type: Transform - - uid: 20588 + - uid: 20651 components: - pos: 20.5,-35.5 parent: 2 type: Transform - - uid: 20589 + - uid: 20652 components: - pos: 20.5,-36.5 parent: 2 type: Transform - - uid: 20590 + - uid: 20653 components: - pos: -30.5,-72.5 parent: 2 type: Transform - - uid: 20591 + - uid: 20654 components: - pos: 10.5,18.5 parent: 2 type: Transform - - uid: 20592 + - uid: 20655 components: - pos: 12.5,18.5 parent: 2 type: Transform - - uid: 20593 + - uid: 20656 components: - rot: -1.5707963267948966 rad pos: 59.5,33.5 parent: 2 type: Transform - - uid: 20594 + - uid: 20657 components: - rot: -1.5707963267948966 rad pos: 59.5,32.5 parent: 2 type: Transform - - uid: 20595 + - uid: 20658 components: - rot: 3.141592653589793 rad pos: 59.5,43.5 parent: 2 type: Transform - - uid: 20596 + - uid: 20659 components: - pos: 2.5,51.5 parent: 2 type: Transform - - uid: 20597 + - uid: 20660 components: - pos: -14.5,65.5 parent: 2 type: Transform - - uid: 20598 + - uid: 20661 components: - rot: 3.141592653589793 rad pos: -14.5,67.5 parent: 2 type: Transform - - uid: 20599 + - uid: 20662 components: - rot: -1.5707963267948966 rad pos: 7.5,35.5 parent: 2 type: Transform - - uid: 20600 + - uid: 20663 components: - rot: -1.5707963267948966 rad pos: 8.5,35.5 parent: 2 type: Transform - - uid: 20601 + - uid: 20664 components: - rot: -1.5707963267948966 rad pos: 7.5,29.5 parent: 2 type: Transform - - uid: 20602 + - uid: 20665 components: - rot: -1.5707963267948966 rad pos: 8.5,29.5 parent: 2 type: Transform - - uid: 20603 + - uid: 20666 components: - rot: -1.5707963267948966 rad pos: 68.5,11.5 parent: 2 type: Transform - - uid: 20604 + - uid: 20667 components: - rot: -1.5707963267948966 rad pos: 68.5,10.5 parent: 2 type: Transform - - uid: 20605 + - uid: 20668 components: - rot: -1.5707963267948966 rad pos: 68.5,8.5 parent: 2 type: Transform - - uid: 20606 + - uid: 20669 components: - rot: -1.5707963267948966 rad pos: 68.5,7.5 parent: 2 type: Transform - - uid: 20607 + - uid: 20670 components: - rot: -1.5707963267948966 rad pos: -7.5,28.5 parent: 2 type: Transform - - uid: 20608 + - uid: 20671 components: - rot: -1.5707963267948966 rad pos: -7.5,27.5 parent: 2 type: Transform - - uid: 20609 + - uid: 20672 components: - rot: -1.5707963267948966 rad pos: -33.5,35.5 parent: 2 type: Transform - - uid: 20610 + - uid: 20673 components: - rot: -1.5707963267948966 rad pos: -32.5,35.5 parent: 2 type: Transform - - uid: 20611 + - uid: 20674 components: - rot: -1.5707963267948966 rad pos: -31.5,35.5 parent: 2 type: Transform - - uid: 20612 + - uid: 20675 components: - rot: 1.5707963267948966 rad pos: 46.5,-17.5 parent: 2 type: Transform - - uid: 20613 + - uid: 20676 components: - rot: 1.5707963267948966 rad pos: 45.5,-17.5 parent: 2 type: Transform - - uid: 20614 + - uid: 20677 components: - rot: 3.141592653589793 rad pos: -19.5,44.5 parent: 2 type: Transform - - uid: 20615 + - uid: 20678 components: - pos: 2.5,50.5 parent: 2 type: Transform - - uid: 20616 + - uid: 20679 components: - pos: 2.5,47.5 parent: 2 type: Transform - - uid: 20617 + - uid: 20680 components: - rot: 3.141592653589793 rad pos: 41.5,32.5 parent: 2 type: Transform - - uid: 20618 + - uid: 20681 components: - rot: 3.141592653589793 rad pos: 41.5,31.5 parent: 2 type: Transform - - uid: 20619 + - uid: 20682 components: - rot: 3.141592653589793 rad pos: 41.5,30.5 parent: 2 type: Transform - - uid: 20620 + - uid: 20683 components: - rot: 1.5707963267948966 rad pos: 45.5,40.5 parent: 2 type: Transform - - uid: 20621 + - uid: 20684 components: - rot: 1.5707963267948966 rad pos: 47.5,40.5 parent: 2 type: Transform - - uid: 20622 + - uid: 20685 components: - rot: -1.5707963267948966 rad pos: 41.5,42.5 parent: 2 type: Transform - - uid: 20623 + - uid: 20686 components: - rot: -1.5707963267948966 rad pos: 40.5,42.5 parent: 2 type: Transform - - uid: 20624 + - uid: 20687 components: - rot: -1.5707963267948966 rad pos: 39.5,42.5 parent: 2 type: Transform - - uid: 20625 + - uid: 20688 components: - rot: 3.141592653589793 rad pos: -20.5,65.5 parent: 2 type: Transform - - uid: 20626 + - uid: 20689 components: - pos: -2.5,60.5 parent: 2 type: Transform - - uid: 20627 + - uid: 20690 components: - pos: -0.5,60.5 parent: 2 type: Transform - - uid: 20628 + - uid: 20691 components: - pos: 71.5,39.5 parent: 2 type: Transform - - uid: 20629 + - uid: 20692 components: - pos: 73.5,39.5 parent: 2 type: Transform - - uid: 20630 + - uid: 20693 components: - pos: 73.5,33.5 parent: 2 type: Transform - - uid: 20631 + - uid: 20694 components: - pos: 71.5,33.5 parent: 2 type: Transform - - uid: 20632 + - uid: 20695 components: - pos: 5.5,69.5 parent: 2 type: Transform - - uid: 20633 + - uid: 20696 components: - pos: -8.5,69.5 parent: 2 type: Transform - - uid: 20634 + - uid: 20697 components: - pos: -3.5,42.5 parent: 2 type: Transform - - uid: 20635 + - uid: 20698 components: - pos: 78.5,46.5 parent: 2 type: Transform - - uid: 20636 + - uid: 20699 components: - pos: 79.5,46.5 parent: 2 type: Transform - - uid: 20637 + - uid: 20700 components: - pos: 80.5,46.5 parent: 2 type: Transform - - uid: 20638 + - uid: 20701 components: - pos: 81.5,46.5 parent: 2 type: Transform - - uid: 20639 + - uid: 20702 components: - pos: 82.5,46.5 parent: 2 type: Transform - - uid: 20640 + - uid: 20703 components: - pos: 86.5,46.5 parent: 2 type: Transform - - uid: 20641 + - uid: 20704 components: - pos: 87.5,46.5 parent: 2 type: Transform - - uid: 20642 + - uid: 20705 components: - pos: 88.5,46.5 parent: 2 type: Transform - - uid: 20643 + - uid: 20706 components: - pos: 89.5,46.5 parent: 2 type: Transform - - uid: 20644 + - uid: 20707 components: - pos: 90.5,46.5 parent: 2 type: Transform - - uid: 20645 + - uid: 20708 components: - pos: 93.5,41.5 parent: 2 type: Transform - - uid: 20646 + - uid: 20709 components: - pos: 93.5,40.5 parent: 2 type: Transform - - uid: 20647 + - uid: 20710 components: - pos: 93.5,39.5 parent: 2 type: Transform - - uid: 20648 + - uid: 20711 components: - pos: 93.5,38.5 parent: 2 type: Transform - - uid: 20649 + - uid: 20712 components: - pos: 93.5,37.5 parent: 2 type: Transform - - uid: 20650 + - uid: 20713 components: - pos: 93.5,36.5 parent: 2 type: Transform - - uid: 20651 + - uid: 20714 components: - pos: 93.5,35.5 parent: 2 type: Transform - - uid: 20652 + - uid: 20715 components: - pos: 93.5,34.5 parent: 2 type: Transform - - uid: 20653 + - uid: 20716 components: - pos: 93.5,33.5 parent: 2 type: Transform - - uid: 20654 + - uid: 20717 components: - pos: 93.5,32.5 parent: 2 type: Transform - - uid: 20655 + - uid: 20718 components: - pos: 93.5,31.5 parent: 2 type: Transform - - uid: 20656 + - uid: 20719 components: - pos: 93.5,30.5 parent: 2 type: Transform - - uid: 20657 + - uid: 20720 components: - pos: 90.5,26.5 parent: 2 type: Transform - - uid: 20658 + - uid: 20721 components: - pos: 89.5,26.5 parent: 2 type: Transform - - uid: 20659 + - uid: 20722 components: - pos: 88.5,26.5 parent: 2 type: Transform - - uid: 20660 + - uid: 20723 components: - pos: 87.5,26.5 parent: 2 type: Transform - - uid: 20661 + - uid: 20724 components: - pos: 86.5,26.5 parent: 2 type: Transform - - uid: 20662 + - uid: 20725 components: - pos: 85.5,26.5 parent: 2 type: Transform - - uid: 20663 + - uid: 20726 components: - pos: 81.5,26.5 parent: 2 type: Transform - - uid: 20664 + - uid: 20727 components: - pos: 80.5,26.5 parent: 2 type: Transform - - uid: 20665 + - uid: 20728 components: - pos: 79.5,26.5 parent: 2 type: Transform - - uid: 20666 + - uid: 20729 components: - pos: 78.5,26.5 parent: 2 type: Transform - - uid: 20667 + - uid: 20730 components: - pos: 77.5,26.5 parent: 2 type: Transform - - uid: 20668 + - uid: 20731 components: - pos: 70.5,29.5 parent: 2 type: Transform - - uid: 20669 + - uid: 20732 components: - pos: 71.5,29.5 parent: 2 type: Transform - - uid: 20670 + - uid: 20733 components: - pos: 72.5,29.5 parent: 2 type: Transform - - uid: 20671 + - uid: 20734 components: - pos: 73.5,29.5 parent: 2 type: Transform - - uid: 20672 + - uid: 20735 components: - pos: 74.5,29.5 parent: 2 type: Transform - - uid: 20673 + - uid: 20736 components: - pos: -33.5,40.5 parent: 2 type: Transform - - uid: 20674 + - uid: 20737 components: - pos: -32.5,40.5 parent: 2 type: Transform - - uid: 20675 + - uid: 20738 components: - pos: -32.5,37.5 parent: 2 type: Transform - - uid: 20676 + - uid: 20739 components: - pos: -16.5,55.5 parent: 2 type: Transform - - uid: 20677 + - uid: 20740 components: - pos: -16.5,56.5 parent: 2 type: Transform - - uid: 20678 + - uid: 20741 components: - pos: -14.5,56.5 parent: 2 type: Transform - - uid: 20679 + - uid: 20742 components: - pos: -14.5,55.5 parent: 2 type: Transform - - uid: 20680 + - uid: 20743 components: - pos: -20.5,62.5 parent: 2 type: Transform - - uid: 20681 + - uid: 20744 components: - pos: -14.5,62.5 parent: 2 type: Transform - - uid: 20682 + - uid: 20745 components: - pos: -11.5,69.5 parent: 2 type: Transform - - uid: 20683 + - uid: 20746 components: - pos: -11.5,68.5 parent: 2 type: Transform - - uid: 20684 + - uid: 20747 components: - pos: -11.5,67.5 parent: 2 type: Transform - - uid: 20685 + - uid: 20748 components: - pos: -11.5,73.5 parent: 2 type: Transform - - uid: 20686 + - uid: 20749 components: - pos: -14.5,73.5 parent: 2 type: Transform - - uid: 20687 + - uid: 20750 components: - pos: -20.5,73.5 parent: 2 type: Transform - - uid: 20688 + - uid: 20751 components: - pos: -23.5,73.5 parent: 2 type: Transform - - uid: 20689 + - uid: 20752 components: - pos: -23.5,63.5 parent: 2 type: Transform - - uid: 20690 + - uid: 20753 components: - pos: -23.5,62.5 parent: 2 type: Transform - - uid: 20691 + - uid: 20754 components: - pos: -23.5,61.5 parent: 2 type: Transform - - uid: 20692 + - uid: 20755 components: - rot: 1.5707963267948966 rad pos: 39.5,52.5 parent: 2 type: Transform - - uid: 20693 + - uid: 20756 components: - rot: 3.141592653589793 rad pos: -11.5,51.5 parent: 2 type: Transform - - uid: 20694 + - uid: 20757 components: - rot: 3.141592653589793 rad pos: -11.5,53.5 parent: 2 type: Transform - - uid: 20695 + - uid: 20758 components: - rot: 3.141592653589793 rad pos: -5.5,47.5 parent: 2 type: Transform - - uid: 20696 + - uid: 20759 components: - rot: 3.141592653589793 rad pos: -3.5,47.5 parent: 2 type: Transform - - uid: 20697 + - uid: 20760 components: - rot: 3.141592653589793 rad pos: -5.5,57.5 parent: 2 type: Transform - - uid: 20698 + - uid: 20761 components: - rot: 3.141592653589793 rad pos: -7.5,57.5 parent: 2 type: Transform - - uid: 20699 + - uid: 20762 components: - rot: 3.141592653589793 rad pos: -20.5,67.5 parent: 2 type: Transform - - uid: 20700 + - uid: 20763 components: - rot: -1.5707963267948966 rad pos: -26.5,54.5 parent: 2 type: Transform - - uid: 20701 + - uid: 20764 components: - rot: -1.5707963267948966 rad pos: -26.5,53.5 parent: 2 type: Transform - - uid: 20702 + - uid: 20765 components: - pos: 46.5,43.5 parent: 2 type: Transform - - uid: 20703 + - uid: 20766 components: - rot: -1.5707963267948966 rad pos: -16.5,-88.5 parent: 2 type: Transform - - uid: 20704 + - uid: 20767 components: - rot: -1.5707963267948966 rad pos: -2.5,-82.5 parent: 2 type: Transform - - uid: 20705 + - uid: 20768 components: - rot: -1.5707963267948966 rad pos: -0.5,-82.5 parent: 2 type: Transform - - uid: 20706 + - uid: 20769 components: - pos: -26.5,-97.5 parent: 2 type: Transform - - uid: 20707 + - uid: 20770 components: - pos: -18.5,-97.5 parent: 2 type: Transform - - uid: 20708 + - uid: 20771 components: - pos: -21.5,-94.5 parent: 2 type: Transform - - uid: 20709 + - uid: 20772 components: - pos: -22.5,-94.5 parent: 2 type: Transform - - uid: 20710 + - uid: 20773 components: - pos: -23.5,-94.5 parent: 2 type: Transform - - uid: 20711 + - uid: 20774 components: - pos: -3.5,-97.5 parent: 2 type: Transform - - uid: 20712 + - uid: 20775 components: - pos: -3.5,-98.5 parent: 2 type: Transform - - uid: 20713 + - uid: 20776 components: - pos: -5.5,-101.5 parent: 2 type: Transform - - uid: 20714 + - uid: 20777 components: - pos: -6.5,-101.5 parent: 2 type: Transform - - uid: 20715 + - uid: 20778 components: - pos: -8.5,-101.5 parent: 2 type: Transform - - uid: 20716 + - uid: 20779 components: - pos: -9.5,-101.5 parent: 2 type: Transform - - uid: 20717 + - uid: 20780 components: - rot: 3.141592653589793 rad pos: -44.5,-89.5 parent: 2 type: Transform - - uid: 20718 + - uid: 20781 components: - rot: 3.141592653589793 rad pos: -44.5,-90.5 parent: 2 type: Transform - - uid: 20719 + - uid: 20782 components: - pos: -36.5,-100.5 parent: 2 type: Transform - - uid: 20720 + - uid: 20783 components: - pos: -21.5,-101.5 parent: 2 type: Transform - - uid: 20721 + - uid: 20784 components: - pos: -34.5,-100.5 parent: 2 type: Transform - - uid: 20722 + - uid: 20785 components: - rot: 1.5707963267948966 rad pos: -39.5,-89.5 parent: 2 type: Transform - - uid: 20723 + - uid: 20786 components: - rot: 1.5707963267948966 rad pos: -39.5,-90.5 parent: 2 type: Transform - - uid: 20724 + - uid: 20787 components: - rot: 1.5707963267948966 rad pos: -44.5,-95.5 parent: 2 type: Transform - - uid: 20725 + - uid: 20788 components: - rot: 1.5707963267948966 rad pos: -44.5,-96.5 parent: 2 type: Transform - - uid: 20726 + - uid: 20789 components: - rot: 1.5707963267948966 rad pos: -42.5,-98.5 parent: 2 type: Transform - - uid: 20727 + - uid: 20790 components: - rot: 1.5707963267948966 rad pos: -41.5,-98.5 parent: 2 type: Transform - - uid: 20728 + - uid: 20791 components: - pos: -23.5,-101.5 parent: 2 type: Transform - - uid: 20729 + - uid: 20792 components: - pos: -22.5,-101.5 parent: 2 type: Transform - - uid: 20730 + - uid: 20793 components: - rot: 3.141592653589793 rad pos: -73.5,-27.5 parent: 2 type: Transform - - uid: 20731 + - uid: 20794 components: - pos: 78.5,-38.5 parent: 2 type: Transform - - uid: 20732 + - uid: 20795 components: - pos: 76.5,-35.5 parent: 2 type: Transform - - uid: 20733 + - uid: 20796 components: - pos: 77.5,-35.5 parent: 2 type: Transform - - uid: 20734 + - uid: 20797 components: - pos: 78.5,-35.5 parent: 2 type: Transform - - uid: 20735 + - uid: 20798 components: - pos: 79.5,-35.5 parent: 2 type: Transform - - uid: 20736 + - uid: 20799 components: - pos: 77.5,-32.5 parent: 2 type: Transform - - uid: 20737 + - uid: 20800 components: - pos: 78.5,-32.5 parent: 2 type: Transform - - uid: 20738 + - uid: 20801 components: - pos: 78.5,-44.5 parent: 2 type: Transform - - uid: 20739 + - uid: 20802 components: - pos: 78.5,-45.5 parent: 2 type: Transform - - uid: 20740 + - uid: 20803 components: - pos: 69.5,-42.5 parent: 2 type: Transform - - uid: 20741 + - uid: 20804 components: - pos: 70.5,-42.5 parent: 2 type: Transform - - uid: 20742 + - uid: 20805 components: - rot: -1.5707963267948966 rad pos: 72.5,-50.5 parent: 2 type: Transform - - uid: 20743 + - uid: 20806 components: - pos: 63.5,-61.5 parent: 2 type: Transform - - uid: 20744 + - uid: 20807 components: - pos: 62.5,-61.5 parent: 2 type: Transform - - uid: 20745 + - uid: 20808 components: - pos: 61.5,-61.5 parent: 2 type: Transform - - uid: 20746 + - uid: 20809 components: - pos: 52.5,-61.5 parent: 2 type: Transform - - uid: 20747 + - uid: 20810 components: - pos: 50.5,-64.5 parent: 2 type: Transform - - uid: 20748 + - uid: 20811 components: - pos: 3.5,-28.5 parent: 2 type: Transform - - uid: 20749 + - uid: 20812 components: - pos: 1.5,-30.5 parent: 2 type: Transform - - uid: 20750 + - uid: 20813 components: - pos: 61.5,-70.5 parent: 2 type: Transform - - uid: 20751 + - uid: 20814 components: - pos: 5.5,-28.5 parent: 2 type: Transform - - uid: 20752 + - uid: 20815 components: - pos: 1.5,-31.5 parent: 2 type: Transform - - uid: 20753 + - uid: 20816 components: - pos: 9.5,-31.5 parent: 2 type: Transform - - uid: 20754 + - uid: 20817 components: - pos: 9.5,-34.5 parent: 2 type: Transform - - uid: 20755 + - uid: 20818 components: - rot: -1.5707963267948966 rad pos: 69.5,-36.5 parent: 2 type: Transform - - uid: 20756 + - uid: 20819 components: - rot: -1.5707963267948966 rad pos: 69.5,-38.5 parent: 2 type: Transform - - uid: 20757 + - uid: 20820 components: - rot: 3.141592653589793 rad pos: 68.5,-39.5 parent: 2 type: Transform - - uid: 20758 + - uid: 20821 components: - rot: 3.141592653589793 rad pos: 66.5,-39.5 parent: 2 type: Transform - - uid: 20759 + - uid: 20822 components: - rot: 3.141592653589793 rad pos: 73.5,-30.5 parent: 2 type: Transform - - uid: 20760 + - uid: 20823 components: - rot: 3.141592653589793 rad pos: 71.5,-27.5 parent: 2 type: Transform - - uid: 20761 + - uid: 20824 components: - rot: 3.141592653589793 rad pos: 73.5,-27.5 parent: 2 type: Transform - - uid: 20762 + - uid: 20825 components: - rot: 1.5707963267948966 rad pos: -58.5,-60.5 parent: 2 type: Transform - - uid: 20763 + - uid: 20826 components: - rot: 1.5707963267948966 rad pos: -54.5,-57.5 parent: 2 type: Transform - - uid: 20764 + - uid: 20827 components: - rot: 1.5707963267948966 rad pos: -52.5,-60.5 parent: 2 type: Transform - - uid: 20765 + - uid: 20828 components: - rot: 3.141592653589793 rad pos: 31.5,-33.5 parent: 2 type: Transform - - uid: 20766 + - uid: 20829 components: - rot: 3.141592653589793 rad pos: 19.5,-33.5 parent: 2 type: Transform - - uid: 20767 + - uid: 20830 components: - pos: 60.5,-70.5 parent: 2 type: Transform - - uid: 20768 + - uid: 20831 components: - pos: 2.5,-36.5 parent: 2 type: Transform - - uid: 20769 + - uid: 20832 components: - pos: 51.5,-68.5 parent: 2 type: Transform - - uid: 20770 + - uid: 20833 components: - pos: 50.5,-68.5 parent: 2 type: Transform - - uid: 20771 + - uid: 20834 components: - rot: -1.5707963267948966 rad pos: 43.5,-44.5 parent: 2 type: Transform - - uid: 20772 + - uid: 20835 components: - rot: -1.5707963267948966 rad pos: 44.5,-44.5 parent: 2 type: Transform - - uid: 20773 + - uid: 20836 components: - rot: -1.5707963267948966 rad pos: 16.5,38.5 parent: 2 type: Transform - - uid: 20774 + - uid: 20837 components: - rot: -1.5707963267948966 rad pos: 18.5,37.5 parent: 2 type: Transform - - uid: 20775 + - uid: 20838 components: - rot: -1.5707963267948966 rad pos: 14.5,37.5 parent: 2 type: Transform - - uid: 20776 + - uid: 20839 components: - pos: 62.5,-70.5 parent: 2 type: Transform - - uid: 20777 + - uid: 20840 components: - pos: 71.5,-64.5 parent: 2 type: Transform - - uid: 20778 + - uid: 20841 components: - rot: -1.5707963267948966 rad pos: 54.5,-68.5 parent: 2 type: Transform - - uid: 20779 + - uid: 20842 components: - rot: -1.5707963267948966 rad pos: 55.5,-68.5 parent: 2 type: Transform - - uid: 20780 + - uid: 20843 components: - rot: -1.5707963267948966 rad pos: 56.5,-68.5 parent: 2 type: Transform - - uid: 20781 + - uid: 20844 components: - pos: 54.5,-25.5 parent: 2 type: Transform - - uid: 20782 + - uid: 20845 components: - pos: 56.5,-25.5 parent: 2 type: Transform - - uid: 20783 + - uid: 20846 components: - pos: 58.5,-25.5 parent: 2 type: Transform - - uid: 20784 + - uid: 20847 components: - pos: 68.5,-57.5 parent: 2 type: Transform - - uid: 20785 + - uid: 20848 components: - pos: 71.5,-54.5 parent: 2 type: Transform - - uid: 20786 + - uid: 20849 components: - pos: 70.5,-54.5 parent: 2 type: Transform - - uid: 20787 + - uid: 20850 components: - pos: -12.5,43.5 parent: 2 type: Transform - - uid: 20788 + - uid: 20851 components: - pos: -8.5,43.5 parent: 2 type: Transform - - uid: 20789 + - uid: 20852 components: - pos: 73.5,46.5 parent: 2 type: Transform - - uid: 20790 + - uid: 20853 components: - pos: 72.5,46.5 parent: 2 type: Transform - - uid: 20791 + - uid: 20854 components: - rot: -1.5707963267948966 rad pos: 70.5,-50.5 parent: 2 type: Transform - - uid: 20792 + - uid: 20855 components: - rot: -1.5707963267948966 rad pos: -25.5,-18.5 parent: 2 type: Transform - - uid: 20793 + - uid: 20856 components: - pos: 36.5,18.5 parent: 2 type: Transform - - uid: 20794 + - uid: 20857 components: - pos: 35.5,18.5 parent: 2 type: Transform - - uid: 20795 + - uid: 20858 components: - pos: 34.5,18.5 parent: 2 type: Transform - - uid: 20796 + - uid: 20859 components: - rot: 3.141592653589793 rad pos: 71.5,-30.5 parent: 2 type: Transform - - uid: 20797 - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-85.5 - parent: 2 - type: Transform - - uid: 20798 - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-89.5 - parent: 2 - type: Transform - - uid: 20799 + - uid: 20860 components: - rot: 1.5707963267948966 rad pos: -49.5,-87.5 parent: 2 type: Transform - - uid: 20800 - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-87.5 - parent: 2 - type: Transform - - uid: 20801 + - uid: 20861 components: - pos: -31.5,72.5 parent: 2 type: Transform - - uid: 20802 + - uid: 20862 components: - pos: -30.5,72.5 parent: 2 type: Transform - - uid: 20803 + - uid: 20863 components: - pos: -29.5,72.5 parent: 2 type: Transform - - uid: 20804 + - uid: 20864 components: - pos: -28.5,72.5 parent: 2 type: Transform - - uid: 20805 + - uid: 20865 components: - pos: -27.5,72.5 parent: 2 type: Transform - - uid: 20806 + - uid: 20866 components: - pos: -26.5,72.5 parent: 2 type: Transform - - uid: 20807 + - uid: 20867 components: - pos: -40.5,-62.5 parent: 2 type: Transform - - uid: 20808 + - uid: 20868 components: - pos: -41.5,-62.5 parent: 2 type: Transform - - uid: 20809 + - uid: 20869 components: - pos: -47.5,-34.5 parent: 2 type: Transform - - uid: 20810 + - uid: 20870 components: - pos: -47.5,-35.5 parent: 2 type: Transform - - uid: 20811 + - uid: 20871 components: - pos: 46.5,-78.5 parent: 2 type: Transform - - uid: 20812 + - uid: 20872 components: - pos: 46.5,-77.5 parent: 2 type: Transform - - uid: 20813 + - uid: 20873 components: - pos: 46.5,-79.5 parent: 2 type: Transform - - uid: 20814 + - uid: 20874 components: - rot: 3.141592653589793 rad pos: 24.5,-80.5 parent: 2 type: Transform - - uid: 20815 + - uid: 20875 components: - rot: 3.141592653589793 rad pos: 28.5,-89.5 parent: 2 type: Transform - - uid: 20816 + - uid: 20876 components: - rot: 3.141592653589793 rad pos: 25.5,-75.5 parent: 2 type: Transform - - uid: 20817 + - uid: 20877 components: - rot: 3.141592653589793 rad pos: 26.5,-75.5 parent: 2 type: Transform - - uid: 20818 + - uid: 20878 components: - rot: 3.141592653589793 rad pos: 28.5,-90.5 parent: 2 type: Transform - - uid: 20819 + - uid: 20879 components: - rot: 3.141592653589793 rad pos: 14.5,-78.5 parent: 2 type: Transform - - uid: 20820 + - uid: 20880 components: - rot: 3.141592653589793 rad pos: 13.5,-78.5 parent: 2 type: Transform - - uid: 20821 + - uid: 20881 components: - rot: 3.141592653589793 rad pos: 25.5,-86.5 parent: 2 type: Transform - - uid: 20822 + - uid: 20882 components: - rot: 3.141592653589793 rad pos: 25.5,-67.5 parent: 2 type: Transform - - uid: 20823 + - uid: 20883 components: - rot: 1.5707963267948966 rad pos: 37.5,-74.5 parent: 2 type: Transform - - uid: 20824 + - uid: 20884 components: - rot: 3.141592653589793 rad pos: 26.5,-67.5 parent: 2 type: Transform - - uid: 20825 + - uid: 20885 components: - rot: 3.141592653589793 rad pos: 17.5,-78.5 parent: 2 type: Transform - - uid: 20826 + - uid: 20886 components: - rot: 3.141592653589793 rad pos: 16.5,-78.5 parent: 2 type: Transform - - uid: 20827 + - uid: 20887 components: - rot: 3.141592653589793 rad pos: 14.5,-88.5 parent: 2 type: Transform - - uid: 20828 + - uid: 20888 components: - rot: 3.141592653589793 rad pos: 13.5,-88.5 parent: 2 type: Transform - - uid: 20829 + - uid: 20889 components: - rot: 3.141592653589793 rad pos: 17.5,-88.5 parent: 2 type: Transform - - uid: 20830 + - uid: 20890 components: - rot: 3.141592653589793 rad pos: 16.5,-88.5 parent: 2 type: Transform - - uid: 20831 + - uid: 20891 components: - rot: 3.141592653589793 rad pos: 24.5,-86.5 parent: 2 type: Transform - - uid: 20832 + - uid: 20892 + components: + - rot: 3.141592653589793 rad + pos: 51.5,-72.5 + parent: 2 + type: Transform + - uid: 20893 + components: + - rot: 3.141592653589793 rad + pos: 51.5,-71.5 + parent: 2 + type: Transform + - uid: 20894 + components: + - pos: 9.5,-18.5 + parent: 2 + type: Transform + - uid: 20895 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-22.5 + parent: 2 + type: Transform + - uid: 20896 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-23.5 + parent: 2 + type: Transform + - uid: 20897 + components: + - pos: 45.5,9.5 + parent: 2 + type: Transform + - uid: 20898 + components: + - pos: 48.5,7.5 + parent: 2 + type: Transform + - uid: 20899 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-74.5 + parent: 2 + type: Transform + - uid: 20900 + components: + - pos: -76.5,-25.5 + parent: 2 + type: Transform + - uid: 20901 + components: + - pos: -76.5,-12.5 + parent: 2 + type: Transform + - uid: 20902 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,35.5 + parent: 2 + type: Transform + - uid: 20903 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,35.5 + parent: 2 + type: Transform + - uid: 20904 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,35.5 + parent: 2 + type: Transform + - uid: 20905 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,35.5 + parent: 2 + type: Transform + - uid: 20906 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,35.5 + parent: 2 + type: Transform + - uid: 20907 + components: + - pos: 67.5,-32.5 + parent: 2 + type: Transform + - uid: 20908 + components: + - rot: 1.5707963267948966 rad + pos: -77.5,-51.5 + parent: 2 + type: Transform + - uid: 20909 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,-74.5 + parent: 2 + type: Transform + - uid: 20910 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,-74.5 + parent: 2 + type: Transform + - uid: 20911 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,-74.5 + parent: 2 + type: Transform + - uid: 20912 + components: + - rot: 1.5707963267948966 rad + pos: -80.5,-54.5 + parent: 2 + type: Transform + - uid: 20913 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,13.5 + parent: 2 + type: Transform + - uid: 20914 + components: + - rot: 1.5707963267948966 rad + pos: -78.5,-56.5 + parent: 2 + type: Transform + - uid: 20915 + components: + - pos: -72.5,-50.5 + parent: 2 + type: Transform + - uid: 20916 + components: + - rot: 1.5707963267948966 rad + pos: -77.5,-56.5 + parent: 2 + type: Transform + - uid: 20917 + components: + - rot: 1.5707963267948966 rad + pos: -80.5,-53.5 + parent: 2 + type: Transform + - uid: 20918 + components: + - rot: 1.5707963267948966 rad + pos: -78.5,-51.5 + parent: 2 + type: Transform + - uid: 20919 + components: + - rot: -1.5707963267948966 rad + pos: -72.5,-57.5 + parent: 2 + type: Transform + - uid: 20920 + components: + - rot: -1.5707963267948966 rad + pos: -74.5,-40.5 + parent: 2 + type: Transform + - uid: 20921 + components: + - pos: -70.5,-47.5 + parent: 2 + type: Transform + - uid: 20922 + components: + - pos: -69.5,-47.5 + parent: 2 + type: Transform + - uid: 20923 + components: + - pos: -68.5,-47.5 + parent: 2 + type: Transform + - uid: 20924 + components: + - pos: -64.5,-43.5 + parent: 2 + type: Transform + - uid: 20925 + components: + - pos: -82.5,-28.5 + parent: 2 + type: Transform + - uid: 20926 + components: + - pos: -82.5,-29.5 + parent: 2 + type: Transform + - uid: 20927 + components: + - pos: -82.5,-30.5 + parent: 2 + type: Transform + - uid: 20928 + components: + - pos: -82.5,-31.5 + parent: 2 + type: Transform + - uid: 20929 + components: + - pos: -82.5,-32.5 + parent: 2 + type: Transform + - uid: 20930 + components: + - pos: -82.5,-33.5 + parent: 2 + type: Transform + - uid: 20931 + components: + - pos: -82.5,-34.5 + parent: 2 + type: Transform + - uid: 20932 + components: + - pos: -82.5,-35.5 + parent: 2 + type: Transform + - uid: 20933 + components: + - pos: -82.5,-36.5 + parent: 2 + type: Transform + - uid: 20934 + components: + - pos: -82.5,-37.5 + parent: 2 + type: Transform + - uid: 20935 + components: + - pos: -82.5,-38.5 + parent: 2 + type: Transform + - uid: 20936 + components: + - pos: -82.5,-39.5 + parent: 2 + type: Transform + - uid: 20937 + components: + - pos: -82.5,-40.5 + parent: 2 + type: Transform + - uid: 20938 + components: + - pos: -82.5,-41.5 + parent: 2 + type: Transform + - uid: 20939 + components: + - pos: -82.5,-42.5 + parent: 2 + type: Transform + - uid: 20940 + components: + - pos: -82.5,-43.5 + parent: 2 + type: Transform + - uid: 20941 + components: + - pos: -82.5,-44.5 + parent: 2 + type: Transform + - uid: 20942 + components: + - pos: -82.5,-45.5 + parent: 2 + type: Transform + - uid: 20943 + components: + - pos: -82.5,-46.5 + parent: 2 + type: Transform + - uid: 20944 + components: + - pos: -82.5,-47.5 + parent: 2 + type: Transform + - uid: 20945 + components: + - pos: -82.5,-48.5 + parent: 2 + type: Transform + - uid: 20946 + components: + - pos: -82.5,-27.5 + parent: 2 + type: Transform + - uid: 20947 + components: + - pos: -82.5,-26.5 + parent: 2 + type: Transform + - uid: 20948 + components: + - pos: -81.5,-26.5 + parent: 2 + type: Transform + - uid: 20949 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,9.5 + parent: 2 + type: Transform + - uid: 20950 + components: + - pos: -51.5,-13.5 + parent: 2 + type: Transform + - uid: 20951 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,9.5 + parent: 2 + type: Transform + - uid: 20952 + components: + - rot: 3.141592653589793 rad + pos: -61.5,-44.5 + parent: 2 + type: Transform + - uid: 20953 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,9.5 + parent: 2 + type: Transform + - uid: 20954 + components: + - pos: -60.5,-38.5 + parent: 2 + type: Transform + - uid: 20955 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,-38.5 + parent: 2 + type: Transform + - uid: 20956 + components: + - pos: -52.5,-38.5 + parent: 2 + type: Transform + - uid: 20957 + components: + - rot: 3.141592653589793 rad + pos: -78.5,-45.5 + parent: 2 + type: Transform + - uid: 20958 + components: + - pos: -42.5,-37.5 + parent: 2 + type: Transform + - uid: 20959 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,-31.5 + parent: 2 + type: Transform + - uid: 20960 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,-32.5 + parent: 2 + type: Transform + - uid: 20961 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-34.5 + parent: 2 + type: Transform + - uid: 20962 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 2 + type: Transform + - uid: 20963 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 2 + type: Transform + - uid: 20964 + components: + - pos: 3.5,-3.5 + parent: 2 + type: Transform + - uid: 20965 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-40.5 + parent: 2 + type: Transform + - uid: 20966 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-40.5 + parent: 2 + type: Transform + - uid: 20967 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-40.5 + parent: 2 + type: Transform + - uid: 20968 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-40.5 + parent: 2 + type: Transform + - uid: 20969 + components: + - pos: 8.5,27.5 + parent: 2 + type: Transform + - uid: 20970 + components: + - pos: 10.5,29.5 + parent: 2 + type: Transform + - uid: 20971 + components: + - pos: 10.5,27.5 + parent: 2 + type: Transform + - uid: 20972 + components: + - pos: 9.5,27.5 + parent: 2 + type: Transform + - uid: 20973 + components: + - rot: -1.5707963267948966 rad + pos: 54.5,-40.5 + parent: 2 + type: Transform + - uid: 20974 + components: + - rot: -1.5707963267948966 rad + pos: 54.5,-42.5 + parent: 2 + type: Transform + - uid: 20975 + components: + - pos: -29.5,-63.5 + parent: 2 + type: Transform + - uid: 20976 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-13.5 + parent: 2 + type: Transform + - uid: 20977 components: - rot: 3.141592653589793 rad - pos: 51.5,-72.5 + pos: -21.5,-91.5 parent: 2 type: Transform - - uid: 20833 + - uid: 20978 components: - rot: 3.141592653589793 rad - pos: 51.5,-71.5 + pos: -23.5,-91.5 parent: 2 type: Transform - - uid: 20834 + - uid: 20979 components: - - pos: 9.5,-18.5 + - rot: 1.5707963267948966 rad + pos: -38.5,17.5 parent: 2 type: Transform - - uid: 20835 + - uid: 20980 components: - rot: 3.141592653589793 rad - pos: 6.5,-22.5 + pos: -27.5,-90.5 parent: 2 type: Transform - - uid: 20836 + - uid: 20981 components: - - rot: 3.141592653589793 rad - pos: 6.5,-23.5 + - rot: -1.5707963267948966 rad + pos: 55.5,62.5 parent: 2 type: Transform - - uid: 20837 + - uid: 20982 components: - - pos: 45.5,9.5 + - rot: -1.5707963267948966 rad + pos: 54.5,62.5 parent: 2 type: Transform - - uid: 20838 + - uid: 20983 components: - - pos: 48.5,7.5 + - rot: -1.5707963267948966 rad + pos: 53.5,62.5 parent: 2 type: Transform - - uid: 20839 + - uid: 20984 components: - rot: -1.5707963267948966 rad - pos: 1.5,-74.5 + pos: 49.5,58.5 parent: 2 type: Transform - - uid: 20840 + - uid: 20985 components: - - pos: -76.5,-25.5 + - rot: -1.5707963267948966 rad + pos: 49.5,57.5 parent: 2 type: Transform - - uid: 20841 + - uid: 20986 components: - - pos: -76.5,-12.5 + - rot: -1.5707963267948966 rad + pos: 49.5,56.5 parent: 2 type: Transform - - uid: 20842 + - uid: 20987 components: - rot: -1.5707963267948966 rad - pos: 31.5,35.5 + pos: 59.5,58.5 parent: 2 type: Transform - - uid: 20843 + - uid: 20988 components: - rot: -1.5707963267948966 rad - pos: 30.5,35.5 + pos: 59.5,57.5 parent: 2 type: Transform - - uid: 20844 + - uid: 20989 components: - rot: -1.5707963267948966 rad - pos: 29.5,35.5 + pos: 59.5,56.5 parent: 2 type: Transform - - uid: 20845 + - uid: 20990 components: - - rot: -1.5707963267948966 rad - pos: 28.5,35.5 + - rot: 3.141592653589793 rad + pos: -22.5,-91.5 parent: 2 type: Transform - - uid: 20846 + - uid: 20991 components: - - rot: -1.5707963267948966 rad - pos: 27.5,35.5 + - rot: 3.141592653589793 rad + pos: 39.5,67.5 parent: 2 type: Transform - - uid: 20847 + - uid: 20992 components: - - pos: 67.5,-32.5 + - rot: 3.141592653589793 rad + pos: 35.5,63.5 parent: 2 type: Transform - - uid: 20848 + - uid: 20993 components: - - rot: 1.5707963267948966 rad - pos: -77.5,-51.5 + - rot: 3.141592653589793 rad + pos: 43.5,63.5 parent: 2 type: Transform - - uid: 20849 + - uid: 20994 components: - - rot: 1.5707963267948966 rad - pos: 38.5,-74.5 + - rot: 3.141592653589793 rad + pos: 78.5,-43.5 parent: 2 type: Transform - - uid: 20850 + - uid: 20995 components: - - rot: 1.5707963267948966 rad - pos: 39.5,-74.5 + - rot: 3.141592653589793 rad + pos: 78.5,-47.5 parent: 2 type: Transform - - uid: 20851 + - uid: 20996 components: - rot: 1.5707963267948966 rad - pos: 40.5,-74.5 + pos: -37.5,17.5 parent: 2 type: Transform - - uid: 20852 + - uid: 20997 components: - - rot: 1.5707963267948966 rad - pos: -80.5,-54.5 + - rot: 3.141592653589793 rad + pos: -57.5,-87.5 parent: 2 type: Transform - - uid: 20853 + - uid: 20998 components: - rot: 1.5707963267948966 rad - pos: -8.5,13.5 + pos: -64.5,-53.5 parent: 2 type: Transform - - uid: 20854 + - uid: 20999 components: - rot: 1.5707963267948966 rad - pos: -78.5,-56.5 + pos: -64.5,-54.5 parent: 2 type: Transform - - uid: 20855 + - uid: 21000 components: - - pos: -72.5,-50.5 + - rot: 1.5707963267948966 rad + pos: -64.5,-52.5 parent: 2 type: Transform - - uid: 20856 + - uid: 21001 components: - rot: 1.5707963267948966 rad - pos: -77.5,-56.5 + pos: -64.5,-55.5 parent: 2 type: Transform - - uid: 20857 + - uid: 21002 components: - rot: 1.5707963267948966 rad - pos: -80.5,-53.5 + pos: -51.5,-85.5 parent: 2 type: Transform - - uid: 20858 + - uid: 21003 components: - rot: 1.5707963267948966 rad - pos: -78.5,-51.5 + pos: -51.5,-89.5 parent: 2 type: Transform - - uid: 20859 +- proto: GrilleBroken + entities: + - uid: 21004 components: - - rot: -1.5707963267948966 rad - pos: -72.5,-57.5 + - rot: 3.141592653589793 rad + pos: -2.5,-71.5 parent: 2 type: Transform - - uid: 20860 + - uid: 21005 + components: + - pos: -2.5,-71.5 + parent: 2 + type: Transform + - uid: 21006 components: - rot: -1.5707963267948966 rad - pos: -74.5,-40.5 + pos: -54.5,-83.5 parent: 2 type: Transform - - uid: 20861 + - uid: 21007 components: - - pos: -70.5,-47.5 + - rot: 1.5707963267948966 rad + pos: -54.5,-83.5 parent: 2 type: Transform - - uid: 20862 + - uid: 21008 components: - - pos: -69.5,-47.5 + - rot: -1.5707963267948966 rad + pos: 2.5,49.5 parent: 2 type: Transform - - uid: 20863 + - uid: 21009 components: - - pos: -68.5,-47.5 + - rot: 1.5707963267948966 rad + pos: 2.5,49.5 parent: 2 type: Transform - - uid: 20864 + - uid: 21010 components: - - pos: -64.5,-43.5 + - rot: 3.141592653589793 rad + pos: 2.5,48.5 parent: 2 type: Transform - - uid: 20865 + - uid: 21011 components: - - pos: -82.5,-28.5 + - pos: 2.5,48.5 parent: 2 type: Transform - - uid: 20866 +- proto: GrilleDiagonal + entities: + - uid: 21012 components: - - pos: -82.5,-29.5 + - rot: 3.141592653589793 rad + pos: -1.5,-36.5 parent: 2 type: Transform - - uid: 20867 + - uid: 21013 components: - - pos: -82.5,-30.5 + - rot: -1.5707963267948966 rad + pos: -1.5,-30.5 parent: 2 type: Transform - - uid: 20868 + - uid: 21014 components: - - pos: -82.5,-31.5 + - pos: -50.5,-88.5 parent: 2 type: Transform - - uid: 20869 + - uid: 21015 components: - - pos: -82.5,-32.5 + - rot: -1.5707963267948966 rad + pos: 59.5,59.5 parent: 2 type: Transform - - uid: 20870 + - uid: 21016 components: - - pos: -82.5,-33.5 + - rot: 3.141592653589793 rad + pos: 59.5,55.5 parent: 2 type: Transform - - uid: 20871 + - uid: 21017 components: - - pos: -82.5,-34.5 + - pos: 49.5,59.5 parent: 2 type: Transform - - uid: 20872 + - uid: 21018 components: - - pos: -82.5,-35.5 + - rot: -1.5707963267948966 rad + pos: -1.5,-30.5 parent: 2 type: Transform - - uid: 20873 + - uid: 21019 components: - - pos: -82.5,-36.5 + - rot: 1.5707963267948966 rad + pos: -27.5,-91.5 parent: 2 type: Transform - - uid: 20874 + - uid: 21020 components: - - pos: -82.5,-37.5 + - rot: 3.141592653589793 rad + pos: -18.5,-91.5 parent: 2 type: Transform - - uid: 20875 + - uid: 21021 components: - - pos: -82.5,-38.5 + - rot: 3.141592653589793 rad + pos: 18.5,-88.5 parent: 2 type: Transform - - uid: 20876 + - uid: 21022 components: - - pos: -82.5,-39.5 + - rot: -1.5707963267948966 rad + pos: 18.5,-78.5 parent: 2 type: Transform - - uid: 20877 + - uid: 21023 components: - - pos: -82.5,-40.5 + - rot: 1.5707963267948966 rad + pos: 12.5,-88.5 parent: 2 type: Transform - - uid: 20878 + - uid: 21024 components: - - pos: -82.5,-41.5 + - pos: 12.5,-78.5 parent: 2 type: Transform - - uid: 20879 + - uid: 21025 components: - - pos: -82.5,-42.5 + - rot: -1.5707963267948966 rad + pos: 78.5,-42.5 parent: 2 type: Transform - - uid: 20880 + - uid: 21026 components: - - pos: -82.5,-43.5 + - rot: 3.141592653589793 rad + pos: -1.5,-36.5 parent: 2 type: Transform - - uid: 20881 + - uid: 21027 components: - - pos: -82.5,-44.5 + - rot: 3.141592653589793 rad + pos: -50.5,-89.5 parent: 2 type: Transform - - uid: 20882 + - uid: 21028 components: - - pos: -82.5,-45.5 + - rot: 3.141592653589793 rad + pos: -49.5,-88.5 parent: 2 type: Transform - - uid: 20883 + - uid: 21029 components: - - pos: -82.5,-46.5 + - rot: -1.5707963267948966 rad + pos: -49.5,-86.5 parent: 2 type: Transform - - uid: 20884 + - uid: 21030 components: - - pos: -82.5,-47.5 + - rot: 1.5707963267948966 rad + pos: -50.5,-86.5 parent: 2 type: Transform - - uid: 20885 + - uid: 21031 components: - - pos: -82.5,-48.5 + - rot: -1.5707963267948966 rad + pos: -50.5,-85.5 parent: 2 type: Transform - - uid: 20886 + - uid: 21032 components: - - pos: -82.5,-27.5 + - rot: 1.5707963267948966 rad + pos: 49.5,55.5 parent: 2 type: Transform - - uid: 20887 + - uid: 21033 components: - - pos: -82.5,-26.5 + - pos: 52.5,62.5 parent: 2 type: Transform - - uid: 20888 + - uid: 21034 components: - - pos: -81.5,-26.5 + - rot: -1.5707963267948966 rad + pos: 56.5,62.5 parent: 2 type: Transform - - uid: 20889 + - uid: 21035 components: - rot: 1.5707963267948966 rad - pos: -15.5,9.5 + pos: 38.5,59.5 parent: 2 type: Transform - - uid: 20890 + - uid: 21036 components: - - pos: -51.5,-13.5 + - rot: -1.5707963267948966 rad + pos: 38.5,60.5 parent: 2 type: Transform - - uid: 20891 + - uid: 21037 components: - rot: 1.5707963267948966 rad - pos: -14.5,9.5 + pos: 37.5,60.5 parent: 2 type: Transform - - uid: 20892 + - uid: 21038 components: - - rot: 3.141592653589793 rad - pos: -61.5,-44.5 + - rot: -1.5707963267948966 rad + pos: 37.5,61.5 parent: 2 type: Transform - - uid: 20893 + - uid: 21039 components: - rot: 1.5707963267948966 rad - pos: -13.5,9.5 + pos: 36.5,61.5 parent: 2 type: Transform - - uid: 20894 + - uid: 21040 components: - - pos: -60.5,-38.5 + - rot: -1.5707963267948966 rad + pos: 36.5,62.5 parent: 2 type: Transform - - uid: 20895 + - uid: 21041 components: - - rot: -1.5707963267948966 rad - pos: -46.5,-38.5 + - rot: 1.5707963267948966 rad + pos: 35.5,62.5 parent: 2 type: Transform - - uid: 20896 + - uid: 21042 components: - - pos: -52.5,-38.5 + - pos: 35.5,64.5 parent: 2 type: Transform - - uid: 20897 + - uid: 21043 components: - rot: 3.141592653589793 rad - pos: -78.5,-45.5 + pos: 36.5,64.5 parent: 2 type: Transform - - uid: 20898 + - uid: 21044 components: - - pos: -42.5,-37.5 + - pos: 36.5,65.5 parent: 2 type: Transform - - uid: 20899 + - uid: 21045 components: - - rot: -1.5707963267948966 rad - pos: -53.5,-31.5 + - rot: 3.141592653589793 rad + pos: 37.5,65.5 parent: 2 type: Transform - - uid: 20900 + - uid: 21046 components: - - rot: -1.5707963267948966 rad - pos: -53.5,-32.5 + - pos: 37.5,66.5 parent: 2 type: Transform - - uid: 20901 + - uid: 21047 components: - rot: 3.141592653589793 rad - pos: 20.5,-34.5 + pos: 38.5,66.5 parent: 2 type: Transform - - uid: 20902 + - uid: 21048 components: - - rot: -1.5707963267948966 rad - pos: 2.5,-3.5 + - pos: 38.5,67.5 parent: 2 type: Transform - - uid: 20903 + - uid: 21049 components: - rot: -1.5707963267948966 rad - pos: 1.5,-3.5 - parent: 2 - type: Transform - - uid: 20904 - components: - - pos: 3.5,-3.5 + pos: 40.5,67.5 parent: 2 type: Transform - - uid: 20905 + - uid: 21050 components: - - rot: -1.5707963267948966 rad - pos: 23.5,-40.5 + - rot: 1.5707963267948966 rad + pos: 40.5,66.5 parent: 2 type: Transform - - uid: 20906 + - uid: 21051 components: - rot: -1.5707963267948966 rad - pos: 24.5,-40.5 + pos: 41.5,66.5 parent: 2 type: Transform - - uid: 20907 + - uid: 21052 components: - - rot: -1.5707963267948966 rad - pos: 26.5,-40.5 + - rot: 1.5707963267948966 rad + pos: 41.5,65.5 parent: 2 type: Transform - - uid: 20908 + - uid: 21053 components: - rot: -1.5707963267948966 rad - pos: 27.5,-40.5 + pos: 42.5,65.5 parent: 2 type: Transform - - uid: 20909 + - uid: 21054 components: - - pos: 8.5,27.5 + - rot: 1.5707963267948966 rad + pos: 42.5,64.5 parent: 2 type: Transform - - uid: 20910 + - uid: 21055 components: - - pos: 10.5,29.5 + - rot: -1.5707963267948966 rad + pos: 43.5,64.5 parent: 2 type: Transform - - uid: 20911 + - uid: 21056 components: - - pos: 10.5,27.5 + - rot: 3.141592653589793 rad + pos: 43.5,62.5 parent: 2 type: Transform - - uid: 20912 + - uid: 21057 components: - - pos: 9.5,27.5 + - pos: 42.5,62.5 parent: 2 type: Transform - - uid: 20913 + - uid: 21058 components: - - rot: -1.5707963267948966 rad - pos: 54.5,-40.5 + - rot: 3.141592653589793 rad + pos: 42.5,61.5 parent: 2 type: Transform - - uid: 20914 + - uid: 21059 components: - - rot: -1.5707963267948966 rad - pos: 54.5,-42.5 + - pos: 41.5,61.5 parent: 2 type: Transform - - uid: 20915 + - uid: 21060 components: - - pos: -29.5,-63.5 + - rot: 3.141592653589793 rad + pos: 41.5,60.5 parent: 2 type: Transform - - uid: 31313 + - uid: 21061 components: - - rot: -1.5707963267948966 rad - pos: -6.5,-13.5 + - pos: 40.5,60.5 parent: 2 type: Transform -- proto: GrilleBroken - entities: - - uid: 20916 + - uid: 21062 components: - rot: 3.141592653589793 rad - pos: -2.5,-71.5 + pos: 40.5,59.5 parent: 2 type: Transform - - uid: 20917 + - uid: 21063 components: - - pos: -2.5,-71.5 + - rot: 3.141592653589793 rad + pos: 78.5,-48.5 parent: 2 type: Transform - - uid: 20918 + - uid: 21064 components: - - rot: -1.5707963267948966 rad - pos: -54.5,-83.5 + - pos: -79.5,-51.5 parent: 2 type: Transform - - uid: 20919 + - uid: 21065 components: - - rot: 1.5707963267948966 rad - pos: -54.5,-83.5 + - rot: 3.141592653589793 rad + pos: -79.5,-52.5 parent: 2 type: Transform - - uid: 20920 + - uid: 21066 components: - - rot: -1.5707963267948966 rad - pos: 2.5,49.5 + - pos: -80.5,-52.5 parent: 2 type: Transform - - uid: 20921 + - uid: 21067 components: - rot: 1.5707963267948966 rad - pos: 2.5,49.5 + pos: -80.5,-55.5 parent: 2 type: Transform - - uid: 20922 + - uid: 21068 components: - - rot: 3.141592653589793 rad - pos: 2.5,48.5 + - rot: -1.5707963267948966 rad + pos: -79.5,-55.5 parent: 2 type: Transform - - uid: 20923 + - uid: 21069 components: - - pos: 2.5,48.5 + - rot: 1.5707963267948966 rad + pos: -79.5,-56.5 parent: 2 type: Transform - proto: GrilleSpawner entities: - - uid: 20924 + - uid: 21070 components: - rot: 3.141592653589793 rad pos: -47.5,-30.5 @@ -137051,70 +137906,70 @@ entities: type: Transform - proto: GunpetInstrument entities: - - uid: 20925 + - uid: 21071 components: - pos: 18.804333,-20.357145 parent: 2 type: Transform - proto: GunSafeDisabler entities: - - uid: 20926 + - uid: 21072 components: - pos: 23.5,20.5 parent: 2 type: Transform - proto: Handcuffs entities: - - uid: 20927 + - uid: 21073 components: - pos: -1.4479281,19.547018 parent: 2 type: Transform - - uid: 20928 + - uid: 21074 components: - pos: -15.367192,-23.36869 parent: 2 type: Transform - proto: HandheldHealthAnalyzer entities: - - uid: 20929 + - uid: 21075 components: - pos: 10.274347,-58.341446 parent: 2 type: Transform - - uid: 20930 + - uid: 21076 components: - pos: 10.539972,-58.60707 parent: 2 type: Transform - - uid: 20931 + - uid: 21077 components: - pos: 45.505707,8.483616 parent: 2 type: Transform - proto: HandLabeler entities: - - uid: 20932 + - uid: 21078 components: - pos: 7.5090528,-45.828945 parent: 2 type: Transform - - uid: 20933 + - uid: 21079 components: - pos: 39.184,-39.455414 parent: 2 type: Transform - - uid: 20934 + - uid: 21080 components: - pos: -33.328754,17.574179 parent: 2 type: Transform - - uid: 20935 + - uid: 21081 components: - pos: -28.559744,21.679361 parent: 2 type: Transform - - uid: 20936 + - uid: 21082 components: - rot: 3.141592653589793 rad pos: -32.198154,29.656374 @@ -137122,21 +137977,21 @@ entities: type: Transform - proto: HappyHonkNukie entities: - - uid: 20937 + - uid: 21083 components: - pos: 22.60001,-29.307062 parent: 2 type: Transform - proto: HarmonicaInstrument entities: - - uid: 20938 + - uid: 21084 components: - pos: 53.479427,24.562923 parent: 2 type: Transform - proto: HeatExchanger entities: - - uid: 20939 + - uid: 21085 components: - rot: -1.5707963267948966 rad pos: -63.5,-42.5 @@ -137144,7 +137999,7 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 20940 + - uid: 21086 components: - rot: -1.5707963267948966 rad pos: -63.5,-39.5 @@ -137152,14 +138007,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 20941 + - uid: 21087 components: - pos: -62.5,-41.5 parent: 2 type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 20942 + - uid: 21088 components: - pos: -62.5,-40.5 parent: 2 @@ -137168,60 +138023,60 @@ entities: type: AtmosPipeColor - proto: Hemostat entities: - - uid: 20943 + - uid: 21089 components: - pos: 0.5210637,-64.93571 parent: 2 type: Transform - - uid: 20944 + - uid: 21090 components: - pos: 73.5331,-48.317677 parent: 2 type: Transform - proto: HighSecArmoryLocked entities: - - uid: 20945 + - uid: 21091 components: - pos: 28.5,26.5 parent: 2 type: Transform - - uid: 20946 + - uid: 21092 components: - pos: 30.5,26.5 parent: 2 type: Transform - - uid: 20947 + - uid: 21093 components: - pos: 30.5,24.5 parent: 2 type: Transform - - uid: 20948 + - uid: 21094 components: - pos: 28.5,24.5 parent: 2 type: Transform - proto: HighSecCaptainLocked entities: - - uid: 20949 + - uid: 21095 components: - name: vault type: MetaData - pos: 43.5,-24.5 parent: 2 type: Transform - - uid: 20950 + - uid: 21096 components: - name: vault type: MetaData - pos: 43.5,-27.5 parent: 2 type: Transform - - uid: 20951 + - uid: 21097 components: - pos: -1.5,64.5 parent: 2 type: Transform - - uid: 20952 + - uid: 21098 components: - name: AI type: MetaData @@ -137230,21 +138085,21 @@ entities: type: Transform - proto: HighSecCommandLocked entities: - - uid: 20953 + - uid: 21099 components: - pos: 13.5,-21.5 parent: 2 type: Transform - proto: HolofanProjector entities: - - uid: 20954 + - uid: 21100 components: - pos: -37.369167,-8.432599 parent: 2 type: Transform - proto: HospitalCurtains entities: - - uid: 20955 + - uid: 21101 components: - pos: 60.5,21.5 parent: 2 @@ -137255,7 +138110,7 @@ entities: type: Door - canCollide: False type: Physics - - uid: 20956 + - uid: 21102 components: - rot: 3.141592653589793 rad pos: 60.5,13.5 @@ -137263,22 +138118,22 @@ entities: type: Transform - proto: HospitalCurtainsOpen entities: - - uid: 20957 + - uid: 21103 components: - pos: -2.5,-55.5 parent: 2 type: Transform - - uid: 20958 + - uid: 21104 components: - pos: -5.5,-55.5 parent: 2 type: Transform - - uid: 20959 + - uid: 21105 components: - pos: -11.5,-55.5 parent: 2 type: Transform - - uid: 20960 + - uid: 21106 components: - pos: 3.5,-62.5 parent: 2 @@ -137289,99 +138144,99 @@ entities: type: Occluder - canCollide: True type: Physics - - uid: 20961 + - uid: 21107 components: - pos: 0.5,-55.5 parent: 2 type: Transform - - uid: 20962 + - uid: 21108 components: - pos: -8.5,-55.5 parent: 2 type: Transform - proto: hydroponicsSoil entities: - - uid: 20963 + - uid: 21109 components: - pos: 9.5,55.5 parent: 2 type: Transform - - uid: 20964 + - uid: 21110 components: - pos: 8.5,55.5 parent: 2 type: Transform - - uid: 20965 + - uid: 21111 components: - pos: 10.5,55.5 parent: 2 type: Transform - - uid: 20966 + - uid: 21112 components: - pos: 11.5,55.5 parent: 2 type: Transform - - uid: 20967 + - uid: 21113 components: - pos: 7.5,55.5 parent: 2 type: Transform - - uid: 20968 + - uid: 21114 components: - pos: 11.5,52.5 parent: 2 type: Transform - - uid: 20969 + - uid: 21115 components: - pos: 10.5,52.5 parent: 2 type: Transform - - uid: 20970 + - uid: 21116 components: - pos: 9.5,52.5 parent: 2 type: Transform - - uid: 20971 + - uid: 21117 components: - pos: -6.5,49.5 parent: 2 type: Transform - - uid: 20972 + - uid: 21118 components: - pos: -4.5,55.5 parent: 2 type: Transform - - uid: 20973 + - uid: 21119 components: - rot: -1.5707963267948966 rad pos: -28.5,4.5 parent: 2 type: Transform - - uid: 20974 + - uid: 21120 components: - rot: -1.5707963267948966 rad pos: -28.5,3.5 parent: 2 type: Transform - - uid: 20975 + - uid: 21121 components: - rot: -1.5707963267948966 rad pos: -4.5,19.5 parent: 2 type: Transform - - uid: 20976 + - uid: 21122 components: - rot: -1.5707963267948966 rad pos: -7.5,19.5 parent: 2 type: Transform - - uid: 20977 + - uid: 21123 components: - rot: 1.5707963267948966 rad pos: -54.5,-68.5 parent: 2 type: Transform - - uid: 20978 + - uid: 21124 components: - rot: 1.5707963267948966 rad pos: -55.5,-68.5 @@ -137389,296 +138244,296 @@ entities: type: Transform - proto: HydroponicsToolClippers entities: - - uid: 20979 + - uid: 21125 components: - pos: -47.467487,-3.558907 parent: 2 type: Transform - proto: HydroponicsToolHatchet entities: - - uid: 20980 + - uid: 21126 components: - pos: 9.725508,-56.44578 parent: 2 type: Transform - proto: HydroponicsToolMiniHoe entities: - - uid: 20981 + - uid: 21127 components: - pos: 57.497448,6.490094 parent: 2 type: Transform - - uid: 20982 + - uid: 21128 components: - pos: -28.501194,4.4131045 parent: 2 type: Transform - - uid: 20983 + - uid: 21129 components: - pos: 55.4544,56.501 parent: 2 type: Transform - - uid: 20984 + - uid: 21130 components: - pos: 7.1714664,53.671818 parent: 2 type: Transform - proto: HydroponicsToolScythe entities: - - uid: 20985 + - uid: 21131 components: - pos: -2.5396576,10.576576 parent: 2 type: Transform - proto: HydroponicsToolSpade entities: - - uid: 20986 + - uid: 21132 components: - pos: 57.622448,6.583844 parent: 2 type: Transform - - uid: 20987 + - uid: 21133 components: - pos: -28.61099,3.5269613 parent: 2 type: Transform - - uid: 20988 + - uid: 21134 components: - pos: 55.54815,56.53225 parent: 2 type: Transform - proto: hydroponicsTray entities: - - uid: 20989 + - uid: 21135 components: - pos: -10.5,11.5 parent: 2 type: Transform - - uid: 20990 + - uid: 21136 components: - pos: -6.5,10.5 parent: 2 type: Transform - - uid: 20991 + - uid: 21137 components: - pos: -10.5,10.5 parent: 2 type: Transform - - uid: 20992 + - uid: 21138 components: - pos: -4.5,7.5 parent: 2 type: Transform - - uid: 20993 + - uid: 21139 components: - pos: -8.5,9.5 parent: 2 type: Transform - - uid: 20994 + - uid: 21140 components: - pos: -6.5,7.5 parent: 2 type: Transform - - uid: 20995 + - uid: 21141 components: - pos: -6.5,9.5 parent: 2 type: Transform - - uid: 20996 + - uid: 21142 components: - pos: -8.5,8.5 parent: 2 type: Transform - - uid: 20997 + - uid: 21143 components: - pos: -4.5,8.5 parent: 2 type: Transform - - uid: 20998 + - uid: 21144 components: - pos: -8.5,10.5 parent: 2 type: Transform - - uid: 20999 + - uid: 21145 components: - pos: -6.5,11.5 parent: 2 type: Transform - - uid: 21000 + - uid: 21146 components: - pos: -6.5,8.5 parent: 2 type: Transform - - uid: 21001 + - uid: 21147 components: - pos: -10.5,8.5 parent: 2 type: Transform - - uid: 21002 + - uid: 21148 components: - pos: -8.5,7.5 parent: 2 type: Transform - - uid: 21003 + - uid: 21149 components: - pos: -10.5,7.5 parent: 2 type: Transform - - uid: 21004 + - uid: 21150 components: - pos: -10.5,9.5 parent: 2 type: Transform - - uid: 21005 + - uid: 21151 components: - pos: -8.5,11.5 parent: 2 type: Transform - - uid: 21006 + - uid: 21152 components: - pos: 58.5,8.5 parent: 2 type: Transform - - uid: 21007 + - uid: 21153 components: - pos: 58.5,7.5 parent: 2 type: Transform - - uid: 21008 + - uid: 21154 components: - pos: 58.5,6.5 parent: 2 type: Transform - - uid: 21009 + - uid: 21155 components: - pos: 56.5,8.5 parent: 2 type: Transform - - uid: 21010 + - uid: 21156 components: - pos: 56.5,7.5 parent: 2 type: Transform - - uid: 21011 + - uid: 21157 components: - pos: 56.5,6.5 parent: 2 type: Transform - - uid: 21012 + - uid: 21158 components: - pos: 52.5,55.5 parent: 2 type: Transform - - uid: 21013 + - uid: 21159 components: - pos: 56.5,55.5 parent: 2 type: Transform - proto: HydroponicsTrayMachineCircuitboard entities: - - uid: 21014 + - uid: 21160 components: - pos: 38.518326,-56.124916 parent: 2 type: Transform - proto: InflatableDoorStack1 entities: - - uid: 21015 + - uid: 21161 components: - pos: 41.577766,-55.382984 parent: 2 type: Transform - proto: InflatableWall entities: - - uid: 21016 + - uid: 21162 components: - pos: -51.5,-66.5 parent: 2 type: Transform - - uid: 21017 + - uid: 21163 components: - pos: -51.5,-67.5 parent: 2 type: Transform - - uid: 21018 + - uid: 21164 components: - pos: -49.5,-72.5 parent: 2 type: Transform - proto: InflatableWallStack entities: - - uid: 21019 + - uid: 21165 components: - pos: 7.4753633,-16.474928 parent: 2 type: Transform - proto: InflatableWallStack1 entities: - - uid: 21020 + - uid: 21166 components: - pos: -38.56672,-98.45029 parent: 2 type: Transform - proto: IngotGold entities: - - uid: 21021 + - uid: 21167 components: - pos: 48.54513,-24.041304 parent: 2 type: Transform - - uid: 21022 + - uid: 21168 components: - pos: 48.16234,-27.566782 parent: 2 type: Transform - proto: IngotGold1 entities: - - uid: 21023 + - uid: 21169 components: - pos: 14.545005,56.593597 parent: 2 type: Transform - - uid: 21024 + - uid: 21170 components: - pos: 59.385517,-51.41954 parent: 2 type: Transform - - uid: 21025 + - uid: 21171 components: - pos: 59.432392,-51.591415 parent: 2 type: Transform - proto: IntercomAll entities: - - uid: 21026 + - uid: 21172 components: - pos: 20.5,-20.5 parent: 2 type: Transform - proto: IntercomCommand entities: - - uid: 21027 + - uid: 21173 components: - pos: -34.5,-14.5 parent: 2 type: Transform - - uid: 21028 + - uid: 21174 components: - pos: 64.5,0.5 parent: 2 type: Transform - - uid: 21029 + - uid: 21175 components: - pos: 64.5,-50.5 parent: 2 type: Transform - - uid: 21030 + - uid: 21176 components: - rot: -1.5707963267948966 rad pos: 9.5,21.5 parent: 2 type: Transform - - uid: 21031 + - uid: 21177 components: - rot: -1.5707963267948966 rad pos: -16.5,-57.5 @@ -137686,147 +138541,147 @@ entities: type: Transform - proto: IntercomCommon entities: - - uid: 21032 + - uid: 21178 components: - pos: -38.5,-70.5 parent: 2 type: Transform - - uid: 21033 + - uid: 21179 components: - rot: 1.5707963267948966 rad pos: -14.5,57.5 parent: 2 type: Transform - - uid: 21034 + - uid: 21180 components: - pos: 37.5,-69.5 parent: 2 type: Transform - - uid: 21035 + - uid: 21181 components: - rot: -1.5707963267948966 rad pos: 29.5,-2.5 parent: 2 type: Transform - - uid: 21036 + - uid: 21182 components: - rot: -1.5707963267948966 rad pos: 7.5,6.5 parent: 2 type: Transform - - uid: 21037 + - uid: 21183 components: - pos: 14.5,4.5 parent: 2 type: Transform - - uid: 21038 + - uid: 21184 components: - pos: 9.5,11.5 parent: 2 type: Transform - - uid: 21039 + - uid: 21185 components: - rot: 1.5707963267948966 rad pos: 15.5,-3.5 parent: 2 type: Transform - - uid: 21040 + - uid: 21186 components: - pos: -31.5,11.5 parent: 2 type: Transform - - uid: 21041 + - uid: 21187 components: - pos: -30.5,2.5 parent: 2 type: Transform - - uid: 21042 + - uid: 21188 components: - pos: -15.5,-24.5 parent: 2 type: Transform - - uid: 21043 + - uid: 21189 components: - pos: 4.5,-39.5 parent: 2 type: Transform - - uid: 21044 + - uid: 21190 components: - pos: 39.5,-40.5 parent: 2 type: Transform - - uid: 21045 + - uid: 21191 components: - pos: 29.5,-15.5 parent: 2 type: Transform - - uid: 21046 + - uid: 21192 components: - pos: 39.5,3.5 parent: 2 type: Transform - - uid: 21047 + - uid: 21193 components: - pos: 54.5,-4.5 parent: 2 type: Transform - - uid: 21048 + - uid: 21194 components: - rot: -1.5707963267948966 rad pos: 13.5,-8.5 parent: 2 type: Transform - - uid: 21049 + - uid: 21195 components: - rot: 1.5707963267948966 rad pos: -1.5,48.5 parent: 2 type: Transform - - uid: 21050 + - uid: 21196 components: - rot: 1.5707963267948966 rad pos: -19.5,40.5 parent: 2 type: Transform - - uid: 21051 + - uid: 21197 components: - rot: -1.5707963267948966 rad pos: -2.5,-18.5 parent: 2 type: Transform - - uid: 21052 + - uid: 21198 components: - pos: -14.5,-40.5 parent: 2 type: Transform - - uid: 21053 + - uid: 21199 components: - rot: -1.5707963267948966 rad pos: 17.5,-28.5 parent: 2 type: Transform - - uid: 21054 + - uid: 21200 components: - pos: 17.5,-51.5 parent: 2 type: Transform - - uid: 21055 + - uid: 21201 components: - pos: -25.5,-94.5 parent: 2 type: Transform - - uid: 21056 + - uid: 21202 components: - rot: 1.5707963267948966 rad pos: -21.5,29.5 parent: 2 type: Transform - - uid: 21057 + - uid: 21203 components: - pos: 23.5,-69.5 parent: 2 type: Transform - - uid: 21058 + - uid: 21204 components: - rot: -1.5707963267948966 rad pos: 20.5,-84.5 @@ -137834,44 +138689,44 @@ entities: type: Transform - proto: IntercomEngineering entities: - - uid: 21059 + - uid: 21205 components: - pos: -24.5,-7.5 parent: 2 type: Transform - - uid: 21060 + - uid: 21206 components: - pos: -35.5,-4.5 parent: 2 type: Transform - - uid: 21061 + - uid: 21207 components: - rot: -1.5707963267948966 rad pos: -52.5,-9.5 parent: 2 type: Transform - - uid: 21062 + - uid: 21208 components: - pos: -61.5,-26.5 parent: 2 type: Transform - - uid: 21063 + - uid: 21209 components: - pos: -28.5,-32.5 parent: 2 type: Transform - - uid: 21064 + - uid: 21210 components: - rot: -1.5707963267948966 rad pos: -32.5,-49.5 parent: 2 type: Transform - - uid: 21065 + - uid: 21211 components: - pos: -67.5,-35.5 parent: 2 type: Transform - - uid: 21066 + - uid: 21212 components: - rot: -1.5707963267948966 rad pos: -49.5,-22.5 @@ -137879,159 +138734,159 @@ entities: type: Transform - proto: IntercomMedical entities: - - uid: 21067 + - uid: 21213 components: - pos: -13.5,-58.5 parent: 2 type: Transform - - uid: 21068 + - uid: 21214 components: - rot: 1.5707963267948966 rad pos: -32.5,-70.5 parent: 2 type: Transform - - uid: 21069 + - uid: 21215 components: - pos: -24.5,-56.5 parent: 2 type: Transform - - uid: 21070 + - uid: 21216 components: - pos: 2.5,-51.5 parent: 2 type: Transform - - uid: 21071 + - uid: 21217 components: - pos: -25.5,-68.5 parent: 2 type: Transform - - uid: 21072 + - uid: 21218 components: - rot: -1.5707963267948966 rad pos: -4.5,-64.5 parent: 2 type: Transform - - uid: 21073 + - uid: 21219 components: - rot: 1.5707963267948966 rad pos: -13.5,-36.5 parent: 2 type: Transform - - uid: 21074 + - uid: 21220 components: - rot: 1.5707963267948966 rad pos: -27.5,-85.5 parent: 2 type: Transform - - uid: 21075 + - uid: 21221 components: - rot: -1.5707963267948966 rad pos: -21.5,-80.5 parent: 2 type: Transform - - uid: 21076 + - uid: 21222 components: - pos: -19.5,-74.5 parent: 2 type: Transform - proto: IntercomScience entities: - - uid: 21077 + - uid: 21223 components: - pos: 42.5,-34.5 parent: 2 type: Transform - - uid: 21078 + - uid: 21224 components: - pos: 44.5,-40.5 parent: 2 type: Transform - - uid: 21079 + - uid: 21225 components: - rot: 1.5707963267948966 rad pos: 40.5,-45.5 parent: 2 type: Transform - - uid: 21080 + - uid: 21226 components: - rot: -1.5707963267948966 rad pos: 53.5,-55.5 parent: 2 type: Transform - - uid: 21081 + - uid: 21227 components: - pos: 67.5,-42.5 parent: 2 type: Transform - - uid: 21082 + - uid: 21228 components: - rot: -1.5707963267948966 rad pos: 76.5,-40.5 parent: 2 type: Transform - - uid: 21083 + - uid: 21229 components: - pos: 60.5,-30.5 parent: 2 type: Transform - - uid: 21084 + - uid: 21230 components: - pos: 49.5,-36.5 parent: 2 type: Transform - proto: IntercomSecurity entities: - - uid: 21085 + - uid: 21231 components: - rot: 1.5707963267948966 rad pos: 3.5,14.5 parent: 2 type: Transform - - uid: 21086 + - uid: 21232 components: - rot: -1.5707963267948966 rad pos: -13.5,24.5 parent: 2 type: Transform - - uid: 21087 + - uid: 21233 components: - pos: -16.5,-19.5 parent: 2 type: Transform - - uid: 21088 + - uid: 21234 components: - rot: 1.5707963267948966 rad pos: -2.5,18.5 parent: 2 type: Transform - - uid: 21089 + - uid: 21235 components: - pos: 26.5,24.5 parent: 2 type: Transform - - uid: 21090 + - uid: 21236 components: - pos: 16.5,24.5 parent: 2 type: Transform - - uid: 21091 + - uid: 21237 components: - rot: 1.5707963267948966 rad pos: 18.5,-45.5 parent: 2 type: Transform - - uid: 21092 + - uid: 21238 components: - rot: 1.5707963267948966 rad pos: 16.5,-13.5 parent: 2 type: Transform - - uid: 21093 + - uid: 21239 components: - pos: 4.5,-55.5 parent: 2 type: Transform - - uid: 21094 + - uid: 21240 components: - rot: -1.5707963267948966 rad pos: 43.5,9.5 @@ -138039,58 +138894,58 @@ entities: type: Transform - proto: IntercomService entities: - - uid: 21095 + - uid: 21241 components: - pos: 20.5,15.5 parent: 2 type: Transform - - uid: 21096 + - uid: 21242 components: - pos: -26.5,16.5 parent: 2 type: Transform - - uid: 21097 + - uid: 21243 components: - rot: 1.5707963267948966 rad pos: -11.5,5.5 parent: 2 type: Transform - - uid: 21098 + - uid: 21244 components: - pos: 1.5,-18.5 parent: 2 type: Transform - proto: IntercomSupply entities: - - uid: 21099 + - uid: 21245 components: - rot: -1.5707963267948966 rad pos: -29.5,24.5 parent: 2 type: Transform - - uid: 21100 + - uid: 21246 components: - pos: -48.5,17.5 parent: 2 type: Transform - - uid: 21101 + - uid: 21247 components: - rot: 1.5707963267948966 rad pos: -26.5,20.5 parent: 2 type: Transform - - uid: 21102 + - uid: 21248 components: - rot: 1.5707963267948966 rad pos: -35.5,30.5 parent: 2 type: Transform - - uid: 21103 + - uid: 21249 components: - pos: -43.5,26.5 parent: 2 type: Transform - - uid: 21104 + - uid: 21250 components: - rot: -1.5707963267948966 rad pos: -39.5,28.5 @@ -138098,7 +138953,7 @@ entities: type: Transform - proto: JanitorialTrolley entities: - - uid: 21105 + - uid: 21251 components: - rot: -1.5707963267948966 rad pos: -7.5,-22.5 @@ -138106,19 +138961,19 @@ entities: type: Transform - proto: JetpackBlueFilled entities: - - uid: 21106 + - uid: 21252 components: - rot: 3.141592653589793 rad pos: 33.468403,-14.391748 parent: 2 type: Transform - - uid: 21107 + - uid: 21253 components: - rot: 3.141592653589793 rad pos: 33.499653,-14.469873 parent: 2 type: Transform - - uid: 21108 + - uid: 21254 components: - rot: 3.141592653589793 rad pos: 33.640278,-14.579248 @@ -138126,152 +138981,152 @@ entities: type: Transform - proto: KitchenMicrowave entities: - - uid: 21109 + - uid: 21255 components: - pos: -31.5,-69.5 parent: 2 type: Transform - - uid: 21110 + - uid: 21256 components: - pos: 2.5,7.5 parent: 2 type: Transform - - uid: 21111 + - uid: 21257 components: - pos: 4.5,6.5 parent: 2 type: Transform - - uid: 21112 + - uid: 21258 components: - pos: 31.5,-20.5 parent: 2 type: Transform - - uid: 21113 + - uid: 21259 components: - pos: 52.5,18.5 parent: 2 type: Transform - - uid: 21114 + - uid: 21260 components: - pos: 45.5,-49.5 parent: 2 type: Transform - - uid: 21115 + - uid: 21261 components: - pos: -38.5,-32.5 parent: 2 type: Transform - - uid: 21116 + - uid: 21262 components: - pos: -22.5,45.5 parent: 2 type: Transform - - uid: 21117 + - uid: 21263 components: - pos: -8.5,41.5 parent: 2 type: Transform - proto: KitchenReagentGrinder entities: - - uid: 21118 + - uid: 21264 components: - pos: -3.5,5.5 parent: 2 type: Transform - - uid: 21119 + - uid: 21265 components: - pos: 3.5,-47.5 parent: 2 type: Transform - - uid: 21120 + - uid: 21266 components: - pos: 3.5,7.5 parent: 2 type: Transform - - uid: 21121 + - uid: 21267 components: - pos: 53.5,18.5 parent: 2 type: Transform - proto: KitchenSpike entities: - - uid: 21122 + - uid: 21268 components: - pos: -0.5,11.5 parent: 2 type: Transform - proto: Lamp entities: - - uid: 21123 + - uid: 21269 components: - rot: -1.5707963267948966 rad pos: -3.8543606,-48.096176 parent: 2 type: Transform - - uid: 21124 + - uid: 21270 components: - rot: 1.5707963267948966 rad pos: 24.558033,-21.226107 parent: 2 type: Transform - - uid: 21125 + - uid: 21271 components: - pos: 21.425192,-12.111239 parent: 2 type: Transform - - uid: 21126 + - uid: 21272 components: - rot: -1.5707963267948966 rad pos: 7.6524577,20.90233 parent: 2 type: Transform - - uid: 21127 + - uid: 21273 components: - rot: -1.5707963267948966 rad pos: -9.565374,-37.00866 parent: 2 type: Transform - - uid: 21128 + - uid: 21274 components: - rot: 1.5707963267948966 rad pos: 51.608532,-40.935013 parent: 2 type: Transform - - uid: 21129 + - uid: 21275 components: - pos: 59.696476,-1.1797758 parent: 2 type: Transform - - uid: 21130 + - uid: 21276 components: - rot: 1.5707963267948966 rad pos: -33.336697,29.910027 parent: 2 type: Transform - - uid: 21131 + - uid: 21277 components: - pos: -24.34436,11.920202 parent: 2 type: Transform - - uid: 21132 + - uid: 21278 components: - rot: 1.5707963267948966 rad pos: -28.600471,45.10426 parent: 2 type: Transform - - uid: 21133 + - uid: 21279 components: - pos: -12.458234,-18.122696 parent: 2 type: Transform - proto: LampBanana entities: - - uid: 21134 + - uid: 21280 components: - pos: -22.53235,37.89803 parent: 2 type: Transform - - uid: 21135 + - uid: 21281 components: - rot: -1.5707963267948966 rad pos: 2.6784086,-21.06689 @@ -138279,49 +139134,49 @@ entities: type: Transform - proto: LampGold entities: - - uid: 21136 + - uid: 21282 components: - pos: -22.537891,-69.31316 parent: 2 type: Transform - - uid: 21137 + - uid: 21283 components: - pos: -18.78946,-56.159798 parent: 2 type: Transform - - uid: 21138 + - uid: 21284 components: - pos: -10.485052,-3.11381 parent: 2 type: Transform - - uid: 21139 + - uid: 21285 components: - rot: 1.5707963267948966 rad pos: 43.557644,-4.1465535 parent: 2 type: Transform - - uid: 21140 + - uid: 21286 components: - pos: 37.53909,-2.5487528 parent: 2 type: Transform - - uid: 21141 + - uid: 21287 components: - pos: 32.892563,-50.10114 parent: 2 type: Transform - - uid: 21142 + - uid: 21288 components: - pos: 28.845686,-50.06989 parent: 2 type: Transform - - uid: 21143 + - uid: 21289 components: - rot: 1.5707963267948966 rad pos: -22.520432,-96.69095 parent: 2 type: Transform - - uid: 21144 + - uid: 21290 components: - rot: 1.5707963267948966 rad pos: 3.3403625,-9.918977 @@ -138329,70 +139184,70 @@ entities: type: Transform - proto: LargeBeaker entities: - - uid: 21145 + - uid: 21291 components: - pos: 3.6272888,-45.59047 parent: 2 type: Transform - - uid: 21146 + - uid: 21292 components: - pos: 3.2216597,-45.50144 parent: 2 type: Transform - - uid: 21147 + - uid: 21293 components: - pos: 3.6444578,-45.294815 parent: 2 type: Transform - - uid: 21148 + - uid: 21294 components: - pos: 4.621125,7.7027445 parent: 2 type: Transform - - uid: 21149 + - uid: 21295 components: - pos: -25.403534,-78.32023 parent: 2 type: Transform - - uid: 21150 + - uid: 21296 components: - pos: -25.716034,-78.71085 parent: 2 type: Transform - - uid: 21151 + - uid: 21297 components: - pos: -25.591316,-84.223625 parent: 2 type: Transform - proto: LauncherCreamPie entities: - - uid: 21152 + - uid: 21298 components: - pos: 0.32515657,-23.45843 parent: 2 type: Transform - proto: Lighter entities: - - uid: 21153 + - uid: 21299 components: - pos: 13.70992,-34.538578 parent: 2 type: Transform - - uid: 21154 + - uid: 21300 components: - pos: 15.667978,-79.47625 parent: 2 type: Transform - proto: LightTube entities: - - uid: 21155 + - uid: 21301 components: - pos: -39.78844,-85.422134 parent: 2 type: Transform - proto: LockerAtmosphericsFilled entities: - - uid: 21156 + - uid: 21302 components: - pos: -33.5,-32.5 parent: 2 @@ -138415,7 +139270,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21157 + - uid: 21303 components: - pos: -39.5,-36.5 parent: 2 @@ -138438,7 +139293,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21158 + - uid: 21304 components: - pos: -37.5,-36.5 parent: 2 @@ -138461,7 +139316,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21159 + - uid: 21305 components: - pos: -35.5,-36.5 parent: 2 @@ -138486,7 +139341,7 @@ entities: type: EntityStorage - proto: LockerBoozeFilled entities: - - uid: 21160 + - uid: 21306 components: - pos: 22.5,12.5 parent: 2 @@ -138511,7 +139366,7 @@ entities: type: EntityStorage - proto: LockerBotanistFilled entities: - - uid: 21161 + - uid: 21307 components: - pos: -4.5,11.5 parent: 2 @@ -138536,7 +139391,7 @@ entities: type: EntityStorage - proto: LockerCaptainFilled entities: - - uid: 21162 + - uid: 21308 components: - pos: 29.5,-27.5 parent: 2 @@ -138561,14 +139416,14 @@ entities: type: EntityStorage - proto: LockerChemistryFilled entities: - - uid: 21163 + - uid: 21309 components: - pos: 7.5,-50.5 parent: 2 type: Transform - proto: LockerChiefEngineerFilled entities: - - uid: 21164 + - uid: 21310 components: - pos: -37.5,-15.5 parent: 2 @@ -138593,7 +139448,7 @@ entities: type: EntityStorage - proto: LockerChiefMedicalOfficerFilled entities: - - uid: 21165 + - uid: 21311 components: - pos: -18.5,-54.5 parent: 2 @@ -138618,7 +139473,7 @@ entities: type: EntityStorage - proto: LockerDetectiveFilled entities: - - uid: 21166 + - uid: 21312 components: - pos: 17.5,-10.5 parent: 2 @@ -138643,7 +139498,7 @@ entities: type: EntityStorage - proto: LockerElectricalSupplies entities: - - uid: 21167 + - uid: 21313 components: - pos: -7.5,-17.5 parent: 2 @@ -138668,7 +139523,7 @@ entities: type: EntityStorage - proto: LockerElectricalSuppliesFilled entities: - - uid: 21168 + - uid: 21314 components: - pos: 46.5,-3.5 parent: 2 @@ -138691,7 +139546,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21169 + - uid: 21315 components: - pos: -53.5,0.5 parent: 2 @@ -138714,7 +139569,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21170 + - uid: 21316 components: - pos: 32.5,25.5 parent: 2 @@ -138737,7 +139592,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21171 + - uid: 21317 components: - pos: 39.5,-28.5 parent: 2 @@ -138762,7 +139617,7 @@ entities: type: EntityStorage - proto: LockerEngineerFilled entities: - - uid: 21172 + - uid: 21318 components: - pos: -39.5,-7.5 parent: 2 @@ -138785,7 +139640,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21173 + - uid: 21319 components: - pos: -39.5,-12.5 parent: 2 @@ -138808,7 +139663,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21174 + - uid: 21320 components: - pos: -39.5,-8.5 parent: 2 @@ -138831,7 +139686,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21175 + - uid: 21321 components: - pos: -39.5,-9.5 parent: 2 @@ -138854,7 +139709,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21176 + - uid: 21322 components: - pos: -50.5,-20.5 parent: 2 @@ -138879,7 +139734,7 @@ entities: type: EntityStorage - proto: LockerEvidence entities: - - uid: 21177 + - uid: 21323 components: - pos: 4.5,-57.5 parent: 2 @@ -138902,7 +139757,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21178 + - uid: 21324 components: - pos: 34.5,-45.5 parent: 2 @@ -138925,7 +139780,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21179 + - uid: 21325 components: - pos: 18.5,23.5 parent: 2 @@ -138948,17 +139803,17 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21180 + - uid: 21326 components: - pos: 37.5,12.5 parent: 2 type: Transform - - uid: 21181 + - uid: 21327 components: - pos: 37.5,11.5 parent: 2 type: Transform - - uid: 21182 + - uid: 21328 components: - pos: 41.5,16.5 parent: 2 @@ -138981,7 +139836,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21183 + - uid: 21329 components: - pos: 40.5,16.5 parent: 2 @@ -139004,7 +139859,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21184 + - uid: 21330 components: - pos: 39.5,16.5 parent: 2 @@ -139027,7 +139882,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21185 + - uid: 21331 components: - pos: 38.5,16.5 parent: 2 @@ -139050,7 +139905,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21186 + - uid: 21332 components: - pos: 42.5,16.5 parent: 2 @@ -139073,7 +139928,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21187 + - uid: 21333 components: - pos: 37.5,16.5 parent: 2 @@ -139096,14 +139951,14 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21188 + - uid: 21334 components: - pos: 37.5,10.5 parent: 2 type: Transform - proto: LockerFreezer entities: - - uid: 21189 + - uid: 21335 components: - pos: -38.5,37.5 parent: 2 @@ -139126,7 +139981,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21190 + - uid: 21336 components: - pos: -38.5,36.5 parent: 2 @@ -139149,7 +140004,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21191 + - uid: 21337 components: - pos: 1.5,14.5 parent: 2 @@ -139172,7 +140027,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21192 + - uid: 21338 components: - pos: -5.5,-95.5 parent: 2 @@ -139197,14 +140052,14 @@ entities: type: EntityStorage - proto: LockerHeadOfPersonnelFilled entities: - - uid: 21193 + - uid: 21339 components: - pos: -1.5,-3.5 parent: 2 type: Transform - proto: LockerHeadOfSecurityFilled entities: - - uid: 12278 + - uid: 12328 components: - pos: 4.5,22.5 parent: 2 @@ -139232,8 +140087,8 @@ entities: showEnts: False occludes: True ents: - - 12280 - - 12279 + - 12330 + - 12329 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -139241,7 +140096,7 @@ entities: type: ContainerContainer - proto: LockerMedicalFilled entities: - - uid: 21194 + - uid: 21340 components: - pos: -15.5,-49.5 parent: 2 @@ -139264,7 +140119,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21195 + - uid: 21341 components: - pos: -15.5,-47.5 parent: 2 @@ -139287,7 +140142,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21196 + - uid: 21342 components: - pos: -15.5,-45.5 parent: 2 @@ -139310,26 +140165,26 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21197 + - uid: 21343 components: - pos: -15.5,-61.5 parent: 2 type: Transform - - uid: 21198 + - uid: 21344 components: - pos: -14.5,-61.5 parent: 2 type: Transform - proto: LockerParamedicFilled entities: - - uid: 21199 + - uid: 21345 components: - pos: 2.5,-64.5 parent: 2 type: Transform - proto: LockerQuarterMasterFilled entities: - - uid: 21200 + - uid: 21346 components: - pos: -34.5,31.5 parent: 2 @@ -139354,7 +140209,7 @@ entities: type: EntityStorage - proto: LockerResearchDirectorFilled entities: - - uid: 21201 + - uid: 21347 components: - pos: 63.5,-55.5 parent: 2 @@ -139379,7 +140234,7 @@ entities: type: EntityStorage - proto: LockerSalvageSpecialistFilled entities: - - uid: 21202 + - uid: 21348 components: - pos: -36.5,32.5 parent: 2 @@ -139402,7 +140257,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21203 + - uid: 21349 components: - pos: -36.5,30.5 parent: 2 @@ -139425,7 +140280,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21204 + - uid: 21350 components: - pos: -36.5,28.5 parent: 2 @@ -139448,14 +140303,14 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21205 + - uid: 21351 components: - pos: -45.5,44.5 parent: 2 type: Transform - proto: LockerScienceFilled entities: - - uid: 21206 + - uid: 21352 components: - pos: 44.5,-45.5 parent: 2 @@ -139478,7 +140333,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21207 + - uid: 21353 components: - pos: 42.5,-45.5 parent: 2 @@ -139501,7 +140356,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21208 + - uid: 21354 components: - pos: 41.5,-45.5 parent: 2 @@ -139526,7 +140381,7 @@ entities: type: EntityStorage - proto: LockerSecurity entities: - - uid: 21209 + - uid: 21355 components: - pos: 19.5,-47.5 parent: 2 @@ -139549,7 +140404,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21210 + - uid: 21356 components: - pos: 52.5,13.5 parent: 2 @@ -139574,17 +140429,17 @@ entities: type: EntityStorage - proto: LockerSecurityFilled entities: - - uid: 21211 + - uid: 21357 components: - pos: 31.5,19.5 parent: 2 type: Transform - - uid: 21212 + - uid: 21358 components: - pos: 32.5,19.5 parent: 2 type: Transform - - uid: 21213 + - uid: 21359 components: - pos: -0.5,17.5 parent: 2 @@ -139607,7 +140462,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21214 + - uid: 21360 components: - pos: -0.5,19.5 parent: 2 @@ -139630,69 +140485,38 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21215 + - uid: 21361 components: - pos: -14.5,23.5 parent: 2 type: Transform - - uid: 21216 + - uid: 21362 components: - pos: -0.5,21.5 parent: 2 type: Transform - proto: LockerSyndicatePersonal entities: - - uid: 12439 + - uid: 21363 components: - - pos: -53.5,-86.5 + - pos: -52.5,-86.5 parent: 2 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.9394473 - - 7.296016 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 12441 - - 12442 - - 12440 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - proto: LockerWallMedicalDoctorFilled entities: - - uid: 21217 + - uid: 21364 components: - pos: 6.5,-58.5 parent: 2 type: Transform - - uid: 21218 + - uid: 21365 components: - pos: -15.5,-51.5 parent: 2 type: Transform - proto: LockerWallMedicalFilled entities: - - uid: 21219 + - uid: 21366 components: - pos: -26.5,-56.5 parent: 2 @@ -139717,7 +140541,7 @@ entities: type: EntityStorage - proto: LockerWardenFilled entities: - - uid: 21220 + - uid: 21367 components: - pos: 20.5,23.5 parent: 2 @@ -139742,7 +140566,7 @@ entities: type: EntityStorage - proto: LockerWeldingSuppliesFilled entities: - - uid: 21221 + - uid: 21368 components: - pos: 38.5,-53.5 parent: 2 @@ -139765,7 +140589,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21222 + - uid: 21369 components: - pos: 13.5,-47.5 parent: 2 @@ -139788,7 +140612,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21223 + - uid: 21370 components: - pos: -53.5,-61.5 parent: 2 @@ -139813,38 +140637,38 @@ entities: type: EntityStorage - proto: MachineAnomalyGenerator entities: - - uid: 21225 + - uid: 21371 components: - pos: 62.5,-30.5 parent: 2 type: Transform - proto: MachineAnomalyVessel entities: - - uid: 21226 + - uid: 21372 components: - pos: 58.5,-32.5 parent: 2 type: Transform - - uid: 21227 + - uid: 21373 components: - pos: 57.5,-32.5 parent: 2 type: Transform - proto: MachineAPE entities: - - uid: 21228 + - uid: 21374 components: - rot: 1.5707963267948966 rad pos: 57.5,-34.5 parent: 2 type: Transform - - uid: 21229 + - uid: 21375 components: - rot: 1.5707963267948966 rad pos: 57.5,-35.5 parent: 2 type: Transform - - uid: 21230 + - uid: 21376 components: - rot: 1.5707963267948966 rad pos: 58.5,-35.5 @@ -139852,105 +140676,105 @@ entities: type: Transform - proto: MachineArtifactAnalyzer entities: - - uid: 21231 + - uid: 21377 components: - rot: -1.5707963267948966 rad pos: 72.5,-28.5 parent: 2 type: Transform - links: - - 12526 + - 12574 type: DeviceLinkSink - proto: MachineFrame entities: - - uid: 21232 + - uid: 21378 components: - pos: -7.5,-63.5 parent: 2 type: Transform - - uid: 21233 + - uid: 21379 components: - pos: -9.5,-63.5 parent: 2 type: Transform - proto: MachineFrameDestroyed entities: - - uid: 21234 + - uid: 21380 components: - pos: 45.5,44.5 parent: 2 type: Transform - - uid: 21235 + - uid: 21381 components: - pos: -16.5,-8.5 parent: 2 type: Transform - - uid: 21236 + - uid: 21382 components: - pos: -36.5,-29.5 parent: 2 type: Transform - proto: MagazinePistol entities: - - uid: 21237 + - uid: 21383 components: - pos: 32.305683,32.48245 parent: 2 type: Transform - - uid: 21238 + - uid: 21384 components: - pos: 32.32131,32.48245 parent: 2 type: Transform - - uid: 21239 + - uid: 21385 components: - pos: 32.32131,32.48245 parent: 2 type: Transform - - uid: 21240 + - uid: 21386 components: - pos: 32.305683,32.48245 parent: 2 type: Transform - - uid: 21241 + - uid: 21387 components: - pos: 32.42361,32.439632 parent: 2 type: Transform - - uid: 21242 + - uid: 21388 components: - pos: 32.439236,32.392757 parent: 2 type: Transform - proto: MagazinePistolSubMachineGun entities: - - uid: 21243 + - uid: 21389 components: - pos: 29.960567,32.527683 parent: 2 type: Transform - - uid: 21244 + - uid: 21390 components: - pos: 29.952528,32.56383 parent: 2 type: Transform - - uid: 21245 + - uid: 21391 components: - pos: 29.936903,32.548206 parent: 2 type: Transform - - uid: 21246 + - uid: 21392 components: - pos: 29.968153,32.610706 parent: 2 type: Transform - - uid: 21247 + - uid: 21393 components: - rot: 3.141592653589793 rad pos: 29.992437,32.514297 parent: 2 type: Transform - - uid: 21248 + - uid: 21394 components: - rot: 3.141592653589793 rad pos: 29.976812,32.483047 @@ -139958,714 +140782,714 @@ entities: type: Transform - proto: MagazinePistolSubMachineGunTopMounted entities: - - uid: 21249 + - uid: 21395 components: - pos: 6.551134,22.646631 parent: 2 type: Transform - - uid: 21250 + - uid: 21396 components: - pos: 6.5377827,22.587479 parent: 2 type: Transform - proto: MagicDiceBag entities: - - uid: 21251 + - uid: 21397 components: - pos: -47.440662,5.801874 parent: 2 type: Transform - proto: MaintenanceFluffSpawner entities: - - uid: 21252 + - uid: 21398 components: - rot: 3.141592653589793 rad pos: 30.5,46.5 parent: 2 type: Transform - - uid: 21253 - components: - - rot: 3.141592653589793 rad - pos: 54.5,60.5 - parent: 2 - type: Transform - - uid: 21254 + - uid: 21399 components: - rot: 3.141592653589793 rad pos: 22.5,51.5 parent: 2 type: Transform - - uid: 21255 + - uid: 21400 components: - rot: 3.141592653589793 rad pos: 70.5,-66.5 parent: 2 type: Transform - - uid: 21256 + - uid: 21401 components: - pos: 15.5,-66.5 parent: 2 type: Transform - - uid: 21257 + - uid: 21402 components: - pos: 12.5,-53.5 parent: 2 type: Transform - - uid: 21258 + - uid: 21403 components: - pos: -15.5,-29.5 parent: 2 type: Transform - - uid: 21259 + - uid: 21404 components: - rot: -1.5707963267948966 rad pos: -16.5,-16.5 parent: 2 type: Transform - - uid: 21260 + - uid: 21405 components: - rot: -1.5707963267948966 rad pos: -8.5,-10.5 parent: 2 type: Transform - - uid: 21261 + - uid: 21406 components: - rot: -1.5707963267948966 rad pos: -11.5,-8.5 parent: 2 type: Transform - - uid: 21262 + - uid: 21407 components: - pos: -35.5,-22.5 parent: 2 type: Transform - - uid: 21263 + - uid: 21408 components: - pos: 43.5,-8.5 parent: 2 type: Transform - - uid: 21264 + - uid: 21409 components: - pos: -50.5,-62.5 parent: 2 type: Transform - - uid: 21265 + - uid: 21410 components: - pos: -36.5,-69.5 parent: 2 type: Transform - - uid: 21266 + - uid: 21411 components: - pos: 57.5,-3.5 parent: 2 type: Transform - - uid: 21267 + - uid: 21412 components: - pos: -3.5,30.5 parent: 2 type: Transform - - uid: 21268 + - uid: 21413 components: - pos: -15.5,21.5 parent: 2 type: Transform - - uid: 21269 + - uid: 21414 components: - pos: -49.5,15.5 parent: 2 type: Transform - - uid: 21270 + - uid: 21415 components: - pos: 15.5,57.5 parent: 2 type: Transform - - uid: 21271 + - uid: 21416 components: - pos: -14.5,-82.5 parent: 2 type: Transform - - uid: 21272 + - uid: 21417 components: - rot: 3.141592653589793 rad pos: 43.5,-62.5 parent: 2 type: Transform - - uid: 21273 + - uid: 21418 components: - pos: -32.5,-7.5 parent: 2 type: Transform - - uid: 21274 + - uid: 21419 components: - pos: 6.5,-13.5 parent: 2 type: Transform + - uid: 21420 + components: + - pos: 54.5,61.5 + parent: 2 + type: Transform - proto: MaintenancePlantSpawner entities: - - uid: 21275 + - uid: 21421 components: - pos: -55.5,-66.5 parent: 2 type: Transform - - uid: 21276 + - uid: 21422 components: - pos: -52.5,-68.5 parent: 2 type: Transform - - uid: 21277 + - uid: 21423 components: - pos: -53.5,-68.5 parent: 2 type: Transform - - uid: 21278 + - uid: 21424 components: - pos: -56.5,-68.5 parent: 2 type: Transform - - uid: 21279 + - uid: 21425 components: - pos: -53.5,-66.5 parent: 2 type: Transform - - uid: 21280 + - uid: 21426 components: - pos: -54.5,-67.5 parent: 2 type: Transform - - uid: 21281 + - uid: 21427 components: - pos: -26.5,31.5 parent: 2 type: Transform - - uid: 21282 + - uid: 21428 components: - pos: 52.5,39.5 parent: 2 type: Transform - - uid: 21283 + - uid: 21429 components: - pos: -7.5,49.5 parent: 2 type: Transform - - uid: 21284 + - uid: 21430 components: - pos: -28.5,-98.5 parent: 2 type: Transform - - uid: 21285 + - uid: 21431 components: - pos: -54.5,-66.5 parent: 2 type: Transform - - uid: 21286 + - uid: 21432 components: - pos: 22.5,-50.5 parent: 2 type: Transform - - uid: 21287 + - uid: 21433 components: - pos: -4.5,53.5 parent: 2 type: Transform - - uid: 21288 + - uid: 21434 components: - pos: 10.5,53.5 parent: 2 type: Transform - - uid: 21289 + - uid: 21435 components: - pos: 8.5,53.5 parent: 2 type: Transform - - uid: 21290 + - uid: 21436 components: - pos: 7.5,54.5 parent: 2 type: Transform - proto: MaintenanceToolSpawner entities: - - uid: 21291 + - uid: 21437 components: - pos: -13.5,12.5 parent: 2 type: Transform - - uid: 21292 + - uid: 21438 components: - pos: 36.5,-50.5 parent: 2 type: Transform - - uid: 21293 + - uid: 21439 components: - rot: 1.5707963267948966 rad pos: -55.5,-6.5 parent: 2 type: Transform - - uid: 21294 + - uid: 21440 components: - pos: -52.5,-15.5 parent: 2 type: Transform - - uid: 21295 + - uid: 21441 components: - pos: -24.5,-52.5 parent: 2 type: Transform - - uid: 21296 + - uid: 21442 components: - pos: 0.5,23.5 parent: 2 type: Transform - - uid: 21297 + - uid: 21443 components: - pos: -3.5,34.5 parent: 2 type: Transform - - uid: 21298 + - uid: 21444 components: - pos: -49.5,14.5 parent: 2 type: Transform - - uid: 21299 + - uid: 21445 components: - pos: 3.5,-17.5 parent: 2 type: Transform - - uid: 21300 + - uid: 21446 components: - pos: 59.5,2.5 parent: 2 type: Transform - - uid: 21301 + - uid: 21447 components: - pos: 53.5,47.5 parent: 2 type: Transform - - uid: 21302 + - uid: 21448 components: - pos: 67.5,8.5 parent: 2 type: Transform - - uid: 21303 + - uid: 21449 components: - pos: 18.5,39.5 parent: 2 type: Transform - - uid: 21304 + - uid: 21450 components: - pos: 16.5,56.5 parent: 2 type: Transform - - uid: 21305 + - uid: 21451 components: - pos: -4.5,-82.5 parent: 2 type: Transform - - uid: 21306 + - uid: 21452 components: - pos: -8.5,-82.5 parent: 2 type: Transform - - uid: 21307 + - uid: 21453 components: - pos: 58.5,-30.5 parent: 2 type: Transform - - uid: 21308 + - uid: 21454 components: - pos: 53.5,-28.5 parent: 2 type: Transform - - uid: 21309 + - uid: 21455 components: - pos: 46.5,-63.5 parent: 2 type: Transform - - uid: 21310 + - uid: 21456 components: - pos: 44.5,-8.5 parent: 2 type: Transform - - uid: 21311 + - uid: 21457 components: - pos: 5.5,-13.5 parent: 2 type: Transform - proto: MaintenanceWeaponSpawner entities: - - uid: 21312 + - uid: 21458 components: - - rot: 3.141592653589793 rad - pos: 55.5,60.5 + - pos: 55.5,61.5 parent: 2 type: Transform - - uid: 21313 + - uid: 21459 components: - pos: -49.5,-74.5 parent: 2 type: Transform - - uid: 21314 - components: - - pos: -52.5,-86.5 - parent: 2 - type: Transform - - uid: 21315 - components: - - pos: -52.5,-88.5 - parent: 2 - type: Transform - - uid: 21316 + - uid: 21460 components: - pos: 35.5,-12.5 parent: 2 type: Transform - - uid: 21317 + - uid: 21461 components: - pos: -29.5,-28.5 parent: 2 type: Transform - - uid: 21318 + - uid: 21462 components: - pos: -12.5,17.5 parent: 2 type: Transform - - uid: 21319 + - uid: 21463 components: - pos: 51.5,45.5 parent: 2 type: Transform - - uid: 21320 + - uid: 21464 components: - pos: 43.5,37.5 parent: 2 type: Transform - - uid: 21321 + - uid: 21465 components: - pos: -6.5,-88.5 parent: 2 type: Transform - - uid: 21322 + - uid: 21466 components: - rot: 3.141592653589793 rad pos: 49.5,-66.5 parent: 2 type: Transform - - uid: 21323 + - uid: 21467 components: - rot: 3.141592653589793 rad pos: 66.5,-61.5 parent: 2 type: Transform - - uid: 21324 + - uid: 21468 components: - pos: -48.5,16.5 parent: 2 type: Transform - - uid: 21325 + - uid: 21469 components: - pos: -28.5,-5.5 parent: 2 type: Transform - - uid: 21326 + - uid: 21470 components: - pos: 42.5,-7.5 parent: 2 type: Transform + - uid: 21471 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,-88.5 + parent: 2 + type: Transform + - uid: 21472 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-86.5 + parent: 2 + type: Transform - proto: Matchbox entities: - - uid: 21327 + - uid: 21473 components: - pos: 61.092392,-1.3427626 parent: 2 type: Transform - - uid: 21328 + - uid: 21474 components: - pos: -38.035473,16.606607 parent: 2 type: Transform - proto: MaterialCloth entities: - - uid: 21329 + - uid: 21475 components: - pos: 2.4694777,-7.332773 parent: 2 type: Transform - - uid: 21330 + - uid: 21476 components: - pos: 2.5319777,-7.395273 parent: 2 type: Transform - - uid: 21331 + - uid: 21477 components: - pos: 2.4851027,-7.379648 parent: 2 type: Transform - proto: MaterialDiamond1 entities: - - uid: 21332 + - uid: 21478 components: - pos: 59.45189,-51.928257 parent: 2 type: Transform - proto: MaterialDurathread entities: - - uid: 21333 + - uid: 21479 components: - pos: 2.6569777,-7.614023 parent: 2 type: Transform - proto: MaterialReclaimer entities: - - uid: 21334 + - uid: 21480 components: - pos: -39.5,18.5 parent: 2 type: Transform - proto: MaterialWoodPlank entities: - - uid: 21335 + - uid: 21481 components: - rot: 3.141592653589793 rad pos: 38.425755,46.464603 parent: 2 type: Transform - - uid: 21336 + - uid: 21482 components: - pos: -32.447933,-98.42257 parent: 2 type: Transform - proto: MaterialWoodPlank1 entities: - - uid: 21337 + - uid: 21483 components: - pos: 50.46261,24.730665 parent: 2 type: Transform - - uid: 21338 + - uid: 21484 components: - pos: 17.500986,29.51836 parent: 2 type: Transform - proto: MedicalBed entities: - - uid: 21339 + - uid: 21485 components: - pos: 44.5,5.5 parent: 2 type: Transform - - uid: 21340 + - uid: 21486 components: - pos: -9.5,-57.5 parent: 2 type: Transform - - uid: 21341 + - uid: 21487 components: - pos: -12.5,-57.5 parent: 2 type: Transform - - uid: 21342 + - uid: 21488 components: - pos: -3.5,-57.5 parent: 2 type: Transform - - uid: 21343 + - uid: 21489 components: - pos: -0.5,-57.5 parent: 2 type: Transform - - uid: 21344 + - uid: 21490 components: - pos: -21.5,-54.5 parent: 2 type: Transform - - uid: 21345 + - uid: 21491 components: - pos: 44.5,4.5 parent: 2 type: Transform - - uid: 21346 + - uid: 21492 components: - pos: -6.5,-57.5 parent: 2 type: Transform - - uid: 21347 + - uid: 21493 components: - pos: 6.5,-56.5 parent: 2 type: Transform - proto: MedicalTechFab entities: - - uid: 21348 + - uid: 21494 components: - pos: -16.5,-48.5 parent: 2 type: Transform - proto: MedkitBruteFilled entities: - - uid: 21349 + - uid: 21495 components: - pos: 45.394405,8.60885 parent: 2 type: Transform - - uid: 21350 + - uid: 21496 components: - pos: 19.413246,-20.453436 parent: 2 type: Transform - - uid: 21351 + - uid: 21497 components: - pos: 9.446222,-62.560196 parent: 2 type: Transform - - uid: 21352 + - uid: 21498 components: - pos: 29.573622,4.6594224 parent: 2 type: Transform - - uid: 21353 + - uid: 21499 components: - pos: 9.774347,-62.35707 parent: 2 type: Transform - - uid: 21354 + - uid: 21500 components: - pos: 55.59084,42.504738 parent: 2 type: Transform - proto: MedkitBurnFilled entities: - - uid: 21355 + - uid: 21501 components: - pos: 9.368097,-58.216446 parent: 2 type: Transform - - uid: 21356 + - uid: 21502 components: - pos: 9.633722,-58.372696 parent: 2 type: Transform - - uid: 21357 + - uid: 21503 components: - pos: 18.55885,-21.682238 parent: 2 type: Transform - proto: MedkitCombatFilled entities: - - uid: 21358 + - uid: 21504 components: - pos: -22.488134,-54.362434 parent: 2 type: Transform - proto: MedkitFilled entities: - - uid: 21359 + - uid: 21505 components: - pos: 18.506996,-21.230959 parent: 2 type: Transform - - uid: 21360 + - uid: 21506 components: - pos: 52.41982,-43.535877 parent: 2 type: Transform - proto: MedkitOxygenFilled entities: - - uid: 21361 + - uid: 21507 components: - pos: 10.352472,-61.403946 parent: 2 type: Transform - - uid: 21362 + - uid: 21508 components: - pos: 10.649347,-61.57582 parent: 2 type: Transform - - uid: 21363 + - uid: 21509 components: - pos: 18.533411,-22.207966 parent: 2 type: Transform - - uid: 21364 + - uid: 21510 components: - pos: -23.768847,-36.553474 parent: 2 type: Transform - - uid: 21365 + - uid: 21511 components: - pos: 59.446957,-3.3832169 parent: 2 type: Transform - - uid: 21366 + - uid: 21512 components: - pos: 65.55114,-6.3846307 parent: 2 type: Transform - - uid: 21367 + - uid: 21513 components: - pos: -34.54821,20.589455 parent: 2 type: Transform - - uid: 21368 + - uid: 21514 components: - pos: 64.63776,28.514448 parent: 2 type: Transform - - uid: 21369 + - uid: 21515 components: - pos: -70.47538,-28.482313 parent: 2 type: Transform - proto: MedkitRadiationFilled entities: - - uid: 21370 + - uid: 21516 components: - pos: 10.352472,-60.278946 parent: 2 type: Transform - - uid: 21371 + - uid: 21517 components: - pos: 10.649347,-60.466446 parent: 2 type: Transform - - uid: 21372 + - uid: 21518 components: - pos: -62.43085,-27.543978 parent: 2 type: Transform - proto: MedkitToxinFilled entities: - - uid: 21373 + - uid: 21519 components: - pos: 10.350285,-59.237457 parent: 2 type: Transform - - uid: 21374 + - uid: 21520 components: - pos: 10.649347,-59.372696 parent: 2 type: Transform - proto: MicroManipulatorStockPart entities: - - uid: 21375 + - uid: 21521 components: - pos: 57.42882,-47.52101 parent: 2 type: Transform - proto: MicrowaveMachineCircuitboard entities: - - uid: 21376 + - uid: 21522 components: - pos: 41.53089,-54.195484 parent: 2 type: Transform - proto: Mirror entities: - - uid: 21377 + - uid: 21523 components: - rot: -1.5707963267948966 rad pos: -32.5,-3.5 parent: 2 type: Transform - - uid: 21378 + - uid: 21524 components: - rot: -1.5707963267948966 rad pos: -32.5,-2.5 @@ -140673,14 +141497,14 @@ entities: type: Transform - proto: ModularGrenade entities: - - uid: 21379 + - uid: 21525 components: - pos: 65.475975,-29.06539 parent: 2 type: Transform - proto: MonkeyCube entities: - - uid: 21380 + - uid: 21526 components: - rot: -1.5707963267948966 rad pos: -10.530531,-95.43873 @@ -140688,93 +141512,93 @@ entities: type: Transform - proto: MonkeyCubeBox entities: - - uid: 21381 + - uid: 21527 components: - pos: -24.421421,-84.24069 parent: 2 type: Transform - proto: MonkeyCubeWrapped entities: - - uid: 21382 + - uid: 21528 components: - pos: 73.2274,-38.215343 parent: 2 type: Transform - - uid: 21383 + - uid: 21529 components: - pos: 73.19615,-38.35597 parent: 2 type: Transform - - uid: 21384 + - uid: 21530 components: - pos: -6.631571,49.76703 parent: 2 type: Transform - - uid: 21385 + - uid: 21531 components: - pos: -6.787821,49.64203 parent: 2 type: Transform - proto: MoonBattlemap entities: - - uid: 21386 + - uid: 21532 components: - pos: 10.548178,-6.825127 parent: 2 type: Transform - proto: MopBucket entities: - - uid: 21387 + - uid: 21533 components: - pos: -9.522026,-69.41262 parent: 2 type: Transform - - uid: 21388 + - uid: 21534 components: - pos: -7.441774,-23.373123 parent: 2 type: Transform - - uid: 21389 + - uid: 21535 components: - pos: 52.057404,15.557394 parent: 2 type: Transform - - uid: 21390 + - uid: 21536 components: - pos: 15.4907,31.562498 parent: 2 type: Transform - - uid: 21391 + - uid: 21537 components: - pos: -8.510638,-21.457159 parent: 2 type: Transform - proto: MopItem entities: - - uid: 21392 + - uid: 21538 components: - rot: -1.5707963267948966 rad pos: -9.459526,-68.63137 parent: 2 type: Transform - - uid: 21393 + - uid: 21539 components: - pos: -13.596031,-22.66943 parent: 2 type: Transform - - uid: 21394 + - uid: 21540 components: - pos: -13.473024,-22.732498 parent: 2 type: Transform - - uid: 21395 + - uid: 21541 components: - pos: 51.744904,15.651144 parent: 2 type: Transform - proto: Morgue entities: - - uid: 21396 + - uid: 21542 components: - rot: -1.5707963267948966 rad pos: -11.5,-65.5 @@ -140798,7 +141622,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21397 + - uid: 21543 components: - rot: -1.5707963267948966 rad pos: -11.5,-64.5 @@ -140822,7 +141646,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21398 + - uid: 21544 components: - rot: 1.5707963267948966 rad pos: -13.5,-64.5 @@ -140846,7 +141670,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21399 + - uid: 21545 components: - rot: 1.5707963267948966 rad pos: -13.5,-65.5 @@ -140870,7 +141694,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21400 + - uid: 21546 components: - rot: 1.5707963267948966 rad pos: -13.5,-66.5 @@ -140894,7 +141718,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21401 + - uid: 21547 components: - rot: -1.5707963267948966 rad pos: -14.5,-64.5 @@ -140918,7 +141742,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21402 + - uid: 21548 components: - rot: -1.5707963267948966 rad pos: -14.5,-65.5 @@ -140942,7 +141766,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21403 + - uid: 21549 components: - rot: -1.5707963267948966 rad pos: -14.5,-66.5 @@ -140966,7 +141790,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21404 + - uid: 21550 components: - rot: -1.5707963267948966 rad pos: -11.5,-66.5 @@ -140990,7 +141814,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21405 + - uid: 21551 components: - rot: -1.5707963267948966 rad pos: -11.5,-63.5 @@ -141014,7 +141838,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21406 + - uid: 21552 components: - rot: 1.5707963267948966 rad pos: -16.5,-63.5 @@ -141038,7 +141862,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21407 + - uid: 21553 components: - rot: 1.5707963267948966 rad pos: -16.5,-64.5 @@ -141062,7 +141886,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21408 + - uid: 21554 components: - rot: 1.5707963267948966 rad pos: -16.5,-65.5 @@ -141086,7 +141910,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21409 + - uid: 21555 components: - rot: 1.5707963267948966 rad pos: -16.5,-66.5 @@ -141110,7 +141934,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21410 + - uid: 21556 components: - rot: -1.5707963267948966 rad pos: -28.5,10.5 @@ -141134,7 +141958,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 21411 + - uid: 21557 components: - rot: -1.5707963267948966 rad pos: -28.5,9.5 @@ -141160,265 +141984,277 @@ entities: type: EntityStorage - proto: MouseTimedSpawner entities: - - uid: 21412 + - uid: 21558 components: - pos: -56.5,-48.5 parent: 2 type: Transform - - uid: 21413 + - uid: 21559 components: - pos: 43.5,-10.5 parent: 2 type: Transform - - uid: 21414 + - uid: 21560 components: - pos: 62.5,13.5 parent: 2 type: Transform - - uid: 21415 + - uid: 21561 components: - pos: 5.5,-70.5 parent: 2 type: Transform - proto: Multitool entities: - - uid: 21416 + - uid: 21562 components: - rot: 1.5707963267948966 rad pos: 12.526134,20.708286 parent: 2 type: Transform - - uid: 21417 + - uid: 21563 components: - pos: 53.354275,-43.443607 parent: 2 type: Transform - - uid: 21418 + - uid: 21564 components: - pos: -25.14612,-19.37103 parent: 2 type: Transform - - uid: 21419 + - uid: 21565 components: - pos: -23.347115,-36.422188 parent: 2 type: Transform - - uid: 21420 + - uid: 21566 components: - rot: -1.5707963267948966 rad pos: -36.559425,-33.012554 parent: 2 type: Transform - - uid: 21421 + - uid: 21567 components: - pos: -56.47646,-35.42343 parent: 2 type: Transform - - uid: 21422 + - uid: 21568 components: - pos: -40.522213,25.653383 parent: 2 type: Transform - - uid: 21423 + - uid: 21569 components: - rot: 3.141592653589793 rad pos: -32.80296,29.595348 parent: 2 type: Transform - - uid: 21424 + - uid: 21570 components: - pos: -27.507483,24.649845 parent: 2 type: Transform - - uid: 21425 + - uid: 21571 components: - pos: 73.29074,-44.41717 parent: 2 type: Transform - - uid: 21426 + - uid: 21572 components: - pos: 58.474205,51.52541 parent: 2 type: Transform - - uid: 21427 + - uid: 21573 components: - pos: -57.653404,-25.398897 parent: 2 type: Transform - devices: - 'UID: 31532': 12599 + 'UID: 31532': 12647 type: NetworkConfigurator - - uid: 21428 + - uid: 21574 components: - pos: -9.540877,-65.36475 parent: 2 type: Transform - - uid: 21429 + - uid: 21575 components: - pos: 72.48785,36.5135 parent: 2 type: Transform - - uid: 21430 + - uid: 21576 components: - pos: -29.3818,-98.32888 parent: 2 type: Transform - devices: - 'UID: 39451': 19672 - 'UID: 39450': 19911 - 'UID: 39636': 911 + 'UID: 39451': 19742 + 'UID: 39450': 19982 + 'UID: 39636': 913 type: NetworkConfigurator - - uid: 21431 + - uid: 21577 components: - pos: 65.54721,-51.514313 parent: 2 type: Transform - - uid: 21432 + - uid: 21578 components: - pos: -28.40416,-19.522995 parent: 2 type: Transform - - uid: 21433 + - uid: 21579 components: - pos: -26.512882,-61.421627 parent: 2 type: Transform - - uid: 21434 + - uid: 21580 components: - pos: -71.37105,-28.43189 parent: 2 type: Transform - devices: - 'UID: 32940': 928 - 'UID: 32944': 15149 - 'UID: 32945': 15150 + 'UID: 32940': 930 + 'UID: 32944': 15200 + 'UID: 32945': 15201 linkModeActive: False type: NetworkConfigurator - proto: NitrogenCanister entities: - - uid: 21435 + - uid: 21581 components: - pos: -8.5,-72.5 parent: 2 type: Transform - - uid: 21436 + - uid: 21582 components: - pos: 45.5,-51.5 parent: 2 type: Transform - - uid: 21437 + - uid: 21583 components: - pos: -50.5,-54.5 parent: 2 type: Transform - - uid: 21438 + - uid: 21584 components: - pos: -39.5,-38.5 parent: 2 type: Transform - - uid: 21439 + - uid: 21585 components: - pos: -51.5,-70.5 parent: 2 type: Transform - - uid: 21440 + - uid: 21586 components: - pos: -26.5,37.5 parent: 2 type: Transform - - uid: 21441 + - uid: 21587 components: - pos: -28.5,41.5 parent: 2 type: Transform - - uid: 21442 + - uid: 21588 components: - pos: 72.5,-35.5 parent: 2 type: Transform - - uid: 21443 + - uid: 21589 components: - pos: 46.5,-51.5 parent: 2 type: Transform - - uid: 21444 + - uid: 21590 components: - pos: -22.5,-62.5 parent: 2 type: Transform - - uid: 21445 + - uid: 21591 components: - pos: 3.5,-73.5 parent: 2 type: Transform - proto: NitrogenTankFilled entities: - - uid: 21446 + - uid: 21592 components: - pos: -22.469156,-57.61924 parent: 2 type: Transform - - uid: 21447 + - uid: 21593 components: - pos: -54.344475,0.46202505 parent: 2 type: Transform - - uid: 21448 + - uid: 21594 components: - pos: -49.491314,1.5773844 parent: 2 type: Transform - - uid: 21449 + - uid: 21595 components: - pos: -70.575325,-25.445038 parent: 2 type: Transform - - uid: 21450 + - uid: 21596 components: - pos: 64.52838,29.170698 parent: 2 type: Transform - proto: NitrousOxideCanister entities: - - uid: 21451 + - uid: 21597 components: - pos: -38.5,-38.5 parent: 2 type: Transform - - uid: 21452 + - uid: 21598 components: - pos: 54.5,-55.5 parent: 2 type: Transform - - uid: 21453 + - uid: 21599 components: - pos: -76.5,-46.5 parent: 2 type: Transform - proto: NitrousOxideTank entities: - - uid: 21454 + - uid: 21600 components: - pos: -3.498691,-65.92361 parent: 2 type: Transform - proto: NitrousOxideTankFilled entities: - - uid: 21455 + - uid: 21601 components: - pos: -15.868101,-35.49305 parent: 2 type: Transform - proto: NodeScanner entities: - - uid: 21456 + - uid: 21602 components: - pos: 73.66279,-38.523205 parent: 2 type: Transform +- proto: NoticeBoard + entities: + - uid: 21603 + components: + - pos: -0.5,4.5 + parent: 2 + type: Transform + - uid: 21604 + components: + - pos: 13.5,15.5 + parent: 2 + type: Transform - proto: NuclearBomb entities: - - uid: 21457 + - uid: 21605 components: - rot: -1.5707963267948966 rad pos: 46.5,-22.5 @@ -141426,868 +142262,868 @@ entities: type: Transform - proto: NuclearBombKeg entities: - - uid: 21458 + - uid: 21606 components: - pos: 46.5,-29.5 parent: 2 type: Transform - proto: Ointment entities: - - uid: 21459 + - uid: 21607 components: - rot: -1.5707963267948966 rad pos: 47.628784,4.507307 parent: 2 type: Transform - - uid: 21460 + - uid: 21608 components: - pos: -12.245195,-56.394966 parent: 2 type: Transform - - uid: 21461 + - uid: 21609 components: - pos: -9.307695,-56.332466 parent: 2 type: Transform - - uid: 21462 + - uid: 21610 components: - pos: -6.2759557,-56.37934 parent: 2 type: Transform - - uid: 21463 + - uid: 21611 components: - pos: -3.256374,-56.363716 parent: 2 type: Transform - - uid: 21464 + - uid: 21612 components: - pos: -0.2810341,-56.37934 parent: 2 type: Transform - proto: OnionRedSeeds entities: - - uid: 21465 + - uid: 21613 components: - pos: -32.362232,6.029836 parent: 2 type: Transform - proto: OnionSeeds entities: - - uid: 21466 + - uid: 21614 components: - pos: -32.52041,6.4317174 parent: 2 type: Transform - proto: OperatingTable entities: - - uid: 21467 + - uid: 21615 components: - pos: -15.5,-33.5 parent: 2 type: Transform - - uid: 21468 + - uid: 21616 components: - pos: -1.5,-65.5 parent: 2 type: Transform - - uid: 21469 + - uid: 21617 components: - pos: -7.5,-97.5 parent: 2 type: Transform - - uid: 21470 + - uid: 21618 components: - pos: 71.5,-48.5 parent: 2 type: Transform - proto: OreBag entities: - - uid: 21471 + - uid: 21619 components: - pos: -41.057323,35.546143 parent: 2 type: Transform - proto: OreBox entities: - - uid: 21472 + - uid: 21620 components: - pos: -43.5,35.5 parent: 2 type: Transform - - uid: 21473 + - uid: 21621 components: - pos: -42.5,35.5 parent: 2 type: Transform - proto: OreProcessor entities: - - uid: 21474 + - uid: 21622 components: - pos: -41.5,26.5 parent: 2 type: Transform - proto: OxygenCanister entities: - - uid: 21475 + - uid: 21623 components: - pos: -76.5,-44.5 parent: 2 type: Transform - - uid: 21476 + - uid: 21624 components: - pos: -9.5,-72.5 parent: 2 type: Transform - - uid: 21477 + - uid: 21625 components: - pos: 59.5,29.5 parent: 2 type: Transform - - uid: 21478 + - uid: 21626 components: - pos: 45.5,-52.5 parent: 2 type: Transform - - uid: 21479 + - uid: 21627 components: - pos: -25.5,-31.5 parent: 2 type: Transform - - uid: 21480 + - uid: 21628 components: - pos: -50.5,-52.5 parent: 2 type: Transform - - uid: 21481 + - uid: 21629 components: - pos: -37.5,-38.5 parent: 2 type: Transform - - uid: 21482 + - uid: 21630 components: - pos: -25.5,-55.5 parent: 2 type: Transform - - uid: 21483 + - uid: 21631 components: - pos: -34.5,-30.5 parent: 2 type: Transform - - uid: 21484 + - uid: 21632 components: - pos: -48.5,28.5 parent: 2 type: Transform - - uid: 21485 + - uid: 21633 components: - pos: -31.5,17.5 parent: 2 type: Transform - - uid: 21486 + - uid: 21634 components: - pos: -29.5,41.5 parent: 2 type: Transform - - uid: 21487 + - uid: 21635 components: - pos: 73.5,-35.5 parent: 2 type: Transform - - uid: 21488 + - uid: 21636 components: - pos: 46.5,-52.5 parent: 2 type: Transform - - uid: 21489 + - uid: 21637 components: - pos: -25.5,-62.5 parent: 2 type: Transform - - uid: 21490 + - uid: 21638 components: - pos: 4.5,-73.5 parent: 2 type: Transform - proto: OxygenTankFilled entities: - - uid: 21491 + - uid: 21639 components: - pos: -54.60223,0.49364984 parent: 2 type: Transform - - uid: 21492 + - uid: 21640 components: - pos: -22.609781,-57.353615 parent: 2 type: Transform - proto: PaintingAmogusTriptych entities: - - uid: 21493 + - uid: 21641 components: - pos: -16.5,-36.5 parent: 2 type: Transform - - uid: 21494 + - uid: 21642 components: - pos: 45.5,-12.5 parent: 2 type: Transform - proto: PaintingMonkey entities: - - uid: 21495 + - uid: 21643 components: - pos: 13.5,-9.5 parent: 2 type: Transform - proto: PaintingNightHawks entities: - - uid: 21496 + - uid: 21644 components: - pos: -9.5,-34.5 parent: 2 type: Transform - proto: PaintingSkeletonBoof entities: - - uid: 21497 + - uid: 21645 components: - pos: 9.5,-3.5 parent: 2 type: Transform - proto: PaintingSkeletonCigarette entities: - - uid: 21498 + - uid: 21646 components: - pos: -14.5,-36.5 parent: 2 type: Transform - proto: PaintingTheGreatWave entities: - - uid: 21499 + - uid: 21647 components: - pos: 30.5,-26.5 parent: 2 type: Transform - proto: PaintingTheScream entities: - - uid: 21500 + - uid: 21648 components: - pos: -7.5,-35.5 parent: 2 type: Transform - proto: PaintingTheSonOfMan entities: - - uid: 21501 + - uid: 21649 components: - pos: -25.5,16.5 parent: 2 type: Transform - proto: Paper entities: - - uid: 21502 + - uid: 21650 components: - pos: 20.483978,-12.296361 parent: 2 type: Transform - - uid: 21503 + - uid: 21651 components: - pos: 20.661783,-12.471693 parent: 2 type: Transform - - uid: 21504 + - uid: 21652 components: - pos: 24.486351,19.53259 parent: 2 type: Transform - - uid: 21505 + - uid: 21653 components: - pos: 6.351438,20.675463 parent: 2 type: Transform - - uid: 21506 + - uid: 21654 components: - rot: -1.5707963267948966 rad pos: -12.583234,-18.98207 parent: 2 type: Transform - - uid: 21507 + - uid: 21655 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21508 + - uid: 21656 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21509 + - uid: 21657 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21510 + - uid: 21658 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21511 + - uid: 21659 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21512 + - uid: 21660 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21513 + - uid: 21661 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21514 + - uid: 21662 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21515 + - uid: 21663 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21516 + - uid: 21664 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21517 + - uid: 21665 components: - rot: 1.5707963267948966 rad pos: -28.478912,45.366596 parent: 2 type: Transform - - uid: 21518 + - uid: 21666 components: - rot: 3.141592653589793 rad pos: -10.57877,-37.384254 parent: 2 type: Transform - - uid: 21519 + - uid: 21667 components: - rot: 3.141592653589793 rad pos: -10.57877,-37.384254 parent: 2 type: Transform - - uid: 21520 + - uid: 21668 components: - rot: 3.141592653589793 rad pos: -10.57877,-37.384254 parent: 2 type: Transform - - uid: 21521 + - uid: 21669 components: - rot: 3.141592653589793 rad pos: -10.57877,-37.384254 parent: 2 type: Transform - - uid: 21522 + - uid: 21670 components: - rot: 3.141592653589793 rad pos: -10.57877,-37.384254 parent: 2 type: Transform - - uid: 21523 + - uid: 21671 components: - pos: 24.486351,19.53259 parent: 2 type: Transform - - uid: 21524 + - uid: 21672 components: - pos: 24.486351,19.53259 parent: 2 type: Transform - - uid: 21525 + - uid: 21673 components: - pos: 24.486351,19.53259 parent: 2 type: Transform - - uid: 21526 + - uid: 21674 components: - pos: 24.486351,19.53259 parent: 2 type: Transform - - uid: 21527 + - uid: 21675 components: - pos: 24.486351,19.53259 parent: 2 type: Transform - - uid: 21528 + - uid: 21676 components: - pos: 24.486351,19.53259 parent: 2 type: Transform - - uid: 21529 + - uid: 21677 components: - rot: 3.141592653589793 rad pos: 16.421602,22.571196 parent: 2 type: Transform - - uid: 21530 + - uid: 21678 components: - rot: 3.141592653589793 rad pos: 16.515352,22.55557 parent: 2 type: Transform - - uid: 21531 + - uid: 21679 components: - rot: 3.141592653589793 rad pos: 16.499727,22.571196 parent: 2 type: Transform - - uid: 21532 + - uid: 21680 components: - rot: 3.141592653589793 rad pos: 16.499727,22.571196 parent: 2 type: Transform - - uid: 21533 + - uid: 21681 components: - rot: 3.141592653589793 rad pos: 16.499727,22.571196 parent: 2 type: Transform - - uid: 21534 + - uid: 21682 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21535 + - uid: 21683 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21536 + - uid: 21684 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21537 + - uid: 21685 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21538 + - uid: 21686 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21539 + - uid: 21687 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21540 + - uid: 21688 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21541 + - uid: 21689 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21542 + - uid: 21690 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21543 + - uid: 21691 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21544 + - uid: 21692 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21545 + - uid: 21693 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21546 + - uid: 21694 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21547 + - uid: 21695 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21548 + - uid: 21696 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21549 + - uid: 21697 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21550 + - uid: 21698 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21551 + - uid: 21699 components: - rot: 1.5707963267948966 rad pos: 43.519466,-3.4569287 parent: 2 type: Transform - - uid: 21552 + - uid: 21700 components: - rot: 1.5707963267948966 rad pos: 37.488216,-3.5194297 parent: 2 type: Transform - - uid: 21553 + - uid: 21701 components: - rot: 1.5707963267948966 rad pos: 37.488216,-3.5194297 parent: 2 type: Transform - - uid: 21554 + - uid: 21702 components: - rot: 1.5707963267948966 rad pos: 37.488216,-3.5194297 parent: 2 type: Transform - - uid: 21555 + - uid: 21703 components: - rot: 1.5707963267948966 rad pos: 37.488216,-3.5194297 parent: 2 type: Transform - - uid: 21556 + - uid: 21704 components: - rot: 1.5707963267948966 rad pos: 37.59759,-3.6288047 parent: 2 type: Transform - - uid: 21557 + - uid: 21705 components: - rot: 1.5707963267948966 rad pos: 37.59759,-3.6288047 parent: 2 type: Transform - - uid: 21558 + - uid: 21706 components: - rot: 1.5707963267948966 rad pos: 37.550716,-3.6131797 parent: 2 type: Transform - - uid: 21559 + - uid: 21707 components: - rot: 1.5707963267948966 rad pos: 37.550716,-3.6131797 parent: 2 type: Transform - - uid: 21560 + - uid: 21708 components: - rot: 1.5707963267948966 rad pos: 37.56634,-3.6131797 parent: 2 type: Transform - - uid: 21561 + - uid: 21709 components: - rot: 1.5707963267948966 rad pos: 37.59759,-3.6288047 parent: 2 type: Transform - - uid: 21562 + - uid: 21710 components: - rot: 1.5707963267948966 rad pos: 37.59759,-3.6288047 parent: 2 type: Transform - - uid: 21563 + - uid: 21711 components: - rot: 1.5707963267948966 rad pos: 37.59759,-3.6288047 parent: 2 type: Transform - - uid: 21564 + - uid: 21712 components: - pos: 38.47659,-2.4393778 parent: 2 type: Transform - - uid: 21565 + - uid: 21713 components: - pos: 38.47659,-2.4393778 parent: 2 type: Transform - - uid: 21566 + - uid: 21714 components: - pos: 38.47659,-2.4393778 parent: 2 type: Transform - - uid: 21567 + - uid: 21715 components: - pos: 38.47659,-2.4393778 parent: 2 type: Transform - - uid: 21568 + - uid: 21716 components: - pos: 38.47659,-2.4393778 parent: 2 type: Transform - - uid: 21569 + - uid: 21717 components: - pos: 38.47659,-2.4393778 parent: 2 type: Transform - - uid: 21570 + - uid: 21718 components: - pos: 38.47659,-2.4393778 parent: 2 type: Transform - - uid: 21571 + - uid: 21719 components: - rot: 1.5707963267948966 rad pos: 51.483532,-41.966263 parent: 2 type: Transform - - uid: 21572 + - uid: 21720 components: - rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 type: Transform - - uid: 21573 + - uid: 21721 components: - rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 type: Transform - - uid: 21574 + - uid: 21722 components: - rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 type: Transform - - uid: 21575 + - uid: 21723 components: - rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 type: Transform - - uid: 21576 + - uid: 21724 components: - rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 type: Transform - - uid: 21577 + - uid: 21725 components: - rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 type: Transform - - uid: 21578 + - uid: 21726 components: - rot: 1.5707963267948966 rad pos: 51.467907,-41.966263 parent: 2 type: Transform - - uid: 21579 + - uid: 21727 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21580 + - uid: 21728 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21581 + - uid: 21729 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21582 + - uid: 21730 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21583 + - uid: 21731 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21584 + - uid: 21732 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21585 + - uid: 21733 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21586 + - uid: 21734 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21587 + - uid: 21735 components: - rot: -1.5707963267948966 rad pos: -35.51461,-16.473585 parent: 2 type: Transform - - uid: 21588 + - uid: 21736 components: - rot: -1.5707963267948966 rad pos: -35.467735,-16.567335 parent: 2 type: Transform - - uid: 21589 + - uid: 21737 components: - rot: -1.5707963267948966 rad pos: -35.467735,-16.567335 parent: 2 type: Transform - - uid: 21590 + - uid: 21738 components: - rot: -1.5707963267948966 rad pos: -35.467735,-16.567335 parent: 2 type: Transform - - uid: 21591 + - uid: 21739 components: - rot: -1.5707963267948966 rad pos: -35.467735,-16.567335 parent: 2 type: Transform - - uid: 21592 + - uid: 21740 components: - pos: 1.3868889,23.62748 parent: 2 type: Transform - - uid: 21593 + - uid: 21741 components: - pos: 1.3868889,23.643105 parent: 2 type: Transform - - uid: 21594 + - uid: 21742 components: - rot: 3.141592653589793 rad pos: -26.49969,14.6061535 parent: 2 type: Transform - - uid: 21595 + - uid: 21743 components: - rot: 3.141592653589793 rad pos: -26.49969,14.6061535 parent: 2 type: Transform - - uid: 21596 + - uid: 21744 components: - rot: 3.141592653589793 rad pos: -26.49969,14.6061535 parent: 2 type: Transform - - uid: 21597 + - uid: 21745 components: - rot: 3.141592653589793 rad pos: -26.49969,14.6061535 parent: 2 type: Transform - - uid: 21598 + - uid: 21746 components: - rot: 3.141592653589793 rad pos: -26.49969,14.6061535 parent: 2 type: Transform - - uid: 21599 + - uid: 21747 components: - rot: 3.141592653589793 rad pos: -26.49969,14.6061535 parent: 2 type: Transform - - uid: 21600 + - uid: 21748 components: - pos: -31.206972,15.691786 parent: 2 type: Transform - - uid: 21601 + - uid: 21749 components: - pos: -31.206972,15.691786 parent: 2 type: Transform - - uid: 21602 + - uid: 21750 components: - pos: -31.363222,15.551161 parent: 2 type: Transform - - uid: 21603 + - uid: 21751 components: - pos: -31.363222,15.551161 parent: 2 type: Transform - - uid: 21604 + - uid: 21752 components: - pos: 10.165828,-6.3936543 parent: 2 type: Transform - - uid: 21605 + - uid: 21753 components: - pos: 10.165828,-6.3936543 parent: 2 type: Transform - - uid: 21606 + - uid: 21754 components: - pos: 9.367039,-7.0613875 parent: 2 type: Transform - - uid: 21607 + - uid: 21755 components: - pos: -11.489469,-13.479897 parent: 2 @@ -142297,7 +143133,7 @@ entities: Anything suspicious, please inform security. type: Paper - - uid: 21608 + - uid: 21756 components: - pos: -42.540462,17.447073 parent: 2 @@ -142307,53 +143143,53 @@ entities: type: Paper - proto: PaperBin10 entities: - - uid: 21609 + - uid: 21757 components: - rot: -1.5707963267948966 rad pos: 22.5,-21.5 parent: 2 type: Transform - - uid: 21610 + - uid: 21758 components: - pos: -22.48288,-97.58025 parent: 2 type: Transform - proto: PaperBin5 entities: - - uid: 21611 + - uid: 21759 components: - pos: -19.490406,-56.387535 parent: 2 type: Transform - - uid: 21612 + - uid: 21760 components: - pos: -34.544167,24.426237 parent: 2 type: Transform - - uid: 21613 + - uid: 21761 components: - rot: 3.141592653589793 rad pos: -25.63709,-36.050198 parent: 2 type: Transform - - uid: 21614 + - uid: 21762 components: - pos: -27.800707,-9.411719 parent: 2 type: Transform - - uid: 21615 + - uid: 21763 components: - pos: 39.827625,-39.412262 parent: 2 type: Transform - - uid: 21616 + - uid: 21764 components: - pos: -17.5,-61.5 parent: 2 type: Transform - proto: PaperCaptainsThoughts entities: - - uid: 21617 + - uid: 21765 components: - rot: 1.5707963267948966 rad pos: 30.690884,-28.507551 @@ -142361,21 +143197,21 @@ entities: type: Transform - proto: PaperRolling entities: - - uid: 21618 + - uid: 21766 components: - - pos: 51.67759,57.788548 + - pos: 50.67044,57.737556 parent: 2 type: Transform - proto: ParticleAcceleratorControlBoxUnfinished entities: - - uid: 21619 + - uid: 21767 components: - pos: -66.5,-30.5 parent: 2 type: Transform - proto: ParticleAcceleratorEmitterForeUnfinished entities: - - uid: 21620 + - uid: 21768 components: - rot: 3.141592653589793 rad pos: -66.5,-24.5 @@ -142383,7 +143219,7 @@ entities: type: Transform - proto: ParticleAcceleratorEmitterPortUnfinished entities: - - uid: 21621 + - uid: 21769 components: - rot: 3.141592653589793 rad pos: -67.5,-24.5 @@ -142391,7 +143227,7 @@ entities: type: Transform - proto: ParticleAcceleratorEmitterStarboard entities: - - uid: 21622 + - uid: 21770 components: - rot: 3.141592653589793 rad pos: -65.5,-24.5 @@ -142399,7 +143235,7 @@ entities: type: Transform - proto: ParticleAcceleratorEndCapUnfinished entities: - - uid: 21623 + - uid: 21771 components: - rot: 3.141592653589793 rad pos: -66.5,-27.5 @@ -142407,7 +143243,7 @@ entities: type: Transform - proto: ParticleAcceleratorFuelChamberUnfinished entities: - - uid: 21624 + - uid: 21772 components: - rot: 3.141592653589793 rad pos: -65.5,-26.5 @@ -142415,7 +143251,7 @@ entities: type: Transform - proto: ParticleAcceleratorPowerBoxUnfinished entities: - - uid: 21625 + - uid: 21773 components: - rot: 3.141592653589793 rad pos: -66.5,-25.5 @@ -142423,40 +143259,40 @@ entities: type: Transform - proto: PartRodMetal entities: - - uid: 21626 + - uid: 21774 components: - pos: -40.15428,-18.425268 parent: 2 type: Transform - - uid: 21627 + - uid: 21775 components: - pos: -39.68701,25.670773 parent: 2 type: Transform - - uid: 21628 + - uid: 21776 components: - pos: -40.541622,33.38082 parent: 2 type: Transform - - uid: 21629 + - uid: 21777 components: - pos: -47.52058,40.270145 parent: 2 type: Transform - proto: PartRodMetal1 entities: - - uid: 21630 + - uid: 21778 components: - pos: -34.56476,-25.498856 parent: 2 type: Transform - - uid: 21631 + - uid: 21779 components: - rot: -1.5707963267948966 rad pos: 3.9014397,49.543682 parent: 2 type: Transform - - uid: 21632 + - uid: 21780 components: - rot: 3.141592653589793 rad pos: 1.4099668,48.504288 @@ -142464,46 +143300,46 @@ entities: type: Transform - proto: Pen entities: - - uid: 21633 + - uid: 21781 components: - rot: -1.5707963267948966 rad pos: -4.7918606,-48.471176 parent: 2 type: Transform - - uid: 21634 + - uid: 21782 components: - rot: 3.141592653589793 rad pos: -10.781895,-37.52488 parent: 2 type: Transform - - uid: 21635 + - uid: 21783 components: - rot: 3.141592653589793 rad pos: 16.218477,22.61807 parent: 2 type: Transform - - uid: 21636 + - uid: 21784 components: - pos: 16.327852,21.55557 parent: 2 type: Transform - - uid: 21637 + - uid: 21785 components: - pos: 43.66009,-3.5506787 parent: 2 type: Transform - - uid: 21638 + - uid: 21786 components: - pos: 37.66009,-3.7069297 parent: 2 type: Transform - - uid: 21639 + - uid: 21787 components: - rot: -1.5707963267948966 rad pos: -35.775307,-16.265104 parent: 2 type: Transform - - uid: 21640 + - uid: 21788 components: - rot: 1.5707963267948966 rad pos: 3.6684875,-10.184602 @@ -142511,35 +143347,35 @@ entities: type: Transform - proto: PersonalAI entities: - - uid: 21641 + - uid: 21789 components: - flags: SessionSpecific type: MetaData - pos: 26.517971,-21.50738 parent: 2 type: Transform - - uid: 21642 + - uid: 21790 components: - flags: SessionSpecific type: MetaData - pos: 11.402888,8.363556 parent: 2 type: Transform - - uid: 21643 + - uid: 21791 components: - flags: SessionSpecific type: MetaData - pos: 12.500859,-4.4425125 parent: 2 type: Transform - - uid: 21644 + - uid: 21792 components: - flags: SessionSpecific type: MetaData - pos: -48.458683,6.4665513 parent: 2 type: Transform - - uid: 21645 + - uid: 21793 components: - flags: SessionSpecific type: MetaData @@ -142548,14 +143384,14 @@ entities: type: Transform - proto: PhoneInstrument entities: - - uid: 21646 + - uid: 21794 components: - pos: 60.321476,-1.3655583 parent: 2 type: Transform - proto: PianoInstrument entities: - - uid: 21647 + - uid: 21795 components: - rot: -1.5707963267948966 rad pos: 8.5,0.5 @@ -142563,234 +143399,234 @@ entities: type: Transform - proto: Pickaxe entities: - - uid: 21648 + - uid: 21796 components: - pos: -38.26402,27.606245 parent: 2 type: Transform - - uid: 21649 + - uid: 21797 components: - pos: -38.54527,27.71562 parent: 2 type: Transform - - uid: 21650 + - uid: 21798 components: - pos: -47.972298,26.558094 parent: 2 type: Transform - - uid: 21651 + - uid: 21799 components: - pos: 68.4767,50.00708 parent: 2 type: Transform - - uid: 21652 + - uid: 21800 components: - pos: 20.350138,46.202785 parent: 2 type: Transform - - uid: 21653 + - uid: 21801 components: - pos: -47.48462,39.252865 parent: 2 type: Transform - - uid: 31315 + - uid: 21802 components: - pos: 63.54565,-33.402943 parent: 2 type: Transform - proto: PillCanister entities: - - uid: 21654 + - uid: 21803 components: - pos: -10.04752,-37.290504 parent: 2 type: Transform - proto: PillDexalin entities: - - uid: 21655 + - uid: 21804 components: - pos: -10.034681,-32.27196 parent: 2 type: Transform - - uid: 21656 + - uid: 21805 components: - pos: -10.034681,-32.27196 parent: 2 type: Transform - - uid: 21657 + - uid: 21806 components: - pos: -10.019056,-32.27196 parent: 2 type: Transform - - uid: 21658 + - uid: 21807 components: - pos: -10.019056,-32.27196 parent: 2 type: Transform - proto: PillDylovene entities: - - uid: 21659 + - uid: 21808 components: - pos: -9.519056,-32.52196 parent: 2 type: Transform - - uid: 21660 + - uid: 21809 components: - pos: -9.519056,-32.52196 parent: 2 type: Transform - - uid: 21661 + - uid: 21810 components: - pos: -9.503431,-32.52196 parent: 2 type: Transform - - uid: 21662 + - uid: 21811 components: - pos: -9.487806,-32.537586 parent: 2 type: Transform - proto: PillHyronalin entities: - - uid: 21663 + - uid: 21812 components: - pos: -9.534681,-32.256336 parent: 2 type: Transform - - uid: 21664 + - uid: 21813 components: - pos: -9.534681,-32.256336 parent: 2 type: Transform - - uid: 21665 + - uid: 21814 components: - pos: -9.534681,-32.256336 parent: 2 type: Transform - - uid: 21666 + - uid: 21815 components: - pos: -9.534681,-32.256336 parent: 2 type: Transform - proto: PillIron entities: - - uid: 21667 + - uid: 21816 components: - pos: -9.034681,-32.506336 parent: 2 type: Transform - - uid: 21668 + - uid: 21817 components: - pos: -9.034681,-32.506336 parent: 2 type: Transform - - uid: 21669 + - uid: 21818 components: - pos: -9.034681,-32.506336 parent: 2 type: Transform - - uid: 21670 + - uid: 21819 components: - pos: -9.034681,-32.506336 parent: 2 type: Transform - proto: PillKelotane entities: - - uid: 21671 + - uid: 21820 components: - pos: -9.034681,-32.24071 parent: 2 type: Transform - - uid: 21672 + - uid: 21821 components: - pos: -9.034681,-32.24071 parent: 2 type: Transform - - uid: 21673 + - uid: 21822 components: - pos: -9.034681,-32.24071 parent: 2 type: Transform - - uid: 21674 + - uid: 21823 components: - pos: -9.034681,-32.24071 parent: 2 type: Transform - proto: PillSpaceDrugs entities: - - uid: 21675 + - uid: 21824 components: - pos: -8.5,-32.5 parent: 2 type: Transform - - uid: 21676 + - uid: 21825 components: - pos: -8.5,-32.5 parent: 2 type: Transform - - uid: 21677 + - uid: 21826 components: - pos: -8.5,-32.5 parent: 2 type: Transform - - uid: 21678 + - uid: 21827 components: - pos: -8.5,-32.5 parent: 2 type: Transform - proto: PillTricordrazine entities: - - uid: 21679 + - uid: 21828 components: - pos: -8.519056,-32.256336 parent: 2 type: Transform - - uid: 21680 + - uid: 21829 components: - pos: -8.503431,-32.256336 parent: 2 type: Transform - - uid: 21681 + - uid: 21830 components: - pos: -8.519056,-32.256336 parent: 2 type: Transform - - uid: 21682 + - uid: 21831 components: - pos: -8.519056,-32.256336 parent: 2 type: Transform - proto: PinpointerNuclear entities: - - uid: 21683 + - uid: 21832 components: - pos: 47.542713,-21.502851 parent: 2 type: Transform - proto: PlasmaCanister entities: - - uid: 21684 + - uid: 21833 components: - pos: 55.5,-55.5 parent: 2 type: Transform - - uid: 21685 + - uid: 21834 components: - pos: -40.5,-39.5 parent: 2 type: Transform - - uid: 21686 + - uid: 21835 components: - pos: -50.5,-46.5 parent: 2 type: Transform - - uid: 21687 + - uid: 21836 components: - pos: -75.5,-44.5 parent: 2 type: Transform - proto: PlasmaOre1 entities: - - uid: 21688 + - uid: 21837 components: - rot: 3.141592653589793 rad pos: 13.8918705,48.240677 @@ -142798,47 +143634,47 @@ entities: type: Transform - proto: PlasticFlapsAirtightClear entities: - - uid: 21689 + - uid: 21838 components: - pos: -49.5,19.5 parent: 2 type: Transform - - uid: 21690 + - uid: 21839 components: - pos: -49.5,23.5 parent: 2 type: Transform - - uid: 21691 + - uid: 21840 components: - pos: -49.5,30.5 parent: 2 type: Transform - - uid: 21692 + - uid: 21841 components: - pos: -49.5,34.5 parent: 2 type: Transform - - uid: 21693 + - uid: 21842 components: - pos: -52.5,34.5 parent: 2 type: Transform - - uid: 21694 + - uid: 21843 components: - pos: -52.5,30.5 parent: 2 type: Transform - - uid: 21695 + - uid: 21844 components: - pos: -53.5,23.5 parent: 2 type: Transform - - uid: 21696 + - uid: 21845 components: - pos: -53.5,19.5 parent: 2 type: Transform - - uid: 21697 + - uid: 21846 components: - rot: -1.5707963267948966 rad pos: 18.5,-56.5 @@ -142846,12 +143682,12 @@ entities: type: Transform - proto: PlasticFlapsAirtightOpaque entities: - - uid: 21698 + - uid: 21847 components: - pos: -35.5,25.5 parent: 2 type: Transform - - uid: 21699 + - uid: 21848 components: - rot: -1.5707963267948966 rad pos: -37.5,-99.5 @@ -142859,35 +143695,35 @@ entities: type: Transform - proto: PlasticFlapsClear entities: - - uid: 21700 + - uid: 21849 components: - pos: -26.5,25.5 parent: 2 type: Transform - - uid: 21701 + - uid: 21850 components: - pos: -29.5,25.5 parent: 2 type: Transform - - uid: 21702 + - uid: 21851 components: - rot: -1.5707963267948966 rad pos: -47.5,13.5 parent: 2 type: Transform - - uid: 21703 + - uid: 21852 components: - rot: 1.5707963267948966 rad pos: -42.5,16.5 parent: 2 type: Transform - - uid: 21704 + - uid: 21853 components: - rot: -1.5707963267948966 rad pos: -11.5,-11.5 parent: 2 type: Transform - - uid: 21705 + - uid: 21854 components: - rot: 1.5707963267948966 rad pos: -16.5,9.5 @@ -142895,29 +143731,29 @@ entities: type: Transform - proto: PlasticFlapsOpaque entities: - - uid: 21706 + - uid: 21855 components: - pos: -11.5,27.5 parent: 2 type: Transform - - uid: 21707 + - uid: 21856 components: - rot: -1.5707963267948966 rad pos: -9.5,25.5 parent: 2 type: Transform - - uid: 21708 + - uid: 21857 components: - pos: -7.5,22.5 parent: 2 type: Transform - - uid: 21709 + - uid: 21858 components: - rot: 3.141592653589793 rad pos: 44.5,37.5 parent: 2 type: Transform - - uid: 21710 + - uid: 21859 components: - rot: 1.5707963267948966 rad pos: 48.5,37.5 @@ -142925,121 +143761,121 @@ entities: type: Transform - proto: PlushieAtmosian entities: - - uid: 21711 + - uid: 21860 components: - pos: -22.54358,-34.49993 parent: 2 type: Transform - proto: PlushieBee entities: - - uid: 21712 + - uid: 21861 components: - pos: 10.893783,54.42024 parent: 2 type: Transform - - uid: 21713 + - uid: 21862 components: - pos: 8.284408,54.20149 parent: 2 type: Transform - - uid: 21714 + - uid: 21863 components: - pos: -7.8529105,54.918877 parent: 2 type: Transform - - uid: 21715 + - uid: 21864 components: - pos: -6.6029105,50.731377 parent: 2 type: Transform - proto: PlushieCarp entities: - - uid: 21716 + - uid: 21865 components: - pos: -38.3623,28.544445 parent: 2 type: Transform - proto: PlushieDiona entities: - - uid: 21717 + - uid: 21866 components: - pos: 17.550053,-79.57761 parent: 2 type: Transform - proto: PlushieHampter entities: - - uid: 21718 + - uid: 21867 components: - pos: -46.5,-30.5 parent: 2 type: Transform - - uid: 21719 + - uid: 21868 components: - pos: 2.519814,7.511129 parent: 2 type: Transform - proto: PlushieLizard entities: - - uid: 21720 + - uid: 21869 components: - pos: 61.496056,-69.34596 parent: 2 type: Transform - proto: PlushieMoth entities: - - uid: 31317 + - uid: 21870 components: - pos: -55.418537,-64.31985 parent: 2 type: Transform - proto: PlushieNar entities: - - uid: 21721 + - uid: 21871 components: - pos: 44.413727,31.423994 parent: 2 type: Transform - proto: PlushieNuke entities: - - uid: 21722 + - uid: 21872 components: - pos: -14.485033,-78.68338 parent: 2 type: Transform - - uid: 21723 + - uid: 21873 components: - - pos: 54.50363,58.48181 + - pos: 54.48294,57.40943 parent: 2 type: Transform - proto: PlushieRatvar entities: - - uid: 21724 + - uid: 21874 components: - pos: 22.555937,-28.535349 parent: 2 type: Transform - proto: PlushieRGBee entities: - - uid: 21725 + - uid: 21875 components: - pos: 56.511868,-8.541915 parent: 2 type: Transform - proto: PlushieSharkGrey entities: - - uid: 21726 + - uid: 21876 components: - - pos: -56.49192,-87.62071 + - pos: -52.480396,-88.49494 parent: 2 type: Transform - proto: PlushieSharkPink entities: - - uid: 21727 + - uid: 21877 components: - pos: -44.508965,16.421295 parent: 2 type: Transform - - uid: 21728 + - uid: 21878 components: - desc: It eerily feels... cute? name: Cult shark plushie @@ -143053,189 +143889,184 @@ entities: type: PointLight - proto: PlushieSlime entities: - - uid: 21729 + - uid: 21879 components: - pos: 44.49185,33.486496 parent: 2 type: Transform - proto: PlushieSnake entities: - - uid: 21730 + - uid: 21880 components: - pos: 43.507477,33.486496 parent: 2 type: Transform - - uid: 21731 + - uid: 21881 components: - pos: -55.49481,-49.261024 parent: 2 type: Transform - proto: PlushieSpaceLizard entities: - - uid: 21732 + - uid: 21882 components: - pos: -44.46209,15.43692 parent: 2 type: Transform - - uid: 21733 + - uid: 21883 components: - pos: 42.55435,33.392746 parent: 2 type: Transform - proto: PlushieVox entities: - - uid: 21734 + - uid: 21884 components: - pos: 32.421734,-47.539772 parent: 2 type: Transform - proto: PortableFlasher entities: - - uid: 21735 + - uid: 21885 components: - pos: 32.5,31.5 parent: 2 type: Transform - proto: PortableGeneratorJrPacman entities: - - uid: 21736 + - uid: 21886 components: - pos: -30.5,-61.5 parent: 2 type: Transform - - uid: 21737 + - uid: 21887 components: - pos: 15.5,-72.5 parent: 2 type: Transform - - uid: 21738 + - uid: 21888 components: - pos: -54.5,-30.5 parent: 2 type: Transform - - uid: 21739 + - uid: 21889 components: - pos: 30.5,44.5 parent: 2 type: Transform - proto: PortableGeneratorPacman entities: - - uid: 21740 - components: - - pos: -58.5,-86.5 - parent: 2 - type: Transform - - uid: 21741 + - uid: 21890 components: - pos: -65.5,-51.5 parent: 2 type: Transform - - uid: 21742 + - uid: 21891 components: - pos: 4.5,-22.5 parent: 2 type: Transform - - uid: 21743 + - uid: 21892 components: - pos: 4.5,-23.5 parent: 2 type: Transform - proto: PortableScrubber entities: - - uid: 21744 + - uid: 21893 components: - pos: -9.5,-68.5 parent: 2 type: Transform - - uid: 21745 + - uid: 21894 components: - pos: -33.5,-43.5 parent: 2 type: Transform - - uid: 21746 + - uid: 21895 components: - pos: -33.5,-44.5 parent: 2 type: Transform - - uid: 21747 + - uid: 21896 components: - pos: -33.5,-45.5 parent: 2 type: Transform - proto: PosterBroken entities: - - uid: 21748 + - uid: 21897 components: - pos: 0.5,-70.5 parent: 2 type: Transform - proto: PosterContrabandAmbrosiaVulgaris entities: - - uid: 21749 + - uid: 21898 components: - pos: -10.5,-34.5 parent: 2 type: Transform - proto: PosterContrabandAtmosiaDeclarationIndependence entities: - - uid: 21750 + - uid: 21899 components: - pos: -36.5,-52.5 parent: 2 type: Transform - proto: PosterContrabandBeachStarYamamoto entities: - - uid: 21224 + - uid: 21900 components: - pos: -16.5,-81.5 parent: 2 type: Transform - - uid: 21751 + - uid: 21901 components: - pos: -9.5,-31.5 parent: 2 type: Transform - proto: PosterContrabandBorgFancy entities: - - uid: 21752 + - uid: 21902 components: - pos: 16.5,-4.5 parent: 2 type: Transform - proto: PosterContrabandBountyHunters entities: - - uid: 21753 + - uid: 21903 components: - pos: 14.5,-56.5 parent: 2 type: Transform - - uid: 21754 + - uid: 21904 components: - pos: -42.5,26.5 parent: 2 type: Transform - proto: PosterContrabandCC64KAd entities: - - uid: 21755 + - uid: 21905 components: - pos: 20.5,-3.5 parent: 2 type: Transform - proto: PosterContrabandClown entities: - - uid: 21756 + - uid: 21906 components: - rot: 1.5707963267948966 rad pos: -23.5,39.5 parent: 2 type: Transform - - uid: 21757 + - uid: 21907 components: - rot: -1.5707963267948966 rad pos: 0.5,-24.5 parent: 2 type: Transform - - uid: 21758 + - uid: 21908 components: - rot: -1.5707963267948966 rad pos: -0.5,-18.5 @@ -143243,19 +144074,19 @@ entities: type: Transform - proto: PosterContrabandCommunistState entities: - - uid: 21759 + - uid: 21909 components: - pos: 0.5,-15.5 parent: 2 type: Transform - - uid: 21760 + - uid: 21910 components: - pos: 53.5,-64.5 parent: 2 type: Transform - proto: PosterContrabandCybersun600 entities: - - uid: 21761 + - uid: 21911 components: - rot: 1.5707963267948966 rad pos: -15.5,48.5 @@ -143263,28 +144094,28 @@ entities: type: Transform - proto: PosterContrabandDDayPromo entities: - - uid: 21762 + - uid: 21912 components: - pos: 14.5,33.5 parent: 2 type: Transform - proto: PosterContrabandDonutCorp entities: - - uid: 21763 + - uid: 21913 components: - pos: 49.5,34.5 parent: 2 type: Transform - proto: PosterContrabandEAT entities: - - uid: 21764 + - uid: 21914 components: - pos: 4.5,4.5 parent: 2 type: Transform - proto: PosterContrabandEnlistGorlex entities: - - uid: 21765 + - uid: 21915 components: - rot: 1.5707963267948966 rad pos: 53.5,54.5 @@ -143292,59 +144123,59 @@ entities: type: Transform - proto: PosterContrabandFreeSyndicateEncryptionKey entities: - - uid: 21766 + - uid: 21916 components: - pos: -53.5,-85.5 parent: 2 type: Transform - proto: PosterContrabandFreeTonto entities: - - uid: 21767 + - uid: 21917 components: - pos: -6.5,-14.5 parent: 2 type: Transform - proto: PosterContrabandFunPolice entities: - - uid: 21768 + - uid: 21918 components: - pos: 4.5,18.5 parent: 2 type: Transform - proto: PosterContrabandGreyTide entities: - - uid: 21769 + - uid: 21919 components: - pos: 55.5,-9.5 parent: 2 type: Transform - - uid: 21770 + - uid: 21920 components: - pos: 41.5,-57.5 parent: 2 type: Transform - - uid: 21771 + - uid: 21921 components: - pos: -19.5,64.5 parent: 2 type: Transform - proto: PosterContrabandHackingGuide entities: - - uid: 21772 + - uid: 21922 components: - pos: 15.5,40.5 parent: 2 type: Transform - proto: PosterContrabandHighEffectEngineering entities: - - uid: 21773 + - uid: 21923 components: - pos: -48.5,-7.5 parent: 2 type: Transform - proto: PosterContrabandInterdyne entities: - - uid: 21774 + - uid: 21924 components: - rot: -1.5707963267948966 rad pos: 7.5,-44.5 @@ -143352,195 +144183,195 @@ entities: type: Transform - proto: PosterContrabandKosmicheskayaStantsiya entities: - - uid: 21775 + - uid: 21925 components: - pos: -25.5,-63.5 parent: 2 type: Transform - proto: PosterContrabandLamarr entities: - - uid: 21776 + - uid: 21926 components: - pos: 10.5,35.5 parent: 2 type: Transform - proto: PosterContrabandLustyExomorph entities: - - uid: 21777 + - uid: 21927 components: - pos: -9.5,-73.5 parent: 2 type: Transform - - uid: 21778 + - uid: 21928 components: - pos: 45.5,50.5 parent: 2 type: Transform - proto: PosterContrabandMaskedMen entities: - - uid: 21779 + - uid: 21929 components: - pos: 47.5,51.5 parent: 2 type: Transform - proto: PosterContrabandMissingGloves entities: - - uid: 21780 + - uid: 21930 components: - pos: 20.5,19.5 parent: 2 type: Transform - - uid: 21781 + - uid: 21931 components: - pos: 41.5,-52.5 parent: 2 type: Transform - - uid: 21782 + - uid: 21932 components: - pos: -26.5,-18.5 parent: 2 type: Transform - proto: PosterContrabandNuclearDeviceInformational entities: - - uid: 21783 + - uid: 21933 components: - pos: 39.5,-24.5 parent: 2 type: Transform - proto: PosterContrabandPower entities: - - uid: 21784 + - uid: 21934 components: - pos: -61.5,-22.5 parent: 2 type: Transform - - uid: 21785 + - uid: 21935 components: - pos: -23.5,-7.5 parent: 2 type: Transform - proto: PosterContrabandRebelsUnite entities: - - uid: 21786 + - uid: 21936 components: - pos: -0.5,-72.5 parent: 2 type: Transform - - uid: 21787 + - uid: 21937 components: - pos: -42.5,-73.5 parent: 2 type: Transform - proto: PosterContrabandRedRum entities: - - uid: 21788 + - uid: 21938 components: - pos: 13.5,4.5 parent: 2 type: Transform - - uid: 21789 + - uid: 21939 components: - pos: 11.5,15.5 parent: 2 type: Transform - - uid: 21790 + - uid: 21940 components: - pos: 35.5,49.5 parent: 2 type: Transform - proto: PosterContrabandRevolt entities: - - uid: 21791 + - uid: 21941 components: - pos: -40.5,-73.5 parent: 2 type: Transform - - uid: 21792 + - uid: 21942 components: - pos: -7.5,-73.5 parent: 2 type: Transform - - uid: 21793 + - uid: 21943 components: - pos: 57.5,55.5 parent: 2 type: Transform - - uid: 21794 + - uid: 21944 components: - pos: 51.5,55.5 parent: 2 type: Transform - - uid: 21795 + - uid: 21945 components: - pos: 56.5,60.5 parent: 2 type: Transform - - uid: 21796 + - uid: 21946 components: - pos: 52.5,60.5 parent: 2 type: Transform - - uid: 21797 + - uid: 21947 components: - pos: 51.5,59.5 parent: 2 type: Transform - - uid: 21798 + - uid: 21948 components: - pos: 57.5,59.5 parent: 2 type: Transform - proto: PosterContrabandRevolver entities: - - uid: 21799 + - uid: 21949 components: - pos: -30.5,-42.5 parent: 2 type: Transform - - uid: 21800 + - uid: 21950 components: - pos: 42.5,49.5 parent: 2 type: Transform - proto: PosterContrabandRIPBadger entities: - - uid: 21801 + - uid: 21951 components: - pos: -41.5,-27.5 parent: 2 type: Transform - proto: PosterContrabandRise entities: - - uid: 21802 + - uid: 21952 components: - pos: 63.5,10.5 parent: 2 type: Transform - - uid: 21803 + - uid: 21953 components: - pos: -28.5,-50.5 parent: 2 type: Transform - - uid: 21804 + - uid: 21954 components: - pos: -40.5,-69.5 parent: 2 type: Transform - - uid: 21805 + - uid: 21955 components: - pos: 57.5,53.5 parent: 2 type: Transform - proto: PosterContrabandRobustSoftdrinks entities: - - uid: 21806 + - uid: 21956 components: - pos: -6.5,-31.5 parent: 2 type: Transform - proto: PosterContrabandShamblersJuice entities: - - uid: 21807 + - uid: 21957 components: - name: changs type: MetaData @@ -143550,274 +144381,274 @@ entities: type: Transform - proto: PosterContrabandSmoke entities: - - uid: 21808 + - uid: 21958 components: - pos: -6.5,-51.5 parent: 2 type: Transform - proto: PosterContrabandSyndicatePistol entities: - - uid: 21809 + - uid: 21959 components: - pos: -46.5,-71.5 parent: 2 type: Transform - proto: PosterContrabandSyndicateRecruitment entities: - - uid: 21810 + - uid: 21960 components: - pos: -44.5,-74.5 parent: 2 type: Transform - - uid: 21811 + - uid: 21961 components: - pos: 30.5,48.5 parent: 2 type: Transform - proto: PosterContrabandTheGriffin entities: - - uid: 21812 + - uid: 21962 components: - pos: -43.5,-73.5 parent: 2 type: Transform - proto: PosterContrabandTools entities: - - uid: 21813 + - uid: 21963 components: - pos: -54.5,-69.5 parent: 2 type: Transform - - uid: 21814 + - uid: 21964 components: - pos: -22.5,-19.5 parent: 2 type: Transform - proto: PosterContrabandVoteWeh entities: - - uid: 21815 + - uid: 21965 components: - pos: -46.5,-65.5 parent: 2 type: Transform - - uid: 21816 + - uid: 21966 components: - pos: 59.5,41.5 parent: 2 type: Transform - proto: PosterContrabandWehWatches entities: - - uid: 21817 + - uid: 21967 components: - pos: 55.5,-4.5 parent: 2 type: Transform - proto: PosterLegit12Gauge entities: - - uid: 21818 + - uid: 21968 components: - pos: 31.5,23.5 parent: 2 type: Transform - proto: PosterLegit50thAnniversaryVintageReprint entities: - - uid: 21819 + - uid: 21969 components: - pos: 44.5,-34.5 parent: 2 type: Transform - proto: PosterLegitAnatomyPoster entities: - - uid: 21820 + - uid: 21970 components: - pos: -4.5,-63.5 parent: 2 type: Transform - proto: PosterLegitBlessThisSpess entities: - - uid: 21821 + - uid: 21971 components: - pos: 61.5,-4.5 parent: 2 type: Transform - proto: PosterLegitBuild entities: - - uid: 21822 + - uid: 21972 components: - pos: -34.5,-4.5 parent: 2 type: Transform - proto: PosterLegitCarbonDioxide entities: - - uid: 21823 + - uid: 21973 components: - pos: 46.5,-55.5 parent: 2 type: Transform - proto: PosterLegitCarpMount entities: - - uid: 21824 + - uid: 21974 components: - pos: 24.5,-26.5 parent: 2 type: Transform - proto: PosterLegitCleanliness entities: - - uid: 21825 + - uid: 21975 components: - pos: -10.5,-24.5 parent: 2 type: Transform - - uid: 21826 + - uid: 21976 components: - pos: 1.5,-58.5 parent: 2 type: Transform - proto: PosterLegitCohibaRobustoAd entities: - - uid: 21827 + - uid: 21977 components: - pos: 13.5,-30.5 parent: 2 type: Transform - - uid: 21828 + - uid: 21978 components: - pos: 57.5,-9.5 parent: 2 type: Transform - proto: PosterLegitDickGumshue entities: - - uid: 21829 + - uid: 21979 components: - pos: 17.5,-15.5 parent: 2 type: Transform - proto: PosterLegitDoNotQuestion entities: - - uid: 21830 + - uid: 21980 components: - pos: 23.5,19.5 parent: 2 type: Transform - - uid: 21831 + - uid: 21981 components: - pos: -17.5,-21.5 parent: 2 type: Transform - proto: PosterLegitEnlist entities: - - uid: 21832 + - uid: 21982 components: - pos: -17.5,-31.5 parent: 2 type: Transform - - uid: 21833 + - uid: 21983 components: - pos: 59.5,-9.5 parent: 2 type: Transform - - uid: 21834 + - uid: 21984 components: - pos: -13.5,27.5 parent: 2 type: Transform - proto: PosterLegitFoamForceAd entities: - - uid: 21835 + - uid: 21985 components: - pos: 1.5,-39.5 parent: 2 type: Transform - proto: PosterLegitFruitBowl entities: - - uid: 21836 + - uid: 21986 components: - pos: -4.5,9.5 parent: 2 type: Transform - - uid: 21837 + - uid: 21987 components: - pos: -22.5,49.5 parent: 2 type: Transform - proto: PosterLegitGetYourLEGS entities: - - uid: 21838 + - uid: 21988 components: - pos: -16.5,64.5 parent: 2 type: Transform - proto: PosterLegitHelpOthers entities: - - uid: 21839 + - uid: 21989 components: - pos: -7.5,-40.5 parent: 2 type: Transform - proto: PosterLegitHereForYourSafety entities: - - uid: 21840 + - uid: 21990 components: - pos: 28.5,9.5 parent: 2 type: Transform - proto: PosterLegitHighClassMartini entities: - - uid: 21841 + - uid: 21991 components: - pos: 8.5,11.5 parent: 2 type: Transform - - uid: 21842 + - uid: 21992 components: - pos: -39.5,-74.5 parent: 2 type: Transform - proto: PosterLegitIan entities: - - uid: 21843 + - uid: 21993 components: - rot: 3.141592653589793 rad pos: 5.5,-2.5 parent: 2 type: Transform - - uid: 21844 + - uid: 21994 components: - pos: 21.5,-40.5 parent: 2 type: Transform - proto: PosterLegitIonRifle entities: - - uid: 21845 + - uid: 21995 components: - pos: 27.5,33.5 parent: 2 type: Transform - proto: PosterLegitJustAWeekAway entities: - - uid: 21846 + - uid: 21996 components: - pos: 27.5,-33.5 parent: 2 type: Transform - - uid: 21847 + - uid: 21997 components: - pos: -37.5,-31.5 parent: 2 type: Transform - - uid: 21848 + - uid: 21998 components: - pos: 30.5,-35.5 parent: 2 type: Transform - proto: PosterLegitLoveIan entities: - - uid: 21849 + - uid: 21999 components: - pos: 21.5,-33.5 parent: 2 type: Transform - - uid: 21850 + - uid: 22000 components: - rot: 3.141592653589793 rad pos: 0.5,-2.5 @@ -143825,7 +144656,7 @@ entities: type: Transform - proto: PosterLegitMime entities: - - uid: 21851 + - uid: 22001 components: - rot: 1.5707963267948966 rad pos: -27.5,47.5 @@ -143833,37 +144664,37 @@ entities: type: Transform - proto: PosterLegitNanomichiAd entities: - - uid: 21852 + - uid: 22002 components: - pos: -21.5,-27.5 parent: 2 type: Transform - proto: PosterLegitNanotrasenLogo entities: - - uid: 21853 + - uid: 22003 components: - pos: 28.5,-31.5 parent: 2 type: Transform - - uid: 21854 + - uid: 22004 components: - pos: 25.5,-33.5 parent: 2 type: Transform - proto: PosterLegitNoERP entities: - - uid: 21855 + - uid: 22005 components: - pos: 40.5,49.5 parent: 2 type: Transform - - uid: 21856 + - uid: 22006 components: - rot: 3.141592653589793 rad pos: -15.5,-36.5 parent: 2 type: Transform - - uid: 21857 + - uid: 22007 components: - rot: 3.141592653589793 rad pos: -47.5,9.5 @@ -143871,52 +144702,52 @@ entities: type: Transform - proto: PosterLegitObey entities: - - uid: 21858 + - uid: 22008 components: - pos: 31.5,-3.5 parent: 2 type: Transform - proto: PosterLegitPDAAd entities: - - uid: 21859 + - uid: 22009 components: - pos: 29.5,-40.5 parent: 2 type: Transform - proto: PosterLegitReportCrimes entities: - - uid: 21860 + - uid: 22010 components: - pos: 18.5,-15.5 parent: 2 type: Transform - - uid: 21861 + - uid: 22011 components: - pos: 30.5,-46.5 parent: 2 type: Transform - proto: PosterLegitSafetyEyeProtection entities: - - uid: 21862 + - uid: 22012 components: - pos: -33.5,-31.5 parent: 2 type: Transform - proto: PosterLegitSafetyInternals entities: - - uid: 21863 + - uid: 22013 components: - pos: -39.5,-31.5 parent: 2 type: Transform - - uid: 21864 + - uid: 22014 components: - pos: 24.5,-54.5 parent: 2 type: Transform - proto: PosterLegitSafetyMothHardhat entities: - - uid: 21865 + - uid: 22015 components: - rot: 1.5707963267948966 rad pos: -28.5,-15.5 @@ -143924,17 +144755,17 @@ entities: type: Transform - proto: PosterLegitSecWatch entities: - - uid: 21866 + - uid: 22016 components: - pos: 10.5,15.5 parent: 2 type: Transform - - uid: 21867 + - uid: 22017 components: - pos: 18.5,-9.5 parent: 2 type: Transform - - uid: 21868 + - uid: 22018 components: - rot: 3.141592653589793 rad pos: -18.5,-44.5 @@ -143942,19 +144773,19 @@ entities: type: Transform - proto: PosterLegitStateLaws entities: - - uid: 21869 + - uid: 22019 components: - pos: 37.5,-32.5 parent: 2 type: Transform - - uid: 21870 + - uid: 22020 components: - pos: -17.5,27.5 parent: 2 type: Transform - proto: PosterLegitThereIsNoGasGiant entities: - - uid: 21871 + - uid: 22021 components: - rot: -1.5707963267948966 rad pos: -41.5,-40.5 @@ -143962,7 +144793,7 @@ entities: type: Transform - proto: PosterLegitVacation entities: - - uid: 21872 + - uid: 22022 components: - rot: 1.5707963267948966 rad pos: 47.5,-70.5 @@ -143970,347 +144801,347 @@ entities: type: Transform - proto: PosterLegitWalk entities: - - uid: 21873 + - uid: 22023 components: - pos: -7.5,-28.5 parent: 2 type: Transform - proto: PottedPlant1 entities: - - uid: 21874 + - uid: 22024 components: - pos: -2.5,-40.5 parent: 2 type: Transform - proto: PottedPlant14 entities: - - uid: 21875 + - uid: 22025 components: - pos: 36.5,-16.5 parent: 2 type: Transform - proto: PottedPlant24 entities: - - uid: 21876 + - uid: 22026 components: - pos: -6.5,-40.5 parent: 2 type: Transform - proto: PottedPlant26 entities: - - uid: 21877 + - uid: 22027 components: - pos: 6.5,-52.5 parent: 2 type: Transform - proto: PottedPlant27 entities: - - uid: 21878 + - uid: 22028 components: - pos: 46.5,31.5 parent: 2 type: Transform - - uid: 21879 + - uid: 22029 components: - pos: -43.5,-87.5 parent: 2 type: Transform - proto: PottedPlant28 entities: - - uid: 21880 + - uid: 22030 components: - pos: 46.5,30.5 parent: 2 type: Transform - - uid: 21881 + - uid: 22031 components: - pos: -54.5,-47.5 parent: 2 type: Transform - proto: PottedPlant29 entities: - - uid: 21882 + - uid: 22032 components: - pos: 46.5,29.5 parent: 2 type: Transform - - uid: 21883 + - uid: 22033 components: - pos: -54.5,-50.5 parent: 2 type: Transform - - uid: 21884 + - uid: 22034 components: - pos: -40.5,-87.5 parent: 2 type: Transform - proto: PottedPlant3 entities: - - uid: 21885 + - uid: 22035 components: - pos: 14.5,-16.5 parent: 2 type: Transform - - uid: 21886 + - uid: 22036 components: - pos: 54.5,-1.5 parent: 2 type: Transform - proto: PottedPlant5 entities: - - uid: 21887 + - uid: 22037 components: - pos: -26.5,8.5 parent: 2 type: Transform - - uid: 21888 + - uid: 22038 components: - pos: 50.5,-1.5 parent: 2 type: Transform - proto: PottedPlant8 entities: - - uid: 21889 + - uid: 22039 components: - pos: -22.5,8.5 parent: 2 type: Transform - proto: PottedPlantBioluminscent entities: - - uid: 21890 + - uid: 22040 components: - pos: -27.5,17.5 parent: 2 type: Transform - proto: PottedPlantRandom entities: - - uid: 21891 + - uid: 22041 components: - pos: 20.5,18.5 parent: 2 type: Transform - - uid: 21892 + - uid: 22042 components: - pos: 1.5,-40.5 parent: 2 type: Transform - - uid: 21893 + - uid: 22043 components: - pos: 24.5,-81.5 parent: 2 type: Transform - - uid: 21894 + - uid: 22044 components: - pos: -44.5,8.5 parent: 2 type: Transform - - uid: 21895 + - uid: 22045 components: - pos: -49.5,8.5 parent: 2 type: Transform - - uid: 21896 + - uid: 22046 components: - pos: 23.5,-43.5 parent: 2 type: Transform - - uid: 21897 + - uid: 22047 components: - pos: 27.5,-43.5 parent: 2 type: Transform - - uid: 21898 + - uid: 22048 components: - pos: -23.5,-73.5 parent: 2 type: Transform - - uid: 21899 + - uid: 22049 components: - pos: -49.5,12.5 parent: 2 type: Transform - - uid: 21900 + - uid: 22050 components: - pos: -19.5,-73.5 parent: 2 type: Transform - - uid: 21901 + - uid: 22051 components: - pos: -2.5,46.5 parent: 2 type: Transform - - uid: 21902 + - uid: 22052 components: - pos: -14.5,42.5 parent: 2 type: Transform - - uid: 21903 + - uid: 22053 components: - pos: -6.5,46.5 parent: 2 type: Transform - - uid: 21904 + - uid: 22054 components: - pos: 24.5,-85.5 parent: 2 type: Transform - - uid: 21905 + - uid: 22055 components: - pos: 25.5,-74.5 parent: 2 type: Transform - - uid: 21906 + - uid: 22056 components: - pos: -20.5,-66.5 parent: 2 type: Transform - - uid: 21907 + - uid: 22057 components: - pos: -18.5,-66.5 parent: 2 type: Transform - proto: PottedPlantRandomPlastic entities: - - uid: 21908 + - uid: 22058 components: - pos: -6.5,-45.5 parent: 2 type: Transform - - uid: 21909 + - uid: 22059 components: - pos: -55.5,-58.5 parent: 2 type: Transform - - uid: 21910 + - uid: 22060 components: - pos: 54.5,31.5 parent: 2 type: Transform - - uid: 21911 + - uid: 22061 components: - pos: -12.5,-96.5 parent: 2 type: Transform - - uid: 21912 + - uid: 22062 components: - pos: -57.5,-60.5 parent: 2 type: Transform - proto: PowerCellRecharger entities: - - uid: 21913 + - uid: 22063 components: - pos: -10.5,-61.5 parent: 2 type: Transform - - uid: 21914 + - uid: 22064 components: - pos: -11.5,-61.5 parent: 2 type: Transform - - uid: 21915 + - uid: 22065 components: - pos: -26.5,-20.5 parent: 2 type: Transform - - uid: 21916 + - uid: 22066 components: - pos: 8.5,14.5 parent: 2 type: Transform - - uid: 21917 + - uid: 22067 components: - pos: -23.5,-8.5 parent: 2 type: Transform - - uid: 21918 + - uid: 22068 components: - pos: -35.5,-13.5 parent: 2 type: Transform - - uid: 21919 + - uid: 22069 components: - pos: -32.5,17.5 parent: 2 type: Transform - - uid: 21920 + - uid: 22070 components: - pos: -22.5,-33.5 parent: 2 type: Transform - - uid: 21921 + - uid: 22071 components: - pos: 38.5,-55.5 parent: 2 type: Transform - - uid: 21922 + - uid: 22072 components: - pos: -22.5,17.5 parent: 2 type: Transform - - uid: 21923 + - uid: 22073 components: - pos: 43.5,-40.5 parent: 2 type: Transform - proto: PowerDrill entities: - - uid: 21924 + - uid: 22074 components: - pos: 62.617344,-53.460384 parent: 2 type: Transform - - uid: 21925 + - uid: 22075 components: - pos: -52.61403,65.565544 parent: 2 type: Transform - proto: Poweredlight entities: - - uid: 21926 + - uid: 22076 components: - rot: 1.5707963267948966 rad pos: 20.5,-28.5 parent: 2 type: Transform - - uid: 21927 + - uid: 22077 components: - rot: -1.5707963267948966 rad pos: 5.5,-5.5 parent: 2 type: Transform - links: - - 23962 + - 24187 type: DeviceLinkSink - - uid: 21928 + - uid: 22078 components: - rot: 3.141592653589793 rad pos: -35.5,-18.5 parent: 2 type: Transform - - uid: 21929 + - uid: 22079 components: - pos: 62.5,-28.5 parent: 2 type: Transform - - uid: 21930 + - uid: 22080 components: - rot: 3.141592653589793 rad pos: -61.5,-37.5 parent: 2 type: Transform - - uid: 21931 + - uid: 22081 components: - pos: -44.5,-8.5 parent: 2 type: Transform - - uid: 21932 + - uid: 22082 components: - rot: 3.141592653589793 rad pos: -5.5,14.5 parent: 2 type: Transform - - uid: 21933 + - uid: 22083 components: - rot: -1.5707963267948966 rad pos: -22.5,-77.5 @@ -144318,7 +145149,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21934 + - uid: 22084 components: - rot: 1.5707963267948966 rad pos: -42.5,-9.5 @@ -144326,7 +145157,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21935 + - uid: 22085 components: - rot: -1.5707963267948966 rad pos: 48.5,-29.5 @@ -144334,7 +145165,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21936 + - uid: 22086 components: - rot: -1.5707963267948966 rad pos: 14.5,8.5 @@ -144342,7 +145173,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21937 + - uid: 22087 components: - rot: 3.141592653589793 rad pos: -10.5,-1.5 @@ -144350,7 +145181,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21938 + - uid: 22088 components: - rot: 3.141592653589793 rad pos: -2.5,-1.5 @@ -144358,14 +145189,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21939 + - uid: 22089 components: - pos: 4.5,-59.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21940 + - uid: 22090 components: - rot: 1.5707963267948966 rad pos: -5.5,-31.5 @@ -144373,7 +145204,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21941 + - uid: 22091 components: - rot: -1.5707963267948966 rad pos: 16.5,-22.5 @@ -144381,21 +145212,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21942 + - uid: 22092 components: - pos: 30.5,-47.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21943 + - uid: 22093 components: - pos: 40.5,-25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21944 + - uid: 22094 components: - rot: 1.5707963267948966 rad pos: 44.5,-23.5 @@ -144403,7 +145234,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21945 + - uid: 22095 components: - rot: 3.141592653589793 rad pos: -10.5,-61.5 @@ -144411,7 +145242,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21946 + - uid: 22096 components: - rot: 3.141592653589793 rad pos: -4.5,-61.5 @@ -144419,7 +145250,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21947 + - uid: 22097 components: - rot: 1.5707963267948966 rad pos: -20.5,-77.5 @@ -144427,7 +145258,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21948 + - uid: 22098 components: - rot: 3.141592653589793 rad pos: -9.5,-27.5 @@ -144435,7 +145266,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21949 + - uid: 22099 components: - rot: 3.141592653589793 rad pos: 12.5,-27.5 @@ -144443,21 +145274,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21950 + - uid: 22100 components: - pos: 21.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21951 + - uid: 22101 components: - pos: 29.5,-45.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21952 + - uid: 22102 components: - rot: -1.5707963267948966 rad pos: 42.5,8.5 @@ -144465,7 +145296,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21953 + - uid: 22103 components: - rot: 3.141592653589793 rad pos: 24.5,-2.5 @@ -144473,14 +145304,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21954 + - uid: 22104 components: - pos: 33.5,-45.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21955 + - uid: 22105 components: - rot: 3.141592653589793 rad pos: 2.5,-43.5 @@ -144488,7 +145319,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21956 + - uid: 22106 components: - rot: -1.5707963267948966 rad pos: 7.5,-46.5 @@ -144496,7 +145327,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21957 + - uid: 22107 components: - rot: -1.5707963267948966 rad pos: -27.5,-70.5 @@ -144504,7 +145335,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21958 + - uid: 22108 components: - rot: -1.5707963267948966 rad pos: 30.5,0.5 @@ -144512,14 +145343,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21959 + - uid: 22109 components: - pos: -23.5,-8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21960 + - uid: 22110 components: - rot: -1.5707963267948966 rad pos: 10.5,-60.5 @@ -144527,7 +145358,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21961 + - uid: 22111 components: - rot: 1.5707963267948966 rad pos: -5.5,-35.5 @@ -144535,7 +145366,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21962 + - uid: 22112 components: - rot: 3.141592653589793 rad pos: -8.5,44.5 @@ -144543,7 +145374,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21963 + - uid: 22113 components: - rot: -1.5707963267948966 rad pos: -0.5,62.5 @@ -144551,14 +145382,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21964 + - uid: 22114 components: - pos: 4.5,3.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21965 + - uid: 22115 components: - rot: 1.5707963267948966 rad pos: 44.5,-28.5 @@ -144566,7 +145397,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21966 + - uid: 22116 components: - rot: -1.5707963267948966 rad pos: 42.5,-25.5 @@ -144574,7 +145405,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21967 + - uid: 22117 components: - rot: -1.5707963267948966 rad pos: 32.5,-29.5 @@ -144582,7 +145413,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21968 + - uid: 22118 components: - rot: 1.5707963267948966 rad pos: 8.5,-9.5 @@ -144590,28 +145421,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21969 + - uid: 22119 components: - pos: -21.5,-84.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21970 + - uid: 22120 components: - pos: 12.5,3.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21971 + - uid: 22121 components: - pos: 29.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21972 + - uid: 22122 components: - rot: -1.5707963267948966 rad pos: -18.5,-9.5 @@ -144619,14 +145450,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21973 + - uid: 22123 components: - pos: 4.5,-56.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21974 + - uid: 22124 components: - rot: -1.5707963267948966 rad pos: 34.5,3.5 @@ -144636,7 +145467,7 @@ entities: type: PointLight - powerLoad: 0 type: ApcPowerReceiver - - uid: 21975 + - uid: 22125 components: - rot: 1.5707963267948966 rad pos: -35.5,-50.5 @@ -144644,7 +145475,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21976 + - uid: 22126 components: - rot: -1.5707963267948966 rad pos: 65.5,-2.5 @@ -144652,14 +145483,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21977 + - uid: 22127 components: - pos: 27.5,-16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21978 + - uid: 22128 components: - rot: 1.5707963267948966 rad pos: -3.5,-65.5 @@ -144667,7 +145498,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21979 + - uid: 22129 components: - rot: 1.5707963267948966 rad pos: -9.5,-64.5 @@ -144675,7 +145506,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21980 + - uid: 22130 components: - rot: -1.5707963267948966 rad pos: 0.5,-45.5 @@ -144683,7 +145514,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21981 + - uid: 22131 components: - rot: 1.5707963267948966 rad pos: -9.5,-48.5 @@ -144691,14 +145522,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21982 + - uid: 22132 components: - pos: -23.5,-69.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21983 + - uid: 22133 components: - rot: 3.141592653589793 rad pos: -22.5,-73.5 @@ -144706,14 +145537,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21984 + - uid: 22134 components: - pos: 16.5,-16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21985 + - uid: 22135 components: - rot: 1.5707963267948966 rad pos: -5.5,-11.5 @@ -144721,7 +145552,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21986 + - uid: 22136 components: - rot: -1.5707963267948966 rad pos: 48.5,-22.5 @@ -144729,14 +145560,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21987 + - uid: 22137 components: - pos: 24.5,4.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21988 + - uid: 22138 components: - rot: 1.5707963267948966 rad pos: 10.5,11.5 @@ -144744,14 +145575,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21989 + - uid: 22139 components: - pos: 16.5,14.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21990 + - uid: 22140 components: - rot: 1.5707963267948966 rad pos: -12.5,-37.5 @@ -144759,14 +145590,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21991 + - uid: 22141 components: - pos: -8.5,-35.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21992 + - uid: 22142 components: - rot: 1.5707963267948966 rad pos: -10.5,8.5 @@ -144774,14 +145605,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21993 + - uid: 22143 components: - pos: 6.5,22.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21994 + - uid: 22144 components: - rot: 1.5707963267948966 rad pos: 24.5,-47.5 @@ -144789,14 +145620,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21995 + - uid: 22145 components: - pos: 13.5,17.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21996 + - uid: 22146 components: - rot: 1.5707963267948966 rad pos: 14.5,21.5 @@ -144804,14 +145635,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21997 + - uid: 22147 components: - pos: 44.5,8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21998 + - uid: 22148 components: - rot: 3.141592653589793 rad pos: 47.5,4.5 @@ -144819,21 +145650,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 21999 + - uid: 22149 components: - pos: 44.5,2.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22000 + - uid: 22150 components: - pos: -4.5,3.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22001 + - uid: 22151 components: - rot: -1.5707963267948966 rad pos: -3.5,-6.5 @@ -144841,7 +145672,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22002 + - uid: 22152 components: - rot: 3.141592653589793 rad pos: -2.5,-27.5 @@ -144849,7 +145680,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22003 + - uid: 22153 components: - rot: 1.5707963267948966 rad pos: -5.5,-18.5 @@ -144857,14 +145688,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22004 + - uid: 22154 components: - pos: -9.5,-21.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22005 + - uid: 22155 components: - rot: 1.5707963267948966 rad pos: -13.5,-22.5 @@ -144872,7 +145703,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22006 + - uid: 22156 components: - rot: -1.5707963267948966 rad pos: 39.5,-2.5 @@ -144880,7 +145711,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22007 + - uid: 22157 components: - rot: 3.141592653589793 rad pos: 36.5,-6.5 @@ -144888,7 +145719,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22008 + - uid: 22158 components: - rot: 1.5707963267948966 rad pos: 26.5,31.5 @@ -144896,7 +145727,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22009 + - uid: 22159 components: - rot: 3.141592653589793 rad pos: 29.5,27.5 @@ -144904,7 +145735,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22010 + - uid: 22160 components: - rot: -1.5707963267948966 rad pos: 30.5,20.5 @@ -144912,7 +145743,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22011 + - uid: 22161 components: - rot: 1.5707963267948966 rad pos: 28.5,14.5 @@ -144920,35 +145751,35 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22012 + - uid: 22162 components: - pos: 33.5,16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22013 + - uid: 22163 components: - pos: 39.5,16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22014 + - uid: 22164 components: - pos: 55.5,9.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22015 + - uid: 22165 components: - pos: 51.5,9.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22016 + - uid: 22166 components: - rot: 3.141592653589793 rad pos: 55.5,15.5 @@ -144956,7 +145787,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22017 + - uid: 22167 components: - rot: 3.141592653589793 rad pos: 51.5,15.5 @@ -144964,7 +145795,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22018 + - uid: 22168 components: - rot: 3.141592653589793 rad pos: 48.5,12.5 @@ -144972,7 +145803,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22019 + - uid: 22169 components: - rot: 3.141592653589793 rad pos: 58.5,12.5 @@ -144980,7 +145811,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22020 + - uid: 22170 components: - rot: -1.5707963267948966 rad pos: 59.5,20.5 @@ -144988,7 +145819,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22021 + - uid: 22171 components: - rot: 3.141592653589793 rad pos: 59.5,4.5 @@ -144996,7 +145827,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22022 + - uid: 22172 components: - rot: 3.141592653589793 rad pos: 48.5,18.5 @@ -145004,7 +145835,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22023 + - uid: 22173 components: - rot: 1.5707963267948966 rad pos: 32.5,-3.5 @@ -145012,7 +145843,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22024 + - uid: 22174 components: - rot: 3.141592653589793 rad pos: 24.5,6.5 @@ -145020,7 +145851,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22025 + - uid: 22175 components: - rot: 3.141592653589793 rad pos: 29.5,6.5 @@ -145028,7 +145859,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22026 + - uid: 22176 components: - rot: 1.5707963267948966 rad pos: 24.5,-13.5 @@ -145036,7 +145867,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22027 + - uid: 22177 components: - rot: 3.141592653589793 rad pos: 21.5,-6.5 @@ -145044,7 +145875,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22028 + - uid: 22178 components: - rot: -1.5707963267948966 rad pos: 26.5,-9.5 @@ -145052,7 +145883,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22029 + - uid: 22179 components: - rot: 3.141592653589793 rad pos: 57.5,-6.5 @@ -145060,14 +145891,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22030 + - uid: 22180 components: - pos: 57.5,-10.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22031 + - uid: 22181 components: - rot: -1.5707963267948966 rad pos: 54.5,-8.5 @@ -145075,7 +145906,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22032 + - uid: 22182 components: - rot: 1.5707963267948966 rad pos: 59.5,-1.5 @@ -145083,7 +145914,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22033 + - uid: 22183 components: - rot: 3.141592653589793 rad pos: 57.5,-14.5 @@ -145091,7 +145922,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22034 + - uid: 22184 components: - rot: 3.141592653589793 rad pos: 33.5,-60.5 @@ -145099,7 +145930,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22035 + - uid: 22185 components: - rot: 3.141592653589793 rad pos: 45.5,-43.5 @@ -145107,14 +145938,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22036 + - uid: 22186 components: - pos: 72.5,-43.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22037 + - uid: 22187 components: - rot: 3.141592653589793 rad pos: 67.5,-49.5 @@ -145122,7 +145953,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22038 + - uid: 22188 components: - rot: 3.141592653589793 rad pos: 60.5,-49.5 @@ -145130,13 +145961,13 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22039 + - uid: 22189 components: - rot: 3.141592653589793 rad pos: 57.5,-45.5 parent: 2 type: Transform - - uid: 22040 + - uid: 22190 components: - rot: 1.5707963267948966 rad pos: 48.5,-38.5 @@ -145144,7 +145975,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22041 + - uid: 22191 components: - rot: 1.5707963267948966 rad pos: 48.5,-47.5 @@ -145152,21 +145983,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22042 + - uid: 22192 components: - pos: 39.5,-35.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22043 + - uid: 22193 components: - pos: 44.5,-35.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22044 + - uid: 22194 components: - rot: 3.141592653589793 rad pos: 10.5,-43.5 @@ -145174,7 +146005,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22045 + - uid: 22195 components: - rot: 3.141592653589793 rad pos: 35.5,-43.5 @@ -145182,7 +146013,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22046 + - uid: 22196 components: - rot: 3.141592653589793 rad pos: 28.5,-6.5 @@ -145190,7 +146021,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22047 + - uid: 22197 components: - rot: 3.141592653589793 rad pos: 16.5,-43.5 @@ -145198,21 +146029,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22048 + - uid: 22198 components: - pos: 33.5,-39.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22049 + - uid: 22199 components: - pos: 45.5,-45.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22050 + - uid: 22200 components: - rot: 3.141592653589793 rad pos: 42.5,-49.5 @@ -145220,7 +146051,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22051 + - uid: 22201 components: - rot: 3.141592653589793 rad pos: 65.5,-35.5 @@ -145228,7 +146059,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22052 + - uid: 22202 components: - rot: -1.5707963267948966 rad pos: 64.5,-53.5 @@ -145236,14 +146067,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22053 + - uid: 22203 components: - pos: 32.5,-47.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22054 + - uid: 22204 components: - rot: -1.5707963267948966 rad pos: 34.5,-51.5 @@ -145251,7 +146082,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22055 + - uid: 22205 components: - rot: 1.5707963267948966 rad pos: 28.5,-50.5 @@ -145259,7 +146090,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22056 + - uid: 22206 components: - rot: -1.5707963267948966 rad pos: 34.5,-55.5 @@ -145267,7 +146098,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22057 + - uid: 22207 components: - rot: 1.5707963267948966 rad pos: 28.5,-56.5 @@ -145275,7 +146106,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22058 + - uid: 22208 components: - rot: 1.5707963267948966 rad pos: 24.5,-52.5 @@ -145283,7 +146114,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22059 + - uid: 22209 components: - rot: -1.5707963267948966 rad pos: 26.5,-56.5 @@ -145291,21 +146122,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22060 + - uid: 22210 components: - pos: 28.5,-58.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22061 + - uid: 22211 components: - pos: -15.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22062 + - uid: 22212 components: - rot: 3.141592653589793 rad pos: 37.5,-60.5 @@ -145313,13 +146144,13 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22063 + - uid: 22213 components: - rot: 3.141592653589793 rad pos: -27.5,-17.5 parent: 2 type: Transform - - uid: 22064 + - uid: 22214 components: - rot: -1.5707963267948966 rad pos: 16.5,-31.5 @@ -145327,7 +146158,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22065 + - uid: 22215 components: - rot: 1.5707963267948966 rad pos: -20.5,-15.5 @@ -145335,7 +146166,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22066 + - uid: 22216 components: - rot: 1.5707963267948966 rad pos: -20.5,-19.5 @@ -145343,7 +146174,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22067 + - uid: 22217 components: - rot: 1.5707963267948966 rad pos: -26.5,-21.5 @@ -145351,14 +146182,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22068 + - uid: 22218 components: - pos: -30.5,-16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22069 + - uid: 22219 components: - rot: 3.141592653589793 rad pos: -28.5,-14.5 @@ -145366,7 +146197,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22070 + - uid: 22220 components: - rot: 1.5707963267948966 rad pos: -39.5,-8.5 @@ -145374,7 +146205,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22071 + - uid: 22221 components: - rot: 1.5707963267948966 rad pos: 38.5,-54.5 @@ -145382,14 +146213,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22072 + - uid: 22222 components: - pos: 56.5,-58.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22073 + - uid: 22223 components: - rot: -1.5707963267948966 rad pos: 51.5,-56.5 @@ -145397,14 +146228,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22074 + - uid: 22224 components: - pos: 45.5,-56.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22075 + - uid: 22225 components: - rot: -1.5707963267948966 rad pos: 52.5,-50.5 @@ -145412,7 +146243,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22076 + - uid: 22226 components: - rot: 1.5707963267948966 rad pos: 48.5,-61.5 @@ -145420,7 +146251,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22077 + - uid: 22227 components: - rot: -1.5707963267948966 rad pos: 12.5,-5.5 @@ -145428,7 +146259,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22078 + - uid: 22228 components: - rot: -1.5707963267948966 rad pos: 49.5,-86.5 @@ -145436,7 +146267,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22079 + - uid: 22229 components: - rot: 1.5707963267948966 rad pos: 24.5,-84.5 @@ -145444,7 +146275,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22080 + - uid: 22230 components: - rot: -1.5707963267948966 rad pos: 49.5,-91.5 @@ -145452,21 +146283,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22081 + - uid: 22231 components: - pos: 41.5,-70.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22082 + - uid: 22232 components: - pos: 37.5,-70.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22083 + - uid: 22233 components: - rot: 1.5707963267948966 rad pos: 38.5,-61.5 @@ -145474,7 +146305,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22084 + - uid: 22234 components: - rot: 3.141592653589793 rad pos: -35.5,-13.5 @@ -145482,21 +146313,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22085 + - uid: 22235 components: - pos: -35.5,-5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22086 + - uid: 22236 components: - pos: -16.5,-25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22087 + - uid: 22237 components: - rot: 1.5707963267948966 rad pos: -20.5,-29.5 @@ -145504,7 +146335,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22088 + - uid: 22238 components: - rot: 1.5707963267948966 rad pos: -20.5,-37.5 @@ -145512,7 +146343,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22089 + - uid: 22239 components: - rot: 1.5707963267948966 rad pos: -20.5,-41.5 @@ -145520,7 +146351,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22090 + - uid: 22240 components: - rot: -1.5707963267948966 rad pos: 44.5,-3.5 @@ -145528,7 +146359,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22091 + - uid: 22241 components: - rot: -1.5707963267948966 rad pos: -6.5,11.5 @@ -145536,34 +146367,34 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22092 + - uid: 22242 components: - pos: -41.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22093 + - uid: 22243 components: - pos: -36.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22094 + - uid: 22244 components: - pos: -36.5,-53.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22095 + - uid: 22245 components: - rot: 3.141592653589793 rad pos: -43.5,-57.5 parent: 2 type: Transform - - uid: 22096 + - uid: 22246 components: - rot: 1.5707963267948966 rad pos: -46.5,-43.5 @@ -145571,7 +146402,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22097 + - uid: 22247 components: - rot: 1.5707963267948966 rad pos: -46.5,-45.5 @@ -145579,7 +146410,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22098 + - uid: 22248 components: - rot: 1.5707963267948966 rad pos: -46.5,-47.5 @@ -145587,7 +146418,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22099 + - uid: 22249 components: - rot: 1.5707963267948966 rad pos: -46.5,-49.5 @@ -145595,7 +146426,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22100 + - uid: 22250 components: - rot: 1.5707963267948966 rad pos: -46.5,-51.5 @@ -145603,7 +146434,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22101 + - uid: 22251 components: - rot: 1.5707963267948966 rad pos: -46.5,-53.5 @@ -145611,7 +146442,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22102 + - uid: 22252 components: - rot: 1.5707963267948966 rad pos: -46.5,-55.5 @@ -145619,7 +146450,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22103 + - uid: 22253 components: - rot: -1.5707963267948966 rad pos: -31.5,-39.5 @@ -145627,14 +146458,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22104 + - uid: 22254 components: - pos: -27.5,-33.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22105 + - uid: 22255 components: - rot: -1.5707963267948966 rad pos: -22.5,-33.5 @@ -145642,7 +146473,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22106 + - uid: 22256 components: - rot: 3.141592653589793 rad pos: -33.5,-35.5 @@ -145650,7 +146481,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22107 + - uid: 22257 components: - rot: 3.141592653589793 rad pos: -39.5,-36.5 @@ -145658,7 +146489,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22108 + - uid: 22258 components: - rot: -1.5707963267948966 rad pos: -33.5,-47.5 @@ -145666,7 +146497,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22109 + - uid: 22259 components: - rot: -1.5707963267948966 rad pos: -54.5,-48.5 @@ -145674,7 +146505,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22110 + - uid: 22260 components: - rot: -1.5707963267948966 rad pos: 18.5,5.5 @@ -145682,7 +146513,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22111 + - uid: 22261 components: - rot: 1.5707963267948966 rad pos: 16.5,1.5 @@ -145690,7 +146521,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22112 + - uid: 22262 components: - rot: -1.5707963267948966 rad pos: -12.5,5.5 @@ -145698,14 +146529,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22113 + - uid: 22263 components: - pos: -18.5,-4.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22114 + - uid: 22264 components: - rot: 3.141592653589793 rad pos: -14.5,-6.5 @@ -145713,7 +146544,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22115 + - uid: 22265 components: - rot: 3.141592653589793 rad pos: -19.5,6.5 @@ -145721,7 +146552,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22116 + - uid: 22266 components: - rot: 1.5707963267948966 rad pos: -26.5,5.5 @@ -145729,7 +146560,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22117 + - uid: 22267 components: - rot: 1.5707963267948966 rad pos: -26.5,-1.5 @@ -145737,21 +146568,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22118 + - uid: 22268 components: - pos: -72.5,-23.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22119 + - uid: 22269 components: - pos: -66.5,-30.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22120 + - uid: 22270 components: - rot: 1.5707963267948966 rad pos: -68.5,-25.5 @@ -145759,7 +146590,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22121 + - uid: 22271 components: - rot: -1.5707963267948966 rad pos: -52.5,-14.5 @@ -145767,7 +146598,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22122 + - uid: 22272 components: - rot: 1.5707963267948966 rad pos: -55.5,-8.5 @@ -145775,27 +146606,27 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22123 + - uid: 22273 components: - pos: -51.5,-5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22124 + - uid: 22274 components: - rot: -1.5707963267948966 rad pos: -50.5,-18.5 parent: 2 type: Transform - - uid: 22125 + - uid: 22275 components: - pos: -46.5,-19.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22126 + - uid: 22276 components: - rot: 1.5707963267948966 rad pos: -42.5,-21.5 @@ -145803,7 +146634,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22127 + - uid: 22277 components: - rot: 1.5707963267948966 rad pos: -48.5,-11.5 @@ -145811,7 +146642,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22128 + - uid: 22278 components: - rot: 1.5707963267948966 rad pos: -48.5,-15.5 @@ -145819,14 +146650,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22129 + - uid: 22279 components: - pos: -45.5,-5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22130 + - uid: 22280 components: - rot: -1.5707963267948966 rad pos: -31.5,-13.5 @@ -145834,7 +146665,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22131 + - uid: 22281 components: - rot: 1.5707963267948966 rad pos: -32.5,-24.5 @@ -145842,7 +146673,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22132 + - uid: 22282 components: - rot: -1.5707963267948966 rad pos: 2.5,13.5 @@ -145850,7 +146681,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22133 + - uid: 22283 components: - rot: -1.5707963267948966 rad pos: -2.5,11.5 @@ -145858,14 +146689,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22134 + - uid: 22284 components: - pos: -4.5,8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22135 + - uid: 22285 components: - rot: 3.141592653589793 rad pos: 3.5,5.5 @@ -145873,7 +146704,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22136 + - uid: 22286 components: - rot: -1.5707963267948966 rad pos: 6.5,10.5 @@ -145881,27 +146712,27 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22137 + - uid: 22287 components: - rot: 1.5707963267948966 rad pos: -1.5,18.5 parent: 2 type: Transform - - uid: 22138 + - uid: 22288 components: - pos: 1.5,21.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22139 + - uid: 22289 components: - pos: -42.5,1.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22140 + - uid: 22290 components: - rot: -1.5707963267948966 rad pos: 8.5,15.5 @@ -145909,7 +146740,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22141 + - uid: 22291 components: - rot: 3.141592653589793 rad pos: 23.5,16.5 @@ -145917,21 +146748,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22142 + - uid: 22292 components: - pos: 25.5,23.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22143 + - uid: 22293 components: - pos: 38.5,2.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22144 + - uid: 22294 components: - rot: 3.141592653589793 rad pos: 49.5,0.5 @@ -145939,7 +146770,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22145 + - uid: 22295 components: - rot: -1.5707963267948966 rad pos: 54.5,0.5 @@ -145947,7 +146778,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22146 + - uid: 22296 components: - rot: 3.141592653589793 rad pos: -23.5,17.5 @@ -145955,7 +146786,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22147 + - uid: 22297 components: - rot: 3.141592653589793 rad pos: -50.5,29.5 @@ -145963,14 +146794,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22148 + - uid: 22298 components: - pos: -22.5,25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22149 + - uid: 22299 components: - rot: -1.5707963267948966 rad pos: -18.5,15.5 @@ -145978,7 +146809,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22150 + - uid: 22300 components: - rot: -1.5707963267948966 rad pos: -18.5,22.5 @@ -145986,14 +146817,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22151 + - uid: 22301 components: - pos: -27.5,23.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22152 + - uid: 22302 components: - rot: 1.5707963267948966 rad pos: -34.5,23.5 @@ -146001,7 +146832,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22153 + - uid: 22303 components: - rot: 3.141592653589793 rad pos: -29.5,17.5 @@ -146009,7 +146840,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22154 + - uid: 22304 components: - rot: -1.5707963267948966 rad pos: -30.5,30.5 @@ -146017,7 +146848,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22155 + - uid: 22305 components: - rot: 3.141592653589793 rad pos: -39.5,18.5 @@ -146025,7 +146856,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22156 + - uid: 22306 components: - rot: -1.5707963267948966 rad pos: -36.5,23.5 @@ -146033,14 +146864,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22157 + - uid: 22307 components: - pos: -43.5,25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22158 + - uid: 22308 components: - rot: 1.5707963267948966 rad pos: -48.5,21.5 @@ -146048,7 +146879,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22159 + - uid: 22309 components: - rot: 1.5707963267948966 rad pos: -48.5,26.5 @@ -146056,7 +146887,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22160 + - uid: 22310 components: - rot: -1.5707963267948966 rad pos: -36.5,30.5 @@ -146064,7 +146895,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22161 + - uid: 22311 components: - rot: 3.141592653589793 rad pos: -47.5,28.5 @@ -146072,14 +146903,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22162 + - uid: 22312 components: - pos: -47.5,36.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22163 + - uid: 22313 components: - rot: 1.5707963267948966 rad pos: -48.5,32.5 @@ -146087,7 +146918,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22164 + - uid: 22314 components: - rot: 3.141592653589793 rad pos: -51.5,19.5 @@ -146095,21 +146926,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22165 + - uid: 22315 components: - pos: -7.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22166 + - uid: 22316 components: - pos: -1.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22167 + - uid: 22317 components: - rot: -1.5707963267948966 rad pos: -11.5,-47.5 @@ -146117,7 +146948,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22168 + - uid: 22318 components: - rot: 3.141592653589793 rad pos: 1.5,-54.5 @@ -146125,14 +146956,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22169 + - uid: 22319 components: - pos: -3.5,-52.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22170 + - uid: 22320 components: - rot: 3.141592653589793 rad pos: -7.5,-54.5 @@ -146140,14 +146971,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22171 + - uid: 22321 components: - pos: -11.5,-52.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22172 + - uid: 22322 components: - rot: 1.5707963267948966 rad pos: -15.5,-53.5 @@ -146155,21 +146986,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22173 + - uid: 22323 components: - pos: -17.5,-54.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22174 + - uid: 22324 components: - pos: -17.5,-59.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22175 + - uid: 22325 components: - rot: -1.5707963267948966 rad pos: -22.5,11.5 @@ -146177,14 +147008,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22176 + - uid: 22326 components: - pos: -26.5,15.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22177 + - uid: 22327 components: - rot: -1.5707963267948966 rad pos: 26.5,11.5 @@ -146192,7 +147023,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22178 + - uid: 22328 components: - rot: 1.5707963267948966 rad pos: -48.5,16.5 @@ -146200,14 +147031,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22179 + - uid: 22329 components: - pos: -47.5,8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22180 + - uid: 22330 components: - rot: 3.141592653589793 rad pos: -46.5,-0.5 @@ -146215,21 +147046,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22181 + - uid: 22331 components: - pos: 8.5,-25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22182 + - uid: 22332 components: - pos: 1.5,-25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22183 + - uid: 22333 components: - rot: -1.5707963267948966 rad pos: 36.5,-34.5 @@ -146237,7 +147068,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22184 + - uid: 22334 components: - rot: 1.5707963267948966 rad pos: 34.5,-29.5 @@ -146245,7 +147076,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22185 + - uid: 22335 components: - rot: -1.5707963267948966 rad pos: 36.5,-24.5 @@ -146253,28 +147084,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22186 + - uid: 22336 components: - pos: 21.5,-21.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22187 + - uid: 22337 components: - pos: 29.5,-21.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22188 + - uid: 22338 components: - pos: -29.5,1.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22189 + - uid: 22339 components: - rot: 3.141592653589793 rad pos: -38.5,-0.5 @@ -146282,7 +147113,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22190 + - uid: 22340 components: - rot: 3.141592653589793 rad pos: -51.5,10.5 @@ -146290,7 +147121,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22191 + - uid: 22341 components: - rot: 1.5707963267948966 rad pos: 19.5,-46.5 @@ -146298,14 +147129,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22192 + - uid: 22342 components: - pos: 32.5,19.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22193 + - uid: 22343 components: - rot: -1.5707963267948966 rad pos: 13.5,-11.5 @@ -146313,7 +147144,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22194 + - uid: 22344 components: - rot: 3.141592653589793 rad pos: 3.5,-65.5 @@ -146321,7 +147152,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22195 + - uid: 22345 components: - rot: 1.5707963267948966 rad pos: 38.5,19.5 @@ -146329,14 +147160,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22196 + - uid: 22346 components: - pos: 64.5,-43.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22197 + - uid: 22347 components: - rot: 3.141592653589793 rad pos: -24.5,-6.5 @@ -146344,7 +147175,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22198 + - uid: 22348 components: - rot: 1.5707963267948966 rad pos: -26.5,-60.5 @@ -146352,14 +147183,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22199 + - uid: 22349 components: - pos: -23.5,-57.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22200 + - uid: 22350 components: - rot: 1.5707963267948966 rad pos: -31.5,-73.5 @@ -146367,7 +147198,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22201 + - uid: 22351 components: - rot: -1.5707963267948966 rad pos: 18.5,9.5 @@ -146375,7 +147206,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22202 + - uid: 22352 components: - rot: 3.141592653589793 rad pos: -18.5,65.5 @@ -146383,14 +147214,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22203 + - uid: 22353 components: - pos: -21.5,45.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22204 + - uid: 22354 components: - rot: 1.5707963267948966 rad pos: -16.5,32.5 @@ -146398,7 +147229,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22205 + - uid: 22355 components: - rot: -1.5707963267948966 rad pos: -14.5,40.5 @@ -146406,7 +147237,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22206 + - uid: 22356 components: - rot: 1.5707963267948966 rad pos: -18.5,46.5 @@ -146414,7 +147245,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22207 + - uid: 22357 components: - rot: 1.5707963267948966 rad pos: -20.5,28.5 @@ -146422,7 +147253,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22208 + - uid: 22358 components: - rot: -1.5707963267948966 rad pos: -2.5,52.5 @@ -146430,7 +147261,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22209 + - uid: 22359 components: - rot: 1.5707963267948966 rad pos: -10.5,55.5 @@ -146438,7 +147269,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22210 + - uid: 22360 components: - rot: 1.5707963267948966 rad pos: -10.5,49.5 @@ -146446,7 +147277,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22211 + - uid: 22361 components: - rot: -1.5707963267948966 rad pos: -40.5,32.5 @@ -146454,14 +147285,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22212 + - uid: 22362 components: - pos: -1.5,46.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22213 + - uid: 22363 components: - rot: 1.5707963267948966 rad pos: -0.5,51.5 @@ -146469,7 +147300,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22214 + - uid: 22364 components: - rot: 1.5707963267948966 rad pos: -0.5,57.5 @@ -146477,21 +147308,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22215 + - uid: 22365 components: - pos: -6.5,59.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22216 + - uid: 22366 components: - pos: -19.5,51.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22217 + - uid: 22367 components: - rot: 1.5707963267948966 rad pos: -22.5,55.5 @@ -146499,7 +147330,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22218 + - uid: 22368 components: - rot: 1.5707963267948966 rad pos: -22.5,66.5 @@ -146507,7 +147338,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22219 + - uid: 22369 components: - rot: -1.5707963267948966 rad pos: -12.5,66.5 @@ -146515,7 +147346,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22220 + - uid: 22370 components: - rot: 1.5707963267948966 rad pos: -13.5,60.5 @@ -146523,7 +147354,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22221 + - uid: 22371 components: - rot: -1.5707963267948966 rad pos: -12.5,54.5 @@ -146531,7 +147362,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22222 + - uid: 22372 components: - rot: 3.141592653589793 rad pos: 28.5,44.5 @@ -146539,7 +147370,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22223 + - uid: 22373 components: - rot: 3.141592653589793 rad pos: -44.5,-85.5 @@ -146547,7 +147378,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22224 + - uid: 22374 components: - rot: -1.5707963267948966 rad pos: -35.5,-95.5 @@ -146555,7 +147386,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22225 + - uid: 22375 components: - rot: 3.141592653589793 rad pos: -71.5,-32.5 @@ -146563,7 +147394,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22226 + - uid: 22376 components: - rot: -1.5707963267948966 rad pos: 18.5,-2.5 @@ -146571,7 +147402,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22227 + - uid: 22377 components: - rot: 1.5707963267948966 rad pos: 60.5,-8.5 @@ -146579,7 +147410,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22228 + - uid: 22378 components: - rot: 1.5707963267948966 rad pos: 57.5,-33.5 @@ -146587,7 +147418,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22229 + - uid: 22379 components: - rot: -1.5707963267948966 rad pos: 75.5,-35.5 @@ -146595,7 +147426,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22230 + - uid: 22380 components: - rot: -1.5707963267948966 rad pos: -5.5,-65.5 @@ -146603,7 +147434,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22231 + - uid: 22381 components: - rot: -1.5707963267948966 rad pos: -15.5,-21.5 @@ -146611,14 +147442,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22232 + - uid: 22382 components: - pos: 67.5,-36.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22233 + - uid: 22383 components: - rot: 1.5707963267948966 rad pos: 60.5,-31.5 @@ -146626,14 +147457,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22234 + - uid: 22384 components: - pos: -62.5,-23.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22235 + - uid: 22385 components: - rot: -1.5707963267948966 rad pos: 73.5,-28.5 @@ -146641,7 +147472,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22236 + - uid: 22386 components: - rot: -1.5707963267948966 rad pos: -53.5,-59.5 @@ -146649,7 +147480,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22237 + - uid: 22387 components: - rot: 1.5707963267948966 rad pos: 71.5,-31.5 @@ -146657,7 +147488,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22238 + - uid: 22388 components: - rot: 3.141592653589793 rad pos: 4.5,-35.5 @@ -146665,7 +147496,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22239 + - uid: 22389 components: - rot: -1.5707963267948966 rad pos: 32.5,28.5 @@ -146673,21 +147504,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22240 + - uid: 22390 components: - pos: 58.5,-28.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22241 + - uid: 22391 components: - pos: 34.5,-16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22242 + - uid: 22392 components: - rot: -1.5707963267948966 rad pos: 6.5,-30.5 @@ -146695,14 +147526,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22243 + - uid: 22393 components: - pos: 55.5,-47.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22244 + - uid: 22394 components: - rot: -1.5707963267948966 rad pos: -43.5,4.5 @@ -146710,7 +147541,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22245 + - uid: 22395 components: - rot: -1.5707963267948966 rad pos: 76.5,-49.5 @@ -146718,7 +147549,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22246 + - uid: 22396 components: - rot: -1.5707963267948966 rad pos: -60.5,-28.5 @@ -146726,14 +147557,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22247 + - uid: 22397 components: - pos: -50.5,35.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22248 + - uid: 22398 components: - rot: -1.5707963267948966 rad pos: -14.5,25.5 @@ -146741,7 +147572,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22249 + - uid: 22399 components: - rot: 1.5707963267948966 rad pos: -0.5,6.5 @@ -146749,7 +147580,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22250 + - uid: 22400 components: - rot: 3.141592653589793 rad pos: 25.5,-25.5 @@ -146757,14 +147588,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22251 + - uid: 22401 components: - pos: -21.5,8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22252 + - uid: 22402 components: - rot: 3.141592653589793 rad pos: -33.5,-0.5 @@ -146772,14 +147603,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22253 + - uid: 22403 components: - pos: -51.5,23.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22254 + - uid: 22404 components: - rot: -1.5707963267948966 rad pos: -44.5,15.5 @@ -146787,7 +147618,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22255 + - uid: 22405 components: - rot: -1.5707963267948966 rad pos: -10.5,-18.5 @@ -146795,7 +147626,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22256 + - uid: 22406 components: - rot: 1.5707963267948966 rad pos: -25.5,-15.5 @@ -146803,7 +147634,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22257 + - uid: 22407 components: - rot: 1.5707963267948966 rad pos: -14.5,-0.5 @@ -146811,7 +147642,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22258 + - uid: 22408 components: - rot: -1.5707963267948966 rad pos: -45.5,10.5 @@ -146819,7 +147650,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22259 + - uid: 22409 components: - rot: 1.5707963267948966 rad pos: 2.5,-49.5 @@ -146827,7 +147658,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22260 + - uid: 22410 components: - rot: -1.5707963267948966 rad pos: 32.5,-21.5 @@ -146835,7 +147666,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22261 + - uid: 22411 components: - rot: 1.5707963267948966 rad pos: 18.5,-21.5 @@ -146843,7 +147674,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22262 + - uid: 22412 components: - rot: 1.5707963267948966 rad pos: -0.5,9.5 @@ -146851,7 +147682,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22263 + - uid: 22413 components: - rot: -1.5707963267948966 rad pos: 6.5,5.5 @@ -146859,7 +147690,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22264 + - uid: 22414 components: - rot: 3.141592653589793 rad pos: 9.5,-1.5 @@ -146867,7 +147698,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22265 + - uid: 22415 components: - rot: 1.5707963267948966 rad pos: -50.5,-38.5 @@ -146875,21 +147706,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22266 + - uid: 22416 components: - pos: -49.5,-34.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22267 + - uid: 22417 components: - pos: 28.5,-80.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22268 + - uid: 22418 components: - rot: -1.5707963267948966 rad pos: 31.5,-88.5 @@ -146897,7 +147728,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22269 + - uid: 22419 components: - rot: -1.5707963267948966 rad pos: 49.5,-80.5 @@ -146905,14 +147736,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22270 + - uid: 22420 components: - pos: 48.5,-71.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22271 + - uid: 22421 components: - rot: -1.5707963267948966 rad pos: 19.5,-82.5 @@ -146920,7 +147751,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22272 + - uid: 22422 components: - rot: 3.141592653589793 rad pos: 12.5,-86.5 @@ -146928,7 +147759,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22273 + - uid: 22423 components: - rot: 1.5707963267948966 rad pos: 22.5,-72.5 @@ -146936,14 +147767,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22274 + - uid: 22424 components: - pos: 29.5,-71.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22275 + - uid: 22425 components: - rot: -1.5707963267948966 rad pos: 40.5,-66.5 @@ -146951,21 +147782,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22276 + - uid: 22426 components: - pos: 24.5,-69.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22277 + - uid: 22427 components: - pos: 15.5,-79.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22278 + - uid: 22428 components: - rot: 1.5707963267948966 rad pos: 37.5,11.5 @@ -146973,7 +147804,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22279 + - uid: 22429 components: - rot: 3.141592653589793 rad pos: 28.5,-2.5 @@ -146981,191 +147812,191 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22280 + - uid: 22430 components: - rot: -1.5707963267948966 rad pos: -38.5,-47.5 parent: 2 type: Transform - - uid: 22281 + - uid: 22431 components: - rot: 1.5707963267948966 rad pos: -44.5,-41.5 parent: 2 type: Transform - - uid: 22282 + - uid: 22432 components: - rot: 1.5707963267948966 rad pos: 20.5,22.5 parent: 2 type: Transform - - uid: 22283 + - uid: 22433 components: - rot: -1.5707963267948966 rad pos: -45.5,41.5 parent: 2 type: Transform - - uid: 22284 + - uid: 22434 components: - rot: 1.5707963267948966 rad pos: -50.5,44.5 parent: 2 type: Transform - - uid: 22285 + - uid: 22435 components: - rot: 3.141592653589793 rad pos: 67.5,-31.5 parent: 2 type: Transform - - uid: 22286 + - uid: 22436 components: - rot: 1.5707963267948966 rad pos: 65.5,-29.5 parent: 2 type: Transform - - uid: 22287 + - uid: 22437 components: - rot: -1.5707963267948966 rad pos: -3.5,17.5 parent: 2 type: Transform - - uid: 22288 + - uid: 22438 components: - rot: 1.5707963267948966 rad pos: -8.5,17.5 parent: 2 type: Transform - - uid: 22289 + - uid: 22439 components: - rot: 3.141592653589793 rad pos: -44.5,-17.5 parent: 2 type: Transform - - uid: 22290 + - uid: 22440 components: - pos: 77.5,-43.5 parent: 2 type: Transform - - uid: 22291 + - uid: 22441 components: - pos: -71.5,-37.5 parent: 2 type: Transform - - uid: 22292 + - uid: 22442 components: - rot: 3.141592653589793 rad pos: -65.5,-46.5 parent: 2 type: Transform - - uid: 22293 + - uid: 22443 components: - rot: 3.141592653589793 rad pos: -71.5,-46.5 parent: 2 type: Transform - - uid: 22294 + - uid: 22444 components: - pos: -65.5,-36.5 parent: 2 type: Transform - - uid: 22295 + - uid: 22445 components: - rot: 3.141592653589793 rad pos: -66.5,-34.5 parent: 2 type: Transform - - uid: 22296 + - uid: 22446 components: - rot: -1.5707963267948966 rad pos: -30.5,-32.5 parent: 2 type: Transform - - uid: 22297 + - uid: 22447 components: - pos: -35.5,-15.5 parent: 2 type: Transform - - uid: 22298 + - uid: 22448 components: - rot: 1.5707963267948966 rad pos: -1.5,-4.5 parent: 2 type: Transform - - uid: 22299 + - uid: 22449 components: - rot: 1.5707963267948966 rad pos: 1.5,-7.5 parent: 2 type: Transform - links: - - 23962 + - 24187 type: DeviceLinkSink - - uid: 22300 + - uid: 22450 components: - rot: -1.5707963267948966 rad pos: 29.5,-38.5 parent: 2 type: Transform - - uid: 22301 + - uid: 22451 components: - rot: 3.141592653589793 rad pos: 21.5,-37.5 parent: 2 type: Transform - - uid: 22302 + - uid: 22452 components: - pos: 24.5,-34.5 parent: 2 type: Transform - - uid: 22303 + - uid: 22453 components: - rot: 3.141592653589793 rad pos: 1.5,-23.5 parent: 2 type: Transform - - uid: 22304 + - uid: 22454 components: - pos: -1.5,-19.5 parent: 2 type: Transform - - uid: 22305 + - uid: 22455 components: - rot: 3.141592653589793 rad pos: 5.5,-11.5 parent: 2 type: Transform - - uid: 22306 + - uid: 22456 components: - rot: -1.5707963267948966 rad pos: 57.5,-41.5 parent: 2 type: Transform - - uid: 22307 + - uid: 22457 components: - rot: 3.141592653589793 rad pos: -52.5,-25.5 parent: 2 type: Transform - - uid: 22308 + - uid: 22458 components: - rot: -1.5707963267948966 rad pos: 53.5,-43.5 parent: 2 type: Transform - - uid: 22309 + - uid: 22459 components: - rot: -1.5707963267948966 rad pos: 53.5,-39.5 parent: 2 type: Transform - - uid: 22310 + - uid: 22460 components: - pos: 11.5,23.5 parent: 2 type: Transform - proto: PoweredlightEmpty entities: - - uid: 22311 + - uid: 22461 components: - rot: 3.141592653589793 rad pos: -39.5,-85.5 @@ -147173,7 +148004,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22312 + - uid: 22462 components: - rot: 3.141592653589793 rad pos: -40.5,-92.5 @@ -147181,7 +148012,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22313 + - uid: 22463 components: - rot: 3.141592653589793 rad pos: -40.5,-97.5 @@ -147189,7 +148020,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22314 + - uid: 22464 components: - rot: 3.141592653589793 rad pos: -28.5,-98.5 @@ -147197,7 +148028,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22315 + - uid: 22465 components: - rot: 3.141592653589793 rad pos: -16.5,-98.5 @@ -147205,21 +148036,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22316 + - uid: 22466 components: - pos: -13.5,13.5 parent: 2 type: Transform - proto: PoweredlightExterior entities: - - uid: 22317 + - uid: 22467 components: - pos: -1.5,72.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22318 + - uid: 22468 components: - rot: 1.5707963267948966 rad pos: -7.5,68.5 @@ -147227,7 +148058,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22319 + - uid: 22469 components: - rot: -1.5707963267948966 rad pos: 4.5,68.5 @@ -147235,7 +148066,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22320 + - uid: 22470 components: - rot: -1.5707963267948966 rad pos: -54.5,-85.5 @@ -147243,7 +148074,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22321 + - uid: 22471 components: - rot: -1.5707963267948966 rad pos: -54.5,-89.5 @@ -147251,21 +148082,43 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - uid: 22472 + components: + - pos: 39.5,66.5 + parent: 2 + type: Transform + - uid: 22473 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,63.5 + parent: 2 + type: Transform + - uid: 22474 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,63.5 + parent: 2 + type: Transform + - uid: 25762 + components: + - pos: -52.5,-86.5 + parent: 2 + type: Transform - proto: PoweredLightPostSmall entities: - - uid: 22322 + - uid: 22475 components: - pos: -0.5,-85.5 parent: 2 type: Transform - - uid: 22323 + - uid: 22476 components: - pos: -2.5,-85.5 parent: 2 type: Transform - proto: PoweredlightSodium entities: - - uid: 22324 + - uid: 22477 components: - rot: 3.141592653589793 rad pos: 72.5,34.5 @@ -147273,7 +148126,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22325 + - uid: 22478 components: - rot: 1.5707963267948966 rad pos: 14.5,-65.5 @@ -147281,28 +148134,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22326 + - uid: 22479 components: - pos: -18.5,4.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22327 + - uid: 22480 components: - pos: -40.5,-15.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22328 + - uid: 22481 components: - pos: -20.5,-95.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22329 + - uid: 22482 components: - rot: 3.141592653589793 rad pos: -7.5,-100.5 @@ -147310,7 +148163,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22330 + - uid: 22483 components: - rot: -1.5707963267948966 rad pos: 12.5,-20.5 @@ -147320,40 +148173,40 @@ entities: type: ApcPowerReceiver - proto: PoweredSmallLight entities: - - uid: 22331 + - uid: 22484 components: - pos: 12.5,25.5 parent: 2 type: Transform - - uid: 22332 + - uid: 22485 components: - pos: -43.5,-34.5 parent: 2 type: Transform - - uid: 22333 + - uid: 22486 components: - pos: -76.5,-31.5 parent: 2 type: Transform - - uid: 22334 + - uid: 22487 components: - pos: 51.5,-82.5 parent: 2 type: Transform - - uid: 22335 + - uid: 22488 components: - rot: -1.5707963267948966 rad pos: -49.5,46.5 parent: 2 type: Transform - - uid: 22336 + - uid: 22489 components: - pos: 20.5,-52.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22337 + - uid: 22490 components: - rot: 3.141592653589793 rad pos: 16.5,-55.5 @@ -147361,21 +148214,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22338 + - uid: 22491 components: - pos: 16.5,-52.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22339 + - uid: 22492 components: - pos: 1.5,-40.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22340 + - uid: 22493 components: - rot: 1.5707963267948966 rad pos: -31.5,-47.5 @@ -147383,7 +148236,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22341 + - uid: 22494 components: - rot: 3.141592653589793 rad pos: 20.5,-32.5 @@ -147391,7 +148244,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22342 + - uid: 22495 components: - rot: -1.5707963267948966 rad pos: -4.5,-74.5 @@ -147399,21 +148252,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22343 + - uid: 22496 components: - pos: 0.5,-73.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22344 + - uid: 22497 components: - pos: 33.5,-10.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22345 + - uid: 22498 components: - rot: 3.141592653589793 rad pos: 10.5,-17.5 @@ -147421,7 +148274,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22346 + - uid: 22499 components: - rot: 1.5707963267948966 rad pos: 17.5,-12.5 @@ -147429,7 +148282,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22347 + - uid: 22500 components: - rot: -1.5707963267948966 rad pos: 22.5,-13.5 @@ -147437,7 +148290,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22348 + - uid: 22501 components: - rot: 1.5707963267948966 rad pos: -74.5,-12.5 @@ -147445,7 +148298,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22349 + - uid: 22502 components: - rot: 1.5707963267948966 rad pos: 6.5,49.5 @@ -147453,14 +148306,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22350 + - uid: 22503 components: - pos: 33.5,-89.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22352 + - uid: 22504 components: - rot: -1.5707963267948966 rad pos: 26.5,-29.5 @@ -147468,7 +148321,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22353 + - uid: 22505 components: - rot: 1.5707963267948966 rad pos: -2.5,-78.5 @@ -147476,14 +148329,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22354 + - uid: 22506 components: - pos: -15.5,-63.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22355 + - uid: 22507 components: - rot: 3.141592653589793 rad pos: -13.5,-67.5 @@ -147491,14 +148344,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22356 + - uid: 22508 components: - pos: -20.5,-66.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22357 + - uid: 22509 components: - rot: 3.141592653589793 rad pos: -5.5,-50.5 @@ -147506,28 +148359,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22358 + - uid: 22510 components: - pos: -20.5,-63.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22359 + - uid: 22511 components: - pos: -15.5,-75.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22360 + - uid: 22512 components: - pos: -15.5,-69.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22361 + - uid: 22513 components: - rot: 3.141592653589793 rad pos: -15.5,-79.5 @@ -147535,7 +148388,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22362 + - uid: 22514 components: - rot: 1.5707963267948966 rad pos: -30.5,-80.5 @@ -147543,7 +148396,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22363 + - uid: 22515 components: - rot: 1.5707963267948966 rad pos: -30.5,-78.5 @@ -147551,23 +148404,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22364 - components: - - rot: 3.141592653589793 rad - pos: -26.5,-90.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 22365 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-90.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 22366 + - uid: 22516 components: - rot: 3.141592653589793 rad pos: -30.5,-7.5 @@ -147575,7 +148412,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22367 + - uid: 22517 components: - rot: -1.5707963267948966 rad pos: 22.5,12.5 @@ -147583,7 +148420,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22368 + - uid: 22518 components: - rot: -1.5707963267948966 rad pos: -14.5,-37.5 @@ -147591,7 +148428,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22369 + - uid: 22519 components: - rot: -1.5707963267948966 rad pos: 55.5,29.5 @@ -147599,28 +148436,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22370 + - uid: 22520 components: - pos: 49.5,-33.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22371 + - uid: 22521 components: - pos: -8.5,-29.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22372 + - uid: 22522 components: - pos: -16.5,-29.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22373 + - uid: 22523 components: - rot: -1.5707963267948966 rad pos: 30.5,25.5 @@ -147628,21 +148465,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22374 + - uid: 22524 components: - pos: 37.5,8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22375 + - uid: 22525 components: - pos: 37.5,5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22376 + - uid: 22526 components: - rot: 1.5707963267948966 rad pos: 34.5,11.5 @@ -147650,7 +148487,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22377 + - uid: 22527 components: - rot: 1.5707963267948966 rad pos: 31.5,11.5 @@ -147658,7 +148495,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22378 + - uid: 22528 components: - rot: 1.5707963267948966 rad pos: 28.5,11.5 @@ -147666,7 +148503,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22379 + - uid: 22529 components: - rot: 3.141592653589793 rad pos: 45.5,14.5 @@ -147674,7 +148511,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22380 + - uid: 22530 components: - rot: 1.5707963267948966 rad pos: 58.5,23.5 @@ -147682,7 +148519,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22381 + - uid: 22531 components: - rot: 1.5707963267948966 rad pos: 55.5,23.5 @@ -147690,7 +148527,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22382 + - uid: 22532 components: - rot: 1.5707963267948966 rad pos: 52.5,23.5 @@ -147698,7 +148535,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22383 + - uid: 22533 components: - rot: 1.5707963267948966 rad pos: 49.5,23.5 @@ -147706,7 +148543,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22384 + - uid: 22534 components: - rot: 1.5707963267948966 rad pos: 46.5,23.5 @@ -147714,21 +148551,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22385 + - uid: 22535 components: - pos: 61.5,19.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22386 + - uid: 22536 components: - pos: 61.5,16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22387 + - uid: 22537 components: - rot: 1.5707963267948966 rad pos: 62.5,11.5 @@ -147736,14 +148573,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22388 + - uid: 22538 components: - pos: 62.5,22.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22389 + - uid: 22539 components: - rot: -1.5707963267948966 rad pos: 54.5,12.5 @@ -147751,7 +148588,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22390 + - uid: 22540 components: - rot: 1.5707963267948966 rad pos: 62.5,6.5 @@ -147759,14 +148596,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22391 + - uid: 22541 components: - pos: 60.5,2.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22392 + - uid: 22542 components: - rot: 1.5707963267948966 rad pos: 56.5,-1.5 @@ -147774,14 +148611,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22393 + - uid: 22543 components: - pos: 35.5,20.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22394 + - uid: 22544 components: - rot: 1.5707963267948966 rad pos: 44.5,18.5 @@ -147789,7 +148626,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22395 + - uid: 22545 components: - rot: -1.5707963267948966 rad pos: 48.5,-2.5 @@ -147797,14 +148634,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22396 + - uid: 22546 components: - pos: 49.5,-7.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22397 + - uid: 22547 components: - rot: -1.5707963267948966 rad pos: 62.5,-38.5 @@ -147812,7 +148649,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22398 + - uid: 22548 components: - rot: -1.5707963267948966 rad pos: 39.5,-45.5 @@ -147820,7 +148657,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22399 + - uid: 22549 components: - rot: 1.5707963267948966 rad pos: 62.5,-19.5 @@ -147828,7 +148665,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22400 + - uid: 22550 components: - rot: -1.5707963267948966 rad pos: 62.5,-15.5 @@ -147836,14 +148673,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22401 + - uid: 22551 components: - pos: -18.5,-0.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22402 + - uid: 22552 components: - rot: -1.5707963267948966 rad pos: -28.5,-21.5 @@ -147851,28 +148688,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22403 + - uid: 22553 components: - pos: 46.5,-51.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22404 + - uid: 22554 components: - pos: 12.5,-72.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22405 + - uid: 22555 components: - pos: 45.5,-89.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22406 + - uid: 22556 components: - rot: 1.5707963267948966 rad pos: 48.5,-94.5 @@ -147880,14 +148717,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22407 + - uid: 22557 components: - pos: 20.5,-73.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22408 + - uid: 22558 components: - rot: 1.5707963267948966 rad pos: -32.5,-5.5 @@ -147895,28 +148732,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22409 + - uid: 22559 components: - pos: -20.5,-45.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22410 + - uid: 22560 components: - pos: -26.5,-26.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22411 + - uid: 22561 components: - pos: 43.5,-51.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22412 + - uid: 22562 components: - rot: 1.5707963267948966 rad pos: 36.5,-51.5 @@ -147924,7 +148761,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22413 + - uid: 22563 components: - rot: -1.5707963267948966 rad pos: 15.5,-48.5 @@ -147932,42 +148769,42 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22414 + - uid: 22564 components: - pos: 10.5,-55.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22415 + - uid: 22565 components: - pos: 15.5,-57.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22416 + - uid: 22566 components: - pos: 9.5,-64.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22417 + - uid: 22567 components: - pos: -5.5,-68.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22418 + - uid: 22568 components: - pos: -33.5,-69.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22419 + - uid: 22569 components: - rot: 1.5707963267948966 rad pos: -56.5,-78.5 @@ -147975,7 +148812,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22420 + - uid: 22570 components: - rot: 3.141592653589793 rad pos: -51.5,-79.5 @@ -147983,14 +148820,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22421 + - uid: 22571 components: - pos: -26.5,-66.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22422 + - uid: 22572 components: - rot: 1.5707963267948966 rad pos: -28.5,-61.5 @@ -147998,7 +148835,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22423 + - uid: 22573 components: - rot: 1.5707963267948966 rad pos: -50.5,-68.5 @@ -148006,21 +148843,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22424 + - uid: 22574 components: - pos: -37.5,-63.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22425 + - uid: 22575 components: - pos: -44.5,-63.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22426 + - uid: 22576 components: - rot: 1.5707963267948966 rad pos: -22.5,-55.5 @@ -148028,14 +148865,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22427 + - uid: 22577 components: - pos: -29.5,-43.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22428 + - uid: 22578 components: - rot: 1.5707963267948966 rad pos: -28.5,-53.5 @@ -148043,14 +148880,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22429 + - uid: 22579 components: - pos: -22.5,-41.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22430 + - uid: 22580 components: - rot: 1.5707963267948966 rad pos: -29.5,-41.5 @@ -148058,14 +148895,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22431 + - uid: 22581 components: - pos: 44.5,-13.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22432 + - uid: 22582 components: - rot: 1.5707963267948966 rad pos: 35.5,-13.5 @@ -148073,21 +148910,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22433 + - uid: 22583 components: - pos: 39.5,-7.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22434 + - uid: 22584 components: - pos: 31.5,-8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22435 + - uid: 22585 components: - rot: 1.5707963267948966 rad pos: 46.5,-7.5 @@ -148095,7 +148932,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22436 + - uid: 22586 components: - rot: 1.5707963267948966 rad pos: 65.5,24.5 @@ -148103,14 +148940,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22437 + - uid: 22587 components: - pos: 57.5,26.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22438 + - uid: 22588 components: - rot: 3.141592653589793 rad pos: 49.5,26.5 @@ -148118,28 +148955,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22439 + - uid: 22589 components: - pos: -41.5,-24.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22440 + - uid: 22590 components: - pos: -39.5,-28.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22441 + - uid: 22591 components: - pos: -45.5,-27.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22442 + - uid: 22592 components: - rot: 1.5707963267948966 rad pos: -44.5,-30.5 @@ -148147,7 +148984,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22443 + - uid: 22593 components: - rot: -1.5707963267948966 rad pos: -35.5,-29.5 @@ -148155,7 +148992,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22444 + - uid: 22594 components: - rot: -1.5707963267948966 rad pos: -54.5,-33.5 @@ -148163,7 +149000,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22445 + - uid: 22595 components: - rot: 1.5707963267948966 rad pos: -57.5,-38.5 @@ -148171,7 +149008,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22446 + - uid: 22596 components: - rot: 1.5707963267948966 rad pos: -29.5,-29.5 @@ -148179,14 +149016,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22447 + - uid: 22597 components: - pos: -29.5,-25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22448 + - uid: 22598 components: - rot: 3.141592653589793 rad pos: -35.5,-26.5 @@ -148194,14 +149031,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22449 + - uid: 22599 components: - pos: 15.5,-8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22450 + - uid: 22600 components: - rot: 1.5707963267948966 rad pos: 14.5,-4.5 @@ -148209,7 +149046,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22451 + - uid: 22601 components: - rot: 3.141592653589793 rad pos: 14.5,-14.5 @@ -148217,7 +149054,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22452 + - uid: 22602 components: - rot: 1.5707963267948966 rad pos: -0.5,-13.5 @@ -148225,20 +149062,20 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22453 + - uid: 22603 components: - pos: 1.5,-16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22454 + - uid: 22604 components: - rot: -1.5707963267948966 rad pos: -72.5,-34.5 parent: 2 type: Transform - - uid: 22455 + - uid: 22605 components: - rot: 1.5707963267948966 rad pos: -32.5,-7.5 @@ -148246,7 +149083,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22456 + - uid: 22606 components: - rot: 1.5707963267948966 rad pos: 62.5,28.5 @@ -148254,56 +149091,56 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22457 + - uid: 22607 components: - pos: -49.5,-42.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22458 + - uid: 22608 components: - pos: -49.5,-44.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22459 + - uid: 22609 components: - pos: -49.5,-46.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22460 + - uid: 22610 components: - pos: -49.5,-48.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22461 + - uid: 22611 components: - pos: -49.5,-50.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22462 + - uid: 22612 components: - pos: -49.5,-52.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22463 + - uid: 22613 components: - pos: -49.5,-54.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22464 + - uid: 22614 components: - rot: 1.5707963267948966 rad pos: 15.5,33.5 @@ -148311,21 +149148,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22465 + - uid: 22615 components: - pos: 21.5,25.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22466 + - uid: 22616 components: - pos: -6.5,32.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22467 + - uid: 22617 components: - rot: -1.5707963267948966 rad pos: 0.5,33.5 @@ -148333,7 +149170,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22468 + - uid: 22618 components: - rot: 1.5707963267948966 rad pos: -0.5,-10.5 @@ -148341,7 +149178,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22469 + - uid: 22619 components: - rot: 1.5707963267948966 rad pos: -54.5,-0.5 @@ -148349,7 +149186,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22470 + - uid: 22620 components: - rot: -1.5707963267948966 rad pos: -28.5,-3.5 @@ -148357,7 +149194,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22471 + - uid: 22621 components: - rot: 1.5707963267948966 rad pos: -41.5,4.5 @@ -148365,7 +149202,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22472 + - uid: 22622 components: - rot: 3.141592653589793 rad pos: -30.5,3.5 @@ -148373,7 +149210,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22473 + - uid: 22623 components: - rot: 1.5707963267948966 rad pos: -33.5,9.5 @@ -148381,7 +149218,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22474 + - uid: 22624 components: - rot: -1.5707963267948966 rad pos: -28.5,9.5 @@ -148389,7 +149226,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22475 + - uid: 22625 components: - rot: -1.5707963267948966 rad pos: -29.5,14.5 @@ -148397,14 +149234,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22476 - components: - - pos: -35.5,15.5 - parent: 2 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 22477 + - uid: 22626 components: - rot: -1.5707963267948966 rad pos: -35.5,9.5 @@ -148412,7 +149242,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22478 + - uid: 22627 components: - rot: 1.5707963267948966 rad pos: -40.5,9.5 @@ -148420,7 +149250,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22479 + - uid: 22628 components: - rot: -1.5707963267948966 rad pos: -12.5,19.5 @@ -148428,7 +149258,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22480 + - uid: 22629 components: - rot: 1.5707963267948966 rad pos: -16.5,21.5 @@ -148436,7 +149266,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22481 + - uid: 22630 components: - rot: 3.141592653589793 rad pos: -9.5,21.5 @@ -148444,14 +149274,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22482 + - uid: 22631 components: - pos: -0.5,24.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22483 + - uid: 22632 components: - rot: -1.5707963267948966 rad pos: -42.5,10.5 @@ -148459,7 +149289,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22484 + - uid: 22633 components: - rot: 1.5707963267948966 rad pos: -52.5,14.5 @@ -148467,7 +149297,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22485 + - uid: 22634 components: - rot: -1.5707963267948966 rad pos: -51.5,7.5 @@ -148475,28 +149305,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22486 + - uid: 22635 components: - pos: -44.5,-2.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22487 + - uid: 22636 components: - pos: -40.5,-2.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22488 + - uid: 22637 components: - pos: -49.5,1.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22489 + - uid: 22638 components: - rot: -1.5707963267948966 rad pos: -37.5,-39.5 @@ -148504,14 +149334,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22490 + - uid: 22639 components: - pos: -35.5,-38.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22491 + - uid: 22640 components: - rot: -1.5707963267948966 rad pos: 2.5,-69.5 @@ -148519,7 +149349,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22492 + - uid: 22641 components: - rot: 3.141592653589793 rad pos: -63.5,-21.5 @@ -148527,7 +149357,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22493 + - uid: 22642 components: - rot: 3.141592653589793 rad pos: -69.5,-21.5 @@ -148535,21 +149365,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22494 + - uid: 22643 components: - pos: -68.5,-5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22495 + - uid: 22644 components: - pos: -64.5,-5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22496 + - uid: 22645 components: - rot: -1.5707963267948966 rad pos: -57.5,-10.5 @@ -148557,7 +149387,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22497 + - uid: 22646 components: - rot: -1.5707963267948966 rad pos: -57.5,-16.5 @@ -148565,7 +149395,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22498 + - uid: 22647 components: - rot: -1.5707963267948966 rad pos: 61.5,24.5 @@ -148573,7 +149403,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22499 + - uid: 22648 components: - rot: -1.5707963267948966 rad pos: 63.5,24.5 @@ -148581,7 +149411,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22500 + - uid: 22649 components: - rot: 3.141592653589793 rad pos: 63.5,13.5 @@ -148589,7 +149419,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22501 + - uid: 22650 components: - rot: 3.141592653589793 rad pos: 63.5,11.5 @@ -148597,7 +149427,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22502 + - uid: 22651 components: - rot: 3.141592653589793 rad pos: 63.5,9.5 @@ -148605,7 +149435,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22503 + - uid: 22652 components: - rot: 3.141592653589793 rad pos: -47.5,53.5 @@ -148613,7 +149443,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22504 + - uid: 22653 components: - rot: 3.141592653589793 rad pos: -41.5,53.5 @@ -148621,7 +149451,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22505 + - uid: 22654 components: - rot: 1.5707963267948966 rad pos: -40.5,52.5 @@ -148629,7 +149459,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22506 + - uid: 22655 components: - rot: 1.5707963267948966 rad pos: -46.5,52.5 @@ -148637,7 +149467,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22507 + - uid: 22656 components: - rot: -1.5707963267948966 rad pos: 23.5,34.5 @@ -148645,7 +149475,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22508 + - uid: 22657 components: - rot: 1.5707963267948966 rad pos: 13.5,-45.5 @@ -148653,21 +149483,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22509 + - uid: 22658 components: - pos: -51.5,-73.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22510 + - uid: 22659 components: - pos: -8.5,-71.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22511 + - uid: 22660 components: - rot: 1.5707963267948966 rad pos: 7.5,-17.5 @@ -148675,7 +149505,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22512 + - uid: 22661 components: - rot: 3.141592653589793 rad pos: 39.5,-30.5 @@ -148683,14 +149513,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22513 + - uid: 22662 components: - pos: -30.5,-54.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22514 + - uid: 22663 components: - rot: 3.141592653589793 rad pos: 10.5,-47.5 @@ -148698,14 +149528,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22515 + - uid: 22664 components: - pos: 56.5,59.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22516 + - uid: 22665 components: - rot: 3.141592653589793 rad pos: 52.5,55.5 @@ -148713,7 +149543,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22517 + - uid: 22666 components: - rot: 3.141592653589793 rad pos: 58.5,42.5 @@ -148721,7 +149551,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22518 + - uid: 22667 components: - rot: 3.141592653589793 rad pos: 51.5,42.5 @@ -148729,14 +149559,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22519 + - uid: 22668 components: - pos: 15.5,39.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22520 + - uid: 22669 components: - rot: 1.5707963267948966 rad pos: 60.5,46.5 @@ -148744,7 +149574,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22521 + - uid: 22670 components: - rot: 1.5707963267948966 rad pos: 65.5,9.5 @@ -148752,21 +149582,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22522 + - uid: 22671 components: - pos: 9.5,34.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22523 + - uid: 22672 components: - pos: -23.5,31.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22524 + - uid: 22673 components: - rot: 3.141592653589793 rad pos: 57.5,28.5 @@ -148774,7 +149604,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22525 + - uid: 22674 components: - rot: 1.5707963267948966 rad pos: -21.5,33.5 @@ -148782,28 +149612,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22526 + - uid: 22675 components: - pos: 46.5,39.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22527 + - uid: 22676 components: - pos: 54.5,50.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22528 + - uid: 22677 components: - pos: 45.5,32.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22529 + - uid: 22678 components: - rot: -1.5707963267948966 rad pos: 48.5,46.5 @@ -148811,7 +149641,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22530 + - uid: 22679 components: - rot: -1.5707963267948966 rad pos: -11.5,33.5 @@ -148819,14 +149649,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22531 + - uid: 22680 components: - pos: -11.5,39.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22532 + - uid: 22681 components: - rot: 3.141592653589793 rad pos: 43.5,44.5 @@ -148834,7 +149664,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22533 + - uid: 22682 components: - rot: 3.141592653589793 rad pos: -20.5,37.5 @@ -148842,14 +149672,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22534 + - uid: 22683 components: - pos: -27.5,46.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22535 + - uid: 22684 components: - rot: -1.5707963267948966 rad pos: -20.5,48.5 @@ -148857,14 +149687,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22536 + - uid: 22685 components: - pos: -10.5,29.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22537 + - uid: 22686 components: - rot: -1.5707963267948966 rad pos: -17.5,69.5 @@ -148872,7 +149702,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22538 + - uid: 22687 components: - rot: -1.5707963267948966 rad pos: -12.5,74.5 @@ -148880,7 +149710,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22539 + - uid: 22688 components: - rot: 1.5707963267948966 rad pos: -22.5,74.5 @@ -148888,7 +149718,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22540 + - uid: 22689 components: - rot: 3.141592653589793 rad pos: -15.5,60.5 @@ -148896,14 +149726,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22541 + - uid: 22690 components: - pos: -18.5,55.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22542 + - uid: 22691 components: - rot: -1.5707963267948966 rad pos: -24.5,42.5 @@ -148911,7 +149741,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22543 + - uid: 22692 components: - rot: 3.141592653589793 rad pos: -25.5,33.5 @@ -148919,21 +149749,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22544 + - uid: 22693 components: - pos: -30.5,39.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22545 + - uid: 22694 components: - pos: -42.5,39.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22546 + - uid: 22695 components: - rot: 3.141592653589793 rad pos: -28.5,27.5 @@ -148941,7 +149771,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22547 + - uid: 22696 components: - rot: 3.141592653589793 rad pos: 54.5,52.5 @@ -148949,7 +149779,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22548 + - uid: 22697 components: - rot: -1.5707963267948966 rad pos: -45.5,-87.5 @@ -148957,7 +149787,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22549 + - uid: 22698 components: - rot: 1.5707963267948966 rad pos: 8.5,-37.5 @@ -148965,7 +149795,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22550 + - uid: 22699 components: - rot: 1.5707963267948966 rad pos: 74.5,-40.5 @@ -148973,28 +149803,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22551 + - uid: 22700 components: - pos: 67.5,-33.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22552 + - uid: 22701 components: - pos: 67.5,-11.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22553 + - uid: 22702 components: - pos: 67.5,-3.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22554 + - uid: 22703 components: - rot: -1.5707963267948966 rad pos: -5.5,-56.5 @@ -149002,21 +149832,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22555 + - uid: 22704 components: - pos: 67.5,-5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22556 + - uid: 22705 components: - pos: 67.5,-13.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22557 + - uid: 22706 components: - rot: -1.5707963267948966 rad pos: -8.5,-56.5 @@ -149024,7 +149854,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22558 + - uid: 22707 components: - rot: -1.5707963267948966 rad pos: -11.5,-56.5 @@ -149032,7 +149862,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22559 + - uid: 22708 components: - rot: -1.5707963267948966 rad pos: 0.5,-56.5 @@ -149040,7 +149870,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22560 + - uid: 22709 components: - rot: -1.5707963267948966 rad pos: -2.5,-56.5 @@ -149048,21 +149878,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22561 + - uid: 22710 components: - pos: 78.5,-33.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22562 + - uid: 22711 components: - pos: 78.5,-36.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22563 + - uid: 22712 components: - rot: 1.5707963267948966 rad pos: 54.5,-55.5 @@ -149070,7 +149900,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22564 + - uid: 22713 components: - rot: 3.141592653589793 rad pos: 41.5,-33.5 @@ -149078,7 +149908,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22565 + - uid: 22714 components: - rot: 1.5707963267948966 rad pos: 77.5,-57.5 @@ -149086,7 +149916,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22566 + - uid: 22715 components: - rot: -1.5707963267948966 rad pos: 43.5,-63.5 @@ -149094,7 +149924,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22567 + - uid: 22716 components: - rot: -1.5707963267948966 rad pos: 56.5,-66.5 @@ -149102,7 +149932,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22568 + - uid: 22717 components: - rot: 3.141592653589793 rad pos: 54.5,-37.5 @@ -149110,7 +149940,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22569 + - uid: 22718 components: - rot: 1.5707963267948966 rad pos: 53.5,-26.5 @@ -149118,14 +149948,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22570 + - uid: 22719 components: - pos: 59.5,-26.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22571 + - uid: 22720 components: - rot: -1.5707963267948966 rad pos: 63.5,-68.5 @@ -149133,7 +149963,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22572 + - uid: 22721 components: - rot: 1.5707963267948966 rad pos: 58.5,-66.5 @@ -149141,7 +149971,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22573 + - uid: 22722 components: - rot: 3.141592653589793 rad pos: 67.5,-66.5 @@ -149149,7 +149979,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22574 + - uid: 22723 components: - rot: 1.5707963267948966 rad pos: 72.5,-67.5 @@ -149157,7 +149987,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22575 + - uid: 22724 components: - rot: 1.5707963267948966 rad pos: 75.5,-53.5 @@ -149165,7 +149995,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22576 + - uid: 22725 components: - rot: 1.5707963267948966 rad pos: 73.5,-63.5 @@ -149173,7 +150003,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22577 + - uid: 22726 components: - rot: -1.5707963267948966 rad pos: 72.5,-55.5 @@ -149181,7 +150011,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22578 + - uid: 22727 components: - rot: 3.141592653589793 rad pos: -11.5,41.5 @@ -149189,7 +150019,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22579 + - uid: 22728 components: - rot: 1.5707963267948966 rad pos: -42.5,13.5 @@ -149197,7 +150027,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22580 + - uid: 22729 components: - rot: -1.5707963267948966 rad pos: 30.5,-94.5 @@ -149205,7 +150035,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22581 + - uid: 22730 components: - rot: 1.5707963267948966 rad pos: -8.5,-18.5 @@ -149213,7 +150043,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22583 + - uid: 22731 components: - rot: 1.5707963267948966 rad pos: -13.5,-13.5 @@ -149221,21 +150051,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22584 + - uid: 22732 components: - pos: -8.5,-8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22585 + - uid: 22733 components: - pos: -12.5,-8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22586 + - uid: 22734 components: - rot: 1.5707963267948966 rad pos: -16.5,-9.5 @@ -149243,14 +150073,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22587 + - uid: 22735 components: - pos: -15.5,-12.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22588 + - uid: 22736 components: - rot: -1.5707963267948966 rad pos: -28.5,-5.5 @@ -149258,7 +150088,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22589 + - uid: 22737 components: - rot: -1.5707963267948966 rad pos: -28.5,-7.5 @@ -149266,7 +150096,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22590 + - uid: 22738 components: - rot: -1.5707963267948966 rad pos: -8.5,-68.5 @@ -149274,21 +150104,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22591 + - uid: 22739 components: - pos: 13.5,-31.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22592 + - uid: 22740 components: - pos: -19.5,-51.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22593 + - uid: 22741 components: - rot: 3.141592653589793 rad pos: -19.5,-49.5 @@ -149296,7 +150126,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22594 + - uid: 22742 components: - rot: 1.5707963267948966 rad pos: 28.5,-14.5 @@ -149304,7 +150134,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22595 + - uid: 22743 components: - rot: 1.5707963267948966 rad pos: 29.5,-12.5 @@ -149312,14 +150142,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22596 + - uid: 22744 components: - pos: 22.5,-83.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22597 + - uid: 22745 components: - rot: 3.141592653589793 rad pos: 5.5,-23.5 @@ -149327,14 +150157,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22598 + - uid: 22746 components: - pos: -57.5,-18.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22599 + - uid: 22747 components: - rot: 1.5707963267948966 rad pos: 6.5,-78.5 @@ -149342,14 +150172,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22600 + - uid: 22748 components: - pos: 3.5,-73.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22601 + - uid: 22749 components: - rot: -1.5707963267948966 rad pos: 6.5,-85.5 @@ -149357,110 +150187,134 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22602 + - uid: 22750 components: - rot: 3.141592653589793 rad pos: 32.5,-25.5 parent: 2 type: Transform - - uid: 22603 + - uid: 22751 components: - rot: 3.141592653589793 rad pos: 18.5,-25.5 parent: 2 type: Transform - - uid: 22604 + - uid: 22752 components: - pos: -52.5,43.5 parent: 2 type: Transform - - uid: 22605 + - uid: 22753 components: - rot: -1.5707963267948966 rad pos: -37.5,42.5 parent: 2 type: Transform - - uid: 22606 + - uid: 22754 components: - rot: 3.141592653589793 rad pos: -10.5,-33.5 parent: 2 type: Transform - - uid: 22607 + - uid: 22755 components: - pos: -15.5,-33.5 parent: 2 type: Transform - - uid: 22608 + - uid: 22756 components: - pos: 51.5,-89.5 parent: 2 type: Transform - - uid: 22609 + - uid: 22757 components: - rot: 3.141592653589793 rad pos: 33.5,-82.5 parent: 2 type: Transform - - uid: 22610 + - uid: 22758 components: - rot: 3.141592653589793 rad pos: 45.5,-82.5 parent: 2 type: Transform - - uid: 22611 + - uid: 22759 components: - pos: -59.5,-54.5 parent: 2 type: Transform - - uid: 22612 + - uid: 22760 components: - pos: -76.5,-40.5 parent: 2 type: Transform - - uid: 22613 + - uid: 22761 components: - rot: 3.141592653589793 rad pos: -76.5,-46.5 parent: 2 type: Transform - - uid: 22614 + - uid: 22762 components: - rot: 3.141592653589793 rad pos: -63.5,-45.5 parent: 2 type: Transform - - uid: 22615 + - uid: 22763 components: - pos: -53.5,-27.5 parent: 2 type: Transform - - uid: 22616 + - uid: 22764 components: - rot: 1.5707963267948966 rad pos: 18.5,-28.5 parent: 2 type: Transform - - uid: 22617 + - uid: 22765 components: - pos: 31.5,-32.5 parent: 2 type: Transform - - uid: 28848 + - uid: 22766 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-14.5 + parent: 2 + type: Transform + - uid: 22767 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-6.5 + parent: 2 + type: Transform + - uid: 22768 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-90.5 + parent: 2 + type: Transform + - uid: 22769 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-90.5 + parent: 2 + type: Transform + - uid: 22770 components: - rot: -1.5707963267948966 rad - pos: -7.5,-14.5 + pos: -33.5,15.5 parent: 2 type: Transform - - uid: 31314 + - uid: 22771 components: - - rot: 3.141592653589793 rad - pos: -8.5,-6.5 + - rot: 1.5707963267948966 rad + pos: -40.5,15.5 parent: 2 type: Transform - proto: PoweredSmallLightEmpty entities: - - uid: 22618 + - uid: 22772 components: - rot: -1.5707963267948966 rad pos: -36.5,-79.5 @@ -149468,7 +150322,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22619 + - uid: 22773 components: - rot: 3.141592653589793 rad pos: -37.5,-84.5 @@ -149476,7 +150330,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22620 + - uid: 22774 components: - rot: 3.141592653589793 rad pos: -46.5,-84.5 @@ -149484,7 +150338,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22621 + - uid: 22775 components: - rot: 1.5707963267948966 rad pos: -47.5,-79.5 @@ -149492,14 +150346,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22622 + - uid: 22776 components: - pos: -42.5,-74.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22623 + - uid: 22777 components: - rot: -1.5707963267948966 rad pos: -36.5,-72.5 @@ -149507,7 +150361,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22624 + - uid: 22778 components: - rot: 1.5707963267948966 rad pos: -47.5,-72.5 @@ -149515,7 +150369,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22625 + - uid: 22779 components: - rot: 1.5707963267948966 rad pos: -56.5,-80.5 @@ -149523,7 +150377,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22626 + - uid: 22780 components: - rot: 1.5707963267948966 rad pos: -56.5,-74.5 @@ -149531,7 +150385,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22627 + - uid: 22781 components: - rot: 1.5707963267948966 rad pos: -56.5,-72.5 @@ -149539,7 +150393,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22628 + - uid: 22782 components: - rot: -1.5707963267948966 rad pos: -27.5,-36.5 @@ -149547,14 +150401,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22629 + - uid: 22783 components: - pos: 57.5,34.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22630 + - uid: 22784 components: - rot: -1.5707963267948966 rad pos: 43.5,47.5 @@ -149562,7 +150416,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22631 + - uid: 22785 components: - rot: 1.5707963267948966 rad pos: 36.5,50.5 @@ -149570,7 +150424,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22632 + - uid: 22786 components: - rot: 3.141592653589793 rad pos: 37.5,43.5 @@ -149578,7 +150432,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 22633 + - uid: 22787 components: - pos: 34.5,47.5 parent: 2 @@ -149587,7 +150441,7 @@ entities: type: ApcPowerReceiver - proto: Protolathe entities: - - uid: 22634 + - uid: 22788 components: - pos: 43.5,-35.5 parent: 2 @@ -149601,1338 +150455,1318 @@ entities: type: MaterialStorage - proto: ProtolatheMachineCircuitboard entities: - - uid: 22635 + - uid: 22789 components: - pos: -37.545918,-18.274307 parent: 2 type: Transform - proto: ProximitySensor entities: - - uid: 22636 + - uid: 22790 components: - pos: 59.550594,-52.45363 parent: 2 type: Transform - proto: Rack entities: - - uid: 22637 + - uid: 22791 components: - pos: 26.5,29.5 parent: 2 type: Transform - - uid: 22638 + - uid: 22792 components: - pos: 29.5,-13.5 parent: 2 type: Transform - - uid: 22639 + - uid: 22793 components: - pos: 13.5,-72.5 parent: 2 type: Transform - - uid: 22640 + - uid: 22794 components: - pos: 10.5,-16.5 parent: 2 type: Transform - - uid: 22641 + - uid: 22795 components: - pos: 31.5,-11.5 parent: 2 type: Transform - - uid: 22642 + - uid: 22796 components: - pos: 22.5,-54.5 parent: 2 type: Transform - - uid: 22643 + - uid: 22797 components: - pos: 33.5,-11.5 parent: 2 type: Transform - - uid: 22644 + - uid: 22798 components: - pos: 33.5,-13.5 parent: 2 type: Transform - - uid: 22645 + - uid: 22799 components: - pos: 31.5,-13.5 parent: 2 type: Transform - - uid: 22646 + - uid: 22800 components: - pos: 29.5,-11.5 parent: 2 type: Transform - - uid: 22647 + - uid: 22801 components: - pos: -6.5,-68.5 parent: 2 type: Transform - - uid: 22648 + - uid: 22802 components: - pos: 4.5,-69.5 parent: 2 type: Transform - - uid: 22649 + - uid: 22803 components: - pos: 6.5,-69.5 parent: 2 type: Transform - - uid: 22650 + - uid: 22804 components: - rot: 3.141592653589793 rad pos: -28.5,-19.5 parent: 2 type: Transform - - uid: 22651 + - uid: 22805 components: - pos: -16.5,-15.5 parent: 2 type: Transform - - uid: 22652 + - uid: 22806 components: - pos: 36.5,-50.5 parent: 2 type: Transform - - uid: 22653 + - uid: 22807 components: - pos: 37.5,-50.5 parent: 2 type: Transform - - uid: 22654 + - uid: 22808 components: - pos: 42.5,-7.5 parent: 2 type: Transform - - uid: 22655 + - uid: 22809 components: - pos: -8.5,-10.5 parent: 2 type: Transform - - uid: 22656 + - uid: 22810 components: - pos: -16.5,-16.5 parent: 2 type: Transform - - uid: 22657 + - uid: 22811 components: - pos: -9.5,-10.5 parent: 2 type: Transform - - uid: 22658 + - uid: 22812 components: - pos: -11.5,-8.5 parent: 2 type: Transform - - uid: 22659 + - uid: 22813 components: - pos: -50.5,-29.5 parent: 2 type: Transform - - uid: 22660 + - uid: 22814 components: - pos: -50.5,-28.5 parent: 2 type: Transform - - uid: 22661 + - uid: 22815 components: - pos: -50.5,-27.5 parent: 2 type: Transform - - uid: 22662 + - uid: 22816 components: - pos: -45.5,-19.5 parent: 2 type: Transform - - uid: 22663 + - uid: 22817 components: - pos: -47.5,-19.5 parent: 2 type: Transform - - uid: 22664 + - uid: 22818 components: - pos: -55.5,-6.5 parent: 2 type: Transform - - uid: 22665 + - uid: 22819 components: - pos: -31.5,-56.5 parent: 2 type: Transform - - uid: 22666 + - uid: 22820 components: - pos: -56.5,-70.5 parent: 2 type: Transform - - uid: 22667 + - uid: 22821 components: - pos: -38.5,-67.5 parent: 2 type: Transform - - uid: 22668 + - uid: 22822 components: - pos: -32.5,-62.5 parent: 2 type: Transform - - uid: 22669 + - uid: 22823 components: - pos: -31.5,-62.5 parent: 2 type: Transform - - uid: 22670 + - uid: 22824 components: - pos: -46.5,-30.5 parent: 2 type: Transform - - uid: 22671 + - uid: 22825 components: - pos: -44.5,-25.5 parent: 2 type: Transform - - uid: 22672 + - uid: 22826 components: - pos: -42.5,-24.5 parent: 2 type: Transform - - uid: 22673 + - uid: 22827 components: - pos: 35.5,-12.5 parent: 2 type: Transform - - uid: 22674 + - uid: 22828 components: - pos: -31.5,-43.5 parent: 2 type: Transform - - uid: 22675 + - uid: 22829 components: - pos: -29.5,-46.5 parent: 2 type: Transform - - uid: 22676 + - uid: 22830 components: - pos: -28.5,-28.5 parent: 2 type: Transform - - uid: 22677 + - uid: 22831 components: - pos: -23.5,-28.5 parent: 2 type: Transform - - uid: 22678 + - uid: 22832 components: - pos: -34.5,-25.5 parent: 2 type: Transform - - uid: 22679 + - uid: 22833 components: - pos: -42.5,-20.5 parent: 2 type: Transform - - uid: 22680 + - uid: 22834 components: - pos: -42.5,-21.5 parent: 2 type: Transform - - uid: 22681 + - uid: 22835 components: - pos: 4.5,-17.5 parent: 2 type: Transform - - uid: 22682 + - uid: 22836 components: - pos: 3.5,-17.5 parent: 2 type: Transform - - uid: 22683 + - uid: 22837 components: - pos: -44.5,16.5 parent: 2 type: Transform - - uid: 22684 + - uid: 22838 components: - pos: -3.5,21.5 parent: 2 type: Transform - - uid: 22685 + - uid: 22839 components: - pos: 0.5,23.5 parent: 2 type: Transform - - uid: 22686 + - uid: 22840 components: - pos: -3.5,34.5 parent: 2 type: Transform - - uid: 22687 + - uid: 22841 components: - pos: 15.5,34.5 parent: 2 type: Transform - - uid: 22688 + - uid: 22842 components: - pos: -12.5,17.5 parent: 2 type: Transform - - uid: 22689 + - uid: 22843 components: - pos: -49.5,15.5 parent: 2 type: Transform - - uid: 22690 + - uid: 22844 components: - pos: -49.5,14.5 parent: 2 type: Transform - - uid: 22691 + - uid: 22845 components: - pos: -44.5,15.5 parent: 2 type: Transform - - uid: 22692 + - uid: 22846 components: - pos: -47.5,-3.5 parent: 2 type: Transform - - uid: 22693 + - uid: 22847 components: - pos: -52.5,2.5 parent: 2 type: Transform - - uid: 22694 + - uid: 22848 components: - pos: -56.5,-4.5 parent: 2 type: Transform - - uid: 22695 + - uid: 22849 components: - pos: 18.5,39.5 parent: 2 type: Transform - - uid: 22696 + - uid: 22850 components: - pos: -24.5,-67.5 parent: 2 type: Transform - - uid: 22697 + - uid: 22851 components: - pos: -23.5,-67.5 parent: 2 type: Transform - - uid: 22698 + - uid: 22852 components: - pos: 9.5,-16.5 parent: 2 type: Transform - - uid: 22699 + - uid: 22853 components: - pos: 39.5,-30.5 parent: 2 type: Transform - - uid: 22700 + - uid: 22854 components: - pos: 59.5,2.5 parent: 2 type: Transform - - uid: 22701 + - uid: 22855 components: - pos: -34.5,-72.5 parent: 2 type: Transform - - uid: 22702 + - uid: 22856 components: - pos: -33.5,-72.5 parent: 2 type: Transform - - uid: 22703 + - uid: 22857 components: - pos: -41.5,37.5 parent: 2 type: Transform - - uid: 22704 + - uid: 22858 components: - pos: -36.5,35.5 parent: 2 type: Transform - - uid: 22705 + - uid: 22859 components: - pos: -26.5,39.5 parent: 2 type: Transform - - uid: 22706 + - uid: 22860 components: - pos: -26.5,30.5 parent: 2 type: Transform - - uid: 22707 + - uid: 22861 components: - pos: -8.5,-82.5 parent: 2 type: Transform - - uid: 22708 + - uid: 22862 components: - pos: -14.5,-82.5 parent: 2 type: Transform - - uid: 22709 + - uid: 22863 components: - pos: -4.5,-82.5 parent: 2 type: Transform - - uid: 22710 + - uid: 22864 components: - pos: -6.5,-88.5 parent: 2 type: Transform - - uid: 22711 + - uid: 22865 components: - pos: -19.5,53.5 parent: 2 type: Transform - - uid: 22712 + - uid: 22866 components: - pos: 42.5,-32.5 parent: 2 type: Transform - - uid: 22713 + - uid: 22867 components: - pos: 54.5,-63.5 parent: 2 type: Transform - - uid: 22714 + - uid: 22868 components: - pos: 54.5,-64.5 parent: 2 type: Transform - - uid: 22715 + - uid: 22869 components: - pos: 54.5,-30.5 parent: 2 type: Transform - - uid: 22716 + - uid: 22870 components: - pos: 37.5,-10.5 parent: 2 type: Transform - - uid: 22717 + - uid: 22871 components: - pos: -8.5,-17.5 parent: 2 type: Transform - - uid: 22718 + - uid: 22872 components: - rot: 1.5707963267948966 rad pos: -28.5,-20.5 parent: 2 type: Transform - - uid: 22719 + - uid: 22873 components: - pos: -48.5,16.5 parent: 2 type: Transform - - uid: 22720 + - uid: 22874 components: - pos: -13.5,-13.5 parent: 2 type: Transform - - uid: 22721 + - uid: 22875 components: - pos: -13.5,-12.5 parent: 2 type: Transform - - uid: 22722 + - uid: 22876 components: - pos: -20.5,-51.5 parent: 2 type: Transform - - uid: 22723 + - uid: 22877 components: - pos: 44.5,-8.5 parent: 2 type: Transform - - uid: 22724 + - uid: 22878 components: - pos: 7.5,-80.5 parent: 2 type: Transform - - uid: 22725 + - uid: 22879 components: - pos: 31.5,27.5 parent: 2 type: Transform - - uid: 22726 + - uid: 22880 components: - pos: 27.5,27.5 parent: 2 type: Transform - - uid: 22727 + - uid: 22881 components: - pos: 6.5,-13.5 parent: 2 type: Transform - proto: RadiationCollector entities: - - uid: 22728 + - uid: 22882 components: - pos: -63.5,-20.5 parent: 2 type: Transform - - uid: 22729 + - uid: 22883 components: - pos: -64.5,-20.5 parent: 2 type: Transform - - uid: 22730 + - uid: 22884 components: - pos: -65.5,-20.5 parent: 2 type: Transform - - uid: 22731 + - uid: 22885 components: - pos: -67.5,-20.5 parent: 2 type: Transform - - uid: 22732 + - uid: 22886 components: - pos: -68.5,-20.5 parent: 2 type: Transform - - uid: 22733 + - uid: 22887 components: - pos: -69.5,-20.5 parent: 2 type: Transform - - uid: 22734 + - uid: 22888 components: - pos: -63.5,-6.5 parent: 2 type: Transform - - uid: 22735 + - uid: 22889 components: - pos: -64.5,-6.5 parent: 2 type: Transform - - uid: 22736 + - uid: 22890 components: - pos: -65.5,-6.5 parent: 2 type: Transform - - uid: 22737 + - uid: 22891 components: - pos: -69.5,-6.5 parent: 2 type: Transform - - uid: 22738 + - uid: 22892 components: - pos: -68.5,-6.5 parent: 2 type: Transform - - uid: 22739 + - uid: 22893 components: - pos: -67.5,-6.5 parent: 2 type: Transform - proto: RadioHandheld entities: - - uid: 22740 + - uid: 22894 components: - pos: -21.414516,35.539524 parent: 2 type: Transform - proto: Railing entities: - - uid: 22741 + - uid: 22895 components: - rot: -1.5707963267948966 rad pos: -8.5,18.5 parent: 2 type: Transform - - uid: 22742 + - uid: 22896 components: - pos: 24.5,-1.5 parent: 2 type: Transform - - uid: 22743 + - uid: 22897 components: - pos: 25.5,-1.5 parent: 2 type: Transform - - uid: 22744 + - uid: 22898 components: - rot: -1.5707963267948966 rad pos: 21.5,1.5 parent: 2 type: Transform - - uid: 22745 + - uid: 22899 components: - rot: 3.141592653589793 rad pos: 24.5,-19.5 parent: 2 type: Transform - - uid: 22746 + - uid: 22900 components: - rot: -1.5707963267948966 rad pos: 21.5,0.5 parent: 2 type: Transform - - uid: 22747 + - uid: 22901 components: - rot: 3.141592653589793 rad pos: 25.5,3.5 parent: 2 type: Transform - - uid: 22748 + - uid: 22902 components: - rot: 3.141592653589793 rad pos: 11.5,1.5 parent: 2 type: Transform - - uid: 22749 + - uid: 22903 components: - pos: 22.5,-1.5 parent: 2 type: Transform - - uid: 22750 + - uid: 22904 components: - pos: 10.5,0.5 parent: 2 type: Transform - - uid: 22751 + - uid: 22905 components: - rot: 1.5707963267948966 rad pos: 26.5,2.5 parent: 2 type: Transform - - uid: 22752 + - uid: 22906 components: - rot: 3.141592653589793 rad pos: 24.5,3.5 parent: 2 type: Transform - - uid: 22753 + - uid: 22907 components: - pos: 6.5,0.5 parent: 2 type: Transform - - uid: 22754 + - uid: 22908 components: - rot: 3.141592653589793 rad pos: 22.5,3.5 parent: 2 type: Transform - - uid: 22755 + - uid: 22909 components: - rot: 3.141592653589793 rad pos: 10.5,1.5 parent: 2 type: Transform - - uid: 22756 + - uid: 22910 components: - rot: 3.141592653589793 rad pos: 26.5,-19.5 parent: 2 type: Transform - - uid: 22757 + - uid: 22911 components: - rot: 1.5707963267948966 rad pos: 26.5,-0.5 parent: 2 type: Transform - - uid: 22758 + - uid: 22912 components: - rot: 3.141592653589793 rad pos: 25.5,-19.5 parent: 2 type: Transform - - uid: 22759 + - uid: 22913 components: - rot: 3.141592653589793 rad pos: 23.5,-19.5 parent: 2 type: Transform - - uid: 22760 + - uid: 22914 components: - pos: 23.5,-1.5 parent: 2 type: Transform - - uid: 22761 + - uid: 22915 components: - rot: 3.141592653589793 rad pos: 28.5,-19.5 parent: 2 type: Transform - - uid: 22762 + - uid: 22916 components: - rot: -1.5707963267948966 rad pos: 21.5,-0.5 parent: 2 type: Transform - - uid: 22763 + - uid: 22917 components: - rot: -1.5707963267948966 rad pos: 21.5,2.5 parent: 2 type: Transform - - uid: 22764 + - uid: 22918 components: - pos: 11.5,0.5 parent: 2 type: Transform - - uid: 22765 + - uid: 22919 components: - rot: 3.141592653589793 rad pos: 6.5,1.5 parent: 2 type: Transform - - uid: 22766 + - uid: 22920 components: - rot: 3.141592653589793 rad pos: 7.5,1.5 parent: 2 type: Transform - - uid: 22767 + - uid: 22921 components: - pos: 7.5,0.5 parent: 2 type: Transform - - uid: 22768 + - uid: 22922 components: - rot: 3.141592653589793 rad pos: 23.5,3.5 parent: 2 type: Transform - - uid: 22769 + - uid: 22923 components: - rot: 3.141592653589793 rad pos: 27.5,-19.5 parent: 2 type: Transform - - uid: 22770 + - uid: 22924 components: - rot: 1.5707963267948966 rad pos: 26.5,1.5 parent: 2 type: Transform - - uid: 22771 + - uid: 22925 components: - rot: 3.141592653589793 rad pos: 22.5,-19.5 parent: 2 type: Transform - - uid: 22772 + - uid: 22926 components: - rot: 3.141592653589793 rad pos: 54.5,19.5 parent: 2 type: Transform - - uid: 22773 + - uid: 22927 components: - rot: 3.141592653589793 rad pos: 53.5,19.5 parent: 2 type: Transform - - uid: 22774 + - uid: 22928 components: - rot: 3.141592653589793 rad pos: 52.5,19.5 parent: 2 type: Transform - - uid: 22775 + - uid: 22929 components: - rot: -1.5707963267948966 rad pos: 51.5,18.5 parent: 2 type: Transform - - uid: 22776 + - uid: 22930 components: - rot: -1.5707963267948966 rad pos: 51.5,17.5 parent: 2 type: Transform - - uid: 22777 + - uid: 22931 components: - rot: -1.5707963267948966 rad pos: 51.5,15.5 parent: 2 type: Transform - - uid: 22778 + - uid: 22932 components: - rot: 1.5707963267948966 rad pos: 55.5,18.5 parent: 2 type: Transform - - uid: 22779 + - uid: 22933 components: - rot: 1.5707963267948966 rad pos: 55.5,17.5 parent: 2 type: Transform - - uid: 22780 + - uid: 22934 components: - rot: 1.5707963267948966 rad pos: 55.5,15.5 parent: 2 type: Transform - - uid: 22781 + - uid: 22935 components: - rot: 3.141592653589793 rad pos: 58.5,8.5 parent: 2 type: Transform - - uid: 22782 + - uid: 22936 components: - rot: 3.141592653589793 rad pos: 56.5,8.5 parent: 2 type: Transform - - uid: 22783 + - uid: 22937 components: - rot: -1.5707963267948966 rad pos: 55.5,6.5 parent: 2 type: Transform - - uid: 22784 + - uid: 22938 components: - rot: 1.5707963267948966 rad pos: 59.5,7.5 parent: 2 type: Transform - - uid: 22785 + - uid: 22939 components: - rot: 1.5707963267948966 rad pos: 59.5,6.5 parent: 2 type: Transform - - uid: 22786 + - uid: 22940 components: - pos: 58.5,5.5 parent: 2 type: Transform - - uid: 22787 + - uid: 22941 components: - pos: 56.5,5.5 parent: 2 type: Transform - - uid: 22788 + - uid: 22942 components: - rot: 3.141592653589793 rad pos: 57.5,8.5 parent: 2 type: Transform - - uid: 22789 + - uid: 22943 components: - rot: 1.5707963267948966 rad pos: 61.5,-8.5 parent: 2 type: Transform - - uid: 22790 + - uid: 22944 components: - pos: 54.5,-9.5 parent: 2 type: Transform - - uid: 22791 + - uid: 22945 components: - rot: 3.141592653589793 rad pos: 54.5,-7.5 parent: 2 type: Transform - - uid: 22792 + - uid: 22946 components: - rot: 1.5707963267948966 rad pos: 50.5,-5.5 parent: 2 type: Transform - - uid: 22793 + - uid: 22947 components: - rot: 1.5707963267948966 rad pos: 50.5,-11.5 parent: 2 type: Transform - - uid: 22794 + - uid: 22948 components: - rot: -1.5707963267948966 rad pos: 53.5,-8.5 parent: 2 type: Transform - - uid: 22795 + - uid: 22949 components: - rot: 1.5707963267948966 rad pos: 46.5,-86.5 parent: 2 type: Transform - - uid: 22796 + - uid: 22950 components: - rot: -1.5707963267948966 rad pos: 32.5,-84.5 parent: 2 type: Transform - - uid: 22797 + - uid: 22951 components: - rot: -1.5707963267948966 rad pos: 32.5,-85.5 parent: 2 type: Transform - - uid: 22798 + - uid: 22952 components: - rot: 1.5707963267948966 rad pos: 46.5,-87.5 parent: 2 type: Transform - - uid: 22799 + - uid: 22953 components: - rot: -1.5707963267948966 rad pos: 32.5,-86.5 parent: 2 type: Transform - - uid: 22800 + - uid: 22954 components: - rot: 1.5707963267948966 rad pos: 46.5,-84.5 parent: 2 type: Transform - - uid: 22801 + - uid: 22955 components: - rot: -1.5707963267948966 rad pos: 32.5,-87.5 parent: 2 type: Transform - - uid: 22802 + - uid: 22956 components: - rot: 3.141592653589793 rad pos: -39.5,-29.5 parent: 2 type: Transform - - uid: 22803 + - uid: 22957 components: - rot: 3.141592653589793 rad pos: -38.5,-29.5 parent: 2 type: Transform - - uid: 22804 + - uid: 22958 components: - rot: -1.5707963267948966 rad pos: 66.5,-8.5 parent: 2 type: Transform - - uid: 22805 + - uid: 22959 components: - rot: -1.5707963267948966 rad pos: 66.5,-7.5 parent: 2 type: Transform - - uid: 22806 + - uid: 22960 components: - rot: -1.5707963267948966 rad pos: 66.5,-9.5 parent: 2 type: Transform - - uid: 22807 + - uid: 22961 components: - rot: 3.141592653589793 rad pos: -40.5,38.5 parent: 2 type: Transform - - uid: 22808 + - uid: 22962 components: - rot: 3.141592653589793 rad pos: -43.5,38.5 parent: 2 type: Transform - - uid: 22809 + - uid: 22963 components: - pos: 60.5,-9.5 parent: 2 type: Transform - - uid: 22810 + - uid: 22964 components: - rot: 3.141592653589793 rad pos: 60.5,-7.5 parent: 2 type: Transform - - uid: 22811 + - uid: 22965 components: - rot: 1.5707963267948966 rad pos: -39.5,3.5 parent: 2 type: Transform - - uid: 22812 + - uid: 22966 components: - rot: 1.5707963267948966 rad pos: -39.5,4.5 parent: 2 type: Transform - - uid: 22813 + - uid: 22967 components: - pos: 31.5,-40.5 parent: 2 type: Transform - - uid: 22814 + - uid: 22968 components: - rot: 1.5707963267948966 rad pos: 32.5,-39.5 parent: 2 type: Transform - - uid: 22815 + - uid: 22969 components: - rot: 1.5707963267948966 rad pos: -39.5,5.5 parent: 2 type: Transform - - uid: 22816 + - uid: 22970 components: - rot: 1.5707963267948966 rad pos: -39.5,6.5 parent: 2 type: Transform - - uid: 22817 + - uid: 22971 components: - rot: -1.5707963267948966 rad pos: -36.5,6.5 parent: 2 type: Transform - - uid: 22818 + - uid: 22972 components: - rot: -1.5707963267948966 rad pos: -36.5,5.5 parent: 2 type: Transform - - uid: 22819 + - uid: 22973 components: - rot: -1.5707963267948966 rad pos: -36.5,4.5 parent: 2 type: Transform - - uid: 22820 + - uid: 22974 components: - rot: -1.5707963267948966 rad pos: -36.5,3.5 parent: 2 type: Transform - - uid: 22821 + - uid: 22975 components: - rot: 1.5707963267948966 rad pos: 46.5,-85.5 parent: 2 type: Transform - - uid: 22822 + - uid: 22976 components: - rot: 1.5707963267948966 rad pos: 13.5,-84.5 parent: 2 type: Transform - - uid: 22823 + - uid: 22977 components: - rot: 1.5707963267948966 rad pos: 13.5,-83.5 parent: 2 type: Transform - - uid: 22824 + - uid: 22978 components: - rot: 1.5707963267948966 rad pos: 13.5,-82.5 parent: 2 type: Transform - - uid: 22825 + - uid: 22979 components: - rot: -1.5707963267948966 rad pos: 17.5,-82.5 parent: 2 type: Transform - - uid: 22826 + - uid: 22980 components: - rot: -1.5707963267948966 rad pos: 17.5,-83.5 parent: 2 type: Transform - - uid: 22827 + - uid: 22981 components: - rot: -1.5707963267948966 rad pos: 17.5,-84.5 parent: 2 type: Transform - - uid: 22828 + - uid: 22982 components: - rot: 3.141592653589793 rad pos: 16.5,-85.5 parent: 2 type: Transform - - uid: 22829 + - uid: 22983 components: - rot: 3.141592653589793 rad pos: 15.5,-85.5 parent: 2 type: Transform - - uid: 22830 + - uid: 22984 components: - rot: 3.141592653589793 rad pos: 14.5,-85.5 parent: 2 type: Transform - - uid: 22831 + - uid: 22985 components: - pos: 14.5,-81.5 parent: 2 type: Transform - - uid: 22832 + - uid: 22986 components: - pos: 15.5,-81.5 parent: 2 type: Transform - - uid: 22833 + - uid: 22987 components: - pos: 16.5,-81.5 parent: 2 type: Transform - - uid: 22834 + - uid: 22988 components: - - rot: -1.5707963267948966 rad - pos: 67.5,-28.5 + - pos: 69.5,-29.5 parent: 2 type: Transform - missingComponents: - - Damageable - - Destructible - - uid: 22835 + - uid: 22989 components: - rot: -1.5707963267948966 rad - pos: 67.5,-27.5 - parent: 2 - type: Transform - missingComponents: - - Damageable - - Destructible - - uid: 22836 - components: - - pos: 68.5,-29.5 - parent: 2 - type: Transform - missingComponents: - - Damageable - - Destructible - - uid: 22837 - components: - - pos: 69.5,-29.5 + pos: 67.5,-28.5 parent: 2 type: Transform - missingComponents: - - Damageable - - Destructible - - uid: 22838 + - uid: 22990 components: - rot: 1.5707963267948966 rad pos: -6.5,18.5 parent: 2 type: Transform - - uid: 22839 + - uid: 22991 components: - rot: 1.5707963267948966 rad pos: -3.5,18.5 parent: 2 type: Transform - - uid: 22840 + - uid: 22992 components: - rot: -1.5707963267948966 rad pos: -5.5,18.5 parent: 2 type: Transform - - uid: 22841 + - uid: 22993 components: - rot: 3.141592653589793 rad pos: -7.5,19.5 parent: 2 type: Transform - - uid: 22842 + - uid: 22994 components: - rot: 3.141592653589793 rad pos: -4.5,19.5 parent: 2 type: Transform + - uid: 22995 + components: + - rot: -1.5707963267948966 rad + pos: 67.5,-27.5 + parent: 2 + type: Transform - proto: RailingCorner entities: - - uid: 22843 + - uid: 22996 + components: + - rot: -1.5707963267948966 rad + pos: 67.5,-29.5 + parent: 2 + type: Transform + - uid: 22997 components: - rot: -1.5707963267948966 rad pos: -5.5,17.5 parent: 2 type: Transform - - uid: 22844 + - uid: 22998 components: - rot: -1.5707963267948966 rad pos: -8.5,17.5 parent: 2 type: Transform - - uid: 22845 + - uid: 22999 components: - rot: 3.141592653589793 rad pos: -8.5,19.5 parent: 2 type: Transform - - uid: 22846 + - uid: 23000 components: - pos: -6.5,17.5 parent: 2 type: Transform - - uid: 22847 + - uid: 23001 components: - rot: 1.5707963267948966 rad pos: 61.5,-7.5 parent: 2 type: Transform - - uid: 22848 + - uid: 23002 components: - rot: -1.5707963267948966 rad pos: 5.5,0.5 parent: 2 type: Transform - - uid: 22849 + - uid: 23003 components: - pos: 26.5,-1.5 parent: 2 type: Transform - - uid: 22850 + - uid: 23004 components: - rot: 1.5707963267948966 rad pos: 26.5,3.5 parent: 2 type: Transform - - uid: 22851 + - uid: 23005 components: - rot: 3.141592653589793 rad pos: 5.5,1.5 parent: 2 type: Transform - - uid: 22852 + - uid: 23006 components: - pos: 12.5,0.5 parent: 2 type: Transform - - uid: 22853 + - uid: 23007 components: - rot: 3.141592653589793 rad pos: 21.5,3.5 parent: 2 type: Transform - - uid: 22854 + - uid: 23008 components: - rot: 1.5707963267948966 rad pos: 12.5,1.5 parent: 2 type: Transform - - uid: 22855 + - uid: 23009 components: - rot: -1.5707963267948966 rad pos: 21.5,-1.5 parent: 2 type: Transform - - uid: 22856 + - uid: 23010 components: - rot: 1.5707963267948966 rad pos: 29.5,-19.5 parent: 2 type: Transform - - uid: 22857 + - uid: 23011 components: - rot: 3.141592653589793 rad pos: 21.5,-19.5 parent: 2 type: Transform - - uid: 22858 + - uid: 23012 components: - pos: 32.5,-40.5 parent: 2 type: Transform - - uid: 22859 + - uid: 23013 components: - rot: 3.141592653589793 rad pos: 51.5,19.5 parent: 2 type: Transform - - uid: 22860 + - uid: 23014 components: - rot: 1.5707963267948966 rad pos: 55.5,19.5 parent: 2 type: Transform - - uid: 22861 + - uid: 23015 components: - pos: 59.5,5.5 parent: 2 type: Transform - - uid: 22862 + - uid: 23016 components: - rot: -1.5707963267948966 rad pos: 55.5,5.5 parent: 2 type: Transform - - uid: 22863 + - uid: 23017 components: - rot: 3.141592653589793 rad pos: 55.5,8.5 parent: 2 type: Transform - - uid: 22864 + - uid: 23018 components: - rot: 1.5707963267948966 rad pos: 59.5,8.5 parent: 2 type: Transform - - uid: 22865 + - uid: 23019 components: - rot: 1.5707963267948966 rad pos: 50.5,-10.5 parent: 2 type: Transform - - uid: 22866 + - uid: 23020 components: - pos: 50.5,-6.5 parent: 2 type: Transform - - uid: 22867 + - uid: 23021 components: - rot: -1.5707963267948966 rad pos: 53.5,-9.5 parent: 2 type: Transform - - uid: 22868 + - uid: 23022 components: - rot: 3.141592653589793 rad pos: 53.5,-7.5 parent: 2 type: Transform - - uid: 22869 + - uid: 23023 components: - pos: 61.5,-9.5 parent: 2 type: Transform - - uid: 22870 - components: - - rot: -1.5707963267948966 rad - pos: 67.5,-29.5 - parent: 2 - type: Transform - missingComponents: - - Damageable - - Destructible - - uid: 22871 + - uid: 23024 components: - pos: -3.5,17.5 parent: 2 type: Transform - - uid: 22872 + - uid: 23025 components: - rot: 1.5707963267948966 rad pos: -6.5,19.5 parent: 2 type: Transform - - uid: 22873 + - uid: 23026 components: - rot: 3.141592653589793 rad pos: -5.5,19.5 parent: 2 type: Transform - - uid: 22874 + - uid: 23027 components: - rot: 1.5707963267948966 rad pos: -3.5,19.5 @@ -150940,24 +151774,24 @@ entities: type: Transform - proto: RailingCornerSmall entities: - - uid: 22875 + - uid: 23028 components: - pos: 17.5,-85.5 parent: 2 type: Transform - - uid: 22876 + - uid: 23029 components: - rot: 3.141592653589793 rad pos: 13.5,-81.5 parent: 2 type: Transform - - uid: 22877 + - uid: 23030 components: - rot: 1.5707963267948966 rad pos: 17.5,-81.5 parent: 2 type: Transform - - uid: 22878 + - uid: 23031 components: - rot: -1.5707963267948966 rad pos: 13.5,-85.5 @@ -150965,650 +151799,650 @@ entities: type: Transform - proto: RandomArcade entities: - - uid: 22879 + - uid: 23032 components: - pos: 44.5,12.5 parent: 2 type: Transform - - uid: 22880 + - uid: 23033 components: - pos: 45.5,12.5 parent: 2 type: Transform - - uid: 22881 + - uid: 23034 components: - pos: 9.5,34.5 parent: 2 type: Transform - - uid: 22882 + - uid: 23035 components: - pos: 7.5,34.5 parent: 2 type: Transform - - uid: 22883 + - uid: 23036 components: - rot: 3.141592653589793 rad pos: 9.5,30.5 parent: 2 type: Transform - - uid: 22884 + - uid: 23037 components: - rot: 3.141592653589793 rad pos: 7.5,30.5 parent: 2 type: Transform - - uid: 22885 + - uid: 23038 components: - pos: 4.5,-32.5 parent: 2 type: Transform - - uid: 22886 + - uid: 23039 components: - pos: 4.5,-30.5 parent: 2 type: Transform - - uid: 22887 + - uid: 23040 components: - pos: 2.5,-30.5 parent: 2 type: Transform - - uid: 22888 + - uid: 23041 components: - pos: 2.5,-32.5 parent: 2 type: Transform - - uid: 22889 + - uid: 23042 components: - pos: 6.5,-30.5 parent: 2 type: Transform - - uid: 22890 + - uid: 23043 components: - pos: 6.5,-32.5 parent: 2 type: Transform - proto: RandomArtifactSpawner entities: - - uid: 22891 + - uid: 23044 components: - pos: 67.5,-37.5 parent: 2 type: Transform - - uid: 22892 + - uid: 23045 components: - pos: -46.5,65.5 parent: 2 type: Transform - - uid: 22893 + - uid: 23046 components: - pos: 71.5,-28.5 parent: 2 type: Transform - proto: RandomArtifactSpawner20 entities: - - uid: 22894 + - uid: 23047 components: - pos: 50.5,51.5 parent: 2 type: Transform - - uid: 22895 + - uid: 23048 components: - pos: -20.5,-99.5 parent: 2 type: Transform - - uid: 22896 + - uid: 23049 components: - pos: 11.5,53.5 parent: 2 type: Transform - - uid: 22897 + - uid: 23050 components: - pos: -51.5,22.5 parent: 2 type: Transform - - uid: 22898 + - uid: 23051 components: - pos: 78.5,-34.5 parent: 2 type: Transform - proto: RandomDrinkBottle entities: - - uid: 22899 + - uid: 23052 components: - pos: 15.5,13.5 parent: 2 type: Transform - proto: RandomDrinkGlass entities: - - uid: 22900 + - uid: 23053 components: - pos: 15.5,11.5 parent: 2 type: Transform - - uid: 22901 + - uid: 23054 components: - pos: 15.5,11.5 parent: 2 type: Transform - - uid: 22902 + - uid: 23055 components: - pos: 18.5,15.5 parent: 2 type: Transform - - uid: 22903 + - uid: 23056 components: - pos: -8.5,1.5 parent: 2 type: Transform - - uid: 22904 + - uid: 23057 components: - pos: 27.5,-35.5 parent: 2 type: Transform - - uid: 22905 + - uid: 23058 components: - pos: 27.5,-37.5 parent: 2 type: Transform - - uid: 22906 + - uid: 23059 components: - pos: 22.5,-38.5 parent: 2 type: Transform - proto: RandomFoodBakedSingle entities: - - uid: 22907 + - uid: 23060 components: - pos: 2.5,0.5 parent: 2 type: Transform - - uid: 22908 + - uid: 23061 components: - pos: -4.5,1.5 parent: 2 type: Transform - - uid: 22909 + - uid: 23062 components: - pos: -8.5,0.5 parent: 2 type: Transform - proto: RandomFoodMeal entities: - - uid: 22910 + - uid: 23063 components: - pos: 25.5,-68.5 parent: 2 type: Transform - proto: RandomFoodSingle entities: - - uid: 22911 + - uid: 23064 components: - pos: 11.5,7.5 parent: 2 type: Transform - - uid: 22912 + - uid: 23065 components: - pos: 67.5,10.5 parent: 2 type: Transform - proto: RandomInstruments entities: - - uid: 22913 + - uid: 23066 components: - pos: -0.5,-8.5 parent: 2 type: Transform - - uid: 22914 + - uid: 23067 components: - pos: 54.5,-28.5 parent: 2 type: Transform - proto: RandomPainting entities: - - uid: 22915 + - uid: 23068 components: - pos: 49.5,48.5 parent: 2 type: Transform - proto: RandomPosterAny entities: - - uid: 22916 + - uid: 23069 components: - pos: -52.5,-61.5 parent: 2 type: Transform - - uid: 22917 + - uid: 23070 components: - pos: -55.5,-57.5 parent: 2 type: Transform - - uid: 22918 + - uid: 23071 components: - pos: -57.5,-57.5 parent: 2 type: Transform - proto: RandomPosterContraband entities: - - uid: 22919 + - uid: 23072 components: - pos: 7.5,-68.5 parent: 2 type: Transform - - uid: 22920 + - uid: 23073 components: - pos: -30.5,-45.5 parent: 2 type: Transform - - uid: 22921 + - uid: 23074 components: - pos: -24.5,-50.5 parent: 2 type: Transform - - uid: 22922 + - uid: 23075 components: - pos: -26.5,-50.5 parent: 2 type: Transform - - uid: 22923 + - uid: 23076 components: - pos: -5.5,-94.5 parent: 2 type: Transform - - uid: 22924 + - uid: 23077 components: - pos: -36.5,-92.5 parent: 2 type: Transform - - uid: 22925 + - uid: 23078 components: - pos: -48.5,-73.5 parent: 2 type: Transform - - uid: 22926 + - uid: 23079 components: - pos: -41.5,-65.5 parent: 2 type: Transform - - uid: 22927 + - uid: 23080 components: - pos: -39.5,-88.5 parent: 2 type: Transform - - uid: 22928 + - uid: 23081 components: - pos: -20.5,-94.5 parent: 2 type: Transform - - uid: 22929 + - uid: 23082 components: - pos: -29.5,-53.5 parent: 2 type: Transform - - uid: 22930 + - uid: 23083 components: - pos: -11.5,-99.5 parent: 2 type: Transform - - uid: 22931 + - uid: 23084 components: - pos: -27.5,-95.5 parent: 2 type: Transform - - uid: 22932 + - uid: 23085 components: - pos: -15.5,14.5 parent: 2 type: Transform - - uid: 22933 + - uid: 23086 components: - pos: -9.5,14.5 parent: 2 type: Transform - - uid: 22934 + - uid: 23087 components: - pos: 11.5,-54.5 parent: 2 type: Transform - - uid: 22935 + - uid: 23088 components: - pos: 15.5,-46.5 parent: 2 type: Transform - - uid: 22936 + - uid: 23089 components: - pos: 11.5,-48.5 parent: 2 type: Transform - - uid: 22937 + - uid: 23090 components: - pos: -24.5,-43.5 parent: 2 type: Transform - - uid: 22938 + - uid: 23091 components: - pos: -25.5,-37.5 parent: 2 type: Transform - - uid: 22939 + - uid: 23092 components: - pos: -13.5,-32.5 parent: 2 type: Transform - - uid: 22940 + - uid: 23093 components: - pos: -15.5,-30.5 parent: 2 type: Transform - - uid: 22941 + - uid: 23094 components: - pos: 16.5,-49.5 parent: 2 type: Transform - - uid: 22942 + - uid: 23095 components: - pos: 11.5,-48.5 parent: 2 type: Transform - - uid: 22943 + - uid: 23096 components: - pos: 12.5,-54.5 parent: 2 type: Transform - - uid: 22944 + - uid: 23097 components: - pos: 13.5,-63.5 parent: 2 type: Transform - - uid: 22945 + - uid: 23098 components: - pos: 41.5,-50.5 parent: 2 type: Transform - - uid: 22946 + - uid: 23099 components: - pos: 37.5,-47.5 parent: 2 type: Transform - - uid: 22947 + - uid: 23100 components: - pos: 61.5,-16.5 parent: 2 type: Transform - - uid: 22948 + - uid: 23101 components: - pos: 55.5,1.5 parent: 2 type: Transform - - uid: 22949 + - uid: 23102 components: - pos: 54.5,30.5 parent: 2 type: Transform - - uid: 22950 + - uid: 23103 components: - pos: 52.5,30.5 parent: 2 type: Transform - - uid: 22951 + - uid: 23104 components: - pos: 59.5,30.5 parent: 2 type: Transform - - uid: 22952 + - uid: 23105 components: - pos: 60.5,27.5 parent: 2 type: Transform - - uid: 22953 + - uid: 23106 components: - pos: 12.5,-13.5 parent: 2 type: Transform - - uid: 22954 + - uid: 23107 components: - pos: 8.5,-13.5 parent: 2 type: Transform - - uid: 22955 + - uid: 23108 components: - pos: -9.5,-94.5 parent: 2 type: Transform - - uid: 22956 + - uid: 23109 components: - pos: -17.5,-95.5 parent: 2 type: Transform - - uid: 22957 + - uid: 23110 components: - pos: -24.5,-94.5 parent: 2 type: Transform - - uid: 22958 + - uid: 23111 components: - pos: -11.5,63.5 parent: 2 type: Transform - - uid: 22959 + - uid: 23112 components: - pos: 53.5,-66.5 parent: 2 type: Transform - - uid: 22960 + - uid: 23113 components: - pos: 6.5,-28.5 parent: 2 type: Transform - - uid: 22961 + - uid: 23114 components: - pos: 1.5,-29.5 parent: 2 type: Transform - - uid: 22962 + - uid: 23115 components: - pos: 52.5,-34.5 parent: 2 type: Transform - - uid: 22963 + - uid: 23116 components: - pos: 59.5,-27.5 parent: 2 type: Transform - - uid: 22964 + - uid: 23117 components: - pos: 44.5,-32.5 parent: 2 type: Transform - - uid: 22965 + - uid: 23118 components: - pos: 69.5,-62.5 parent: 2 type: Transform - - uid: 22966 + - uid: 23119 components: - pos: 58.5,-61.5 parent: 2 type: Transform - - uid: 22967 + - uid: 23120 components: - pos: 57.5,-67.5 parent: 2 type: Transform - - uid: 22968 + - uid: 23121 components: - pos: 48.5,-64.5 parent: 2 type: Transform - - uid: 22969 + - uid: 23122 components: - pos: -29.5,-62.5 parent: 2 type: Transform - - uid: 22970 + - uid: 23123 components: - rot: 3.141592653589793 rad pos: 15.5,-78.5 parent: 2 type: Transform - - uid: 22971 + - uid: 23124 components: - rot: 3.141592653589793 rad pos: 15.5,-88.5 parent: 2 type: Transform - - uid: 22972 + - uid: 23125 components: - pos: 4.5,-72.5 parent: 2 type: Transform - proto: RandomPosterLegit entities: - - uid: 22973 + - uid: 23126 components: - pos: -40.5,-7.5 parent: 2 type: Transform - - uid: 22974 + - uid: 23127 components: - pos: -24.5,14.5 parent: 2 type: Transform - - uid: 22975 + - uid: 23128 components: - pos: -21.5,-40.5 parent: 2 type: Transform - - uid: 22976 + - uid: 23129 components: - rot: 3.141592653589793 rad pos: -19.5,32.5 parent: 2 type: Transform - - uid: 22977 + - uid: 23130 components: - rot: 3.141592653589793 rad pos: -13.5,35.5 parent: 2 type: Transform - - uid: 22978 + - uid: 23131 components: - rot: 3.141592653589793 rad pos: -8.5,47.5 parent: 2 type: Transform - - uid: 22979 + - uid: 23132 components: - rot: 3.141592653589793 rad pos: 23.5,-74.5 parent: 2 type: Transform - - uid: 22980 + - uid: 23133 components: - pos: 50.5,-80.5 parent: 2 type: Transform - - uid: 22981 + - uid: 23134 components: - pos: 49.5,-70.5 parent: 2 type: Transform - - uid: 22982 + - uid: 23135 components: - rot: 3.141592653589793 rad pos: -1.5,55.5 parent: 2 type: Transform - - uid: 22983 + - uid: 23136 components: - rot: 3.141592653589793 rad pos: -7.5,60.5 parent: 2 type: Transform - - uid: 22984 + - uid: 23137 components: - rot: 3.141592653589793 rad pos: -5.5,60.5 parent: 2 type: Transform - - uid: 22985 + - uid: 23138 components: - rot: 3.141592653589793 rad pos: -14.5,58.5 parent: 2 type: Transform - - uid: 22986 + - uid: 23139 components: - rot: 3.141592653589793 rad pos: -20.5,57.5 parent: 2 type: Transform - - uid: 22987 + - uid: 23140 components: - rot: 3.141592653589793 rad pos: -23.5,60.5 parent: 2 type: Transform - - uid: 22988 + - uid: 23141 components: - rot: 3.141592653589793 rad pos: -23.5,67.5 parent: 2 type: Transform - - uid: 22989 + - uid: 23142 components: - rot: 3.141592653589793 rad pos: -11.5,65.5 parent: 2 type: Transform - - uid: 22990 + - uid: 23143 components: - pos: 2.5,-28.5 parent: 2 type: Transform - - uid: 22991 + - uid: 23144 components: - pos: 32.5,-91.5 parent: 2 type: Transform - - uid: 22992 + - uid: 23145 components: - pos: 66.5,-62.5 parent: 2 type: Transform - - uid: 22993 + - uid: 23146 components: - pos: 34.5,-57.5 parent: 2 type: Transform - - uid: 22994 + - uid: 23147 components: - pos: 41.5,-65.5 parent: 2 type: Transform - - uid: 22995 + - uid: 23148 components: - pos: -44.5,12.5 parent: 2 type: Transform - - uid: 22996 + - uid: 23149 components: - pos: 28.5,-79.5 parent: 2 type: Transform - - uid: 22997 + - uid: 23150 components: - rot: 3.141592653589793 rad pos: 31.5,-70.5 parent: 2 type: Transform - - uid: 22998 + - uid: 23151 components: - pos: 5.5,-75.5 parent: 2 type: Transform - proto: RandomSnacks entities: - - uid: 22999 + - uid: 23152 components: - rot: -1.5707963267948966 rad pos: 37.5,-50.5 @@ -151616,416 +152450,416 @@ entities: type: Transform - proto: RandomSoap entities: - - uid: 23000 + - uid: 23153 components: - pos: -6.5,-68.5 parent: 2 type: Transform - - uid: 23001 + - uid: 23154 components: - pos: -50.5,62.5 parent: 2 type: Transform - - uid: 23002 + - uid: 23155 components: - pos: -56.5,-62.5 parent: 2 type: Transform - proto: RandomSpawner entities: - - uid: 23003 + - uid: 23156 components: - pos: 34.5,15.5 parent: 2 type: Transform - - uid: 23004 + - uid: 23157 components: - pos: 16.5,-65.5 parent: 2 type: Transform - - uid: 23005 + - uid: 23158 components: - pos: -5.5,-26.5 parent: 2 type: Transform - - uid: 23006 + - uid: 23159 components: - pos: 25.5,7.5 parent: 2 type: Transform - - uid: 23007 + - uid: 23160 components: - pos: -6.5,-74.5 parent: 2 type: Transform - - uid: 23008 + - uid: 23161 components: - pos: 35.5,-72.5 parent: 2 type: Transform - - uid: 23009 + - uid: 23162 components: - pos: 22.5,17.5 parent: 2 type: Transform - - uid: 23010 + - uid: 23163 components: - pos: 5.5,13.5 parent: 2 type: Transform - - uid: 23011 + - uid: 23164 components: - pos: 6.5,15.5 parent: 2 type: Transform - - uid: 23012 + - uid: 23165 components: - pos: 17.5,0.5 parent: 2 type: Transform - - uid: 23013 + - uid: 23166 components: - pos: 33.5,0.5 parent: 2 type: Transform - - uid: 23014 + - uid: 23167 components: - pos: 32.5,-2.5 parent: 2 type: Transform - - uid: 23015 + - uid: 23168 components: - pos: 26.5,-11.5 parent: 2 type: Transform - - uid: 23016 + - uid: 23169 components: - pos: -5.5,-32.5 parent: 2 type: Transform - - uid: 23017 + - uid: 23170 components: - pos: -2.5,-46.5 parent: 2 type: Transform - - uid: 23018 + - uid: 23171 components: - pos: 35.5,-17.5 parent: 2 type: Transform - - uid: 23019 + - uid: 23172 components: - pos: 49.5,32.5 parent: 2 type: Transform - - uid: 23020 + - uid: 23173 components: - pos: 49.5,33.5 parent: 2 type: Transform - - uid: 23021 + - uid: 23174 components: - pos: 50.5,32.5 parent: 2 type: Transform - - uid: 23022 + - uid: 23175 components: - pos: 48.5,32.5 parent: 2 type: Transform - - uid: 23023 + - uid: 23176 components: - pos: 50.5,33.5 parent: 2 type: Transform - - uid: 23024 + - uid: 23177 components: - pos: 54.5,-12.5 parent: 2 type: Transform - - uid: 23025 + - uid: 23178 components: - pos: 52.5,-6.5 parent: 2 type: Transform - - uid: 23026 + - uid: 23179 components: - pos: 52.5,0.5 parent: 2 type: Transform - - uid: 23027 + - uid: 23180 components: - pos: 50.5,-45.5 parent: 2 type: Transform - - uid: 23028 + - uid: 23181 components: - pos: 42.5,-49.5 parent: 2 type: Transform - - uid: 23029 + - uid: 23182 components: - pos: -4.5,-0.5 parent: 2 type: Transform - - uid: 23030 + - uid: 23183 components: - pos: 7.5,2.5 parent: 2 type: Transform - - uid: 23031 + - uid: 23184 components: - pos: 17.5,-41.5 parent: 2 type: Transform - - uid: 23032 + - uid: 23185 components: - pos: -7.5,-53.5 parent: 2 type: Transform - - uid: 23033 + - uid: 23186 components: - rot: 3.141592653589793 rad pos: 29.5,-72.5 parent: 2 type: Transform - - uid: 23034 + - uid: 23187 components: - pos: -37.5,-6.5 parent: 2 type: Transform - - uid: 23035 + - uid: 23188 components: - pos: -25.5,-67.5 parent: 2 type: Transform - - uid: 23036 + - uid: 23189 components: - pos: -24.5,-53.5 parent: 2 type: Transform - - uid: 23037 + - uid: 23190 components: - pos: -26.5,-46.5 parent: 2 type: Transform - - uid: 23038 + - uid: 23191 components: - pos: -20.5,-29.5 parent: 2 type: Transform - - uid: 23039 + - uid: 23192 components: - pos: -32.5,-23.5 parent: 2 type: Transform - - uid: 23040 + - uid: 23193 components: - pos: -23.5,-13.5 parent: 2 type: Transform - - uid: 23041 + - uid: 23194 components: - pos: -53.5,-18.5 parent: 2 type: Transform - - uid: 23042 + - uid: 23195 components: - pos: -32.5,-34.5 parent: 2 type: Transform - - uid: 23043 + - uid: 23196 components: - pos: -33.5,-46.5 parent: 2 type: Transform - - uid: 23044 + - uid: 23197 components: - pos: -37.5,-76.5 parent: 2 type: Transform - - uid: 23045 + - uid: 23198 components: - pos: -46.5,-78.5 parent: 2 type: Transform - - uid: 23046 + - uid: 23199 components: - pos: -45.5,-73.5 parent: 2 type: Transform - - uid: 23047 + - uid: 23200 components: - pos: -52.5,-74.5 parent: 2 type: Transform - - uid: 23048 + - uid: 23201 components: - pos: -45.5,-28.5 parent: 2 type: Transform - - uid: 23049 + - uid: 23202 components: - pos: -57.5,-33.5 parent: 2 type: Transform - - uid: 23050 + - uid: 23203 components: - pos: -31.5,-51.5 parent: 2 type: Transform - - uid: 23051 + - uid: 23204 components: - rot: 3.141592653589793 rad pos: -47.5,11.5 parent: 2 type: Transform - - uid: 23052 + - uid: 23205 components: - rot: 3.141592653589793 rad pos: -45.5,6.5 parent: 2 type: Transform - - uid: 23053 + - uid: 23206 components: - rot: 3.141592653589793 rad pos: -46.5,3.5 parent: 2 type: Transform - - uid: 23054 + - uid: 23207 components: - rot: 3.141592653589793 rad pos: -34.5,0.5 parent: 2 type: Transform - - uid: 23055 + - uid: 23208 components: - rot: 3.141592653589793 rad pos: 25.5,-71.5 parent: 2 type: Transform - - uid: 23056 + - uid: 23209 components: - rot: 3.141592653589793 rad pos: 17.5,-84.5 parent: 2 type: Transform - - uid: 23057 + - uid: 23210 components: - pos: 48.5,33.5 parent: 2 type: Transform - - uid: 23058 + - uid: 23211 components: - pos: 22.5,7.5 parent: 2 type: Transform - - uid: 23059 + - uid: 23212 components: - pos: 26.5,-18.5 parent: 2 type: Transform - - uid: 23060 + - uid: 23213 components: - rot: -1.5707963267948966 rad pos: 14.5,-27.5 parent: 2 type: Transform - - uid: 23061 + - uid: 23214 components: - pos: -15.5,36.5 parent: 2 type: Transform - - uid: 23062 + - uid: 23215 components: - pos: -19.5,26.5 parent: 2 type: Transform - - uid: 23063 + - uid: 23216 components: - pos: -17.5,44.5 parent: 2 type: Transform - - uid: 23064 + - uid: 23217 components: - pos: -14.5,45.5 parent: 2 type: Transform - - uid: 23065 + - uid: 23218 components: - pos: 0.5,32.5 parent: 2 type: Transform - - uid: 23066 + - uid: 23219 components: - pos: 53.5,36.5 parent: 2 type: Transform - - uid: 23067 + - uid: 23220 components: - pos: 65.5,22.5 parent: 2 type: Transform - - uid: 23068 + - uid: 23221 components: - pos: -23.5,-98.5 parent: 2 type: Transform - - uid: 23069 + - uid: 23222 components: - pos: -33.5,-97.5 parent: 2 type: Transform - - uid: 23070 + - uid: 23223 components: - pos: -41.5,-89.5 parent: 2 type: Transform - - uid: 23071 + - uid: 23224 components: - pos: -43.5,-91.5 parent: 2 type: Transform - - uid: 23072 + - uid: 23225 components: - pos: -10.5,-97.5 parent: 2 type: Transform - - uid: 23073 + - uid: 23226 components: - pos: -8.5,-85.5 parent: 2 type: Transform - - uid: 23074 + - uid: 23227 components: - rot: 3.141592653589793 rad pos: 29.5,-81.5 parent: 2 type: Transform - - uid: 23075 + - uid: 23228 components: - rot: 3.141592653589793 rad pos: 30.5,-84.5 parent: 2 type: Transform - - uid: 23076 + - uid: 23229 components: - rot: 3.141592653589793 rad pos: 49.5,-88.5 parent: 2 type: Transform - - uid: 23077 + - uid: 23230 components: - rot: 3.141592653589793 rad pos: 48.5,-80.5 parent: 2 type: Transform - - uid: 23078 + - uid: 23231 components: - pos: 13.5,7.5 parent: 2 type: Transform - - uid: 23079 + - uid: 23232 components: - rot: 3.141592653589793 rad pos: 49.5,-73.5 @@ -152033,3472 +152867,3826 @@ entities: type: Transform - proto: RCD entities: - - uid: 23080 + - uid: 23233 components: - pos: -35.581818,-15.369191 parent: 2 type: Transform - proto: RCDAmmo entities: - - uid: 23081 + - uid: 23234 components: - pos: -35.753693,-15.681691 parent: 2 type: Transform - proto: ReagentContainerFlour entities: - - uid: 23082 + - uid: 23235 components: - pos: 2.337051,6.9047713 parent: 2 type: Transform - - uid: 23083 + - uid: 23236 components: - pos: 2.696426,6.7797713 parent: 2 type: Transform - - uid: 23084 + - uid: 23237 components: - pos: 2.399551,6.5610213 parent: 2 type: Transform - - uid: 23085 + - uid: 23238 components: - pos: 54.086075,18.83411 parent: 2 type: Transform - - uid: 23086 + - uid: 23239 components: - pos: 53.9767,18.568485 parent: 2 type: Transform - - uid: 23087 + - uid: 23240 components: - pos: 54.2892,18.568485 parent: 2 type: Transform - proto: ReagentContainerRice entities: - - uid: 23088 + - uid: 23241 components: - pos: -22.276304,44.96307 parent: 2 type: Transform - - uid: 23089 + - uid: 23242 components: - pos: -22.620054,44.759945 parent: 2 type: Transform - proto: ReagentContainerSugar entities: - - uid: 23090 + - uid: 23243 components: - pos: 4.6055,7.306335 parent: 2 type: Transform - proto: Recycler entities: - - uid: 23091 + - uid: 23244 components: - rot: 1.5707963267948966 rad pos: 17.5,-55.5 parent: 2 type: Transform - links: - - 25600 + - 25836 type: DeviceLinkSink - proto: ReinforcedPlasmaWindow entities: - - uid: 23092 + - uid: 23245 + components: + - rot: 3.141592653589793 rad + pos: -57.5,-87.5 + parent: 2 + type: Transform + - uid: 23246 components: - pos: -42.5,-37.5 parent: 2 type: Transform - - uid: 23093 + - uid: 23247 components: - rot: -1.5707963267948966 rad pos: -77.5,-43.5 parent: 2 type: Transform - - uid: 23094 + - uid: 23248 components: - rot: -1.5707963267948966 rad pos: -76.5,-43.5 parent: 2 type: Transform - - uid: 23095 + - uid: 23249 components: - rot: -1.5707963267948966 rad pos: -75.5,-43.5 parent: 2 type: Transform - - uid: 23096 + - uid: 23250 components: - rot: -1.5707963267948966 rad pos: -74.5,-42.5 parent: 2 type: Transform - - uid: 23097 + - uid: 23251 components: - rot: 3.141592653589793 rad pos: 28.5,-20.5 parent: 2 type: Transform - - uid: 23098 + - uid: 23252 components: - pos: -23.5,2.5 parent: 2 type: Transform - - uid: 23099 + - uid: 23253 components: - pos: 71.5,-27.5 parent: 2 type: Transform - - uid: 23100 + - uid: 23254 components: - pos: 29.5,26.5 parent: 2 type: Transform - - uid: 23101 + - uid: 23255 components: - pos: -15.5,2.5 parent: 2 type: Transform - - uid: 23102 + - uid: 23256 components: - rot: 3.141592653589793 rad pos: 23.5,-20.5 parent: 2 type: Transform - - uid: 23103 + - uid: 23257 components: - pos: 29.5,24.5 parent: 2 type: Transform - - uid: 23104 + - uid: 23258 components: - rot: 3.141592653589793 rad pos: 25.5,-20.5 parent: 2 type: Transform - - uid: 23105 + - uid: 23259 components: - pos: -19.5,5.5 parent: 2 type: Transform - - uid: 23106 + - uid: 23260 components: - rot: 3.141592653589793 rad pos: 22.5,-20.5 parent: 2 type: Transform - - uid: 23107 + - uid: 23261 components: - rot: 3.141592653589793 rad pos: 27.5,-20.5 parent: 2 type: Transform - - uid: 23108 + - uid: 23262 components: - rot: 3.141592653589793 rad pos: 6.5,-20.5 parent: 2 type: Transform - - uid: 23109 + - uid: 23263 components: - rot: 3.141592653589793 rad pos: 26.5,-20.5 parent: 2 type: Transform - - uid: 23110 + - uid: 23264 components: - rot: 3.141592653589793 rad pos: 24.5,-20.5 parent: 2 type: Transform - - uid: 23111 + - uid: 23265 components: - pos: 66.5,-39.5 parent: 2 type: Transform - - uid: 23112 + - uid: 23266 components: - pos: -41.5,-35.5 parent: 2 type: Transform - - uid: 23113 + - uid: 23267 components: - pos: -41.5,-34.5 parent: 2 type: Transform - - uid: 23114 + - uid: 23268 components: - pos: -56.5,-11.5 parent: 2 type: Transform - - uid: 23115 + - uid: 23269 components: - pos: -56.5,-12.5 parent: 2 type: Transform - - uid: 23116 + - uid: 23270 components: - pos: -56.5,-13.5 parent: 2 type: Transform - - uid: 23117 + - uid: 23271 components: - pos: -56.5,-14.5 parent: 2 type: Transform - - uid: 23118 + - uid: 23272 components: - pos: -68.5,-22.5 parent: 2 type: Transform - - uid: 23119 + - uid: 23273 components: - pos: -67.5,-22.5 parent: 2 type: Transform - - uid: 23120 + - uid: 23274 components: - pos: -66.5,-22.5 parent: 2 type: Transform - - uid: 23121 + - uid: 23275 components: - pos: -65.5,-22.5 parent: 2 type: Transform - - uid: 23122 + - uid: 23276 components: - pos: -64.5,-22.5 parent: 2 type: Transform - - uid: 23123 + - uid: 23277 components: - pos: -47.5,-54.5 parent: 2 type: Transform - - uid: 23124 + - uid: 23278 components: - pos: -47.5,-50.5 parent: 2 type: Transform - - uid: 23125 + - uid: 23279 components: - pos: -47.5,-52.5 parent: 2 type: Transform - - uid: 23126 + - uid: 23280 components: - pos: -47.5,-48.5 parent: 2 type: Transform - - uid: 23127 + - uid: 23281 components: - pos: -47.5,-46.5 parent: 2 type: Transform - - uid: 23128 + - uid: 23282 components: - pos: -47.5,-44.5 parent: 2 type: Transform - - uid: 23129 + - uid: 23283 components: - pos: -47.5,-42.5 parent: 2 type: Transform - - uid: 23130 - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-85.5 - parent: 2 - type: Transform - - uid: 23131 - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-89.5 - parent: 2 - type: Transform - - uid: 23132 + - uid: 23284 components: - pos: -49.5,-87.5 parent: 2 type: Transform - - uid: 23133 - components: - - pos: -50.5,-87.5 - parent: 2 - type: Transform - - uid: 23134 + - uid: 23285 components: - pos: -0.5,60.5 parent: 2 type: Transform - - uid: 23135 + - uid: 23286 components: - pos: -2.5,60.5 parent: 2 type: Transform - - uid: 23136 + - uid: 23287 components: - pos: 5.5,69.5 parent: 2 type: Transform - - uid: 23137 + - uid: 23288 components: - pos: -8.5,69.5 parent: 2 type: Transform - - uid: 23138 + - uid: 23289 components: - pos: -56.5,-15.5 parent: 2 type: Transform - - uid: 23139 + - uid: 23290 components: - pos: 68.5,-39.5 parent: 2 type: Transform - - uid: 23140 + - uid: 23291 components: - pos: 73.5,-30.5 parent: 2 type: Transform - - uid: 23141 + - uid: 23292 components: - pos: 73.5,-27.5 parent: 2 type: Transform - - uid: 23142 + - uid: 23293 components: - pos: 69.5,-36.5 parent: 2 type: Transform - - uid: 23143 + - uid: 23294 components: - pos: 69.5,-38.5 parent: 2 type: Transform - - uid: 23144 + - uid: 23295 components: - pos: -44.5,-37.5 parent: 2 type: Transform - - uid: 23145 + - uid: 23296 components: - pos: 71.5,-30.5 parent: 2 type: Transform - - uid: 23146 + - uid: 23297 components: - rot: 3.141592653589793 rad pos: 6.5,-22.5 parent: 2 type: Transform - - uid: 23147 + - uid: 23298 components: - rot: 3.141592653589793 rad pos: 6.5,-23.5 parent: 2 type: Transform - - uid: 23148 + - uid: 23299 components: - pos: 9.5,-18.5 parent: 2 type: Transform - - uid: 23149 + - uid: 23300 components: - rot: 3.141592653589793 rad pos: 6.5,-19.5 parent: 2 type: Transform - - uid: 23150 + - uid: 23301 components: - pos: 67.5,-32.5 parent: 2 type: Transform - - uid: 23151 + - uid: 23302 components: - rot: -1.5707963267948966 rad pos: -75.5,-39.5 parent: 2 type: Transform - - uid: 23152 + - uid: 23303 components: - rot: -1.5707963267948966 rad pos: -74.5,-40.5 parent: 2 type: Transform - - uid: 23153 + - uid: 23304 components: - rot: -1.5707963267948966 rad pos: -77.5,-39.5 parent: 2 type: Transform + - uid: 23305 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-89.5 + parent: 2 + type: Transform + - uid: 23306 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-85.5 + parent: 2 + type: Transform +- proto: ReinforcedPlasmaWindowDiagonal + entities: + - uid: 23307 + components: + - pos: -50.5,-88.5 + parent: 2 + type: Transform + - uid: 23308 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-86.5 + parent: 2 + type: Transform + - uid: 23309 + components: + - rot: 3.141592653589793 rad + pos: -49.5,-88.5 + parent: 2 + type: Transform + - uid: 23310 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,-85.5 + parent: 2 + type: Transform + - uid: 23311 + components: + - rot: 3.141592653589793 rad + pos: -50.5,-89.5 + parent: 2 + type: Transform + - uid: 23312 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,-86.5 + parent: 2 + type: Transform - proto: ReinforcedWindow entities: - - uid: 14794 + - uid: 23313 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-91.5 + parent: 2 + type: Transform + - uid: 23314 + components: + - pos: -19.5,-91.5 + parent: 2 + type: Transform + - uid: 23315 + components: + - pos: -27.5,-90.5 + parent: 2 + type: Transform + - uid: 23316 + components: + - rot: 1.5707963267948966 rad + pos: 59.5,57.5 + parent: 2 + type: Transform + - uid: 23317 + components: + - rot: 1.5707963267948966 rad + pos: 49.5,57.5 + parent: 2 + type: Transform + - uid: 23318 + components: + - rot: 1.5707963267948966 rad + pos: 49.5,56.5 + parent: 2 + type: Transform + - uid: 23319 + components: + - rot: 1.5707963267948966 rad + pos: 59.5,58.5 + parent: 2 + type: Transform + - uid: 23320 + components: + - rot: 1.5707963267948966 rad + pos: 49.5,58.5 + parent: 2 + type: Transform + - uid: 23321 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-91.5 + parent: 2 + type: Transform + - uid: 23322 components: - rot: -1.5707963267948966 rad pos: -6.5,-13.5 parent: 2 type: Transform - - uid: 22582 + - uid: 23323 components: - rot: -1.5707963267948966 rad pos: -6.5,-12.5 parent: 2 type: Transform - - uid: 23154 + - uid: 23324 components: - pos: -51.5,-21.5 parent: 2 type: Transform - - uid: 23155 + - uid: 23325 components: - rot: -1.5707963267948966 rad pos: 26.5,-40.5 parent: 2 type: Transform - - uid: 23156 + - uid: 23326 components: - rot: 3.141592653589793 rad pos: 20.5,-34.5 parent: 2 type: Transform - - uid: 23157 + - uid: 23327 components: - pos: -61.5,-35.5 parent: 2 type: Transform - - uid: 23158 + - uid: 23328 components: - rot: 1.5707963267948966 rad pos: -13.5,9.5 parent: 2 type: Transform - - uid: 23159 + - uid: 23329 components: - rot: 1.5707963267948966 rad pos: -64.5,-39.5 parent: 2 type: Transform - - uid: 23160 + - uid: 23330 components: - rot: 1.5707963267948966 rad pos: -74.5,-35.5 parent: 2 type: Transform - - uid: 23161 + - uid: 23331 components: - rot: 1.5707963267948966 rad pos: -74.5,-34.5 parent: 2 type: Transform - - uid: 23162 + - uid: 23332 components: - rot: 1.5707963267948966 rad pos: -64.5,-42.5 parent: 2 type: Transform - - uid: 23163 + - uid: 23333 components: - rot: 1.5707963267948966 rad pos: -64.5,-41.5 parent: 2 type: Transform - - uid: 23164 + - uid: 23334 components: - rot: 1.5707963267948966 rad pos: -64.5,-40.5 parent: 2 type: Transform - - uid: 23165 + - uid: 23335 components: - pos: -64.5,-43.5 parent: 2 type: Transform - - uid: 23166 + - uid: 23336 components: - pos: -76.5,-32.5 parent: 2 type: Transform - - uid: 23167 + - uid: 23337 components: - rot: 1.5707963267948966 rad pos: -7.5,13.5 parent: 2 type: Transform - - uid: 23168 + - uid: 23338 components: - rot: 1.5707963267948966 rad pos: 40.5,-74.5 parent: 2 type: Transform - - uid: 23169 + - uid: 23339 components: - rot: 1.5707963267948966 rad pos: 39.5,-74.5 parent: 2 type: Transform - - uid: 23170 + - uid: 23340 components: - rot: 1.5707963267948966 rad pos: 38.5,-74.5 parent: 2 type: Transform - - uid: 23171 + - uid: 23341 components: - rot: 3.141592653589793 rad pos: 5.5,18.5 parent: 2 type: Transform - - uid: 23172 + - uid: 23342 components: - rot: -1.5707963267948966 rad pos: -46.5,45.5 parent: 2 type: Transform - - uid: 23173 + - uid: 23343 components: - rot: -1.5707963267948966 rad pos: -47.5,45.5 parent: 2 type: Transform - - uid: 23174 + - uid: 23344 components: - pos: 69.5,-42.5 parent: 2 type: Transform - - uid: 23175 + - uid: 23345 components: - pos: 68.5,-42.5 parent: 2 type: Transform - - uid: 23176 + - uid: 23346 components: - pos: 78.5,-45.5 parent: 2 type: Transform - - uid: 23177 + - uid: 23347 components: - pos: 3.5,-39.5 parent: 2 type: Transform - - uid: 23178 + - uid: 23348 components: - pos: 70.5,-42.5 parent: 2 type: Transform - - uid: 23179 + - uid: 23349 components: - rot: 3.141592653589793 rad pos: 28.5,-62.5 parent: 2 type: Transform - - uid: 23180 + - uid: 23350 components: - rot: 3.141592653589793 rad pos: 31.5,-64.5 parent: 2 type: Transform - - uid: 23181 + - uid: 23351 components: - rot: 3.141592653589793 rad pos: 22.5,-55.5 parent: 2 type: Transform - - uid: 23182 + - uid: 23352 components: - rot: 3.141592653589793 rad pos: 33.5,-63.5 parent: 2 type: Transform - - uid: 23183 + - uid: 23353 components: - pos: 32.5,-9.5 parent: 2 type: Transform - - uid: 23184 + - uid: 23354 components: - pos: 3.5,-28.5 parent: 2 type: Transform - - uid: 23185 + - uid: 23355 components: - rot: -1.5707963267948966 rad pos: -15.5,-77.5 parent: 2 type: Transform - - uid: 23186 + - uid: 23356 components: - pos: 19.5,-15.5 parent: 2 type: Transform - - uid: 23187 + - uid: 23357 components: - pos: -18.5,-89.5 parent: 2 type: Transform - - uid: 23188 + - uid: 23358 components: - rot: 3.141592653589793 rad pos: 31.5,-33.5 parent: 2 type: Transform - - uid: 23189 + - uid: 23359 components: - pos: 7.5,-59.5 parent: 2 type: Transform - - uid: 23190 + - uid: 23360 components: - rot: 3.141592653589793 rad pos: -9.5,-76.5 parent: 2 type: Transform - - uid: 23191 + - uid: 23361 components: - rot: -1.5707963267948966 rad pos: 35.5,4.5 parent: 2 type: Transform - - uid: 23192 + - uid: 23362 components: - - pos: -20.5,-91.5 + - pos: -26.5,-91.5 parent: 2 type: Transform - - uid: 23193 + - uid: 23363 components: - pos: -1.5,-35.5 parent: 2 type: Transform - - uid: 23194 + - uid: 23364 components: - rot: 1.5707963267948966 rad pos: 39.5,52.5 parent: 2 type: Transform - - uid: 23195 + - uid: 23365 components: - rot: 1.5707963267948966 rad pos: 23.5,-46.5 parent: 2 type: Transform - - uid: 23196 + - uid: 23366 components: - pos: -17.5,-1.5 parent: 2 type: Transform - - uid: 23197 + - uid: 23367 components: - rot: -1.5707963267948966 rad pos: -13.5,-11.5 parent: 2 type: Transform - - uid: 23198 + - uid: 23368 components: - pos: -45.5,-50.5 parent: 2 type: Transform - - uid: 23199 + - uid: 23369 components: - rot: -1.5707963267948966 rad pos: -14.5,-77.5 parent: 2 type: Transform - - uid: 23200 + - uid: 23370 components: - pos: 20.5,-35.5 parent: 2 type: Transform - - uid: 23201 + - uid: 23371 components: - pos: 20.5,-36.5 parent: 2 type: Transform - - uid: 23202 + - uid: 23372 components: - pos: 43.5,11.5 parent: 2 type: Transform - - uid: 23203 + - uid: 23373 components: - pos: -16.5,-1.5 parent: 2 type: Transform - - uid: 23204 + - uid: 23374 components: - rot: -1.5707963267948966 rad pos: 5.5,-44.5 parent: 2 type: Transform - - uid: 23205 + - uid: 23375 components: - rot: -1.5707963267948966 rad pos: -10.5,-11.5 parent: 2 type: Transform - - uid: 23206 + - uid: 23376 components: - pos: 17.5,18.5 parent: 2 type: Transform - - uid: 23207 + - uid: 23377 components: - pos: -1.5,-32.5 parent: 2 type: Transform - - uid: 23208 + - uid: 23378 components: - pos: 23.5,-12.5 parent: 2 type: Transform - - uid: 23209 + - uid: 23379 components: - pos: -1.5,-34.5 parent: 2 type: Transform - - uid: 23210 + - uid: 23380 components: - rot: -1.5707963267948966 rad pos: 32.5,9.5 parent: 2 type: Transform - - uid: 23211 + - uid: 23381 components: - rot: 3.141592653589793 rad pos: 28.5,13.5 parent: 2 type: Transform - - uid: 23212 + - uid: 23382 components: - pos: 31.5,-38.5 parent: 2 type: Transform - - uid: 23213 + - uid: 23383 components: - pos: 18.5,-38.5 parent: 2 type: Transform - - uid: 23214 + - uid: 23384 components: - rot: 3.141592653589793 rad pos: 10.5,18.5 parent: 2 type: Transform - - uid: 23215 + - uid: 23385 components: - rot: 3.141592653589793 rad pos: 21.5,-55.5 parent: 2 type: Transform - - uid: 23216 + - uid: 23386 components: - rot: 3.141592653589793 rad pos: 33.5,-15.5 parent: 2 type: Transform - - uid: 23217 + - uid: 23387 components: - rot: 3.141592653589793 rad pos: 37.5,-35.5 parent: 2 type: Transform - - uid: 23218 + - uid: 23388 components: - rot: -1.5707963267948966 rad pos: 34.5,9.5 parent: 2 type: Transform - - uid: 23219 + - uid: 23389 components: - pos: 43.5,7.5 parent: 2 type: Transform - - uid: 23220 + - uid: 23390 components: - pos: 23.5,-11.5 parent: 2 type: Transform - - uid: 23221 + - uid: 23391 components: - pos: 35.5,18.5 parent: 2 type: Transform - - uid: 23222 + - uid: 23392 components: - rot: 3.141592653589793 rad pos: 39.5,5.5 parent: 2 type: Transform - - uid: 23223 + - uid: 23393 components: - rot: 3.141592653589793 rad pos: 34.5,13.5 parent: 2 type: Transform - - uid: 23224 + - uid: 23394 components: - rot: 3.141592653589793 rad pos: 31.5,-15.5 parent: 2 type: Transform - - uid: 23225 + - uid: 23395 components: - pos: 37.5,-21.5 parent: 2 type: Transform - - uid: 23226 + - uid: 23396 components: - pos: 37.5,-22.5 parent: 2 type: Transform - - uid: 23227 + - uid: 23397 components: - pos: 43.5,10.5 parent: 2 type: Transform - - uid: 23228 + - uid: 23398 components: - pos: 17.5,-34.5 parent: 2 type: Transform - - uid: 23229 + - uid: 23399 components: - pos: 17.5,-35.5 parent: 2 type: Transform - - uid: 23230 + - uid: 23400 components: - pos: 17.5,-36.5 parent: 2 type: Transform - - uid: 23231 + - uid: 23401 components: - pos: 19.5,-38.5 parent: 2 type: Transform - - uid: 23232 + - uid: 23402 components: - pos: 32.5,-38.5 parent: 2 type: Transform - - uid: 23233 + - uid: 23403 components: - pos: 33.5,-34.5 parent: 2 type: Transform - - uid: 23234 + - uid: 23404 components: - pos: 33.5,-36.5 parent: 2 type: Transform - - uid: 23235 + - uid: 23405 components: - pos: 33.5,-35.5 parent: 2 type: Transform - - uid: 23236 + - uid: 23406 components: - rot: -1.5707963267948966 rad pos: -9.5,-11.5 parent: 2 type: Transform - - uid: 23237 + - uid: 23407 components: - pos: 48.5,-0.5 parent: 2 type: Transform - - uid: 23238 + - uid: 23408 components: - rot: -1.5707963267948966 rad pos: -26.5,-10.5 parent: 2 type: Transform - - uid: 23239 + - uid: 23409 components: - rot: 1.5707963267948966 rad pos: -26.5,-13.5 parent: 2 type: Transform - - uid: 23240 + - uid: 23410 components: - rot: -1.5707963267948966 rad pos: 4.5,-44.5 parent: 2 type: Transform - - uid: 23241 + - uid: 23411 components: - pos: 12.5,-33.5 parent: 2 type: Transform - - uid: 23242 + - uid: 23412 components: - pos: 12.5,-32.5 parent: 2 type: Transform - - uid: 23243 + - uid: 23413 components: - pos: 2.5,-39.5 parent: 2 type: Transform - - uid: 23244 + - uid: 23414 components: - pos: -18.5,-58.5 parent: 2 type: Transform - - uid: 23245 + - uid: 23415 components: - pos: -20.5,-58.5 parent: 2 type: Transform - - uid: 23246 + - uid: 23416 components: - pos: 27.5,22.5 parent: 2 type: Transform - - uid: 23247 + - uid: 23417 components: - pos: -27.5,-89.5 parent: 2 type: Transform - - uid: 23248 + - uid: 23418 components: - pos: -48.5,-81.5 parent: 2 type: Transform - - uid: 23249 + - uid: 23419 components: - pos: -48.5,-82.5 parent: 2 type: Transform - - uid: 23250 + - uid: 23420 components: - pos: 21.5,-15.5 parent: 2 type: Transform - - uid: 23251 + - uid: 23421 components: - pos: -22.5,-3.5 parent: 2 type: Transform - - uid: 23252 + - uid: 23422 components: - pos: -16.5,-3.5 parent: 2 type: Transform - - uid: 23253 + - uid: 23423 components: - pos: 9.5,13.5 parent: 2 type: Transform - - uid: 23254 + - uid: 23424 components: - rot: -1.5707963267948966 rad pos: 27.5,20.5 parent: 2 type: Transform - - uid: 23255 + - uid: 23425 components: - rot: -1.5707963267948966 rad pos: -12.5,-11.5 parent: 2 type: Transform - - uid: 23256 + - uid: 23426 components: - rot: 3.141592653589793 rad pos: 31.5,13.5 parent: 2 type: Transform - - uid: 23257 - components: - - pos: -24.5,-91.5 - parent: 2 - type: Transform - - uid: 23258 + - uid: 23427 components: - rot: -1.5707963267948966 rad pos: -0.5,-82.5 parent: 2 type: Transform - - uid: 23259 + - uid: 23428 components: - rot: 3.141592653589793 rad pos: 39.5,8.5 parent: 2 type: Transform - - uid: 23260 + - uid: 23429 components: - pos: 42.5,-28.5 parent: 2 type: Transform - - uid: 23261 + - uid: 23430 components: - pos: 16.5,-68.5 parent: 2 type: Transform - - uid: 23262 + - uid: 23431 components: - rot: 3.141592653589793 rad pos: -7.5,-76.5 parent: 2 type: Transform - - uid: 23263 + - uid: 23432 components: - rot: -1.5707963267948966 rad pos: -8.5,-11.5 parent: 2 type: Transform - - uid: 23264 + - uid: 23433 components: - pos: -27.5,-88.5 parent: 2 type: Transform - - uid: 23265 + - uid: 23434 components: - rot: -1.5707963267948966 rad pos: -26.5,-11.5 parent: 2 type: Transform - - uid: 23266 + - uid: 23435 components: - pos: -1.5,-31.5 parent: 2 type: Transform - - uid: 23267 + - uid: 23436 components: - pos: 1.5,-30.5 parent: 2 type: Transform - - uid: 23268 + - uid: 23437 components: - rot: 3.141592653589793 rad pos: 3.5,-44.5 parent: 2 type: Transform - - uid: 23269 + - uid: 23438 components: - rot: -1.5707963267948966 rad pos: 29.5,9.5 parent: 2 type: Transform - - uid: 23270 + - uid: 23439 components: - rot: -1.5707963267948966 rad pos: 7.5,18.5 parent: 2 type: Transform - - uid: 23271 + - uid: 23440 components: - pos: -21.5,-3.5 parent: 2 type: Transform - - uid: 23272 + - uid: 23441 components: - pos: 37.5,-36.5 parent: 2 type: Transform - - uid: 23273 + - uid: 23442 components: - rot: -1.5707963267948966 rad pos: 1.5,-74.5 parent: 2 type: Transform - - uid: 23274 + - uid: 23443 components: - pos: -29.5,45.5 parent: 2 type: Transform - - uid: 23275 + - uid: 23444 components: - pos: 9.5,14.5 parent: 2 type: Transform - - uid: 23276 + - uid: 23445 components: - - pos: -25.5,-91.5 + - pos: -18.5,-90.5 parent: 2 type: Transform - - uid: 23277 + - uid: 23446 components: - - pos: -21.5,-91.5 + - pos: -24.5,-91.5 parent: 2 type: Transform - - uid: 23278 + - uid: 23447 components: - rot: -1.5707963267948966 rad pos: 35.5,7.5 parent: 2 type: Transform - - uid: 23279 + - uid: 23448 components: - rot: -1.5707963267948966 rad pos: -31.5,-79.5 parent: 2 type: Transform - - uid: 23280 + - uid: 23449 components: - rot: -1.5707963267948966 rad pos: -31.5,-77.5 parent: 2 type: Transform - - uid: 23281 + - uid: 23450 components: - pos: 15.5,18.5 parent: 2 type: Transform - - uid: 23282 + - uid: 23451 components: - pos: 5.5,-28.5 parent: 2 type: Transform - - uid: 23283 + - uid: 23452 components: - pos: 18.5,-65.5 parent: 2 type: Transform - - uid: 23284 + - uid: 23453 components: - rot: 3.141592653589793 rad pos: 28.5,-63.5 parent: 2 type: Transform - - uid: 23285 + - uid: 23454 components: - pos: -45.5,-49.5 parent: 2 type: Transform - - uid: 23286 + - uid: 23455 components: - pos: 7.5,-61.5 parent: 2 type: Transform - - uid: 23287 + - uid: 23456 components: - rot: 3.141592653589793 rad pos: 12.5,18.5 parent: 2 type: Transform - - uid: 23288 + - uid: 23457 components: - pos: 1.5,-31.5 parent: 2 type: Transform - - uid: 23289 + - uid: 23458 components: - rot: -1.5707963267948966 rad pos: -13.5,37.5 parent: 2 type: Transform - - uid: 23290 + - uid: 23459 components: - pos: 15.5,-68.5 parent: 2 type: Transform - - uid: 23291 + - uid: 23460 components: - rot: 3.141592653589793 rad pos: 30.5,-64.5 parent: 2 type: Transform - - uid: 23292 + - uid: 23461 components: - rot: 3.141592653589793 rad pos: 33.5,-62.5 parent: 2 type: Transform - - uid: 23293 + - uid: 23462 components: - rot: -1.5707963267948966 rad pos: -2.5,-82.5 parent: 2 type: Transform - - uid: 23294 + - uid: 23463 components: - pos: -18.5,-88.5 parent: 2 type: Transform - - uid: 23295 + - uid: 23464 components: - rot: -1.5707963267948966 rad pos: 1.5,-47.5 parent: 2 type: Transform - - uid: 23296 + - uid: 23465 components: - pos: -1.5,-33.5 parent: 2 type: Transform - - uid: 23297 + - uid: 23466 components: - pos: -22.5,-1.5 parent: 2 type: Transform - - uid: 23298 + - uid: 23467 components: - pos: -21.5,-1.5 parent: 2 type: Transform - - uid: 23299 + - uid: 23468 components: - pos: -17.5,-3.5 parent: 2 type: Transform - - uid: 23300 + - uid: 23469 components: - pos: 12.5,-34.5 parent: 2 type: Transform - - uid: 23301 + - uid: 23470 components: - rot: 3.141592653589793 rad pos: 20.5,-55.5 parent: 2 type: Transform - - uid: 23302 + - uid: 23471 components: - pos: 18.5,-66.5 parent: 2 type: Transform - - uid: 23303 + - uid: 23472 components: - pos: 42.5,-23.5 parent: 2 type: Transform - - uid: 23304 + - uid: 23473 components: - pos: 41.5,-28.5 parent: 2 type: Transform - - uid: 23305 + - uid: 23474 components: - pos: 41.5,-23.5 parent: 2 type: Transform - - uid: 23306 + - uid: 23475 components: - pos: -2.5,42.5 parent: 2 type: Transform - - uid: 23307 + - uid: 23476 components: - pos: 6.5,25.5 parent: 2 type: Transform - - uid: 23308 + - uid: 23477 components: - pos: 2.5,25.5 parent: 2 type: Transform - - uid: 23309 - components: - - pos: 54.5,61.5 - parent: 2 - type: Transform - - uid: 23310 + - uid: 23478 components: - pos: 18.5,32.5 parent: 2 type: Transform - - uid: 23311 + - uid: 23479 components: - pos: 18.5,33.5 parent: 2 type: Transform - - uid: 23312 + - uid: 23480 components: - rot: -1.5707963267948966 rad pos: 7.5,35.5 parent: 2 type: Transform - - uid: 23313 + - uid: 23481 components: - pos: 4.5,25.5 parent: 2 type: Transform - - uid: 23314 + - uid: 23482 components: - rot: -1.5707963267948966 rad pos: 36.5,24.5 parent: 2 type: Transform - - uid: 23315 + - uid: 23483 components: - rot: -1.5707963267948966 rad pos: 38.5,24.5 parent: 2 type: Transform - - uid: 23316 + - uid: 23484 components: - rot: -1.5707963267948966 rad pos: 40.5,24.5 parent: 2 type: Transform - - uid: 23317 + - uid: 23485 components: - rot: 3.141592653589793 rad pos: 52.5,14.5 parent: 2 type: Transform - - uid: 23318 + - uid: 23486 components: - rot: 3.141592653589793 rad pos: 53.5,14.5 parent: 2 type: Transform - - uid: 23319 + - uid: 23487 components: - rot: 3.141592653589793 rad pos: 54.5,14.5 parent: 2 type: Transform - - uid: 23320 + - uid: 23488 components: - rot: 3.141592653589793 rad pos: 51.5,13.5 parent: 2 type: Transform - - uid: 23321 + - uid: 23489 components: - rot: 3.141592653589793 rad pos: 51.5,11.5 parent: 2 type: Transform - - uid: 23322 + - uid: 23490 components: - rot: 3.141592653589793 rad pos: 52.5,10.5 parent: 2 type: Transform - - uid: 23323 + - uid: 23491 components: - rot: 3.141592653589793 rad pos: 54.5,10.5 parent: 2 type: Transform - - uid: 23324 + - uid: 23492 components: - rot: 3.141592653589793 rad pos: 55.5,11.5 parent: 2 type: Transform - - uid: 23325 + - uid: 23493 components: - rot: 3.141592653589793 rad pos: 55.5,12.5 parent: 2 type: Transform - - uid: 23326 + - uid: 23494 components: - rot: 3.141592653589793 rad pos: 55.5,13.5 parent: 2 type: Transform - - uid: 23327 + - uid: 23495 components: - pos: 46.5,9.5 parent: 2 type: Transform - - uid: 23328 + - uid: 23496 components: - rot: -1.5707963267948966 rad pos: 42.5,24.5 parent: 2 type: Transform - - uid: 23329 + - uid: 23497 components: - rot: -1.5707963267948966 rad pos: 43.5,5.5 parent: 2 type: Transform - - uid: 23330 + - uid: 23498 components: - pos: 24.5,-58.5 parent: 2 type: Transform - - uid: 23331 + - uid: 23499 components: - pos: 24.5,-59.5 parent: 2 type: Transform - - uid: 23332 + - uid: 23500 components: - pos: 66.5,25.5 parent: 2 type: Transform - - uid: 23333 + - uid: 23501 components: - pos: 66.5,23.5 parent: 2 type: Transform - - uid: 23334 + - uid: 23502 components: - pos: 64.5,27.5 parent: 2 type: Transform - - uid: 23335 + - uid: 23503 components: - pos: 62.5,27.5 parent: 2 type: Transform - - uid: 23336 + - uid: 23504 components: - rot: 1.5707963267948966 rad pos: 68.5,-6.5 parent: 2 type: Transform - - uid: 23337 + - uid: 23505 components: - pos: 60.5,-4.5 parent: 2 type: Transform - - uid: 23338 + - uid: 23506 components: - rot: 1.5707963267948966 rad pos: 68.5,-12.5 parent: 2 type: Transform - - uid: 23339 + - uid: 23507 components: - rot: 1.5707963267948966 rad pos: 68.5,-10.5 parent: 2 type: Transform - - uid: 23340 + - uid: 23508 components: - rot: 1.5707963267948966 rad pos: 68.5,-4.5 parent: 2 type: Transform - - uid: 23341 + - uid: 23509 components: - pos: 59.5,-15.5 parent: 2 type: Transform - - uid: 23342 + - uid: 23510 components: - pos: 58.5,-15.5 parent: 2 type: Transform - - uid: 23343 + - uid: 23511 components: - pos: 56.5,-15.5 parent: 2 type: Transform - - uid: 23344 + - uid: 23512 components: - pos: 55.5,-15.5 parent: 2 type: Transform - - uid: 23345 + - uid: 23513 components: - pos: 63.5,-26.5 parent: 2 type: Transform - - uid: 23346 + - uid: 23514 components: - pos: 63.5,-24.5 parent: 2 type: Transform - - uid: 23347 + - uid: 23515 components: - pos: 61.5,-22.5 parent: 2 type: Transform - - uid: 23348 + - uid: 23516 components: - pos: 61.5,-20.5 parent: 2 type: Transform - - uid: 23349 + - uid: 23517 components: - pos: 63.5,-18.5 parent: 2 type: Transform - - uid: 23350 + - uid: 23518 components: - pos: 61.5,-24.5 parent: 2 type: Transform - - uid: 23351 + - uid: 23519 components: - pos: 63.5,-22.5 parent: 2 type: Transform - - uid: 23352 + - uid: 23520 components: - pos: 63.5,-20.5 parent: 2 type: Transform - - uid: 23353 + - uid: 23521 components: - pos: 61.5,-18.5 parent: 2 type: Transform - - uid: 23354 + - uid: 23522 components: - rot: 1.5707963267948966 rad pos: 68.5,-2.5 parent: 2 type: Transform - - uid: 23355 + - uid: 23523 components: - pos: 64.5,-37.5 parent: 2 type: Transform - - uid: 23356 + - uid: 23524 components: - pos: 78.5,-38.5 parent: 2 type: Transform - - uid: 23357 + - uid: 23525 components: - pos: 77.5,-32.5 parent: 2 type: Transform - - uid: 23358 + - uid: 23526 components: - pos: 78.5,-32.5 parent: 2 type: Transform - - uid: 23359 + - uid: 23527 components: - pos: 77.5,-38.5 parent: 2 type: Transform - - uid: 23360 + - uid: 23528 components: - rot: -1.5707963267948966 rad pos: 42.5,-31.5 parent: 2 type: Transform - - uid: 23361 + - uid: 23529 components: - pos: 56.5,-46.5 parent: 2 type: Transform - - uid: 23362 + - uid: 23530 components: - pos: 61.5,-56.5 parent: 2 type: Transform - - uid: 23363 + - uid: 23531 components: - pos: 61.5,-50.5 parent: 2 type: Transform - - uid: 23364 + - uid: 23532 components: - pos: 63.5,-50.5 parent: 2 type: Transform - - uid: 23365 + - uid: 23533 components: - pos: 62.5,-56.5 parent: 2 type: Transform - - uid: 23366 + - uid: 23534 components: - pos: 58.5,-52.5 parent: 2 type: Transform - - uid: 23367 + - uid: 23535 components: - pos: 58.5,-51.5 parent: 2 type: Transform - - uid: 23368 + - uid: 23536 components: - pos: 66.5,-52.5 parent: 2 type: Transform - - uid: 23369 + - uid: 23537 components: - pos: 66.5,-51.5 parent: 2 type: Transform - - uid: 23370 + - uid: 23538 components: - pos: 63.5,-56.5 parent: 2 type: Transform - - uid: 23371 + - uid: 23539 components: - pos: 54.5,-51.5 parent: 2 type: Transform - - uid: 23372 + - uid: 23540 components: - pos: 54.5,-52.5 parent: 2 type: Transform - - uid: 23373 + - uid: 23541 components: - pos: 54.5,-53.5 parent: 2 type: Transform - - uid: 23374 + - uid: 23542 components: - pos: 50.5,-31.5 parent: 2 type: Transform - - uid: 23375 + - uid: 23543 components: - pos: 51.5,-31.5 parent: 2 type: Transform - - uid: 23376 + - uid: 23544 components: - pos: 79.5,-35.5 parent: 2 type: Transform - - uid: 23377 + - uid: 23545 components: - pos: 58.5,-25.5 parent: 2 type: Transform - - uid: 23378 + - uid: 23546 components: - pos: 76.5,-35.5 parent: 2 type: Transform - - uid: 23379 + - uid: 23547 components: - pos: 77.5,-35.5 parent: 2 type: Transform - - uid: 23380 + - uid: 23548 components: - pos: 78.5,-35.5 parent: 2 type: Transform - - uid: 23381 + - uid: 23549 components: - pos: 78.5,-46.5 parent: 2 type: Transform - - uid: 23382 + - uid: 23550 components: - pos: -45.5,-51.5 parent: 2 type: Transform - - uid: 23383 + - uid: 23551 components: - pos: 49.5,-59.5 parent: 2 type: Transform - - uid: 23384 + - uid: 23552 components: - pos: 50.5,-59.5 parent: 2 type: Transform - - uid: 23385 + - uid: 23553 components: - pos: 52.5,-61.5 parent: 2 type: Transform - - uid: 23386 + - uid: 23554 components: - pos: 49.5,-62.5 parent: 2 type: Transform - - uid: 23387 + - uid: 23555 components: - pos: 51.5,-62.5 parent: 2 type: Transform - - uid: 23388 + - uid: 23556 components: - pos: 43.5,-69.5 parent: 2 type: Transform - - uid: 23389 + - uid: 23557 components: - pos: 42.5,-69.5 parent: 2 type: Transform - - uid: 23390 + - uid: 23558 components: - pos: 35.5,-69.5 parent: 2 type: Transform - - uid: 23391 + - uid: 23559 components: - pos: 44.5,-69.5 parent: 2 type: Transform - - uid: 23392 + - uid: 23560 components: - rot: 1.5707963267948966 rad pos: 20.5,-44.5 parent: 2 type: Transform - - uid: 23393 + - uid: 23561 components: - pos: -40.5,-12.5 parent: 2 type: Transform - - uid: 23394 + - uid: 23562 components: - pos: -40.5,-9.5 parent: 2 type: Transform - - uid: 23395 + - uid: 23563 components: - pos: -33.5,-17.5 parent: 2 type: Transform - - uid: 23396 + - uid: 23564 components: - pos: -33.5,-15.5 parent: 2 type: Transform - - uid: 23397 + - uid: 23565 components: - rot: -1.5707963267948966 rad pos: -30.5,-12.5 parent: 2 type: Transform - - uid: 23398 + - uid: 23566 components: - rot: -1.5707963267948966 rad pos: -30.5,-13.5 parent: 2 type: Transform - - uid: 23399 + - uid: 23567 components: - pos: -26.5,-9.5 parent: 2 type: Transform - - uid: 23400 + - uid: 23568 components: - rot: -1.5707963267948966 rad pos: -21.5,-35.5 parent: 2 type: Transform - - uid: 23401 + - uid: 23569 components: - pos: 58.5,-59.5 parent: 2 type: Transform - - uid: 23402 + - uid: 23570 components: - pos: 58.5,-60.5 parent: 2 type: Transform - - uid: 23403 + - uid: 23571 components: - pos: 54.5,-25.5 parent: 2 type: Transform - - uid: 23404 + - uid: 23572 components: - rot: 3.141592653589793 rad pos: 56.5,-55.5 parent: 2 type: Transform - - uid: 23405 + - uid: 23573 components: - rot: 3.141592653589793 rad pos: 59.5,-54.5 parent: 2 type: Transform - - uid: 23406 + - uid: 23574 components: - rot: 3.141592653589793 rad pos: 65.5,-54.5 parent: 2 type: Transform - - uid: 23407 + - uid: 23575 components: - rot: 1.5707963267948966 rad pos: 44.5,-85.5 parent: 2 type: Transform - - uid: 23408 + - uid: 23576 components: - pos: 41.5,-74.5 parent: 2 type: Transform - - uid: 23409 + - uid: 23577 components: - rot: -1.5707963267948966 rad pos: 37.5,-74.5 parent: 2 type: Transform - - uid: 23410 + - uid: 23578 components: - pos: 37.5,-66.5 parent: 2 type: Transform - - uid: 23411 + - uid: 23579 components: - pos: 36.5,-69.5 parent: 2 type: Transform - - uid: 23412 + - uid: 23580 components: - pos: 34.5,-69.5 parent: 2 type: Transform - - uid: 23413 + - uid: 23581 components: - pos: 37.5,-64.5 parent: 2 type: Transform - - uid: 23414 + - uid: 23582 components: - rot: 1.5707963267948966 rad pos: 34.5,-86.5 parent: 2 type: Transform - - uid: 23415 + - uid: 23583 components: - rot: 1.5707963267948966 rad pos: 34.5,-87.5 parent: 2 type: Transform - - uid: 23416 + - uid: 23584 components: - rot: 1.5707963267948966 rad pos: 46.5,-78.5 parent: 2 type: Transform - - uid: 23417 + - uid: 23585 components: - rot: 1.5707963267948966 rad pos: 16.5,-88.5 parent: 2 type: Transform - - uid: 23418 + - uid: 23586 components: - rot: 1.5707963267948966 rad pos: 13.5,-78.5 parent: 2 type: Transform - - uid: 23419 + - uid: 23587 components: - rot: 1.5707963267948966 rad pos: 14.5,-88.5 parent: 2 type: Transform - - uid: 23420 + - uid: 23588 components: - rot: 1.5707963267948966 rad pos: 17.5,-78.5 parent: 2 type: Transform - - uid: 23421 + - uid: 23589 components: - rot: 1.5707963267948966 rad pos: 44.5,-84.5 parent: 2 type: Transform - - uid: 23422 + - uid: 23590 components: - pos: 17.5,-74.5 parent: 2 type: Transform - - uid: 23423 + - uid: 23591 components: - pos: 18.5,-74.5 parent: 2 type: Transform - - uid: 23424 + - uid: 23592 components: - pos: 14.5,-74.5 parent: 2 type: Transform - - uid: 23425 + - uid: 23593 components: - pos: 17.5,-71.5 parent: 2 type: Transform - - uid: 23426 + - uid: 23594 components: - rot: 1.5707963267948966 rad pos: 44.5,-86.5 parent: 2 type: Transform - - uid: 23427 + - uid: 23595 components: - pos: 15.5,-71.5 parent: 2 type: Transform - - uid: 23428 + - uid: 23596 components: - pos: 15.5,-74.5 parent: 2 type: Transform - - uid: 23429 + - uid: 23597 components: - rot: 3.141592653589793 rad pos: 26.5,-67.5 parent: 2 type: Transform - - uid: 23430 + - uid: 23598 components: - rot: 3.141592653589793 rad pos: 28.5,-90.5 parent: 2 type: Transform - - uid: 23431 + - uid: 23599 components: - rot: 3.141592653589793 rad pos: 24.5,-80.5 parent: 2 type: Transform - - uid: 23432 + - uid: 23600 components: - pos: 14.5,-71.5 parent: 2 type: Transform - - uid: 23433 + - uid: 23601 components: - pos: 18.5,-71.5 parent: 2 type: Transform - - uid: 23434 + - uid: 23602 components: - rot: 3.141592653589793 rad pos: 25.5,-80.5 parent: 2 type: Transform - - uid: 23435 + - uid: 23603 components: - rot: 1.5707963267948966 rad pos: 46.5,-79.5 parent: 2 type: Transform - - uid: 23436 + - uid: 23604 components: - rot: 1.5707963267948966 rad pos: 13.5,-88.5 parent: 2 type: Transform - - uid: 23437 + - uid: 23605 components: - rot: 1.5707963267948966 rad pos: 17.5,-88.5 parent: 2 type: Transform - - uid: 23438 + - uid: 23606 components: - rot: 1.5707963267948966 rad pos: 32.5,-77.5 parent: 2 type: Transform - - uid: 23439 + - uid: 23607 components: - rot: 1.5707963267948966 rad pos: 16.5,-78.5 parent: 2 type: Transform - - uid: 23440 + - uid: 23608 components: - rot: 1.5707963267948966 rad pos: 14.5,-78.5 parent: 2 type: Transform - - uid: 23441 + - uid: 23609 components: - rot: 3.141592653589793 rad pos: 25.5,-67.5 parent: 2 type: Transform - - uid: 23442 + - uid: 23610 components: - rot: -1.5707963267948966 rad pos: 50.5,-64.5 parent: 2 type: Transform - - uid: 23443 + - uid: 23611 components: - pos: -33.5,-9.5 parent: 2 type: Transform - - uid: 23444 + - uid: 23612 components: - pos: -33.5,-12.5 parent: 2 type: Transform - - uid: 23445 + - uid: 23613 components: - pos: -45.5,-47.5 parent: 2 type: Transform - - uid: 23446 + - uid: 23614 components: - rot: -1.5707963267948966 rad pos: -37.5,-14.5 parent: 2 type: Transform - - uid: 23447 + - uid: 23615 components: - pos: -45.5,-48.5 parent: 2 type: Transform - - uid: 23448 + - uid: 23616 components: - pos: 78.5,-44.5 parent: 2 type: Transform - - uid: 23449 + - uid: 23617 components: - pos: 68.5,-56.5 parent: 2 type: Transform - - uid: 23450 + - uid: 23618 components: - pos: -43.5,-13.5 parent: 2 type: Transform - - uid: 23451 + - uid: 23619 components: - pos: 48.5,7.5 parent: 2 type: Transform - - uid: 23452 + - uid: 23620 components: - pos: 70.5,-54.5 parent: 2 type: Transform - - uid: 23453 + - uid: 23621 components: - pos: 61.5,-61.5 parent: 2 type: Transform - - uid: 23454 + - uid: 23622 components: - pos: 62.5,-61.5 parent: 2 type: Transform - - uid: 23455 + - uid: 23623 components: - pos: 63.5,-61.5 parent: 2 type: Transform - - uid: 23456 + - uid: 23624 components: - pos: 71.5,-64.5 parent: 2 type: Transform - - uid: 23457 + - uid: 23625 components: - pos: -38.5,-37.5 parent: 2 type: Transform - - uid: 23458 + - uid: 23626 components: - pos: -37.5,-37.5 parent: 2 type: Transform - - uid: 23459 + - uid: 23627 components: - pos: -46.5,-7.5 parent: 2 type: Transform - - uid: 23460 + - uid: 23628 components: - pos: -45.5,-18.5 parent: 2 type: Transform - - uid: 23461 + - uid: 23629 components: - rot: 3.141592653589793 rad pos: -49.5,-19.5 parent: 2 type: Transform - - uid: 23462 + - uid: 23630 components: - pos: -61.5,-31.5 parent: 2 type: Transform - - uid: 23463 + - uid: 23631 components: - rot: 3.141592653589793 rad pos: -61.5,-44.5 parent: 2 type: Transform - - uid: 23464 + - uid: 23632 components: - pos: -45.5,-43.5 parent: 2 type: Transform - - uid: 23465 + - uid: 23633 components: - pos: -45.5,-45.5 parent: 2 type: Transform - - uid: 23466 + - uid: 23634 components: - pos: -45.5,-46.5 parent: 2 type: Transform - - uid: 23467 + - uid: 23635 components: - pos: -45.5,-44.5 parent: 2 type: Transform - - uid: 23468 + - uid: 23636 components: - pos: -45.5,-42.5 parent: 2 type: Transform - - uid: 23469 + - uid: 23637 components: - pos: -35.5,-58.5 parent: 2 type: Transform - - uid: 23470 + - uid: 23638 components: - rot: 3.141592653589793 rad pos: -38.5,-59.5 parent: 2 type: Transform - - uid: 23471 + - uid: 23639 components: - pos: -44.5,-58.5 parent: 2 type: Transform - - uid: 23472 + - uid: 23640 components: - pos: -42.5,-58.5 parent: 2 type: Transform - - uid: 23473 + - uid: 23641 components: - pos: -41.5,-58.5 parent: 2 type: Transform - - uid: 23474 + - uid: 23642 components: - rot: 3.141592653589793 rad pos: -73.5,-27.5 parent: 2 type: Transform - - uid: 23475 + - uid: 23643 components: - pos: -62.5,-35.5 parent: 2 type: Transform - - uid: 23476 + - uid: 23644 components: - rot: 1.5707963267948966 rad pos: -52.5,-60.5 parent: 2 type: Transform - - uid: 23477 + - uid: 23645 components: - rot: 1.5707963267948966 rad pos: -58.5,-60.5 parent: 2 type: Transform - - uid: 23478 + - uid: 23646 components: - rot: 1.5707963267948966 rad pos: -58.5,-59.5 parent: 2 type: Transform - - uid: 23479 + - uid: 23647 components: - pos: -58.5,-52.5 parent: 2 type: Transform - - uid: 23480 + - uid: 23648 components: - pos: -58.5,-51.5 parent: 2 type: Transform - - uid: 23481 + - uid: 23649 components: - pos: -58.5,-48.5 parent: 2 type: Transform - - uid: 23482 + - uid: 23650 components: - pos: -58.5,-47.5 parent: 2 type: Transform - - uid: 23483 + - uid: 23651 components: - pos: -41.5,-62.5 parent: 2 type: Transform - - uid: 23484 + - uid: 23652 components: - pos: -40.5,-62.5 parent: 2 type: Transform - - uid: 23485 + - uid: 23653 components: - rot: -1.5707963267948966 rad pos: -55.5,-83.5 parent: 2 type: Transform - - uid: 23486 + - uid: 23654 components: - rot: -1.5707963267948966 rad pos: -53.5,-83.5 parent: 2 type: Transform - - uid: 23487 + - uid: 23655 components: - pos: -57.5,-75.5 parent: 2 type: Transform - - uid: 23488 + - uid: 23656 components: - pos: -57.5,-76.5 parent: 2 type: Transform - - uid: 23489 + - uid: 23657 components: - pos: -57.5,-77.5 parent: 2 type: Transform - - uid: 23490 + - uid: 23658 components: - pos: -48.5,-83.5 parent: 2 type: Transform - - uid: 23491 + - uid: 23659 components: - pos: -35.5,-82.5 parent: 2 type: Transform - - uid: 23492 + - uid: 23660 components: - pos: -35.5,-81.5 parent: 2 type: Transform - - uid: 23493 + - uid: 23661 components: - pos: -35.5,-77.5 parent: 2 type: Transform - - uid: 23494 + - uid: 23662 components: - pos: -35.5,-83.5 parent: 2 type: Transform - - uid: 23495 + - uid: 23663 components: - pos: -35.5,-76.5 parent: 2 type: Transform - - uid: 23496 + - uid: 23664 components: - pos: -35.5,-78.5 parent: 2 type: Transform - - uid: 23497 + - uid: 23665 components: - pos: -40.5,-86.5 parent: 2 type: Transform - - uid: 23498 + - uid: 23666 components: - pos: -43.5,-86.5 parent: 2 type: Transform - - uid: 23499 + - uid: 23667 components: - rot: 3.141592653589793 rad pos: 19.5,-33.5 parent: 2 type: Transform - - uid: 23500 + - uid: 23668 components: - rot: -1.5707963267948966 rad pos: -46.5,-38.5 parent: 2 type: Transform - - uid: 23501 + - uid: 23669 components: - rot: -1.5707963267948966 rad pos: 8.5,35.5 parent: 2 type: Transform - - uid: 23502 - components: - - pos: 53.5,61.5 - parent: 2 - type: Transform - - uid: 23503 + - uid: 23670 components: - - pos: 50.5,56.5 + - rot: 3.141592653589793 rad + pos: 59.5,56.5 parent: 2 type: Transform - - uid: 23504 + - uid: 23671 components: - rot: -1.5707963267948966 rad pos: -7.5,28.5 parent: 2 type: Transform - - uid: 23505 + - uid: 23672 components: - rot: -1.5707963267948966 rad pos: -7.5,27.5 parent: 2 type: Transform - - uid: 23506 - components: - - pos: 55.5,61.5 - parent: 2 - type: Transform - - uid: 23507 + - uid: 23673 components: - pos: -0.5,35.5 parent: 2 type: Transform - - uid: 23508 + - uid: 23674 components: - pos: -1.5,35.5 parent: 2 type: Transform - - uid: 23509 + - uid: 23675 components: - pos: -2.5,35.5 parent: 2 type: Transform - - uid: 23510 - components: - - pos: 50.5,57.5 - parent: 2 - type: Transform - - uid: 23511 + - uid: 23676 components: - - pos: 58.5,56.5 + - rot: 1.5707963267948966 rad + pos: 53.5,62.5 parent: 2 type: Transform - - uid: 23512 + - uid: 23677 components: - rot: -1.5707963267948966 rad pos: 7.5,29.5 parent: 2 type: Transform - - uid: 23513 + - uid: 23678 components: - rot: -1.5707963267948966 rad pos: -26.5,23.5 parent: 2 type: Transform - - uid: 23514 + - uid: 23679 components: - pos: -3.5,42.5 parent: 2 type: Transform - - uid: 23515 + - uid: 23680 components: - pos: 45.5,9.5 parent: 2 type: Transform - - uid: 23516 + - uid: 23681 components: - pos: -29.5,21.5 parent: 2 type: Transform - - uid: 23517 + - uid: 23682 components: - pos: -29.5,23.5 parent: 2 type: Transform - - uid: 23518 + - uid: 23683 components: - pos: -26.5,21.5 parent: 2 type: Transform - - uid: 23519 + - uid: 23684 components: - pos: -31.5,27.5 parent: 2 type: Transform - - uid: 23520 + - uid: 23685 components: - pos: -33.5,27.5 parent: 2 type: Transform - - uid: 23521 + - uid: 23686 components: - pos: -30.5,27.5 parent: 2 type: Transform - - uid: 23522 + - uid: 23687 components: - rot: 1.5707963267948966 rad pos: -49.5,21.5 parent: 2 type: Transform - - uid: 23523 + - uid: 23688 components: - rot: 1.5707963267948966 rad pos: -50.5,21.5 parent: 2 type: Transform - - uid: 23524 + - uid: 23689 components: - rot: -1.5707963267948966 rad pos: -50.5,18.5 parent: 2 type: Transform - - uid: 23525 + - uid: 23690 components: - rot: -1.5707963267948966 rad pos: -50.5,24.5 parent: 2 type: Transform - - uid: 23526 + - uid: 23691 components: - rot: -1.5707963267948966 rad pos: 8.5,29.5 parent: 2 type: Transform - - uid: 23527 - components: - - pos: 58.5,57.5 - parent: 2 - type: Transform - - uid: 23528 + - uid: 23692 components: - - pos: 50.5,58.5 + - rot: 1.5707963267948966 rad + pos: 54.5,62.5 parent: 2 type: Transform - - uid: 23529 + - uid: 23693 components: - - pos: 58.5,58.5 + - rot: 1.5707963267948966 rad + pos: 55.5,62.5 parent: 2 type: Transform - - uid: 23530 + - uid: 23694 components: - rot: 1.5707963267948966 rad pos: 67.5,-8.5 parent: 2 type: Transform - - uid: 23531 + - uid: 23695 components: - pos: -33.5,32.5 parent: 2 type: Transform - - uid: 23532 + - uid: 23696 components: - pos: -32.5,32.5 parent: 2 type: Transform - - uid: 23533 + - uid: 23697 components: - pos: -31.5,32.5 parent: 2 type: Transform - - uid: 23534 + - uid: 23698 components: - pos: -49.5,29.5 parent: 2 type: Transform - - uid: 23535 + - uid: 23699 components: - pos: -49.5,35.5 parent: 2 type: Transform - - uid: 23536 + - uid: 23700 components: - pos: -52.5,35.5 parent: 2 type: Transform - - uid: 23537 + - uid: 23701 components: - pos: -52.5,29.5 parent: 2 type: Transform - - uid: 23538 + - uid: 23702 components: - pos: -52.5,18.5 parent: 2 type: Transform - - uid: 23539 + - uid: 23703 components: - pos: -52.5,24.5 parent: 2 type: Transform - - uid: 23540 + - uid: 23704 components: - rot: -1.5707963267948966 rad pos: -52.5,21.5 parent: 2 type: Transform - - uid: 23541 + - uid: 23705 components: - rot: -1.5707963267948966 rad pos: -53.5,21.5 parent: 2 type: Transform - - uid: 23542 + - uid: 23706 components: - rot: -1.5707963267948966 rad pos: -31.5,35.5 parent: 2 type: Transform - - uid: 23543 + - uid: 23707 components: - pos: -39.5,31.5 parent: 2 type: Transform - - uid: 23544 + - uid: 23708 components: - rot: -1.5707963267948966 rad pos: -32.5,35.5 parent: 2 type: Transform - - uid: 23545 + - uid: 23709 components: - rot: -1.5707963267948966 rad pos: -17.5,26.5 parent: 2 type: Transform - - uid: 23546 + - uid: 23710 components: - rot: 1.5707963267948966 rad pos: 66.5,-1.5 parent: 2 type: Transform - - uid: 23547 + - uid: 23711 components: - pos: -53.5,11.5 parent: 2 type: Transform - - uid: 23548 + - uid: 23712 components: - pos: -53.5,10.5 parent: 2 type: Transform - - uid: 23549 + - uid: 23713 components: - rot: -1.5707963267948966 rad pos: -49.5,13.5 parent: 2 type: Transform - - uid: 23550 + - uid: 23714 components: - rot: -1.5707963267948966 rad pos: -48.5,13.5 parent: 2 type: Transform - - uid: 23551 + - uid: 23715 components: - pos: 56.5,-25.5 parent: 2 type: Transform - - uid: 23552 + - uid: 23716 components: - rot: 1.5707963267948966 rad pos: 67.5,-7.5 parent: 2 type: Transform - - uid: 23553 + - uid: 23717 components: - rot: 1.5707963267948966 rad pos: 67.5,-9.5 parent: 2 type: Transform - - uid: 23554 + - uid: 23718 components: - rot: 1.5707963267948966 rad pos: 66.5,-0.5 parent: 2 type: Transform - - uid: 23555 + - uid: 23719 components: - rot: 1.5707963267948966 rad pos: 46.5,-77.5 parent: 2 type: Transform - - uid: 23556 + - uid: 23720 components: - pos: 25.5,24.5 parent: 2 type: Transform - - uid: 23557 + - uid: 23721 components: - pos: -45.5,-52.5 parent: 2 type: Transform - - uid: 23558 + - uid: 23722 components: - pos: -45.5,-53.5 parent: 2 type: Transform - - uid: 23559 + - uid: 23723 components: - pos: -45.5,-54.5 parent: 2 type: Transform - - uid: 23560 + - uid: 23724 components: - pos: -45.5,-55.5 parent: 2 type: Transform - - uid: 23561 + - uid: 23725 components: - pos: 24.5,-60.5 parent: 2 type: Transform - - uid: 23562 + - uid: 23726 components: - pos: 46.5,43.5 parent: 2 type: Transform - - uid: 23563 + - uid: 23727 components: - rot: 3.141592653589793 rad pos: 46.5,3.5 parent: 2 type: Transform - - uid: 23564 + - uid: 23728 components: - rot: 3.141592653589793 rad pos: 59.5,43.5 parent: 2 type: Transform - - uid: 23565 + - uid: 23729 components: - rot: -1.5707963267948966 rad pos: -13.5,39.5 parent: 2 type: Transform - - uid: 23566 + - uid: 23730 components: - pos: -14.5,56.5 parent: 2 type: Transform - - uid: 23567 + - uid: 23731 components: - pos: -11.5,69.5 parent: 2 type: Transform - - uid: 23568 + - uid: 23732 components: - pos: -14.5,55.5 parent: 2 type: Transform - - uid: 23569 + - uid: 23733 components: - pos: -16.5,55.5 parent: 2 type: Transform - - uid: 23570 + - uid: 23734 components: - pos: -16.5,56.5 parent: 2 type: Transform - - uid: 23571 + - uid: 23735 components: - pos: -23.5,61.5 parent: 2 type: Transform - - uid: 23572 + - uid: 23736 components: - pos: -23.5,62.5 parent: 2 type: Transform - - uid: 23573 + - uid: 23737 components: - pos: -11.5,68.5 parent: 2 type: Transform - - uid: 23574 + - uid: 23738 components: - pos: -11.5,67.5 parent: 2 type: Transform - - uid: 23575 + - uid: 23739 components: - pos: -14.5,73.5 parent: 2 type: Transform - - uid: 23576 + - uid: 23740 components: - pos: -20.5,73.5 parent: 2 type: Transform - - uid: 23577 + - uid: 23741 components: - pos: -11.5,73.5 parent: 2 type: Transform - - uid: 23578 + - uid: 23742 components: - pos: -23.5,63.5 parent: 2 type: Transform - - uid: 23579 + - uid: 23743 components: - pos: -23.5,73.5 parent: 2 type: Transform - - uid: 23580 + - uid: 23744 components: - rot: -1.5707963267948966 rad pos: -17.5,24.5 parent: 2 type: Transform - - uid: 23581 + - uid: 23745 components: - rot: -1.5707963267948966 rad pos: 68.5,11.5 parent: 2 type: Transform - - uid: 23582 + - uid: 23746 components: - rot: -1.5707963267948966 rad pos: 68.5,10.5 parent: 2 type: Transform - - uid: 23583 + - uid: 23747 components: - rot: -1.5707963267948966 rad pos: 68.5,8.5 parent: 2 type: Transform - - uid: 23584 + - uid: 23748 components: - rot: -1.5707963267948966 rad pos: 68.5,7.5 parent: 2 type: Transform - - uid: 23585 + - uid: 23749 components: - rot: -1.5707963267948966 rad pos: 59.5,33.5 parent: 2 type: Transform - - uid: 23586 + - uid: 23750 components: - rot: -1.5707963267948966 rad pos: 59.5,32.5 parent: 2 type: Transform - - uid: 23587 + - uid: 23751 components: - rot: -1.5707963267948966 rad pos: -1.5,27.5 parent: 2 type: Transform - - uid: 23588 + - uid: 23752 components: - rot: -1.5707963267948966 rad pos: -3.5,27.5 parent: 2 type: Transform - - uid: 23589 + - uid: 23753 components: - rot: -1.5707963267948966 rad pos: -33.5,35.5 parent: 2 type: Transform - - uid: 23590 + - uid: 23754 components: - rot: 3.141592653589793 rad pos: -32.5,37.5 parent: 2 type: Transform - - uid: 23591 + - uid: 23755 components: - rot: 1.5707963267948966 rad pos: 46.5,-17.5 parent: 2 type: Transform - - uid: 23592 + - uid: 23756 components: - rot: 1.5707963267948966 rad pos: 45.5,-17.5 parent: 2 type: Transform - - uid: 23593 + - uid: 23757 components: - pos: -46.5,13.5 parent: 2 type: Transform - - uid: 23594 + - uid: 23758 components: - pos: -1.5,42.5 parent: 2 type: Transform - - uid: 23595 + - uid: 23759 components: - rot: 1.5707963267948966 rad pos: 47.5,40.5 parent: 2 type: Transform - - uid: 23596 + - uid: 23760 components: - rot: 1.5707963267948966 rad pos: 45.5,40.5 parent: 2 type: Transform - - uid: 23597 + - uid: 23761 components: - rot: -1.5707963267948966 rad pos: 41.5,42.5 parent: 2 type: Transform - - uid: 23598 + - uid: 23762 components: - rot: 3.141592653589793 rad pos: 41.5,32.5 parent: 2 type: Transform - - uid: 23599 + - uid: 23763 components: - rot: 3.141592653589793 rad pos: 41.5,31.5 parent: 2 type: Transform - - uid: 23600 + - uid: 23764 components: - rot: 3.141592653589793 rad pos: 41.5,30.5 parent: 2 type: Transform - - uid: 23601 + - uid: 23765 components: - rot: -1.5707963267948966 rad pos: 40.5,42.5 parent: 2 type: Transform - - uid: 23602 + - uid: 23766 components: - rot: -1.5707963267948966 rad pos: 39.5,42.5 parent: 2 type: Transform - - uid: 23603 + - uid: 23767 components: - pos: 71.5,39.5 parent: 2 type: Transform - - uid: 23604 + - uid: 23768 components: - pos: 73.5,39.5 parent: 2 type: Transform - - uid: 23605 + - uid: 23769 components: - pos: 73.5,33.5 parent: 2 type: Transform - - uid: 23606 + - uid: 23770 components: - pos: 71.5,33.5 parent: 2 type: Transform - - uid: 23607 + - uid: 23771 components: - pos: -33.5,40.5 parent: 2 type: Transform - - uid: 23608 + - uid: 23772 components: - pos: -32.5,40.5 parent: 2 type: Transform - - uid: 23609 + - uid: 23773 components: - pos: -26.5,54.5 parent: 2 type: Transform - - uid: 23610 + - uid: 23774 components: - pos: -26.5,53.5 parent: 2 type: Transform - - uid: 23611 + - uid: 23775 components: - rot: -1.5707963267948966 rad pos: -16.5,-88.5 parent: 2 type: Transform - - uid: 23612 + - uid: 23776 components: - pos: -18.5,-97.5 parent: 2 type: Transform - - uid: 23613 + - uid: 23777 components: - pos: -26.5,-97.5 parent: 2 type: Transform - - uid: 23614 + - uid: 23778 components: - pos: -23.5,-94.5 parent: 2 type: Transform - - uid: 23615 + - uid: 23779 components: - pos: -22.5,-94.5 parent: 2 type: Transform - - uid: 23616 + - uid: 23780 components: - pos: -21.5,-94.5 parent: 2 type: Transform - - uid: 23617 + - uid: 23781 components: - pos: -9.5,-101.5 parent: 2 type: Transform - - uid: 23618 + - uid: 23782 components: - pos: -8.5,-101.5 parent: 2 type: Transform - - uid: 23619 + - uid: 23783 components: - pos: -6.5,-101.5 parent: 2 type: Transform - - uid: 23620 + - uid: 23784 components: - pos: -5.5,-101.5 parent: 2 type: Transform - - uid: 23621 + - uid: 23785 components: - pos: -3.5,-97.5 parent: 2 type: Transform - - uid: 23622 + - uid: 23786 components: - pos: -3.5,-98.5 parent: 2 type: Transform - - uid: 23623 + - uid: 23787 components: - rot: 3.141592653589793 rad pos: -44.5,-90.5 parent: 2 type: Transform - - uid: 23624 + - uid: 23788 components: - rot: 3.141592653589793 rad pos: -44.5,-89.5 parent: 2 type: Transform - - uid: 23625 + - uid: 23789 components: - pos: -39.5,-90.5 parent: 2 type: Transform - - uid: 23626 + - uid: 23790 components: - pos: -39.5,-89.5 parent: 2 type: Transform - - uid: 23627 + - uid: 23791 components: - pos: -34.5,-100.5 parent: 2 type: Transform - - uid: 23628 + - uid: 23792 components: - pos: -36.5,-100.5 parent: 2 type: Transform - - uid: 23629 + - uid: 23793 components: - rot: 1.5707963267948966 rad pos: -44.5,-95.5 parent: 2 type: Transform - - uid: 23630 + - uid: 23794 components: - rot: 1.5707963267948966 rad pos: -44.5,-96.5 parent: 2 type: Transform - - uid: 23631 + - uid: 23795 components: - rot: 1.5707963267948966 rad pos: -42.5,-98.5 parent: 2 type: Transform - - uid: 23632 + - uid: 23796 components: - rot: 1.5707963267948966 rad pos: -41.5,-98.5 parent: 2 type: Transform - - uid: 23633 + - uid: 23797 components: - pos: -23.5,-101.5 parent: 2 type: Transform - - uid: 23634 + - uid: 23798 components: - pos: -22.5,-101.5 parent: 2 type: Transform - - uid: 23635 + - uid: 23799 components: - pos: -21.5,-101.5 parent: 2 type: Transform - - uid: 23636 + - uid: 23800 components: - rot: -1.5707963267948966 rad pos: 72.5,-50.5 parent: 2 type: Transform - - uid: 23637 + - uid: 23801 components: - rot: -1.5707963267948966 rad pos: 70.5,-50.5 parent: 2 type: Transform - - uid: 23638 + - uid: 23802 components: - rot: -1.5707963267948966 rad pos: 71.5,-50.5 parent: 2 type: Transform - - uid: 23639 + - uid: 23803 components: - pos: 51.5,-68.5 parent: 2 type: Transform - - uid: 23640 + - uid: 23804 components: - rot: 3.141592653589793 rad pos: 55.5,-68.5 parent: 2 type: Transform - - uid: 23641 + - uid: 23805 components: - rot: 3.141592653589793 rad pos: 56.5,-68.5 parent: 2 type: Transform - - uid: 23642 + - uid: 23806 components: - pos: 61.5,-70.5 parent: 2 type: Transform - - uid: 23643 + - uid: 23807 components: - pos: 62.5,-70.5 parent: 2 type: Transform - - uid: 23644 + - uid: 23808 components: - rot: 3.141592653589793 rad pos: 54.5,-68.5 parent: 2 type: Transform - - uid: 23645 + - uid: 23809 components: - pos: 50.5,-68.5 parent: 2 type: Transform - - uid: 23646 + - uid: 23810 components: - pos: 3.5,-36.5 parent: 2 type: Transform - - uid: 23647 + - uid: 23811 components: - pos: 68.5,-57.5 parent: 2 type: Transform - - uid: 23648 + - uid: 23812 components: - pos: 71.5,-54.5 parent: 2 type: Transform - - uid: 23649 + - uid: 23813 components: - rot: 1.5707963267948966 rad pos: -54.5,-57.5 parent: 2 type: Transform - - uid: 23650 + - uid: 23814 components: - rot: -1.5707963267948966 rad pos: 41.5,-31.5 parent: 2 type: Transform - - uid: 23651 + - uid: 23815 components: - pos: 60.5,-70.5 parent: 2 type: Transform - - uid: 23652 + - uid: 23816 components: - pos: 9.5,-31.5 parent: 2 type: Transform - - uid: 23653 + - uid: 23817 components: - pos: 9.5,-34.5 parent: 2 type: Transform - - uid: 23654 + - uid: 23818 components: - pos: 2.5,-36.5 parent: 2 type: Transform - - uid: 23655 + - uid: 23819 components: - pos: 36.5,18.5 parent: 2 type: Transform - - uid: 23656 + - uid: 23820 components: - pos: 34.5,18.5 parent: 2 type: Transform - - uid: 23657 + - uid: 23821 components: - pos: 52.5,-57.5 parent: 2 type: Transform - - uid: 23658 + - uid: 23822 components: - pos: -60.5,-35.5 parent: 2 type: Transform - - uid: 23659 + - uid: 23823 components: - pos: -52.5,-38.5 parent: 2 type: Transform - - uid: 23660 + - uid: 23824 components: - pos: -47.5,-34.5 parent: 2 type: Transform - - uid: 23661 + - uid: 23825 components: - pos: -47.5,-35.5 parent: 2 type: Transform - - uid: 23662 + - uid: 23826 components: - rot: 3.141592653589793 rad pos: 51.5,-72.5 parent: 2 type: Transform - - uid: 23663 + - uid: 23827 components: - rot: 3.141592653589793 rad pos: 51.5,-71.5 parent: 2 type: Transform - - uid: 23664 + - uid: 23828 components: - rot: 3.141592653589793 rad pos: 24.5,-86.5 parent: 2 type: Transform - - uid: 23665 + - uid: 23829 components: - rot: 3.141592653589793 rad pos: 25.5,-86.5 parent: 2 type: Transform - - uid: 23666 + - uid: 23830 components: - rot: 3.141592653589793 rad pos: 25.5,-75.5 parent: 2 type: Transform - - uid: 23667 + - uid: 23831 components: - rot: 3.141592653589793 rad pos: 28.5,-89.5 parent: 2 type: Transform - - uid: 23668 + - uid: 23832 components: - rot: 1.5707963267948966 rad pos: 32.5,-79.5 parent: 2 type: Transform - - uid: 23669 + - uid: 23833 components: - rot: 1.5707963267948966 rad pos: 34.5,-84.5 parent: 2 type: Transform - - uid: 23670 + - uid: 23834 components: - rot: 1.5707963267948966 rad pos: 34.5,-85.5 parent: 2 type: Transform - - uid: 23671 + - uid: 23835 components: - rot: 3.141592653589793 rad pos: 26.5,-75.5 parent: 2 type: Transform - - uid: 23672 + - uid: 23836 components: - rot: 3.141592653589793 rad pos: 51.5,-73.5 parent: 2 type: Transform - - uid: 23673 + - uid: 23837 components: - rot: 1.5707963267948966 rad pos: 32.5,-78.5 parent: 2 type: Transform - - uid: 23674 + - uid: 23838 components: - rot: 1.5707963267948966 rad pos: 44.5,-87.5 parent: 2 type: Transform - - uid: 23675 + - uid: 23839 components: - rot: -1.5707963267948966 rad pos: -45.5,45.5 parent: 2 type: Transform - - uid: 23676 + - uid: 23840 components: - rot: 1.5707963267948966 rad pos: -8.5,13.5 parent: 2 type: Transform - - uid: 23677 + - uid: 23841 components: - pos: -4.5,20.5 parent: 2 type: Transform - - uid: 23678 + - uid: 23842 components: - pos: -5.5,20.5 parent: 2 type: Transform - - uid: 23679 + - uid: 23843 components: - rot: 3.141592653589793 rad pos: -71.5,-27.5 parent: 2 type: Transform - - uid: 23680 + - uid: 23844 components: - pos: -70.5,-47.5 parent: 2 type: Transform - - uid: 23681 + - uid: 23845 components: - pos: -69.5,-47.5 parent: 2 type: Transform - - uid: 23682 + - uid: 23846 components: - pos: -68.5,-47.5 parent: 2 type: Transform - - uid: 23683 + - uid: 23847 components: - pos: -60.5,-38.5 parent: 2 type: Transform - - uid: 23684 + - uid: 23848 components: - pos: -62.5,-38.5 parent: 2 type: Transform - - uid: 23685 + - uid: 23849 components: - pos: -51.5,-13.5 parent: 2 type: Transform - - uid: 23686 + - uid: 23850 components: - rot: 3.141592653589793 rad pos: -78.5,-45.5 parent: 2 type: Transform - - uid: 23687 + - uid: 23851 components: - rot: 1.5707963267948966 rad pos: -15.5,9.5 parent: 2 type: Transform - - uid: 23688 + - uid: 23852 components: - rot: 1.5707963267948966 rad pos: -14.5,9.5 parent: 2 type: Transform - - uid: 23689 + - uid: 23853 components: - pos: 3.5,-3.5 parent: 2 type: Transform - - uid: 23690 + - uid: 23854 components: - rot: 3.141592653589793 rad pos: 2.5,-3.5 parent: 2 type: Transform - - uid: 23691 + - uid: 23855 components: - rot: 3.141592653589793 rad pos: 1.5,-3.5 parent: 2 type: Transform - - uid: 23692 + - uid: 23856 components: - rot: -1.5707963267948966 rad pos: 23.5,-40.5 parent: 2 type: Transform - - uid: 23693 + - uid: 23857 components: - rot: -1.5707963267948966 rad pos: 27.5,-40.5 parent: 2 type: Transform - - uid: 23694 + - uid: 23858 components: - rot: -1.5707963267948966 rad pos: 24.5,-40.5 parent: 2 type: Transform - - uid: 23695 + - uid: 23859 components: - rot: -1.5707963267948966 rad pos: 54.5,-40.5 parent: 2 type: Transform - - uid: 23696 + - uid: 23860 components: - rot: -1.5707963267948966 rad pos: 54.5,-42.5 parent: 2 type: Transform - - uid: 23697 + - uid: 23861 components: - pos: 10.5,29.5 parent: 2 type: Transform - - uid: 23698 + - uid: 23862 components: - pos: 8.5,27.5 parent: 2 type: Transform - - uid: 23699 + - uid: 23863 components: - pos: 10.5,27.5 parent: 2 type: Transform - - uid: 23700 + - uid: 23864 components: - pos: 9.5,27.5 parent: 2 type: Transform - - uid: 23701 + - uid: 23865 components: - pos: 9.5,29.5 parent: 2 type: Transform - - uid: 23702 + - uid: 23866 components: - pos: -29.5,-63.5 parent: 2 type: Transform + - uid: 23867 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-91.5 + parent: 2 + type: Transform + - uid: 23868 + components: + - pos: 78.5,-47.5 + parent: 2 + type: Transform + - uid: 23869 + components: + - pos: 78.5,-43.5 + parent: 2 + type: Transform + - uid: 23870 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,63.5 + parent: 2 + type: Transform + - uid: 23871 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,63.5 + parent: 2 + type: Transform + - uid: 23872 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,67.5 + parent: 2 + type: Transform +- proto: ReinforcedWindowDiagonal + entities: + - uid: 23873 + components: + - pos: 12.5,-78.5 + parent: 2 + type: Transform + - uid: 23874 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-30.5 + parent: 2 + type: Transform + - uid: 23875 + components: + - rot: 1.5707963267948966 rad + pos: 49.5,55.5 + parent: 2 + type: Transform + - uid: 23876 + components: + - rot: -1.5707963267948966 rad + pos: 59.5,59.5 + parent: 2 + type: Transform + - uid: 23877 + components: + - pos: 49.5,59.5 + parent: 2 + type: Transform + - uid: 23878 + components: + - pos: 52.5,62.5 + parent: 2 + type: Transform + - uid: 23879 + components: + - rot: -1.5707963267948966 rad + pos: 56.5,62.5 + parent: 2 + type: Transform + - uid: 23880 + components: + - rot: 3.141592653589793 rad + pos: 59.5,55.5 + parent: 2 + type: Transform + - uid: 23881 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-36.5 + parent: 2 + type: Transform + - uid: 23882 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-91.5 + parent: 2 + type: Transform + - uid: 23883 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-91.5 + parent: 2 + type: Transform + - uid: 23884 + components: + - rot: -1.5707963267948966 rad + pos: 78.5,-42.5 + parent: 2 + type: Transform + - uid: 23885 + components: + - rot: 3.141592653589793 rad + pos: 43.5,62.5 + parent: 2 + type: Transform + - uid: 23886 + components: + - pos: 42.5,62.5 + parent: 2 + type: Transform + - uid: 23887 + components: + - rot: 3.141592653589793 rad + pos: 42.5,61.5 + parent: 2 + type: Transform + - uid: 23888 + components: + - pos: 41.5,61.5 + parent: 2 + type: Transform + - uid: 23889 + components: + - rot: 3.141592653589793 rad + pos: 41.5,60.5 + parent: 2 + type: Transform + - uid: 23890 + components: + - pos: 40.5,60.5 + parent: 2 + type: Transform + - uid: 23891 + components: + - rot: 3.141592653589793 rad + pos: 40.5,59.5 + parent: 2 + type: Transform + - uid: 23892 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,59.5 + parent: 2 + type: Transform + - uid: 23893 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,60.5 + parent: 2 + type: Transform + - uid: 23894 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,60.5 + parent: 2 + type: Transform + - uid: 23895 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,61.5 + parent: 2 + type: Transform + - uid: 23896 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,61.5 + parent: 2 + type: Transform + - uid: 23897 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,62.5 + parent: 2 + type: Transform + - uid: 23898 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,62.5 + parent: 2 + type: Transform + - uid: 23899 + components: + - pos: 35.5,64.5 + parent: 2 + type: Transform + - uid: 23900 + components: + - rot: 3.141592653589793 rad + pos: 36.5,64.5 + parent: 2 + type: Transform + - uid: 23901 + components: + - pos: 36.5,65.5 + parent: 2 + type: Transform + - uid: 23902 + components: + - rot: 3.141592653589793 rad + pos: 37.5,65.5 + parent: 2 + type: Transform + - uid: 23903 + components: + - pos: 37.5,66.5 + parent: 2 + type: Transform + - uid: 23904 + components: + - rot: 3.141592653589793 rad + pos: 38.5,66.5 + parent: 2 + type: Transform + - uid: 23905 + components: + - pos: 38.5,67.5 + parent: 2 + type: Transform + - uid: 23906 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,67.5 + parent: 2 + type: Transform + - uid: 23907 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,66.5 + parent: 2 + type: Transform + - uid: 23908 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,66.5 + parent: 2 + type: Transform + - uid: 23909 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,65.5 + parent: 2 + type: Transform + - uid: 23910 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,65.5 + parent: 2 + type: Transform + - uid: 23911 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,64.5 + parent: 2 + type: Transform + - uid: 23912 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,64.5 + parent: 2 + type: Transform + - uid: 23913 + components: + - rot: 3.141592653589793 rad + pos: 78.5,-48.5 + parent: 2 + type: Transform + - uid: 23914 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-78.5 + parent: 2 + type: Transform + - uid: 23915 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-88.5 + parent: 2 + type: Transform + - uid: 23916 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-88.5 + parent: 2 + type: Transform - proto: RemoteSignaller entities: - - uid: 23703 + - uid: 23917 components: - pos: 4.3008337,-7.3968306 parent: 2 type: Transform - linkedPorts: - 554: + 558: - Pressed: DoorBolt - 555: + 559: - Pressed: DoorBolt - 625: + 629: - Pressed: DoorBolt type: DeviceLinkSource - proto: ResearchAndDevelopmentServer entities: - - uid: 23704 + - uid: 23918 components: - pos: 55.5,-49.5 parent: 2 type: Transform - proto: Retractor entities: - - uid: 23705 + - uid: 23919 components: - pos: 0.5210637,-65.43571 parent: 2 type: Transform - - uid: 23706 + - uid: 23920 components: - pos: 73.5331,-48.86455 parent: 2 type: Transform - proto: RevolverCapGun entities: - - uid: 23707 + - uid: 23921 components: - pos: 48.521713,-29.492037 parent: 2 type: Transform - - uid: 23708 + - uid: 23922 components: - pos: 3.523116,-35.41609 parent: 2 type: Transform - proto: RiceSeeds entities: - - uid: 23709 + - uid: 23923 components: - pos: -32.424732,6.232961 parent: 2 type: Transform - proto: RockGuitarInstrument entities: - - uid: 23710 + - uid: 23924 components: - pos: -10.563177,-6.285685 parent: 2 type: Transform - proto: RollerBed entities: - - uid: 23711 + - uid: 23925 components: - pos: -29.534147,-77.30682 parent: 2 type: Transform - - uid: 23712 + - uid: 23926 components: - pos: -29.534147,-79.2912 parent: 2 type: Transform - proto: SalvageHumanCorpseSpawner entities: - - uid: 23713 + - uid: 23927 components: - pos: -7.5,-97.5 parent: 2 type: Transform - proto: SalvageMagnet entities: - - uid: 23714 + - uid: 23928 components: - rot: -1.5707963267948966 rad pos: -46.5,32.5 @@ -155506,89 +156694,89 @@ entities: type: Transform - proto: Saw entities: - - uid: 23715 + - uid: 23929 components: - pos: 0.4741887,-64.29508 parent: 2 type: Transform - - uid: 23716 + - uid: 23930 components: - pos: 73.565475,-49.416637 parent: 2 type: Transform - proto: SawElectric entities: - - uid: 23717 + - uid: 23931 components: - pos: 0.5054387,-66.18094 parent: 2 type: Transform - proto: Scalpel entities: - - uid: 23718 + - uid: 23932 components: - pos: 69.49932,-48.836205 parent: 2 type: Transform - - uid: 23719 + - uid: 23933 components: - pos: 0.4585637,-63.810703 parent: 2 type: Transform - proto: ScalpelShiv entities: - - uid: 23720 + - uid: 23934 components: - rot: -1.5707963267948966 rad pos: -7.55561,-100.43354 parent: 2 type: Transform - - uid: 23721 + - uid: 23935 components: - pos: 54.135303,18.76531 parent: 2 type: Transform - proto: ScreenTimerElectronics entities: - - uid: 23722 + - uid: 23936 components: - pos: -8.601834,37.95101 parent: 2 type: Transform - proto: Screwdriver entities: - - uid: 23723 + - uid: 23937 components: - pos: 43.519844,-49.259262 parent: 2 type: Transform - - uid: 23724 + - uid: 23938 components: - pos: -25.458826,-24.443584 parent: 2 type: Transform - - uid: 23725 + - uid: 23939 components: - pos: -9.599733,-10.450774 parent: 2 type: Transform - - uid: 23726 + - uid: 23940 components: - pos: -62.449627,-28.095568 parent: 2 type: Transform - - uid: 23727 + - uid: 23941 components: - pos: -38.450848,-27.350416 parent: 2 type: Transform - - uid: 23728 + - uid: 23942 components: - rot: 12.566370614359172 rad pos: 72.048706,-43.392498 parent: 2 type: Transform - - uid: 23729 + - uid: 23943 components: - rot: 3.141592653589793 rad pos: 12.463634,20.302036 @@ -155596,7 +156784,7 @@ entities: type: Transform - proto: SecurityTechFab entities: - - uid: 23730 + - uid: 23944 components: - pos: 20.5,22.5 parent: 2 @@ -155608,49 +156796,49 @@ entities: type: MaterialStorage - proto: SeedExtractor entities: - - uid: 23731 + - uid: 23945 components: - pos: -9.5,12.5 parent: 2 type: Transform - - uid: 23732 + - uid: 23946 components: - pos: 57.5,8.5 parent: 2 type: Transform - proto: ShardGlass entities: - - uid: 23733 + - uid: 23947 components: - pos: -54.711452,-83.287796 parent: 2 type: Transform - proto: ShardGlassReinforced entities: - - uid: 23734 + - uid: 23948 components: - rot: 1.5707963267948966 rad pos: -54.638016,-82.45104 parent: 2 type: Transform - - uid: 23735 + - uid: 23949 components: - rot: 3.141592653589793 rad pos: 2.3392181,49.47093 parent: 2 type: Transform - - uid: 23736 + - uid: 23950 components: - rot: 3.141592653589793 rad pos: 1.651718,49.767803 parent: 2 type: Transform - - uid: 23737 + - uid: 23951 components: - pos: 3.3860931,48.767803 parent: 2 type: Transform - - uid: 23738 + - uid: 23952 components: - rot: -1.5707963267948966 rad pos: 1.745468,48.361553 @@ -155658,31 +156846,31 @@ entities: type: Transform - proto: SheetGlass entities: - - uid: 23739 + - uid: 23953 components: - pos: 38.525932,-39.04589 parent: 2 type: Transform - count: 28 type: Stack - - uid: 23740 + - uid: 23954 components: - pos: -42.541218,-17.668886 parent: 2 type: Transform - - uid: 23741 + - uid: 23955 components: - pos: -55.463116,-25.47082 parent: 2 type: Transform - - uid: 23742 + - uid: 23956 components: - pos: -24.799974,-52.361668 parent: 2 type: Transform - proto: SheetGlass1 entities: - - uid: 23743 + - uid: 23957 components: - rot: 12.566370614359172 rad pos: 77.45773,-46.509197 @@ -155692,1244 +156880,1304 @@ entities: type: Stack - proto: SheetPaper1 entities: - - uid: 23744 + - uid: 23958 components: - pos: -4.555317,-48.4215 parent: 2 type: Transform - proto: SheetPlasma entities: - - uid: 23745 + - uid: 23959 components: - pos: 62.516293,-33.369144 parent: 2 type: Transform - proto: SheetPlasma1 entities: - - uid: 23746 + - uid: 23960 components: - pos: 7.512034,-46.1751 parent: 2 type: Transform - - uid: 23747 + - uid: 23961 components: - pos: 39.28695,-35.266556 parent: 2 type: Transform - - uid: 23748 + - uid: 23962 components: - pos: 39.583824,-35.40718 parent: 2 type: Transform - proto: SheetPlasteel entities: - - uid: 23749 + - uid: 23963 components: - pos: -42.49803,-16.612768 parent: 2 type: Transform - - uid: 23750 + - uid: 23964 components: - pos: -43.304523,25.592714 parent: 2 type: Transform - proto: SheetPlastic entities: - - uid: 23751 + - uid: 23965 components: - pos: 38.479057,-36.60921 parent: 2 type: Transform - - uid: 23752 + - uid: 23966 components: - pos: -42.44606,-18.09971 parent: 2 type: Transform - proto: SheetRGlass entities: - - uid: 23753 + - uid: 23967 components: - pos: -42.558216,-17.530426 parent: 2 type: Transform - proto: SheetSteel entities: - - uid: 23754 + - uid: 23968 components: - rot: 3.141592653589793 rad pos: -37.461926,-7.6284776 parent: 2 type: Transform - - uid: 23755 + - uid: 23969 components: - pos: 38.51507,-38.238213 parent: 2 type: Transform - - uid: 23756 + - uid: 23970 components: - pos: 38.494682,-37.42171 parent: 2 type: Transform - - uid: 23757 + - uid: 23971 components: - pos: -27.53877,-10.535285 parent: 2 type: Transform - - uid: 23758 + - uid: 23972 components: - pos: -39.513657,-16.565893 parent: 2 type: Transform - - uid: 23759 + - uid: 23973 components: - pos: -39.544514,-17.164497 parent: 2 type: Transform - - uid: 23760 + - uid: 23974 components: - pos: 58.50727,52.410095 parent: 2 type: Transform - - uid: 23761 + - uid: 23975 components: - pos: 77.369896,-46.771843 parent: 2 type: Transform - - uid: 23762 + - uid: 23976 components: - pos: -42.505978,14.552313 parent: 2 type: Transform - - uid: 23763 + - uid: 23977 components: - pos: -72.541214,-39.47832 parent: 2 type: Transform - proto: ShipBattlemap entities: - - uid: 23764 + - uid: 23978 components: - pos: 12.360678,-6.028252 parent: 2 type: Transform - proto: Shovel entities: - - uid: 23765 + - uid: 23979 components: - pos: -52.711685,-67.34979 parent: 2 type: Transform - - uid: 23766 + - uid: 23980 components: - pos: -40.5417,35.280518 parent: 2 type: Transform - - uid: 23767 + - uid: 23981 components: - pos: -40.51045,34.905518 parent: 2 type: Transform - - uid: 23768 + - uid: 23982 components: - pos: -48.500484,26.545332 parent: 2 type: Transform - - uid: 31316 + - uid: 23983 components: - pos: -9.892679,54.810154 parent: 2 type: Transform - proto: ShowcaseRobot entities: - - uid: 23769 + - uid: 23984 components: - pos: 62.5,-45.5 parent: 2 type: Transform - - uid: 23770 + - uid: 23985 components: - pos: -0.5,63.5 parent: 2 type: Transform - - uid: 23771 + - uid: 23986 components: - pos: -2.5,63.5 parent: 2 type: Transform - proto: ShowcaseRobotAntique entities: - - uid: 23772 + - uid: 23987 components: - pos: 61.5,-46.5 parent: 2 type: Transform - proto: ShowcaseRobotMarauder entities: - - uid: 23773 + - uid: 23988 components: - pos: 63.5,-46.5 parent: 2 type: Transform - proto: ShowcaseRobotWhite entities: - - uid: 23774 + - uid: 23989 components: - pos: 62.5,-47.5 parent: 2 type: Transform - proto: ShuttersNormal entities: - - uid: 23775 + - uid: 23990 components: - pos: -9.5,-24.5 parent: 2 type: Transform - - uid: 23776 + - uid: 23991 components: - pos: -8.5,-24.5 parent: 2 type: Transform - - uid: 23777 + - uid: 23992 components: - rot: -1.5707963267948966 rad pos: 66.5,-45.5 parent: 2 type: Transform - links: - - 23910 + - 24135 type: DeviceLinkSink - - uid: 23778 + - uid: 23993 components: - rot: -1.5707963267948966 rad pos: 66.5,-46.5 parent: 2 type: Transform - links: - - 23910 + - 24135 type: DeviceLinkSink - proto: ShuttersNormalOpen entities: - - uid: 23779 + - uid: 23994 components: - pos: -4.5,20.5 parent: 2 type: Transform - invokeCounter: 4 links: - - 23958 + - 24183 type: DeviceLinkSink - - uid: 23780 + - uid: 23995 components: - pos: -5.5,20.5 parent: 2 type: Transform - invokeCounter: 4 links: - - 23958 + - 24183 type: DeviceLinkSink - - uid: 23781 + - uid: 23996 components: - rot: -1.5707963267948966 rad pos: 15.5,13.5 parent: 2 type: Transform - links: - - 23907 + - 24132 type: DeviceLinkSink - - uid: 23782 + - uid: 23997 components: - rot: -1.5707963267948966 rad pos: 15.5,9.5 parent: 2 type: Transform - - uid: 23783 + - uid: 23998 components: - pos: -32.5,32.5 parent: 2 type: Transform - links: - - 23938 + - 24163 type: DeviceLinkSink - - uid: 23784 + - uid: 23999 components: - pos: 37.5,-0.5 parent: 2 type: Transform - links: - - 23909 + - 24134 type: DeviceLinkSink - - uid: 23785 + - uid: 24000 components: - pos: -8.5,4.5 parent: 2 type: Transform - links: - - 23954 + - 24179 type: DeviceLinkSink - - uid: 23786 + - uid: 24001 components: - rot: -1.5707963267948966 rad pos: 15.5,11.5 parent: 2 type: Transform - links: - - 23907 + - 24132 type: DeviceLinkSink - - uid: 23787 + - uid: 24002 components: - rot: -1.5707963267948966 rad pos: 15.5,10.5 parent: 2 type: Transform - links: - - 23907 + - 24132 type: DeviceLinkSink - - uid: 23788 + - uid: 24003 components: - pos: 18.5,15.5 parent: 2 type: Transform - links: - - 23907 + - 24132 type: DeviceLinkSink - - uid: 23789 + - uid: 24004 components: - pos: 17.5,15.5 parent: 2 type: Transform - links: - - 23907 + - 24132 type: DeviceLinkSink - - uid: 23790 + - uid: 24005 components: - pos: -6.5,4.5 parent: 2 type: Transform - links: - - 23954 + - 24179 type: DeviceLinkSink - - uid: 23791 + - uid: 24006 components: - rot: 1.5707963267948966 rad pos: 48.5,6.5 parent: 2 type: Transform - links: - - 23906 + - 24131 type: DeviceLinkSink - - uid: 23792 + - uid: 24007 components: - rot: -1.5707963267948966 rad pos: 35.5,4.5 parent: 2 type: Transform - links: - - 23948 + - 24173 type: DeviceLinkSink - - uid: 23793 + - uid: 24008 components: - rot: -1.5707963267948966 rad pos: 15.5,12.5 parent: 2 type: Transform - links: - - 23907 + - 24132 type: DeviceLinkSink - - uid: 23794 + - uid: 24009 components: - pos: 61.5,-56.5 parent: 2 type: Transform - links: - - 23949 + - 24174 type: DeviceLinkSink - - uid: 23795 + - uid: 24010 components: - rot: -1.5707963267948966 rad pos: 15.5,14.5 parent: 2 type: Transform - links: - - 23907 + - 24132 type: DeviceLinkSink - - uid: 23796 + - uid: 24011 components: - pos: 45.5,9.5 parent: 2 type: Transform - links: - - 23906 + - 24131 type: DeviceLinkSink - - uid: 23797 + - uid: 24012 components: - pos: 43.5,7.5 parent: 2 type: Transform - links: - - 23906 + - 24131 type: DeviceLinkSink - - uid: 23798 + - uid: 24013 components: - pos: 62.5,-56.5 parent: 2 type: Transform - links: - - 23949 + - 24174 type: DeviceLinkSink - - uid: 23799 + - uid: 24014 components: - pos: 63.5,-56.5 parent: 2 type: Transform - links: - - 23949 + - 24174 type: DeviceLinkSink - - uid: 23800 + - uid: 24015 components: - pos: -30.5,27.5 parent: 2 type: Transform - links: - - 23938 + - 24163 type: DeviceLinkSink - - uid: 23801 + - uid: 24016 components: - pos: 29.5,9.5 parent: 2 type: Transform - links: - - 23948 + - 24173 type: DeviceLinkSink - - uid: 23802 + - uid: 24017 components: - pos: 34.5,9.5 parent: 2 type: Transform - links: - - 23948 + - 24173 type: DeviceLinkSink - - uid: 23803 + - uid: 24018 components: - pos: -31.5,27.5 parent: 2 type: Transform - links: - - 23938 + - 24163 type: DeviceLinkSink - - uid: 23804 + - uid: 24019 components: - rot: -1.5707963267948966 rad pos: 35.5,7.5 parent: 2 type: Transform - links: - - 23948 + - 24173 type: DeviceLinkSink - - uid: 23805 + - uid: 24020 components: - pos: -33.5,27.5 parent: 2 type: Transform - links: - - 23938 + - 24163 type: DeviceLinkSink - - uid: 23806 + - uid: 24021 components: - pos: -49.5,13.5 parent: 2 type: Transform - links: - - 23924 + - 24149 type: DeviceLinkSink - - uid: 23807 + - uid: 24022 components: - pos: -48.5,13.5 parent: 2 type: Transform - links: - - 23924 + - 24149 type: DeviceLinkSink - - uid: 23808 + - uid: 24023 components: - pos: -31.5,32.5 parent: 2 type: Transform - links: - - 23938 + - 24163 type: DeviceLinkSink - - uid: 23809 + - uid: 24024 components: - pos: 32.5,9.5 parent: 2 type: Transform - links: - - 23948 + - 24173 type: DeviceLinkSink - - uid: 23810 + - uid: 24025 components: - pos: 39.5,-0.5 parent: 2 type: Transform - links: - - 23909 + - 24134 type: DeviceLinkSink - - uid: 23811 + - uid: 24026 components: - pos: -33.5,32.5 parent: 2 type: Transform - links: - - 23938 + - 24163 type: DeviceLinkSink - - uid: 23812 + - uid: 24027 components: - pos: -46.5,13.5 parent: 2 type: Transform - links: - - 23924 + - 24149 type: DeviceLinkSink - - uid: 23813 + - uid: 24028 components: - pos: -47.5,13.5 parent: 2 type: Transform - links: - - 23924 + - 24149 type: DeviceLinkSink - - uid: 23814 + - uid: 24029 components: - pos: 43.5,5.5 parent: 2 type: Transform - links: - - 23906 + - 24131 type: DeviceLinkSink - - uid: 23815 + - uid: 24030 components: - pos: 59.5,-54.5 parent: 2 type: Transform - links: - - 23949 + - 24174 type: DeviceLinkSink - - uid: 23816 + - uid: 24031 components: - pos: 65.5,-54.5 parent: 2 type: Transform - links: - - 23949 + - 24174 type: DeviceLinkSink - - uid: 23817 + - uid: 24032 components: - rot: 1.5707963267948966 rad pos: 66.5,-51.5 parent: 2 type: Transform - links: - - 23949 + - 24174 type: DeviceLinkSink - - uid: 23818 + - uid: 24033 components: - rot: 1.5707963267948966 rad pos: 66.5,-52.5 parent: 2 type: Transform - links: - - 23949 + - 24174 type: DeviceLinkSink - - uid: 23819 + - uid: 24034 components: - rot: -1.5707963267948966 rad pos: 58.5,-51.5 parent: 2 type: Transform - links: - - 23949 + - 24174 type: DeviceLinkSink - - uid: 23820 + - uid: 24035 components: - rot: -1.5707963267948966 rad pos: 58.5,-52.5 parent: 2 type: Transform - links: - - 23949 + - 24174 type: DeviceLinkSink - - uid: 23821 + - uid: 24036 components: - pos: 61.5,-50.5 parent: 2 type: Transform - links: - - 23949 + - 24174 type: DeviceLinkSink - - uid: 23822 + - uid: 24037 components: - pos: 63.5,-50.5 parent: 2 type: Transform - links: - - 23949 + - 24174 type: DeviceLinkSink - - uid: 23823 + - uid: 24038 components: - pos: -20.5,-58.5 parent: 2 type: Transform - links: - - 23950 + - 24175 type: DeviceLinkSink - - uid: 23824 + - uid: 24039 components: - pos: -18.5,-58.5 parent: 2 type: Transform - links: - - 23950 + - 24175 type: DeviceLinkSink - - uid: 23825 + - uid: 24040 components: - pos: -37.5,-14.5 parent: 2 type: Transform - - uid: 23826 + - uid: 24041 components: - rot: -1.5707963267948966 rad pos: -33.5,-15.5 parent: 2 type: Transform - links: - - 23904 + - 24129 type: DeviceLinkSink - - uid: 23827 + - uid: 24042 components: - rot: -1.5707963267948966 rad pos: -33.5,-17.5 parent: 2 type: Transform - links: - - 23904 + - 24129 type: DeviceLinkSink - - uid: 23828 + - uid: 24043 components: - rot: -1.5707963267948966 rad pos: 7.5,9.5 parent: 2 type: Transform - links: - - 23952 + - 24177 type: DeviceLinkSink - - uid: 23829 + - uid: 24044 components: - rot: -1.5707963267948966 rad pos: 7.5,8.5 parent: 2 type: Transform - links: - - 23952 + - 24177 type: DeviceLinkSink - - uid: 23830 + - uid: 24045 components: - rot: -1.5707963267948966 rad pos: 7.5,7.5 parent: 2 type: Transform - links: - - 23952 + - 24177 type: DeviceLinkSink - - uid: 23831 + - uid: 24046 components: - pos: 2.5,4.5 parent: 2 type: Transform - links: - - 23952 + - 24177 type: DeviceLinkSink - - uid: 23832 + - uid: 24047 components: - pos: 1.5,4.5 parent: 2 type: Transform - links: - - 23952 + - 24177 type: DeviceLinkSink - - uid: 23833 + - uid: 24048 components: - pos: 0.5,4.5 parent: 2 type: Transform - links: - - 23952 + - 24177 type: DeviceLinkSink - - uid: 23834 + - uid: 24049 components: - pos: 5.5,11.5 parent: 2 type: Transform - links: - - 23952 + - 24177 type: DeviceLinkSink - - uid: 23835 + - uid: 24050 components: - pos: 4.5,11.5 parent: 2 type: Transform - links: - - 23952 + - 24177 type: DeviceLinkSink - - uid: 23836 + - uid: 24051 components: - rot: -1.5707963267948966 rad pos: 1.5,-46.5 parent: 2 type: Transform - links: - - 23905 + - 24130 type: DeviceLinkSink - - uid: 23837 + - uid: 24052 components: - pos: 34.5,18.5 parent: 2 type: Transform - links: - - 23953 + - 24178 type: DeviceLinkSink - - uid: 23838 + - uid: 24053 components: - pos: 35.5,18.5 parent: 2 type: Transform - links: - - 23953 + - 24178 type: DeviceLinkSink - - uid: 23839 + - uid: 24054 components: - pos: 36.5,18.5 parent: 2 type: Transform - links: - - 23953 + - 24178 type: DeviceLinkSink - - uid: 23840 + - uid: 24055 components: - pos: -7.5,4.5 parent: 2 type: Transform - links: - - 23954 + - 24179 type: DeviceLinkSink - - uid: 23841 + - uid: 24056 components: - rot: 1.5707963267948966 rad pos: 48.5,7.5 parent: 2 type: Transform - links: - - 23906 + - 24131 type: DeviceLinkSink - - uid: 23842 + - uid: 24057 components: - pos: 46.5,9.5 parent: 2 type: Transform - links: - - 23906 + - 24131 type: DeviceLinkSink - - uid: 23843 + - uid: 24058 components: - rot: 1.5707963267948966 rad pos: 35.5,-1.5 parent: 2 type: Transform - links: - - 23909 + - 24134 type: DeviceLinkSink - - uid: 23844 + - uid: 24059 components: - rot: 1.5707963267948966 rad pos: 35.5,-2.5 parent: 2 type: Transform - links: - - 23909 + - 24134 type: DeviceLinkSink - - uid: 23845 + - uid: 24060 components: - rot: 1.5707963267948966 rad pos: 35.5,-4.5 parent: 2 type: Transform - links: - - 23909 + - 24134 type: DeviceLinkSink - - uid: 23846 + - uid: 24061 components: - rot: 1.5707963267948966 rad pos: 35.5,-5.5 parent: 2 type: Transform - links: - - 23909 + - 24134 type: DeviceLinkSink - - uid: 23847 + - uid: 24062 components: - pos: 41.5,-0.5 parent: 2 type: Transform - links: - - 23955 + - 24180 type: DeviceLinkSink - - uid: 23848 + - uid: 24063 components: - pos: 42.5,-0.5 parent: 2 type: Transform - links: - - 23955 + - 24180 type: DeviceLinkSink - - uid: 23849 + - uid: 24064 components: - pos: 43.5,-0.5 parent: 2 type: Transform - links: - - 23955 + - 24180 type: DeviceLinkSink - - uid: 23850 + - uid: 24065 components: - pos: 46.5,3.5 parent: 2 type: Transform - links: - - 23906 + - 24131 type: DeviceLinkSink - - uid: 23851 + - uid: 24066 components: - rot: -1.5707963267948966 rad pos: 1.5,-47.5 parent: 2 type: Transform - links: - - 23905 + - 24130 type: DeviceLinkSink - - uid: 23852 + - uid: 24067 components: - rot: -1.5707963267948966 rad pos: 1.5,-48.5 parent: 2 type: Transform - links: - - 23905 + - 24130 type: DeviceLinkSink - - uid: 23853 + - uid: 24068 components: - pos: 3.5,-44.5 parent: 2 type: Transform - links: - - 23905 + - 24130 type: DeviceLinkSink - - uid: 23854 + - uid: 24069 components: - pos: 4.5,-44.5 parent: 2 type: Transform - links: - - 23905 + - 24130 type: DeviceLinkSink - - uid: 23855 + - uid: 24070 components: - pos: 5.5,-44.5 parent: 2 type: Transform - links: - - 23905 + - 24130 type: DeviceLinkSink - - uid: 23856 + - uid: 24071 components: - pos: 3.5,-51.5 parent: 2 type: Transform - links: - - 23905 + - 24130 type: DeviceLinkSink - - uid: 23857 + - uid: 24072 components: - pos: 23.5,5.5 parent: 2 type: Transform - links: - - 23956 + - 24181 type: DeviceLinkSink - - uid: 23858 + - uid: 24073 components: - pos: 22.5,5.5 parent: 2 type: Transform - links: - - 23956 + - 24181 type: DeviceLinkSink - - uid: 23859 + - uid: 24074 components: - pos: 21.5,5.5 parent: 2 type: Transform - links: - - 23956 + - 24181 type: DeviceLinkSink - - uid: 23860 + - uid: 24075 components: - pos: 25.5,5.5 parent: 2 type: Transform - links: - - 23956 + - 24181 type: DeviceLinkSink - - uid: 23861 + - uid: 24076 components: - pos: 26.5,5.5 parent: 2 type: Transform - links: - - 23956 + - 24181 type: DeviceLinkSink - - uid: 23862 + - uid: 24077 components: - pos: 27.5,5.5 parent: 2 type: Transform - links: - - 23956 + - 24181 type: DeviceLinkSink - - uid: 23863 + - uid: 24078 components: - pos: 27.5,-3.5 parent: 2 type: Transform - links: - - 23956 + - 24181 type: DeviceLinkSink - - uid: 23864 + - uid: 24079 components: - pos: 26.5,-3.5 parent: 2 type: Transform - links: - - 23956 + - 24181 type: DeviceLinkSink - - uid: 23865 + - uid: 24080 components: - pos: 25.5,-3.5 parent: 2 type: Transform - links: - - 23956 + - 24181 type: DeviceLinkSink - - uid: 23866 + - uid: 24081 components: - pos: 23.5,-3.5 parent: 2 type: Transform - links: - - 23956 + - 24181 type: DeviceLinkSink - - uid: 23867 + - uid: 24082 components: - pos: 22.5,-3.5 parent: 2 type: Transform - - uid: 23868 + - uid: 24083 components: - pos: 21.5,-3.5 parent: 2 type: Transform - links: - - 23956 + - 24181 type: DeviceLinkSink - - uid: 23869 + - uid: 24084 components: - rot: 1.5707963267948966 rad pos: 19.5,3.5 parent: 2 type: Transform - links: - - 23956 + - 24181 type: DeviceLinkSink - - uid: 23870 + - uid: 24085 components: - rot: 1.5707963267948966 rad pos: 19.5,2.5 parent: 2 type: Transform - links: - - 23956 + - 24181 type: DeviceLinkSink - - uid: 23871 + - uid: 24086 components: - rot: 1.5707963267948966 rad pos: 19.5,1.5 parent: 2 type: Transform - links: - - 23956 + - 24181 type: DeviceLinkSink - - uid: 23872 + - uid: 24087 components: - rot: 1.5707963267948966 rad pos: 19.5,0.5 parent: 2 type: Transform - links: - - 23956 + - 24181 type: DeviceLinkSink - - uid: 23873 + - uid: 24088 components: - rot: 1.5707963267948966 rad pos: 19.5,-0.5 parent: 2 type: Transform - links: - - 23956 + - 24181 type: DeviceLinkSink - - uid: 23874 + - uid: 24089 components: - rot: 1.5707963267948966 rad pos: 19.5,-1.5 parent: 2 type: Transform - links: - - 23956 + - 24181 type: DeviceLinkSink - - uid: 23875 + - uid: 24090 components: - pos: 22.5,-20.5 parent: 2 type: Transform - - uid: 23876 + - uid: 24091 components: - pos: 23.5,-20.5 parent: 2 type: Transform - - uid: 23877 + - uid: 24092 components: - pos: 24.5,-20.5 parent: 2 type: Transform - - uid: 23878 + - uid: 24093 components: - pos: 25.5,-20.5 parent: 2 type: Transform - - uid: 23879 + - uid: 24094 components: - pos: 26.5,-20.5 parent: 2 type: Transform - - uid: 23880 + - uid: 24095 components: - pos: 27.5,-20.5 parent: 2 type: Transform - - uid: 23881 + - uid: 24096 components: - pos: 28.5,-20.5 parent: 2 type: Transform - - uid: 23882 + - uid: 24097 components: - pos: 4.5,-3.5 parent: 2 type: Transform - links: - - 23962 + - 24187 type: DeviceLinkSink - - uid: 23883 + - uid: 24098 components: - pos: 1.5,-3.5 parent: 2 type: Transform - links: - - 23962 + - 24187 type: DeviceLinkSink - - uid: 23884 + - uid: 24099 components: - pos: 3.5,-3.5 parent: 2 type: Transform - links: - - 23962 + - 24187 type: DeviceLinkSink - - uid: 23885 + - uid: 24100 components: - pos: 2.5,-3.5 parent: 2 type: Transform - links: - - 23962 + - 24187 type: DeviceLinkSink - proto: ShuttleConsoleCircuitboard entities: - - uid: 23886 + - uid: 24101 components: - pos: 8.934531,42.902378 parent: 2 type: Transform - proto: ShuttleWindow entities: - - uid: 23887 + - uid: 24102 components: - rot: -1.5707963267948966 rad pos: -72.5,-57.5 parent: 2 type: Transform - - uid: 23888 + - uid: 24103 components: - rot: 1.5707963267948966 rad pos: -77.5,-51.5 parent: 2 type: Transform - - uid: 23889 + - uid: 24104 components: - rot: 3.141592653589793 rad pos: -80.5,-53.5 parent: 2 type: Transform - - uid: 23890 + - uid: 24105 components: - rot: 1.5707963267948966 rad pos: -77.5,-56.5 parent: 2 type: Transform - - uid: 23891 + - uid: 24106 components: - rot: 1.5707963267948966 rad pos: -80.5,-54.5 parent: 2 type: Transform - - uid: 23892 + - uid: 24107 components: - pos: -72.5,-50.5 parent: 2 type: Transform - - uid: 23893 + - uid: 24108 components: - rot: 3.141592653589793 rad pos: -78.5,-51.5 parent: 2 type: Transform - - uid: 23894 + - uid: 24109 components: - rot: 1.5707963267948966 rad pos: -78.5,-56.5 parent: 2 type: Transform + - uid: 24110 + components: + - rot: 1.5707963267948966 rad + pos: -64.5,-55.5 + parent: 2 + type: Transform + - uid: 24111 + components: + - rot: 1.5707963267948966 rad + pos: -64.5,-54.5 + parent: 2 + type: Transform + - uid: 24112 + components: + - rot: 1.5707963267948966 rad + pos: -64.5,-53.5 + parent: 2 + type: Transform + - uid: 24113 + components: + - rot: 1.5707963267948966 rad + pos: -64.5,-52.5 + parent: 2 + type: Transform +- proto: ShuttleWindowDiagonal + entities: + - uid: 24114 + components: + - rot: 1.5707963267948966 rad + pos: -79.5,-56.5 + parent: 2 + type: Transform + - uid: 24115 + components: + - rot: 1.5707963267948966 rad + pos: -80.5,-55.5 + parent: 2 + type: Transform + - uid: 24116 + components: + - rot: 3.141592653589793 rad + pos: -79.5,-52.5 + parent: 2 + type: Transform + - uid: 24117 + components: + - pos: -80.5,-52.5 + parent: 2 + type: Transform + - uid: 24118 + components: + - pos: -79.5,-51.5 + parent: 2 + type: Transform + - uid: 24119 + components: + - rot: -1.5707963267948966 rad + pos: -79.5,-55.5 + parent: 2 + type: Transform - proto: SignAi entities: - - uid: 23895 + - uid: 24120 components: - pos: -3.5,60.5 parent: 2 type: Transform - proto: SignalButtonDirectional entities: - - uid: 23896 + - uid: 24121 components: - rot: -1.5707963267948966 rad pos: -50.5,13.5 parent: 2 type: Transform - linkedPorts: - 112: + 113: - Pressed: DoorBolt type: DeviceLinkSource - - uid: 23897 + - uid: 24122 components: - rot: 1.5707963267948966 rad pos: -53.5,8.5 parent: 2 type: Transform - linkedPorts: - 113: + 114: - Pressed: DoorBolt type: DeviceLinkSource - - uid: 23898 + - uid: 24123 components: - rot: 1.5707963267948966 rad pos: -44.5,10.5 parent: 2 type: Transform - linkedPorts: - 111: + 112: - Pressed: DoorBolt type: DeviceLinkSource - - uid: 23899 + - uid: 24124 components: - pos: -22.5,40.5 parent: 2 type: Transform - linkedPorts: - 793: + 795: - Pressed: DoorBolt type: DeviceLinkSource - - uid: 23900 + - uid: 24125 components: - rot: 3.141592653589793 rad pos: -22.5,28.5 parent: 2 type: Transform - linkedPorts: - 114: + 115: - Pressed: DoorBolt type: DeviceLinkSource - - uid: 23901 + - uid: 24126 components: - rot: -1.5707963267948966 rad pos: -17.5,35.5 parent: 2 type: Transform - linkedPorts: - 115: + 116: - Pressed: DoorBolt - 675: + 678: - Pressed: DoorBolt type: DeviceLinkSource - - uid: 23902 + - uid: 24127 components: - rot: -1.5707963267948966 rad pos: -25.5,44.5 parent: 2 type: Transform - linkedPorts: - 792: + 794: - Pressed: DoorBolt type: DeviceLinkSource - - uid: 23903 + - uid: 24128 components: - rot: 1.5707963267948966 rad pos: -13.5,33.5 parent: 2 type: Transform - linkedPorts: - 116: + 117: - Pressed: DoorBolt type: DeviceLinkSource - - uid: 23904 + - uid: 24129 components: - rot: -1.5707963267948966 rad pos: -33.5,-18.5 parent: 2 type: Transform - linkedPorts: - 23827: + 24042: - Pressed: Toggle - 23826: + 24041: - Pressed: Toggle type: DeviceLinkSource - proto: SignalSwitch entities: - - uid: 23905 + - uid: 24130 components: - rot: -1.5707963267948966 rad pos: 8.5,-48.5 @@ -156938,30 +158186,30 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23856: + 24071: - On: Open - Off: Close - 23852: + 24067: - On: Open - Off: Close - 23851: + 24066: - On: Open - Off: Close - 23836: + 24051: - On: Open - Off: Close - 23853: + 24068: - On: Open - Off: Close - 23854: + 24069: - On: Open - Off: Close - 23855: + 24070: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23906 + - uid: 24131 components: - rot: -1.5707963267948966 rad pos: 47.5,8.5 @@ -156970,30 +158218,30 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23791: + 24006: - On: Open - Off: Close - 23841: + 24056: - On: Open - Off: Close - 23842: + 24057: - On: Open - Off: Close - 23796: + 24011: - On: Open - Off: Close - 23797: + 24012: - On: Open - Off: Close - 23814: + 24029: - On: Open - Off: Close - 23850: + 24065: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23907 + - uid: 24132 components: - pos: 16.5,15.5 parent: 2 @@ -157001,42 +158249,42 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23781: + 23996: - On: Open - Off: Close - 23786: + 24001: - On: Open - Off: Close - 23787: + 24002: - On: Open - Off: Close - 23793: + 24008: - On: Open - Off: Close - 23789: + 24004: - On: Open - Off: Close - 23788: + 24003: - On: Open - Off: Close - 23795: + 24010: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23908 + - uid: 24133 components: - rot: 3.141592653589793 rad pos: -13.5,-16.5 parent: 2 type: Transform - linkedPorts: - 2126: + 2128: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23909 + - uid: 24134 components: - rot: -1.5707963267948966 rad pos: 40.5,-3.5 @@ -157045,141 +158293,141 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23810: + 24025: - On: Open - Off: Close - 23784: + 23999: - On: Open - Off: Close - 23843: + 24058: - On: Open - Off: Close - 23844: + 24059: - On: Open - Off: Close - 23845: + 24060: - On: Open - Off: Close - 23846: + 24061: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23910 + - uid: 24135 components: - rot: 1.5707963267948966 rad pos: 66.5,-44.5 parent: 2 type: Transform - linkedPorts: - 23777: + 23992: - On: Open - Off: Close - 23778: + 23993: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23911 + - uid: 24136 components: - rot: 3.141592653589793 rad pos: 70.5,-39.5 parent: 2 type: Transform - linkedPorts: - 2105: + 2107: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23912 + - uid: 24137 components: - pos: 47.5,-55.5 parent: 2 type: Transform - linkedPorts: - 2063: + 2065: - On: Open - Off: Close - 2062: + 2064: - On: Open - Off: Close - 2061: + 2063: - On: Open - Off: Close - 2060: + 2062: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23913 + - uid: 24138 components: - rot: -1.5707963267948966 rad pos: 52.5,-56.5 parent: 2 type: Transform - linkedPorts: - 2064: + 2066: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23914 + - uid: 24139 components: - pos: -51.5,32.5 parent: 2 type: Transform - linkedPorts: - 2078: + 2080: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23915 + - uid: 24140 components: - rot: 3.141592653589793 rad pos: 60.5,-55.5 parent: 2 type: Transform - linkedPorts: - 2066: + 2068: - On: Open - Off: Close - 2067: + 2069: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23916 + - uid: 24141 components: - pos: 16.5,-51.5 parent: 2 type: Transform - linkedPorts: - 2059: + 2061: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23917 + - uid: 24142 components: - pos: -62.5,-26.5 parent: 2 type: Transform - linkedPorts: - 2136: + 2138: - On: Open - Off: Close - 2135: + 2137: - On: Open - Off: Close - 2134: + 2136: - On: Open - Off: Close - 2133: + 2135: - On: Open - Off: Close - 2132: + 2134: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23918 + - uid: 24143 components: - pos: -52.5,-11.5 parent: 2 @@ -157187,69 +158435,69 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2127: + 2129: - On: Open - Off: Close - 2128: + 2130: - On: Open - Off: Close - 2129: + 2131: - On: Open - Off: Close - 2130: + 2132: - On: Open - Off: Close - 2131: + 2133: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23919 + - uid: 24144 components: - pos: -36.5,-40.5 parent: 2 type: Transform - linkedPorts: - 2072: + 2074: - On: Open - Off: Close - 2071: + 2073: - On: Open - Off: Close - 2070: + 2072: - On: Open - Off: Close - 2069: + 2071: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23920 + - uid: 24145 components: - pos: -51.5,21.5 parent: 2 type: Transform - linkedPorts: - 2079: + 2081: - On: Open - Off: Close - 2080: + 2082: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23921 + - uid: 24146 components: - pos: -49.5,24.5 parent: 2 type: Transform - linkedPorts: - 2074: + 2076: - On: Open - Off: Close - 2073: + 2075: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23922 + - uid: 24147 components: - pos: 50.5,48.5 parent: 2 @@ -157257,14 +158505,14 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2085: + 2087: - On: Open - Off: Close - 2087: + 2089: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23923 + - uid: 24148 components: - pos: 52.5,48.5 parent: 2 @@ -157272,14 +158520,14 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2089: + 2091: - On: Open - Off: Close - 2081: + 2083: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23924 + - uid: 24149 components: - pos: -46.5,17.5 parent: 2 @@ -157287,21 +158535,21 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23806: + 24021: - On: Open - Off: Close - 23807: + 24022: - On: Open - Off: Close - 23812: + 24027: - On: Open - Off: Close - 23813: + 24028: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23925 + - uid: 24150 components: - pos: 58.5,48.5 parent: 2 @@ -157309,40 +158557,40 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2083: + 2085: - On: Open - Off: Close - 2100: + 2102: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23926 + - uid: 24151 components: - pos: 54.5,46.5 parent: 2 type: Transform - linkedPorts: - 2090: + 2092: - On: Open - Off: Close - 2094: + 2096: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23927 + - uid: 24152 components: - pos: 52.5,46.5 parent: 2 type: Transform - linkedPorts: - 2082: + 2084: - On: Open - Off: Close - 2076: + 2078: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23928 + - uid: 24153 components: - pos: 54.5,48.5 parent: 2 @@ -157350,14 +158598,14 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2094: + 2096: - On: Open - Off: Close - 2099: + 2101: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23929 + - uid: 24154 components: - pos: 56.5,44.5 parent: 2 @@ -157365,14 +158613,14 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2076: + 2078: - On: Open - Off: Close - 2075: + 2077: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23930 + - uid: 24155 components: - pos: 50.5,44.5 parent: 2 @@ -157380,14 +158628,14 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2096: + 2098: - On: Open - Off: Close - 2082: + 2084: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23931 + - uid: 24156 components: - pos: 52.5,44.5 parent: 2 @@ -157395,27 +158643,27 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2075: + 2077: - On: Close - Off: Open - 2084: + 2086: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23932 + - uid: 24157 components: - pos: 58.5,46.5 parent: 2 type: Transform - linkedPorts: - 2081: + 2083: - On: Open - Off: Close - 2097: + 2099: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23933 + - uid: 24158 components: - pos: 54.5,44.5 parent: 2 @@ -157423,27 +158671,27 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2092: + 2094: - On: Open - Off: Close - 2091: + 2093: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23934 + - uid: 24159 components: - pos: 50.5,46.5 parent: 2 type: Transform - linkedPorts: - 2093: + 2095: - On: Close - Off: Open - 2099: + 2101: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23935 + - uid: 24160 components: - pos: 56.5,46.5 parent: 2 @@ -157451,14 +158699,14 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2100: + 2102: - On: Open - Off: Close - 2090: + 2092: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23936 + - uid: 24161 components: - pos: 58.5,44.5 parent: 2 @@ -157466,36 +158714,36 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2092: + 2094: - On: Open - Off: Close - 2098: + 2100: - On: Open - Off: Close - 2075: + 2077: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23937 + - uid: 24162 components: - pos: 56.5,48.5 parent: 2 type: Transform - linkedPorts: - 2088: + 2090: - On: Open - Off: Close - 2087: + 2089: - On: Open - Off: Close - 2094: + 2096: - On: Close - Off: Open - 2098: + 2100: - On: Close - Off: Open type: DeviceLinkSource - - uid: 23938 + - uid: 24163 components: - rot: 1.5707963267948966 rad pos: -35.5,29.5 @@ -157504,60 +158752,60 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23805: + 24020: - On: Open - Off: Close - 23803: + 24018: - On: Open - Off: Close - 23800: + 24015: - On: Open - Off: Close - 23811: + 24026: - On: Open - Off: Close - 23783: + 23998: - On: Open - Off: Close - 23808: + 24023: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23939 + - uid: 24164 components: - pos: 54.5,51.5 parent: 2 type: Transform - linkedPorts: - 2087: + 2089: - On: Open - Off: Close - 2081: + 2083: - On: Open - Off: Close - 2091: + 2093: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23940 + - uid: 24165 components: - pos: 5.5,49.5 parent: 2 type: Transform - linkedPorts: - 2057: + 2059: - On: Open - Off: Close - 2058: + 2060: - On: Open - Off: Close - 2056: + 2058: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23941 + - uid: 24166 components: - pos: 27.5,44.5 parent: 2 @@ -157565,64 +158813,64 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2111: + 2113: - On: Open - Off: Close - 2114: + 2116: - On: Open - Off: Close - 2115: + 2117: - On: Open - Off: Close - 2110: + 2112: - On: Open - Off: Close - 2108: + 2110: - On: Open - Off: Close - 2109: + 2111: - On: Open - Off: Close - 2117: + 2119: - On: Open - Off: Close - 2116: + 2118: - On: Open - Off: Close - 2113: + 2115: - On: Open - Off: Close - 2112: + 2114: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23942 + - uid: 24167 components: - pos: -28.5,-96.5 parent: 2 type: Transform - linkedPorts: - 2101: + 2103: - On: Open - Off: Close - 2102: + 2104: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23943 + - uid: 24168 components: - pos: -16.5,-96.5 parent: 2 type: Transform - linkedPorts: - 2103: + 2105: - On: Open - Off: Close - 2104: + 2106: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23944 + - uid: 24169 components: - rot: 3.141592653589793 rad pos: -5.5,-89.5 @@ -157631,32 +158879,32 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2125: + 2127: - On: Open - Off: Close - 2118: + 2120: - On: Open - Off: Close - 2119: + 2121: - On: Open - Off: Close - 2122: + 2124: - On: Open - Off: Close - 2120: + 2122: - On: Open - Off: Close - 2121: + 2123: - On: Open - Off: Close - 2123: + 2125: - On: Open - Off: Close - 2124: + 2126: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23945 + - uid: 24170 components: - pos: -8.5,-94.5 parent: 2 @@ -157664,53 +158912,53 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 2125: - - On: Open - - Off: Close - 2118: + 2127: - On: Open - Off: Close - 2119: + 2120: - On: Open - Off: Close - 2120: + 2121: - On: Open - Off: Close 2122: - On: Open - Off: Close - 2121: + 2124: - On: Open - Off: Close 2123: - On: Open - Off: Close - 2124: + 2125: + - On: Open + - Off: Close + 2126: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23946 + - uid: 24171 components: - rot: 3.141592653589793 rad pos: 48.5,-59.5 parent: 2 type: Transform - linkedPorts: - 2065: + 2067: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23947 + - uid: 24172 components: - pos: 69.5,-32.5 parent: 2 type: Transform - linkedPorts: - 2106: + 2108: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23948 + - uid: 24173 components: - pos: 33.483017,17.346874 parent: 2 @@ -157718,24 +158966,24 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23801: + 24016: - On: Open - Off: Close - 23809: + 24024: - On: Open - Off: Close - 23802: + 24017: - On: Open - Off: Close - 23804: + 24019: - On: Open - Off: Close - 23792: + 24007: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23949 + - uid: 24174 components: - rot: 3.141592653589793 rad pos: 64.5,-55.5 @@ -157744,42 +158992,42 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23799: + 24014: - On: Open - Off: Close - 23798: + 24013: - On: Open - Off: Close - 23794: + 24009: - On: Open - Off: Close - 23816: + 24031: - On: Open - Off: Close - 23815: + 24030: - On: Open - Off: Close - 23818: + 24033: - On: Open - Off: Close - 23817: + 24032: - On: Open - Off: Close - 23819: + 24034: - On: Open - Off: Close - 23820: + 24035: - On: Open - Off: Close - 23821: + 24036: - On: Open - Off: Close - 23822: + 24037: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23950 + - uid: 24175 components: - rot: -1.5707963267948966 rad pos: -16.5,-55.5 @@ -157788,26 +159036,26 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23824: + 24039: - On: Open - Off: Close - 23823: + 24038: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23951 + - uid: 24176 components: - pos: -51.5,36.5 parent: 2 type: Transform - linkedPorts: - 2077: + 2079: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23952 + - uid: 24177 components: - rot: 1.5707963267948966 rad pos: 3.5,10.5 @@ -157816,33 +159064,33 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23828: + 24043: - On: Open - Off: Close - 23829: + 24044: - On: Open - Off: Close - 23830: + 24045: - On: Open - Off: Close - 23835: + 24050: - On: Open - Off: Close - 23834: + 24049: - On: Open - Off: Close - 23833: + 24048: - On: Open - Off: Close - 23832: + 24047: - On: Open - Off: Close - 23831: + 24046: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23953 + - uid: 24178 components: - pos: 33.487907,17.698355 parent: 2 @@ -157850,35 +159098,35 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23837: + 24052: - On: Open - Off: Close - 23838: + 24053: - On: Open - Off: Close - 23839: + 24054: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23954 + - uid: 24179 components: - rot: -1.5707963267948966 rad pos: -5.5,10.5 parent: 2 type: Transform - linkedPorts: - 23785: + 24000: - On: Open - Off: Close - 23840: + 24055: - On: Open - Off: Close - 23790: + 24005: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23955 + - uid: 24180 components: - rot: -1.5707963267948966 rad pos: 45.5,-2.5 @@ -157887,211 +159135,211 @@ entities: - state: True type: SignalSwitch - linkedPorts: - 23849: + 24064: - On: Open - Off: Close - 23848: + 24063: - On: Open - Off: Close - 23847: + 24062: - On: Open - Off: Close type: DeviceLinkSource - type: ItemCooldown - - uid: 23956 + - uid: 24181 components: - rot: -1.5707963267948966 rad pos: 29.5,-1.5 parent: 2 type: Transform - linkedPorts: - 23859: + 24074: - On: Open - Off: Close - 23858: + 24073: - On: Open - Off: Close - 23857: + 24072: - On: Open - Off: Close - 23860: + 24075: - On: Open - Off: Close - 23861: + 24076: - On: Open - Off: Close - 23862: + 24077: - On: Open - Off: Close - 23863: + 24078: - On: Open - Off: Close - 23864: + 24079: - On: Open - Off: Close - 23865: + 24080: - On: Open - Off: Close - 23866: + 24081: - On: Open - Off: Close - 23868: + 24083: - On: Open - Off: Close - 23874: + 24089: - On: Open - Off: Close - 23873: + 24088: - On: Open - Off: Close - 23872: + 24087: - On: Open - Off: Close - 23871: + 24086: - On: Open - Off: Close - 23870: + 24085: - On: Open - Off: Close - 23869: + 24084: - On: Open - Off: Close type: DeviceLinkSource - - uid: 23957 + - uid: 24182 components: - rot: -1.5707963267948966 rad pos: 31.5,-23.5 parent: 2 type: Transform - - uid: 23958 + - uid: 24183 components: - pos: -2.5,16.5 parent: 2 type: Transform - linkedPorts: - 23779: + 23994: - On: Open - Off: Close - Status: Toggle - 23780: + 23995: - On: Open - Off: Close - Status: Toggle type: DeviceLinkSource - type: ItemCooldown - - uid: 23959 + - uid: 24184 components: - pos: -74.5,-43.5 parent: 2 type: Transform - linkedPorts: - 2054: + 2056: - On: Open - Off: Close - Status: Toggle - 2055: + 2057: - On: Open - Off: Close - Status: Toggle - 2053: + 2055: - On: Open - Off: Close - Status: Toggle type: DeviceLinkSource - - uid: 23960 + - uid: 24185 components: - pos: -74.5,-38.5 parent: 2 type: Transform - linkedPorts: - 2051: + 2053: - On: Open - Off: Close - Status: Toggle - 2050: + 2052: - On: Open - Off: Close - Status: Toggle - 2052: + 2054: - On: Open - Off: Close - Status: Toggle type: DeviceLinkSource - - uid: 23961 + - uid: 24186 components: - rot: -1.5707963267948966 rad pos: -41.5,-39.5 parent: 2 type: Transform - linkedPorts: - 2107: + 2109: - On: Open - Off: Close - Status: Toggle - 2068: + 2070: - On: Open - Off: Close - Status: Toggle type: DeviceLinkSource - proto: SignalSwitchDirectional entities: - - uid: 23962 + - uid: 24187 components: - rot: 1.5707963267948966 rad pos: 0.5,-7.5 parent: 2 type: Transform - linkedPorts: - 23884: + 24099: - On: Open - Off: Close - Status: Toggle - 23882: + 24097: - Off: Close - On: Open - Status: Toggle - 23885: + 24100: - On: Open - Off: Close - Status: Toggle - 23883: + 24098: - On: Open - Off: Close - Status: Toggle - 22299: + 22449: - Status: Toggle - 21927: + 22077: - Status: Toggle type: DeviceLinkSource - proto: SignAnomaly entities: - - uid: 23963 + - uid: 24188 components: - pos: 76.5,-42.5 parent: 2 type: Transform - proto: SignAnomaly2 entities: - - uid: 23964 + - uid: 24189 components: - pos: 63.5,-41.5 parent: 2 type: Transform - proto: SignArmory entities: - - uid: 23965 + - uid: 24190 components: - pos: 29.5,24.5 parent: 2 type: Transform - proto: SignAtmos entities: - - uid: 23966 + - uid: 24191 components: - pos: -21.5,-31.5 parent: 2 type: Transform - - uid: 23967 + - uid: 24192 components: - name: Thermoelectric Generator type: MetaData @@ -158099,7 +159347,7 @@ entities: pos: -71.5,-33.5 parent: 2 type: Transform - - uid: 23968 + - uid: 24193 components: - name: Thermo-Electric Generator type: MetaData @@ -158109,24 +159357,24 @@ entities: type: Transform - proto: SignAtmosMinsky entities: - - uid: 23969 + - uid: 24194 components: - pos: -30.5,-29.5 parent: 2 type: Transform - - uid: 23970 + - uid: 24195 components: - pos: -21.5,-33.5 parent: 2 type: Transform - proto: SignBar entities: - - uid: 23971 + - uid: 24196 components: - pos: 15.5,5.5 parent: 2 type: Transform - - uid: 23972 + - uid: 24197 components: - rot: 1.5707963267948966 rad pos: 12.5,4.5 @@ -158134,97 +159382,97 @@ entities: type: Transform - proto: SignBiohazardMed entities: - - uid: 23973 + - uid: 24198 components: - pos: -23.5,-74.5 parent: 2 type: Transform - proto: SignBridge entities: - - uid: 23974 + - uid: 24199 components: - pos: 17.5,-26.5 parent: 2 type: Transform - - uid: 23975 + - uid: 24200 components: - pos: 33.5,-26.5 parent: 2 type: Transform - proto: SignCanisters entities: - - uid: 23976 + - uid: 24201 components: - pos: -36.5,-39.5 parent: 2 type: Transform - - uid: 23977 + - uid: 24202 components: - pos: 47.5,-50.5 parent: 2 type: Transform - proto: SignCargo entities: - - uid: 23978 + - uid: 24203 components: - pos: -21.5,22.5 parent: 2 type: Transform - proto: SignCargoDock entities: - - uid: 23979 + - uid: 24204 components: - pos: -35.532974,23.594805 parent: 2 type: Transform - proto: SignChem entities: - - uid: 23980 + - uid: 24205 components: - pos: 2.5,-44.5 parent: 2 type: Transform - proto: SignCloning entities: - - uid: 23981 + - uid: 24206 components: - pos: -7.5,-62.5 parent: 2 type: Transform - proto: SignConference entities: - - uid: 23982 + - uid: 24207 components: - pos: 22.5,-26.5 parent: 2 type: Transform - proto: SignDangerMed entities: - - uid: 23983 + - uid: 24208 components: - pos: 15.5,35.5 parent: 2 type: Transform - proto: SignDirectionalBar entities: - - uid: 23984 + - uid: 24209 components: - pos: -19.478512,48.31118 parent: 2 type: Transform - - uid: 23985 + - uid: 24210 components: - rot: 1.5707963267948966 rad pos: -17.472397,9.2931385 parent: 2 type: Transform - - uid: 23986 + - uid: 24211 components: - rot: 3.141592653589793 rad pos: 23.49888,-45.152493 parent: 2 type: Transform - - uid: 23987 + - uid: 24212 components: - rot: 1.5707963267948966 rad pos: -27.50719,3.4686704 @@ -158232,52 +159480,52 @@ entities: type: Transform - proto: SignDirectionalBridge entities: - - uid: 23988 + - uid: 24213 components: - pos: -19.478844,48.09307 parent: 2 type: Transform - - uid: 23989 + - uid: 24214 components: - rot: 1.5707963267948966 rad pos: -1.5055174,1.4292434 parent: 2 type: Transform - - uid: 23990 + - uid: 24215 components: - rot: 1.5707963267948966 rad pos: -2.4872613,-24.496803 parent: 2 type: Transform - - uid: 23991 + - uid: 24216 components: - pos: 27.5,-7.5 parent: 2 type: Transform - - uid: 23992 + - uid: 24217 components: - pos: 15.5507345,4.4965997 parent: 2 type: Transform - - uid: 23993 + - uid: 24218 components: - rot: 1.5707963267948966 rad pos: -11.506838,1.2987667 parent: 2 type: Transform - - uid: 23994 + - uid: 24219 components: - rot: 1.5707963267948966 rad pos: -1.4898663,-40.13394 parent: 2 type: Transform - - uid: 23995 + - uid: 24220 components: - rot: 1.5707963267948966 rad pos: -17.465254,8.332064 parent: 2 type: Transform - - uid: 23996 + - uid: 24221 components: - rot: 1.5707963267948966 rad pos: -27.50719,3.2186704 @@ -158285,19 +159533,19 @@ entities: type: Transform - proto: SignDirectionalChapel entities: - - uid: 23997 + - uid: 24222 components: - rot: -1.5707963267948966 rad pos: -27.5,2.5 parent: 2 type: Transform - - uid: 23998 + - uid: 24223 components: - rot: 3.141592653589793 rad pos: -17.448181,-40.311073 parent: 2 type: Transform - - uid: 23999 + - uid: 24224 components: - rot: -1.5707963267948966 rad pos: -21.478504,9.770466 @@ -158305,238 +159553,238 @@ entities: type: Transform - proto: SignDirectionalEng entities: - - uid: 24000 + - uid: 24225 components: - rot: -1.5707963267948966 rad pos: 23.456676,-44.465714 parent: 2 type: Transform - - uid: 24001 + - uid: 24226 components: - rot: -1.5707963267948966 rad pos: 13.481093,-40.52887 parent: 2 type: Transform - - uid: 24002 + - uid: 24227 components: - rot: -1.5707963267948966 rad pos: -1.5094987,0.23005629 parent: 2 type: Transform - - uid: 24003 + - uid: 24228 components: - rot: -1.5707963267948966 rad pos: 15.5186825,0.3410281 parent: 2 type: Transform - - uid: 24004 + - uid: 24229 components: - rot: -1.5707963267948966 rad pos: -6.468719,-24.535433 parent: 2 type: Transform - - uid: 24005 + - uid: 24230 components: - rot: -1.5707963267948966 rad pos: 13.494198,-28.706446 parent: 2 type: Transform - - uid: 24006 + - uid: 24231 components: - rot: -1.5707963267948966 rad pos: 27.506605,-7.2696166 parent: 2 type: Transform - - uid: 24007 + - uid: 24232 components: - pos: -11.54485,0.20892155 parent: 2 type: Transform - - uid: 24008 + - uid: 24233 components: - rot: -1.5707963267948966 rad pos: -12.525326,-40.537384 parent: 2 type: Transform - - uid: 24009 + - uid: 24234 components: - rot: -1.5707963267948966 rad pos: 37.56283,-40.519398 parent: 2 type: Transform - - uid: 24010 + - uid: 24235 components: - pos: -19.479143,47.185772 parent: 2 type: Transform - - uid: 24011 + - uid: 24236 components: - pos: -21.4735,10.205865 parent: 2 type: Transform - - uid: 24012 + - uid: 24237 components: - rot: 3.141592653589793 rad pos: -17.5,-33.5 parent: 2 type: Transform - - uid: 24013 + - uid: 24238 components: - pos: -27.491566,-1.4688294 parent: 2 type: Transform - proto: SignDirectionalEvac entities: - - uid: 24014 + - uid: 24239 components: - rot: 1.5707963267948966 rad pos: 23.453842,-7.240517 parent: 2 type: Transform - - uid: 24015 + - uid: 24240 components: - rot: 3.141592653589793 rad pos: 13.494197,-24.550196 parent: 2 type: Transform - - uid: 24016 + - uid: 24241 components: - rot: 3.141592653589793 rad pos: 17.50633,-38.506306 parent: 2 type: Transform - - uid: 24017 + - uid: 24242 components: - rot: 3.141592653589793 rad pos: 27.469652,-44.466072 parent: 2 type: Transform - - uid: 24018 + - uid: 24243 components: - rot: 3.141592653589793 rad pos: 33.56561,-38.47694 parent: 2 type: Transform - - uid: 24019 + - uid: 24244 components: - rot: 1.5707963267948966 rad pos: 15.500585,1.4258997 parent: 2 type: Transform - - uid: 24020 + - uid: 24245 components: - rot: 1.5707963267948966 rad pos: -2.4941144,-24.735882 parent: 2 type: Transform - - uid: 24021 + - uid: 24246 components: - rot: 1.5707963267948966 rad pos: -1.5055175,1.6636184 parent: 2 type: Transform - - uid: 24022 + - uid: 24247 components: - rot: 1.5707963267948966 rad pos: -11.506838,1.7987667 parent: 2 type: Transform - - uid: 24023 + - uid: 24248 components: - rot: 1.5707963267948966 rad pos: -1.4898663,-40.82144 parent: 2 type: Transform - - uid: 24024 + - uid: 24249 components: - rot: 1.5707963267948966 rad pos: 35.5,3.5 parent: 2 type: Transform - - uid: 24025 + - uid: 24250 components: - pos: -19.483376,48.548702 parent: 2 type: Transform - - uid: 24026 + - uid: 24251 components: - rot: 1.5707963267948966 rad pos: -17.48425,-7.298242 parent: 2 type: Transform - - uid: 24027 + - uid: 24252 components: - rot: 1.5707963267948966 rad pos: -17.5155,-24.43221 parent: 2 type: Transform - - uid: 24028 + - uid: 24253 components: - rot: 1.5707963267948966 rad pos: -17.453,-40.550083 parent: 2 type: Transform - - uid: 24029 + - uid: 24254 components: - rot: 1.5707963267948966 rad pos: -17.465254,9.066439 parent: 2 type: Transform - - uid: 24030 + - uid: 24255 components: - rot: 3.141592653589793 rad pos: 60.5,-42.5 parent: 2 type: Transform - - uid: 24031 + - uid: 24256 components: - pos: -17.5,22.5 parent: 2 type: Transform - - uid: 24032 + - uid: 24257 components: - pos: -17.5,33.5 parent: 2 type: Transform - proto: SignDirectionalFood entities: - - uid: 24033 + - uid: 24258 components: - rot: -1.5707963267948966 rad pos: 23.455772,-7.472424 parent: 2 type: Transform - - uid: 24034 + - uid: 24259 components: - rot: 3.141592653589793 rad pos: -6.442209,-23.658274 parent: 2 type: Transform - - uid: 24035 + - uid: 24260 components: - rot: -1.5707963267948966 rad pos: 13.515763,-23.596605 parent: 2 type: Transform - - uid: 24036 + - uid: 24261 components: - rot: 3.141592653589793 rad pos: 13.482204,-40.04481 parent: 2 type: Transform - - uid: 24037 + - uid: 24262 components: - rot: 3.141592653589793 rad pos: -6.4057527,-39.46833 parent: 2 type: Transform - - uid: 24038 + - uid: 24263 components: - rot: 3.141592653589793 rad pos: 23.49562,-45.402493 parent: 2 type: Transform - - uid: 24039 + - uid: 24264 components: - rot: 1.5707963267948966 rad pos: -27.50719,2.7655454 @@ -158544,43 +159792,43 @@ entities: type: Transform - proto: SignDirectionalHop entities: - - uid: 24040 + - uid: 24265 components: - rot: 3.141592653589793 rad pos: -6.407528,-39.689182 parent: 2 type: Transform - - uid: 24041 + - uid: 24266 components: - rot: 3.141592653589793 rad pos: -2.5195708,-23.764477 parent: 2 type: Transform - - uid: 24042 + - uid: 24267 components: - rot: -1.5707963267948966 rad pos: 13.506188,-24.076977 parent: 2 type: Transform - - uid: 24043 + - uid: 24268 components: - rot: 3.141592653589793 rad pos: 13.449441,-39.80865 parent: 2 type: Transform - - uid: 24044 + - uid: 24269 components: - rot: 1.5707963267948966 rad pos: -2.5029292,-2.2492237 parent: 2 type: Transform - - uid: 24045 + - uid: 24270 components: - rot: -1.5707963267948966 rad pos: 28.50559,-7.2209973 parent: 2 type: Transform - - uid: 24046 + - uid: 24271 components: - rot: -1.5707963267948966 rad pos: 23.500246,-45.63412 @@ -158588,24 +159836,24 @@ entities: type: Transform - proto: SignDirectionalJanitor entities: - - uid: 24047 + - uid: 24272 components: - pos: -6.5,-2.5 parent: 2 type: Transform - - uid: 24048 + - uid: 24273 components: - rot: -1.5707963267948966 rad pos: 13.511264,-23.825424 parent: 2 type: Transform - - uid: 24049 + - uid: 24274 components: - rot: -1.5707963267948966 rad pos: 13.468106,-40.766113 parent: 2 type: Transform - - uid: 24050 + - uid: 24275 components: - rot: 3.141592653589793 rad pos: -6.4057527,-39.226246 @@ -158613,230 +159861,230 @@ entities: type: Transform - proto: SignDirectionalMed entities: - - uid: 24051 + - uid: 24276 components: - pos: -19.479143,47.404522 parent: 2 type: Transform - - uid: 24052 + - uid: 24277 components: - rot: -1.5707963267948966 rad pos: 13.494197,-24.31582 parent: 2 type: Transform - - uid: 24053 + - uid: 24278 components: - rot: -1.5707963267948966 rad pos: 23.456676,-44.23134 parent: 2 type: Transform - - uid: 24054 + - uid: 24279 components: - rot: -1.5707963267948966 rad pos: 13.481093,-40.279392 parent: 2 type: Transform - - uid: 24055 + - uid: 24280 components: - rot: -1.5707963267948966 rad pos: 15.518682,0.809778 parent: 2 type: Transform - - uid: 24056 + - uid: 24281 components: - pos: -1.509499,0.7144314 parent: 2 type: Transform - - uid: 24057 + - uid: 24282 components: - pos: -6.468719,-24.785433 parent: 2 type: Transform - - uid: 24058 + - uid: 24283 components: - pos: -11.538088,0.45501685 parent: 2 type: Transform - - uid: 24059 + - uid: 24284 components: - rot: -1.5707963267948966 rad pos: 37.560596,-40.278557 parent: 2 type: Transform - - uid: 24060 + - uid: 24285 components: - pos: -17.51201,-24.680704 parent: 2 type: Transform - - uid: 24061 + - uid: 24286 components: - pos: -21.471863,9.993778 parent: 2 type: Transform - - uid: 24062 + - uid: 24287 components: - pos: -17.494442,-12.803106 parent: 2 type: Transform - - uid: 24063 + - uid: 24288 components: - pos: -27.491566,-1.7032045 parent: 2 type: Transform - proto: SignDirectionalSci entities: - - uid: 24064 + - uid: 24289 components: - rot: 1.5707963267948966 rad pos: -2.4872613,-24.231178 parent: 2 type: Transform - - uid: 24065 + - uid: 24290 components: - rot: 1.5707963267948966 rad pos: 27.465042,-44.22285 parent: 2 type: Transform - - uid: 24066 + - uid: 24291 components: - pos: 15.550735,4.2699327 parent: 2 type: Transform - - uid: 24067 + - uid: 24292 components: - pos: 13.494197,-28.22207 parent: 2 type: Transform - - uid: 24068 + - uid: 24293 components: - pos: 27.506117,-7.7341094 parent: 2 type: Transform - - uid: 24069 + - uid: 24294 components: - rot: 1.5707963267948966 rad pos: -11.506838,1.5487667 parent: 2 type: Transform - - uid: 24070 + - uid: 24295 components: - rot: 1.5707963267948966 rad pos: -1.4898663,-40.368317 parent: 2 type: Transform - - uid: 24071 + - uid: 24296 components: - pos: -19.479143,47.623272 parent: 2 type: Transform - - uid: 24072 + - uid: 24297 components: - rot: 1.5707963267948966 rad pos: -17.465254,8.816439 parent: 2 type: Transform - - uid: 24073 + - uid: 24298 components: - rot: 1.5707963267948966 rad pos: -17.460167,-40.790154 parent: 2 type: Transform - - uid: 24074 + - uid: 24299 components: - pos: -17.507042,-24.18393 parent: 2 type: Transform - - uid: 24075 + - uid: 24300 components: - pos: -27.491566,-1.2344544 parent: 2 type: Transform - proto: SignDirectionalSec entities: - - uid: 24076 + - uid: 24301 components: - rot: 3.141592653589793 rad pos: 23.45433,-7.7213244 parent: 2 type: Transform - - uid: 24077 + - uid: 24302 components: - rot: 3.141592653589793 rad pos: 27.468637,-44.695934 parent: 2 type: Transform - - uid: 24078 + - uid: 24303 components: - rot: 3.141592653589793 rad pos: 33.55467,-38.221992 parent: 2 type: Transform - - uid: 24079 + - uid: 24304 components: - rot: 3.141592653589793 rad pos: 17.50898,-38.26922 parent: 2 type: Transform - - uid: 24080 + - uid: 24305 components: - rot: 3.141592653589793 rad pos: 15.5581455,4.7444477 parent: 2 type: Transform - - uid: 24081 + - uid: 24306 components: - rot: 3.141592653589793 rad pos: 13.4980955,-24.785376 parent: 2 type: Transform - - uid: 24082 + - uid: 24307 components: - rot: 1.5707963267948966 rad pos: -6.4826374,-24.301481 parent: 2 type: Transform - - uid: 24083 + - uid: 24308 components: - rot: 1.5707963267948966 rad pos: -1.4980723,1.197365 parent: 2 type: Transform - - uid: 24084 + - uid: 24309 components: - rot: 1.5707963267948966 rad pos: -11.517976,1.041115 parent: 2 type: Transform - - uid: 24085 + - uid: 24310 components: - rot: 1.5707963267948966 rad pos: -1.4758278,-40.604027 parent: 2 type: Transform - - uid: 24086 + - uid: 24311 components: - pos: -19.471409,47.857254 parent: 2 type: Transform - - uid: 24087 + - uid: 24312 components: - rot: 1.5707963267948966 rad pos: -17.523046,-28.22695 parent: 2 type: Transform - - uid: 24088 + - uid: 24313 components: - rot: 1.5707963267948966 rad pos: -17.476206,8.574429 parent: 2 type: Transform - - uid: 24089 + - uid: 24314 components: - rot: 1.5707963267948966 rad pos: -17.478817,-7.5615916 parent: 2 type: Transform - - uid: 24090 + - uid: 24315 components: - rot: 1.5707963267948966 rad pos: -27.522816,2.2499206 @@ -158844,12 +160092,12 @@ entities: type: Transform - proto: SignDirectionalSolar entities: - - uid: 24091 + - uid: 24316 components: - pos: -0.5,-76.5 parent: 2 type: Transform - - uid: 24092 + - uid: 24317 components: - rot: 3.141592653589793 rad pos: 65.5,27.5 @@ -158857,225 +160105,225 @@ entities: type: Transform - proto: SignDirectionalSupply entities: - - uid: 24093 + - uid: 24318 components: - rot: -1.5707963267948966 rad pos: 23.453947,-44.6932 parent: 2 type: Transform - - uid: 24094 + - uid: 24319 components: - rot: -1.5707963267948966 rad pos: 15.5186825,0.5754031 parent: 2 type: Transform - - uid: 24095 + - uid: 24320 components: - rot: -1.5707963267948966 rad pos: -1.5094988,0.4800564 parent: 2 type: Transform - - uid: 24096 + - uid: 24321 components: - rot: -1.5707963267948966 rad pos: 13.494197,-28.47207 parent: 2 type: Transform - - uid: 24097 + - uid: 24322 components: - rot: 3.141592653589793 rad pos: -11.522463,0.70501685 parent: 2 type: Transform - - uid: 24098 + - uid: 24323 components: - rot: -1.5707963267948966 rad pos: -12.525326,-40.287384 parent: 2 type: Transform - - uid: 24099 + - uid: 24324 components: - rot: -1.5707963267948966 rad pos: 37.56283,-40.753773 parent: 2 type: Transform - - uid: 24100 + - uid: 24325 components: - rot: 3.141592653589793 rad pos: -21.4735,9.533642 parent: 2 type: Transform - - uid: 24101 + - uid: 24326 components: - rot: 3.141592653589793 rad pos: -2.5,-23.5 parent: 2 type: Transform - - uid: 24102 + - uid: 24327 components: - rot: 3.141592653589793 rad pos: -17.496458,-33.756527 parent: 2 type: Transform - - uid: 24103 + - uid: 24328 components: - rot: 3.141592653589793 rad pos: -17.5,-12.5 parent: 2 type: Transform - - uid: 24104 + - uid: 24329 components: - rot: 3.141592653589793 rad pos: -27.491566,3.7030454 parent: 2 type: Transform - - uid: 24105 + - uid: 24330 components: - pos: -19.471409,48.794754 parent: 2 type: Transform - proto: SignDisposalSpace entities: - - uid: 24106 + - uid: 24331 components: - pos: 23.5,-52.5 parent: 2 type: Transform - proto: SignElectrical entities: - - uid: 24107 + - uid: 24332 components: - pos: -78.5,-5.5 parent: 2 type: Transform - - uid: 24108 + - uid: 24333 components: - pos: -78.5,-19.5 parent: 2 type: Transform - - uid: 24109 + - uid: 24334 components: - pos: -71.5,-2.5 parent: 2 type: Transform - - uid: 24110 + - uid: 24335 components: - pos: -64.5,-2.5 parent: 2 type: Transform - - uid: 24111 + - uid: 24336 components: - pos: 24.5,39.5 parent: 2 type: Transform - - uid: 24112 + - uid: 24337 components: - pos: 32.5,39.5 parent: 2 type: Transform - - uid: 24113 + - uid: 24338 components: - pos: 38.5,31.5 parent: 2 type: Transform - proto: SignElectricalMed entities: - - uid: 24114 + - uid: 24339 components: - pos: -12.5,-70.5 parent: 2 type: Transform - - uid: 24115 + - uid: 24340 components: - pos: 42.5,-60.5 parent: 2 type: Transform - - uid: 24116 + - uid: 24341 components: - pos: 8.5,-44.5 parent: 2 type: Transform - - uid: 24117 + - uid: 24342 components: - pos: 37.5,-44.5 parent: 2 type: Transform - - uid: 24118 + - uid: 24343 components: - pos: 37.5,-29.5 parent: 2 type: Transform - - uid: 24119 + - uid: 24344 components: - pos: 46.5,-6.5 parent: 2 type: Transform - - uid: 24120 + - uid: 24345 components: - pos: 47.5,-0.5 parent: 2 type: Transform - - uid: 24121 + - uid: 24346 components: - pos: 33.5,23.5 parent: 2 type: Transform - - uid: 24122 + - uid: 24347 components: - pos: -29.5,-54.5 parent: 2 type: Transform - proto: SignEngine entities: - - uid: 24123 + - uid: 24348 components: - pos: -43.5,-9.5 parent: 2 type: Transform - - uid: 24124 + - uid: 24349 components: - pos: -49.5,-18.5 parent: 2 type: Transform - proto: SignEngineering entities: - - uid: 24125 + - uid: 24350 components: - pos: -21.5,-8.5 parent: 2 type: Transform - - uid: 24126 + - uid: 24351 components: - pos: -21.5,-15.5 parent: 2 type: Transform - proto: SignEscapePods entities: - - uid: 24127 + - uid: 24352 components: - pos: 29.5,-93.5 parent: 2 type: Transform - - uid: 24128 + - uid: 24353 components: - pos: -16.5,68.5 parent: 2 type: Transform - - uid: 24129 + - uid: 24354 components: - pos: 49.5,-93.5 parent: 2 type: Transform - proto: SignEVA entities: - - uid: 24130 + - uid: 24355 components: - pos: 34.5,-15.5 parent: 2 type: Transform - proto: SignExplosives entities: - - uid: 24131 + - uid: 24356 components: - rot: 1.5707963267948966 rad pos: 68.5,-26.5 @@ -159083,98 +160331,98 @@ entities: type: Transform - proto: SignFlammableMed entities: - - uid: 24132 + - uid: 24357 components: - pos: -42.5,-63.5 parent: 2 type: Transform - proto: SignGravity entities: - - uid: 24133 + - uid: 24358 components: - pos: -18.5,-3.5 parent: 2 type: Transform - proto: SignHydro3 entities: - - uid: 24134 + - uid: 24359 components: - pos: -5.5,4.5 parent: 2 type: Transform - proto: SignInterrogation entities: - - uid: 24135 + - uid: 24360 components: - pos: 18.5,18.5 parent: 2 type: Transform - proto: SignLaserMed entities: - - uid: 24136 + - uid: 24361 components: - rot: 3.141592653589793 rad pos: -63.5,-29.5 parent: 2 type: Transform - - uid: 24137 + - uid: 24362 components: - pos: -62.5,-22.5 parent: 2 type: Transform - - uid: 24138 + - uid: 24363 components: - pos: -70.5,-22.5 parent: 2 type: Transform - proto: SignLibrary entities: - - uid: 24139 + - uid: 24364 components: - pos: 9.5,-2.5 parent: 2 type: Transform - proto: SignMagneticsMed entities: - - uid: 24140 + - uid: 24365 components: - pos: -47.5,27.5 parent: 2 type: Transform - proto: SignMedical entities: - - uid: 24141 + - uid: 24366 components: - pos: -2.5,-44.5 parent: 2 type: Transform - proto: SignMinerDock entities: - - uid: 24142 + - uid: 24367 components: - pos: -44.5,27.5 parent: 2 type: Transform - proto: SignMorgue entities: - - uid: 24143 + - uid: 24368 components: - pos: -15.5,-68.5 parent: 2 type: Transform - - uid: 24144 + - uid: 24369 components: - pos: -12.5,-62.5 parent: 2 type: Transform - proto: SignPrison entities: - - uid: 24145 + - uid: 24370 components: - pos: 39.5,24.5 parent: 2 type: Transform - - uid: 24146 + - uid: 24371 components: - name: open prison sign type: MetaData @@ -159183,24 +160431,24 @@ entities: type: Transform - proto: SignRadiationMed entities: - - uid: 24147 + - uid: 24372 components: - pos: -63.5,-25.5 parent: 2 type: Transform - proto: SignRedFive entities: - - uid: 24148 + - uid: 24373 components: - pos: 57.5,22.5 parent: 2 type: Transform - - uid: 24149 + - uid: 24374 components: - pos: 41.5,17.5 parent: 2 type: Transform - - uid: 24150 + - uid: 24375 components: - rot: 3.141592653589793 rad pos: 39.5,5.5 @@ -159208,17 +160456,17 @@ entities: type: Transform - proto: SignRedFour entities: - - uid: 24151 + - uid: 24376 components: - pos: 40.5,17.5 parent: 2 type: Transform - - uid: 24152 + - uid: 24377 components: - pos: 54.5,22.5 parent: 2 type: Transform - - uid: 24153 + - uid: 24378 components: - rot: 3.141592653589793 rad pos: 39.5,8.5 @@ -159226,71 +160474,71 @@ entities: type: Transform - proto: SignRedNine entities: - - uid: 24154 + - uid: 24379 components: - pos: 51.62568,41.505035 parent: 2 type: Transform - proto: SignRedOne entities: - - uid: 24155 + - uid: 24380 components: - pos: 45.5,22.5 parent: 2 type: Transform - - uid: 24156 + - uid: 24381 components: - rot: 3.141592653589793 rad pos: 28.5,13.5 parent: 2 type: Transform - - uid: 24157 + - uid: 24382 components: - pos: 30.70196,-15.491432 parent: 2 type: Transform - - uid: 24158 + - uid: 24383 components: - pos: 37.5,17.5 parent: 2 type: Transform - proto: SignRedSeven entities: - - uid: 24159 + - uid: 24384 components: - pos: 60.5,17.5 parent: 2 type: Transform - proto: SignRedSix entities: - - uid: 24160 + - uid: 24385 components: - pos: 42.5,17.5 parent: 2 type: Transform - - uid: 24161 + - uid: 24386 components: - pos: 60.5,20.5 parent: 2 type: Transform - - uid: 24162 + - uid: 24387 components: - pos: 51.40693,41.505035 parent: 2 type: Transform - proto: SignRedThree entities: - - uid: 24163 + - uid: 24388 components: - pos: 51.5,22.5 parent: 2 type: Transform - - uid: 24164 + - uid: 24389 components: - pos: 39.5,17.5 parent: 2 type: Transform - - uid: 24165 + - uid: 24390 components: - rot: 3.141592653589793 rad pos: 34.5,13.5 @@ -159298,18 +160546,18 @@ entities: type: Transform - proto: SignRedTwo entities: - - uid: 24166 + - uid: 24391 components: - pos: 48.5,22.5 parent: 2 type: Transform - - uid: 24167 + - uid: 24392 components: - rot: 3.141592653589793 rad pos: 38.5,17.5 parent: 2 type: Transform - - uid: 24168 + - uid: 24393 components: - rot: 3.141592653589793 rad pos: 31.5,13.5 @@ -159317,130 +160565,130 @@ entities: type: Transform - proto: SignRedZero entities: - - uid: 24169 + - uid: 24394 components: - pos: 30.467585,-15.491432 parent: 2 type: Transform - - uid: 24170 + - uid: 24395 components: - pos: 30.23321,-15.491432 parent: 2 type: Transform - proto: SignRND entities: - - uid: 24171 + - uid: 24396 components: - pos: 47.5,-38.5 parent: 2 type: Transform - proto: SignRobo entities: - - uid: 24172 + - uid: 24397 components: - pos: 66.5,-47.5 parent: 2 type: Transform - proto: SignScience1 entities: - - uid: 24173 + - uid: 24398 components: - pos: 38.5,-40.5 parent: 2 type: Transform - proto: SignShipDock entities: - - uid: 24174 + - uid: 24399 components: - name: docking arm type: MetaData - pos: -14.5,70.5 parent: 2 type: Transform - - uid: 24175 + - uid: 24400 components: - name: docking arm type: MetaData - pos: -20.5,70.5 parent: 2 type: Transform - - uid: 24176 + - uid: 24401 components: - pos: 76.5,-32.5 parent: 2 type: Transform - proto: SignShock entities: - - uid: 24177 + - uid: 24402 components: - pos: 17.5,-30.5 parent: 2 type: Transform - - uid: 24178 + - uid: 24403 components: - pos: 11.5,-15.5 parent: 2 type: Transform - proto: SignSmoking entities: - - uid: 24179 + - uid: 24404 components: - pos: 1.5,-49.5 parent: 2 type: Transform - - uid: 24180 + - uid: 24405 components: - pos: -10.5,-49.5 parent: 2 type: Transform - proto: SignSomethingOld entities: - - uid: 24181 + - uid: 24406 components: - pos: -29.5,2.5 parent: 2 type: Transform - proto: SignSpace entities: - - uid: 24182 + - uid: 24407 components: - pos: -2.5,-76.5 parent: 2 type: Transform - - uid: 24183 + - uid: 24408 components: - pos: -58.5,-53.5 parent: 2 type: Transform - - uid: 24184 + - uid: 24409 components: - pos: -49.5,18.5 parent: 2 type: Transform - proto: SignSurgery entities: - - uid: 24185 + - uid: 24410 components: - pos: -1.5,-62.5 parent: 2 type: Transform - proto: SignTelecomms entities: - - uid: 24186 + - uid: 24411 components: - pos: 13.5,-22.5 parent: 2 type: Transform - proto: SignToolStorage entities: - - uid: 24187 + - uid: 24412 components: - pos: -33.5,-13.5 parent: 2 type: Transform - proto: SignToxins2 entities: - - uid: 24188 + - uid: 24413 components: - name: toxin lab sign type: MetaData @@ -159449,45 +160697,45 @@ entities: type: Transform - proto: SignVirology entities: - - uid: 24189 + - uid: 24414 components: - pos: -18.5,-62.5 parent: 2 type: Transform - proto: SilverOre1 entities: - - uid: 24190 + - uid: 24415 components: - pos: 73.48065,-67.68085 parent: 2 type: Transform - proto: SingularityGenerator entities: - - uid: 24191 + - uid: 24416 components: - pos: -66.5,-13.5 parent: 2 type: Transform - - uid: 24192 + - uid: 24417 components: - pos: -72.5,-23.5 parent: 2 type: Transform - proto: SinkStemlessWater entities: - - uid: 24193 + - uid: 24418 components: - rot: 1.5707963267948966 rad pos: -31.5,-3.5 parent: 2 type: Transform - - uid: 24194 + - uid: 24419 components: - rot: 1.5707963267948966 rad pos: -31.5,-2.5 parent: 2 type: Transform - - uid: 24195 + - uid: 24420 components: - rot: -1.5707963267948966 rad pos: -4.5,-96.5 @@ -159495,86 +160743,86 @@ entities: type: Transform - proto: SinkWide entities: - - uid: 24196 + - uid: 24421 components: - rot: 3.141592653589793 rad pos: -9.5,-33.5 parent: 2 type: Transform - - uid: 24197 + - uid: 24422 components: - rot: -1.5707963267948966 rad pos: 7.5,-48.5 parent: 2 type: Transform - - uid: 24198 + - uid: 24423 components: - pos: 1.5,9.5 parent: 2 type: Transform - - uid: 24199 + - uid: 24424 components: - rot: 3.141592653589793 rad pos: 17.5,9.5 parent: 2 type: Transform - - uid: 24200 + - uid: 24425 components: - rot: -1.5707963267948966 rad pos: -8.5,-69.5 parent: 2 type: Transform - - uid: 24201 + - uid: 24426 components: - rot: -1.5707963267948966 rad pos: -2.5,5.5 parent: 2 type: Transform - - uid: 24202 + - uid: 24427 components: - rot: -1.5707963267948966 rad pos: -2.5,6.5 parent: 2 type: Transform - - uid: 24203 + - uid: 24428 components: - rot: 3.141592653589793 rad pos: -21.5,41.5 parent: 2 type: Transform - - uid: 24204 + - uid: 24429 components: - rot: 3.141592653589793 rad pos: 62.5,21.5 parent: 2 type: Transform - - uid: 24205 + - uid: 24430 components: - pos: 63.5,13.5 parent: 2 type: Transform - - uid: 24206 + - uid: 24431 components: - pos: 63.5,11.5 parent: 2 type: Transform - - uid: 24207 + - uid: 24432 components: - pos: 63.5,9.5 parent: 2 type: Transform - - uid: 24208 + - uid: 24433 components: - rot: 1.5707963267948966 rad pos: -33.5,9.5 parent: 2 type: Transform - - uid: 24209 + - uid: 24434 components: - pos: -3.5,56.5 parent: 2 type: Transform - - uid: 24210 + - uid: 24435 components: - rot: 3.141592653589793 rad pos: 46.5,-39.5 @@ -159582,7 +160830,7 @@ entities: type: Transform - proto: SmallLight entities: - - uid: 24211 + - uid: 24436 components: - rot: -1.5707963267948966 rad pos: 17.5,-48.5 @@ -159590,126 +160838,124 @@ entities: type: Transform - proto: SMESBasic entities: - - uid: 24212 + - uid: 24437 + components: + - pos: -56.5,-87.5 + parent: 2 + type: Transform + - uid: 24438 components: - name: shuttle smes type: MetaData - pos: -65.5,-53.5 parent: 2 type: Transform - - uid: 24213 + - uid: 24439 components: - name: teg smes type: MetaData - pos: -69.5,-35.5 parent: 2 type: Transform - - uid: 24214 + - uid: 24440 components: - name: telecoms smes type: MetaData - pos: 4.5,-20.5 parent: 2 type: Transform - - uid: 24215 + - uid: 24441 components: - name: south solar smes 2 type: MetaData - pos: -2.5,-78.5 parent: 2 type: Transform - - uid: 24216 + - uid: 24442 components: - name: brig smes type: MetaData - pos: 48.5,-3.5 parent: 2 type: Transform - - uid: 24217 + - uid: 24443 components: - name: engineering smes 1 type: MetaData - pos: -48.5,-21.5 parent: 2 type: Transform - - uid: 24218 + - uid: 24444 components: - name: engineering smes 2 type: MetaData - pos: -46.5,-21.5 parent: 2 type: Transform - - uid: 24219 + - uid: 24445 components: - name: engineering smes 3 type: MetaData - pos: -44.5,-21.5 parent: 2 type: Transform - - uid: 24220 + - uid: 24446 components: - name: singularity substation type: MetaData - pos: -50.5,-9.5 parent: 2 type: Transform - - uid: 24221 + - uid: 24447 components: - name: PA smes type: MetaData - pos: -56.5,-20.5 parent: 2 type: Transform - - uid: 24222 + - uid: 24448 components: - name: atmos smes type: MetaData - pos: -28.5,-37.5 parent: 2 type: Transform - - uid: 24223 - components: - - name: syndicate shuttle smes - type: MetaData - - pos: -55.5,-88.5 - parent: 2 - type: Transform - - uid: 24224 + - uid: 24449 components: - name: north solars smes 1 type: MetaData - pos: 73.5,38.5 parent: 2 type: Transform - - uid: 24225 + - uid: 24450 components: - name: north solars smes 2 type: MetaData - pos: 73.5,34.5 parent: 2 type: Transform - - uid: 24226 + - uid: 24451 components: - name: south solar smes 1 type: MetaData - pos: -0.5,-78.5 parent: 2 type: Transform - - uid: 24227 + - uid: 24452 components: - name: engineering smes 6 type: MetaData - pos: -70.5,-30.5 parent: 2 type: Transform - - uid: 24228 + - uid: 24453 components: - name: engineering smes 4 type: MetaData - pos: -74.5,-30.5 parent: 2 type: Transform - - uid: 24229 + - uid: 24454 components: - name: engineering smes 5 type: MetaData @@ -159718,41 +160964,41 @@ entities: type: Transform - proto: Soap entities: - - uid: 24230 + - uid: 24455 components: - pos: -13.533843,-21.411894 parent: 2 type: Transform - - uid: 24231 + - uid: 24456 components: - pos: -13.440093,-21.677519 parent: 2 type: Transform - proto: soda_dispenser entities: - - uid: 24232 + - uid: 24457 components: - rot: -1.5707963267948966 rad pos: 18.5,11.5 parent: 2 type: Transform - - uid: 24233 + - uid: 24458 components: - pos: -40.5,-74.5 parent: 2 type: Transform - - uid: 24234 + - uid: 24459 components: - pos: 37.5,51.5 parent: 2 type: Transform - - uid: 24235 + - uid: 24460 components: - rot: 3.141592653589793 rad pos: -20.5,47.5 parent: 2 type: Transform - - uid: 24236 + - uid: 24461 components: - rot: -1.5707963267948966 rad pos: 29.5,-34.5 @@ -159760,653 +161006,653 @@ entities: type: Transform - proto: SodiumLightTube entities: - - uid: 24237 + - uid: 24462 components: - pos: -42.50719,-90.42425 parent: 2 type: Transform - - uid: 24238 + - uid: 24463 components: - pos: -13.634616,12.467242 parent: 2 type: Transform - proto: SolarPanel entities: - - uid: 24239 + - uid: 24464 components: - pos: 10.5,-101.5 parent: 2 type: Transform - - uid: 24240 + - uid: 24465 components: - pos: 16.5,-95.5 parent: 2 type: Transform - - uid: 24241 + - uid: 24466 components: - pos: 18.5,-95.5 parent: 2 type: Transform - - uid: 24242 + - uid: 24467 components: - pos: 6.5,-104.5 parent: 2 type: Transform - - uid: 24243 + - uid: 24468 components: - pos: 10.5,-95.5 parent: 2 type: Transform - - uid: 24244 + - uid: 24469 components: - pos: 12.5,-101.5 parent: 2 type: Transform - - uid: 24245 + - uid: 24470 components: - pos: 8.5,-104.5 parent: 2 type: Transform - - uid: 24246 + - uid: 24471 components: - pos: 14.5,-98.5 parent: 2 type: Transform - - uid: 24247 + - uid: 24472 components: - pos: 10.5,-98.5 parent: 2 type: Transform - - uid: 24248 + - uid: 24473 components: - pos: 8.5,-98.5 parent: 2 type: Transform - - uid: 24249 + - uid: 24474 components: - pos: 8.5,-95.5 parent: 2 type: Transform - - uid: 24250 + - uid: 24475 components: - pos: 12.5,-95.5 parent: 2 type: Transform - - uid: 24251 + - uid: 24476 components: - pos: 12.5,-98.5 parent: 2 type: Transform - - uid: 24252 + - uid: 24477 components: - pos: 14.5,-101.5 parent: 2 type: Transform - - uid: 24253 + - uid: 24478 components: - pos: 14.5,-95.5 parent: 2 type: Transform - - uid: 24254 + - uid: 24479 components: - pos: 6.5,-95.5 parent: 2 type: Transform - - uid: 24255 + - uid: 24480 components: - pos: 8.5,-101.5 parent: 2 type: Transform - - uid: 24256 + - uid: 24481 components: - pos: 4.5,-95.5 parent: 2 type: Transform - - uid: 24257 + - uid: 24482 components: - pos: 12.5,-104.5 parent: 2 type: Transform - - uid: 24258 + - uid: 24483 components: - pos: 16.5,-101.5 parent: 2 type: Transform - - uid: 24259 + - uid: 24484 components: - pos: 18.5,-101.5 parent: 2 type: Transform - - uid: 24260 + - uid: 24485 components: - pos: 18.5,-98.5 parent: 2 type: Transform - - uid: 24261 + - uid: 24486 components: - pos: 16.5,-98.5 parent: 2 type: Transform - - uid: 24262 + - uid: 24487 components: - pos: 18.5,-104.5 parent: 2 type: Transform - - uid: 24263 + - uid: 24488 components: - pos: 16.5,-104.5 parent: 2 type: Transform - - uid: 24264 + - uid: 24489 components: - pos: 4.5,-104.5 parent: 2 type: Transform - - uid: 24265 + - uid: 24490 components: - pos: 4.5,-101.5 parent: 2 type: Transform - - uid: 24266 + - uid: 24491 components: - pos: 6.5,-101.5 parent: 2 type: Transform - - uid: 24267 + - uid: 24492 components: - pos: 4.5,-98.5 parent: 2 type: Transform - - uid: 24268 + - uid: 24493 components: - pos: 6.5,-98.5 parent: 2 type: Transform - - uid: 24269 + - uid: 24494 components: - pos: 14.5,-104.5 parent: 2 type: Transform - - uid: 24270 + - uid: 24495 components: - pos: 10.5,-104.5 parent: 2 type: Transform - - uid: 24271 + - uid: 24496 components: - rot: 1.5707963267948966 rad pos: 90.5,44.5 parent: 2 type: Transform - - uid: 24272 + - uid: 24497 components: - rot: 1.5707963267948966 rad pos: 90.5,43.5 parent: 2 type: Transform - - uid: 24273 + - uid: 24498 components: - rot: 1.5707963267948966 rad pos: 90.5,41.5 parent: 2 type: Transform - - uid: 24274 + - uid: 24499 components: - rot: 1.5707963267948966 rad pos: 90.5,42.5 parent: 2 type: Transform - - uid: 24275 + - uid: 24500 components: - rot: 1.5707963267948966 rad pos: 90.5,40.5 parent: 2 type: Transform - - uid: 24276 + - uid: 24501 components: - rot: 1.5707963267948966 rad pos: 90.5,39.5 parent: 2 type: Transform - - uid: 24277 + - uid: 24502 components: - rot: 1.5707963267948966 rad pos: 90.5,38.5 parent: 2 type: Transform - - uid: 24278 + - uid: 24503 components: - rot: 1.5707963267948966 rad pos: 90.5,37.5 parent: 2 type: Transform - - uid: 24279 + - uid: 24504 components: - rot: 1.5707963267948966 rad pos: 87.5,44.5 parent: 2 type: Transform - - uid: 24280 + - uid: 24505 components: - rot: 1.5707963267948966 rad pos: 87.5,43.5 parent: 2 type: Transform - - uid: 24281 + - uid: 24506 components: - rot: 1.5707963267948966 rad pos: 87.5,42.5 parent: 2 type: Transform - - uid: 24282 + - uid: 24507 components: - rot: 1.5707963267948966 rad pos: 87.5,41.5 parent: 2 type: Transform - - uid: 24283 + - uid: 24508 components: - rot: 1.5707963267948966 rad pos: 87.5,40.5 parent: 2 type: Transform - - uid: 24284 + - uid: 24509 components: - rot: 1.5707963267948966 rad pos: 87.5,39.5 parent: 2 type: Transform - - uid: 24285 + - uid: 24510 components: - rot: 1.5707963267948966 rad pos: 87.5,38.5 parent: 2 type: Transform - - uid: 24286 + - uid: 24511 components: - rot: 1.5707963267948966 rad pos: 87.5,37.5 parent: 2 type: Transform - - uid: 24287 + - uid: 24512 components: - rot: 1.5707963267948966 rad pos: 84.5,44.5 parent: 2 type: Transform - - uid: 24288 + - uid: 24513 components: - rot: 1.5707963267948966 rad pos: 84.5,43.5 parent: 2 type: Transform - - uid: 24289 + - uid: 24514 components: - rot: 1.5707963267948966 rad pos: 84.5,42.5 parent: 2 type: Transform - - uid: 24290 + - uid: 24515 components: - rot: 1.5707963267948966 rad pos: 84.5,41.5 parent: 2 type: Transform - - uid: 24291 + - uid: 24516 components: - rot: 1.5707963267948966 rad pos: 84.5,40.5 parent: 2 type: Transform - - uid: 24292 + - uid: 24517 components: - rot: 1.5707963267948966 rad pos: 84.5,39.5 parent: 2 type: Transform - - uid: 24293 + - uid: 24518 components: - rot: 1.5707963267948966 rad pos: 84.5,38.5 parent: 2 type: Transform - - uid: 24294 + - uid: 24519 components: - rot: 1.5707963267948966 rad pos: 84.5,37.5 parent: 2 type: Transform - - uid: 24295 + - uid: 24520 components: - rot: 1.5707963267948966 rad pos: 81.5,44.5 parent: 2 type: Transform - - uid: 24296 + - uid: 24521 components: - rot: 1.5707963267948966 rad pos: 81.5,43.5 parent: 2 type: Transform - - uid: 24297 + - uid: 24522 components: - rot: 1.5707963267948966 rad pos: 81.5,42.5 parent: 2 type: Transform - - uid: 24298 + - uid: 24523 components: - rot: 1.5707963267948966 rad pos: 81.5,41.5 parent: 2 type: Transform - - uid: 24299 + - uid: 24524 components: - rot: 1.5707963267948966 rad pos: 81.5,40.5 parent: 2 type: Transform - - uid: 24300 + - uid: 24525 components: - rot: 1.5707963267948966 rad pos: 81.5,39.5 parent: 2 type: Transform - - uid: 24301 + - uid: 24526 components: - rot: 1.5707963267948966 rad pos: 81.5,38.5 parent: 2 type: Transform - - uid: 24302 + - uid: 24527 components: - rot: 1.5707963267948966 rad pos: 81.5,37.5 parent: 2 type: Transform - - uid: 24303 + - uid: 24528 components: - rot: 1.5707963267948966 rad pos: 78.5,44.5 parent: 2 type: Transform - - uid: 24304 + - uid: 24529 components: - rot: 1.5707963267948966 rad pos: 78.5,43.5 parent: 2 type: Transform - - uid: 24305 + - uid: 24530 components: - rot: 1.5707963267948966 rad pos: 78.5,42.5 parent: 2 type: Transform - - uid: 24306 + - uid: 24531 components: - rot: 1.5707963267948966 rad pos: 78.5,41.5 parent: 2 type: Transform - - uid: 24307 + - uid: 24532 components: - rot: 1.5707963267948966 rad pos: 78.5,40.5 parent: 2 type: Transform - - uid: 24308 + - uid: 24533 components: - rot: 1.5707963267948966 rad pos: 78.5,39.5 parent: 2 type: Transform - - uid: 24309 + - uid: 24534 components: - rot: 1.5707963267948966 rad pos: 78.5,38.5 parent: 2 type: Transform - - uid: 24310 + - uid: 24535 components: - rot: 1.5707963267948966 rad pos: 78.5,37.5 parent: 2 type: Transform - - uid: 24311 + - uid: 24536 components: - rot: 1.5707963267948966 rad pos: 78.5,35.5 parent: 2 type: Transform - - uid: 24312 + - uid: 24537 components: - rot: 1.5707963267948966 rad pos: 78.5,34.5 parent: 2 type: Transform - - uid: 24313 + - uid: 24538 components: - rot: 1.5707963267948966 rad pos: 78.5,33.5 parent: 2 type: Transform - - uid: 24314 + - uid: 24539 components: - rot: 1.5707963267948966 rad pos: 78.5,32.5 parent: 2 type: Transform - - uid: 24315 + - uid: 24540 components: - rot: 1.5707963267948966 rad pos: 78.5,31.5 parent: 2 type: Transform - - uid: 24316 + - uid: 24541 components: - rot: 1.5707963267948966 rad pos: 78.5,30.5 parent: 2 type: Transform - - uid: 24317 + - uid: 24542 components: - rot: 1.5707963267948966 rad pos: 78.5,29.5 parent: 2 type: Transform - - uid: 24318 + - uid: 24543 components: - rot: 1.5707963267948966 rad pos: 78.5,28.5 parent: 2 type: Transform - - uid: 24319 + - uid: 24544 components: - rot: 1.5707963267948966 rad pos: 81.5,35.5 parent: 2 type: Transform - - uid: 24320 + - uid: 24545 components: - rot: 1.5707963267948966 rad pos: 81.5,34.5 parent: 2 type: Transform - - uid: 24321 + - uid: 24546 components: - rot: 1.5707963267948966 rad pos: 81.5,33.5 parent: 2 type: Transform - - uid: 24322 + - uid: 24547 components: - rot: 1.5707963267948966 rad pos: 81.5,32.5 parent: 2 type: Transform - - uid: 24323 + - uid: 24548 components: - rot: 1.5707963267948966 rad pos: 81.5,31.5 parent: 2 type: Transform - - uid: 24324 + - uid: 24549 components: - rot: 1.5707963267948966 rad pos: 81.5,30.5 parent: 2 type: Transform - - uid: 24325 + - uid: 24550 components: - rot: 1.5707963267948966 rad pos: 81.5,29.5 parent: 2 type: Transform - - uid: 24326 + - uid: 24551 components: - rot: 1.5707963267948966 rad pos: 81.5,28.5 parent: 2 type: Transform - - uid: 24327 + - uid: 24552 components: - rot: 1.5707963267948966 rad pos: 84.5,35.5 parent: 2 type: Transform - - uid: 24328 + - uid: 24553 components: - rot: 1.5707963267948966 rad pos: 84.5,34.5 parent: 2 type: Transform - - uid: 24329 + - uid: 24554 components: - rot: 1.5707963267948966 rad pos: 84.5,33.5 parent: 2 type: Transform - - uid: 24330 + - uid: 24555 components: - rot: 1.5707963267948966 rad pos: 84.5,32.5 parent: 2 type: Transform - - uid: 24331 + - uid: 24556 components: - rot: 1.5707963267948966 rad pos: 84.5,31.5 parent: 2 type: Transform - - uid: 24332 + - uid: 24557 components: - rot: 1.5707963267948966 rad pos: 84.5,30.5 parent: 2 type: Transform - - uid: 24333 + - uid: 24558 components: - rot: 1.5707963267948966 rad pos: 84.5,29.5 parent: 2 type: Transform - - uid: 24334 + - uid: 24559 components: - rot: 1.5707963267948966 rad pos: 84.5,28.5 parent: 2 type: Transform - - uid: 24335 + - uid: 24560 components: - rot: 1.5707963267948966 rad pos: 87.5,35.5 parent: 2 type: Transform - - uid: 24336 + - uid: 24561 components: - rot: 1.5707963267948966 rad pos: 87.5,34.5 parent: 2 type: Transform - - uid: 24337 + - uid: 24562 components: - rot: 1.5707963267948966 rad pos: 87.5,33.5 parent: 2 type: Transform - - uid: 24338 + - uid: 24563 components: - rot: 1.5707963267948966 rad pos: 87.5,32.5 parent: 2 type: Transform - - uid: 24339 + - uid: 24564 components: - rot: 1.5707963267948966 rad pos: 87.5,31.5 parent: 2 type: Transform - - uid: 24340 + - uid: 24565 components: - rot: 1.5707963267948966 rad pos: 87.5,30.5 parent: 2 type: Transform - - uid: 24341 + - uid: 24566 components: - rot: 1.5707963267948966 rad pos: 87.5,29.5 parent: 2 type: Transform - - uid: 24342 + - uid: 24567 components: - rot: 1.5707963267948966 rad pos: 87.5,28.5 parent: 2 type: Transform - - uid: 24343 + - uid: 24568 components: - rot: 1.5707963267948966 rad pos: 90.5,35.5 parent: 2 type: Transform - - uid: 24344 + - uid: 24569 components: - rot: 1.5707963267948966 rad pos: 90.5,34.5 parent: 2 type: Transform - - uid: 24345 + - uid: 24570 components: - rot: 1.5707963267948966 rad pos: 90.5,33.5 parent: 2 type: Transform - - uid: 24346 + - uid: 24571 components: - rot: 1.5707963267948966 rad pos: 90.5,32.5 parent: 2 type: Transform - - uid: 24347 + - uid: 24572 components: - rot: 1.5707963267948966 rad pos: 90.5,31.5 parent: 2 type: Transform - - uid: 24348 + - uid: 24573 components: - rot: 1.5707963267948966 rad pos: 90.5,30.5 parent: 2 type: Transform - - uid: 24349 + - uid: 24574 components: - rot: 1.5707963267948966 rad pos: 90.5,29.5 parent: 2 type: Transform - - uid: 24350 + - uid: 24575 components: - rot: 1.5707963267948966 rad pos: 90.5,28.5 @@ -160414,37 +161660,37 @@ entities: type: Transform - proto: SolarPanelBroken entities: - - uid: 24351 + - uid: 24576 components: - pos: -4.5,-73.5 parent: 2 type: Transform - - uid: 24352 + - uid: 24577 components: - rot: 3.141592653589793 rad pos: 62.5,29.5 parent: 2 type: Transform - - uid: 24353 + - uid: 24578 components: - pos: 46.5,-62.5 parent: 2 type: Transform - proto: SolarTracker entities: - - uid: 24354 + - uid: 24579 components: - pos: 11.5,-105.5 parent: 2 type: Transform - - uid: 24355 + - uid: 24580 components: - pos: 91.5,36.5 parent: 2 type: Transform - proto: SolidSecretDoor entities: - - uid: 24356 + - uid: 24581 components: - pos: -36.5,-19.5 parent: 2 @@ -160459,32 +161705,32 @@ entities: type: Occluder - proto: SpaceCash entities: - - uid: 24357 + - uid: 24582 components: - rot: 1.5707963267948966 rad pos: 53.352566,29.426033 parent: 2 type: Transform - - uid: 24358 + - uid: 24583 components: - pos: 53.49319,28.910408 parent: 2 type: Transform - - uid: 24359 + - uid: 24584 components: - pos: 53.58694,28.691658 parent: 2 type: Transform - proto: SpaceCash1000 entities: - - uid: 24360 + - uid: 24585 components: - pos: 59.59177,-29.360462 parent: 2 type: Transform - proto: SpaceMedipen entities: - - uid: 24361 + - uid: 24586 components: - rot: -1.5707963267948966 rad pos: -55.678448,-39.42407 @@ -160492,152 +161738,152 @@ entities: type: Transform - proto: SpaceQuartz1 entities: - - uid: 24362 + - uid: 24587 components: - pos: -31.635456,29.591772 parent: 2 type: Transform - proto: SpaceVillainArcadeComputerCircuitboard entities: - - uid: 24363 + - uid: 24588 components: - pos: -12.610414,35.61681 parent: 2 type: Transform - proto: SpawnMobAlexander entities: - - uid: 24364 + - uid: 24589 components: - pos: 3.5,5.5 parent: 2 type: Transform - proto: SpawnMobBear entities: - - uid: 24365 + - uid: 24590 components: - pos: -37.5,62.5 parent: 2 type: Transform - proto: SpawnMobButterfly entities: - - uid: 24366 + - uid: 24591 components: - pos: -5.5,54.5 parent: 2 type: Transform - - uid: 24367 + - uid: 24592 components: - pos: -8.5,51.5 parent: 2 type: Transform - proto: SpawnMobCat entities: - - uid: 24368 + - uid: 24593 components: - pos: -12.5,-38.5 parent: 2 type: Transform - - uid: 24369 + - uid: 24594 components: - pos: 57.5,16.5 parent: 2 type: Transform - proto: SpawnMobCatGeneric entities: - - uid: 24370 + - uid: 24595 components: - pos: -55.5,-64.5 parent: 2 type: Transform - proto: SpawnMobCleanBot entities: - - uid: 24371 + - uid: 24596 components: - pos: 15.5,-42.5 parent: 2 type: Transform - proto: SpawnMobCorgi entities: - - uid: 24372 + - uid: 24597 components: - pos: 3.5,-7.5 parent: 2 type: Transform - proto: SpawnMobCow entities: - - uid: 24373 + - uid: 24598 components: - pos: -7.5,18.5 parent: 2 type: Transform - - uid: 24374 + - uid: 24599 components: - pos: -4.5,18.5 parent: 2 type: Transform - proto: SpawnMobFoxRenault entities: - - uid: 24375 + - uid: 24600 components: - pos: 32.5,-28.5 parent: 2 type: Transform - proto: SpawnMobFrog entities: - - uid: 24376 + - uid: 24601 components: - pos: 11.5,53.5 parent: 2 type: Transform - - uid: 24377 + - uid: 24602 components: - pos: 8.5,54.5 parent: 2 type: Transform - proto: SpawnMobHamsterHamlet entities: - - uid: 24378 + - uid: 24603 components: - pos: 30.5,-23.5 parent: 2 type: Transform - proto: SpawnMobKangaroo entities: - - uid: 24379 + - uid: 24604 components: - pos: -53.5,61.5 parent: 2 type: Transform - proto: SpawnMobKangarooWillow entities: - - uid: 24380 + - uid: 24605 components: - pos: 25.5,-0.5 parent: 2 type: Transform - proto: SpawnMobMcGriff entities: - - uid: 24381 + - uid: 24606 components: - pos: 26.5,23.5 parent: 2 type: Transform - proto: SpawnMobMedibot entities: - - uid: 24382 + - uid: 24607 components: - pos: -8.5,-46.5 parent: 2 type: Transform - proto: SpawnMobMonkey entities: - - uid: 24383 + - uid: 24608 components: - rot: -1.5707963267948966 rad pos: -24.5,-89.5 parent: 2 type: Transform - - uid: 24384 + - uid: 24609 components: - rot: -1.5707963267948966 rad pos: -21.5,-89.5 @@ -160645,944 +161891,949 @@ entities: type: Transform - proto: SpawnMobMonkeyPunpun entities: - - uid: 24385 + - uid: 24610 components: - pos: 16.5,9.5 parent: 2 type: Transform - proto: SpawnMobMouse entities: - - uid: 24386 + - uid: 24611 components: - pos: 2.5,-69.5 parent: 2 type: Transform - - uid: 24387 + - uid: 24612 components: - pos: -0.5,33.5 parent: 2 type: Transform - - uid: 24388 + - uid: 24613 components: - pos: -28.5,-41.5 parent: 2 type: Transform - - uid: 24389 + - uid: 24614 components: - pos: -29.5,-47.5 parent: 2 type: Transform - - uid: 24390 + - uid: 24615 components: - pos: 49.5,-33.5 parent: 2 type: Transform - - uid: 24391 + - uid: 24616 components: - pos: -7.5,-81.5 parent: 2 type: Transform - - uid: 24392 + - uid: 24617 components: - pos: 6.5,32.5 parent: 2 type: Transform - - uid: 24393 + - uid: 24618 components: - pos: 35.5,22.5 parent: 2 type: Transform - - uid: 24394 + - uid: 24619 components: - pos: -15.5,13.5 parent: 2 type: Transform - - uid: 24395 + - uid: 24620 components: - pos: 52.5,36.5 parent: 2 type: Transform - - uid: 24396 + - uid: 24621 components: - pos: -51.5,-0.5 parent: 2 type: Transform - - uid: 24397 + - uid: 24622 components: - pos: -38.5,-64.5 parent: 2 type: Transform - - uid: 24398 + - uid: 24623 components: - pos: -40.5,-81.5 parent: 2 type: Transform - - uid: 24399 + - uid: 24624 components: - pos: -45.5,-77.5 parent: 2 type: Transform - - uid: 24400 + - uid: 24625 components: - pos: 48.5,-65.5 parent: 2 type: Transform - proto: SpawnMobPossumMorty entities: - - uid: 24401 + - uid: 24626 components: - pos: -15.5,-63.5 parent: 2 type: Transform - proto: SpawnMobRaccoonMorticia entities: - - uid: 24402 + - uid: 24627 components: - pos: -33.5,31.5 parent: 2 type: Transform - proto: SpawnMobShiva entities: - - uid: 24403 + - uid: 24628 components: - pos: 4.5,19.5 parent: 2 type: Transform - proto: SpawnMobSlothPaperwork entities: - - uid: 24404 + - uid: 24629 components: - pos: 12.5,-7.5 parent: 2 type: Transform - proto: SpawnMobSmile entities: - - uid: 24405 + - uid: 24630 components: - pos: 62.5,-43.5 parent: 2 type: Transform - proto: SpawnMobSpaceSpider entities: - - uid: 24406 + - uid: 24631 components: - pos: -47.5,68.5 parent: 2 type: Transform - proto: SpawnMobWalter entities: - - uid: 24407 + - uid: 24632 components: - pos: -0.5,-53.5 parent: 2 type: Transform - proto: SpawnPointAssistant entities: - - uid: 24408 + - uid: 24633 components: - pos: -25.5,-22.5 parent: 2 type: Transform - - uid: 24409 + - uid: 24634 components: - pos: -23.5,-22.5 parent: 2 type: Transform - - uid: 24410 + - uid: 24635 components: - pos: 41.5,-72.5 parent: 2 type: Transform - - uid: 24411 + - uid: 24636 components: - pos: 38.5,-72.5 parent: 2 type: Transform - - uid: 24412 + - uid: 24637 components: - pos: 40.5,-55.5 parent: 2 type: Transform - - uid: 24413 + - uid: 24638 components: - pos: -51.5,14.5 parent: 2 type: Transform - - uid: 24414 + - uid: 24639 components: - pos: -45.5,5.5 parent: 2 type: Transform - - uid: 24415 + - uid: 24640 components: - pos: -52.5,7.5 parent: 2 type: Transform - - uid: 24416 + - uid: 24641 components: - pos: 39.5,-54.5 parent: 2 type: Transform - - uid: 24417 + - uid: 24642 components: - pos: -46.5,7.5 parent: 2 type: Transform - - uid: 24418 + - uid: 24643 components: - pos: -19.5,34.5 parent: 2 type: Transform - - uid: 24419 + - uid: 24644 components: - pos: -11.5,32.5 parent: 2 type: Transform - - uid: 24420 + - uid: 24645 components: - pos: -23.5,30.5 parent: 2 type: Transform - - uid: 24421 + - uid: 24646 components: - pos: -42.5,10.5 parent: 2 type: Transform - - uid: 24422 + - uid: 24647 components: - pos: -24.5,-20.5 parent: 2 type: Transform - - uid: 24423 + - uid: 24648 components: - pos: -44.5,3.5 parent: 2 type: Transform - - uid: 24424 + - uid: 24649 components: - pos: 43.5,-72.5 parent: 2 type: Transform - - uid: 24425 + - uid: 24650 components: - pos: 36.5,-72.5 parent: 2 type: Transform - proto: SpawnPointAtmos entities: - - uid: 24426 + - uid: 24651 components: - pos: -39.5,-34.5 parent: 2 type: Transform - - uid: 24427 + - uid: 24652 components: - pos: -37.5,-35.5 parent: 2 type: Transform - - uid: 24428 + - uid: 24653 components: - pos: -36.5,-34.5 parent: 2 type: Transform - proto: SpawnPointBartender entities: - - uid: 24429 + - uid: 24654 components: - pos: 17.5,13.5 parent: 2 type: Transform - - uid: 24430 + - uid: 24655 components: - pos: 17.5,11.5 parent: 2 type: Transform - proto: SpawnPointBorg entities: - - uid: 24431 + - uid: 24656 components: - pos: 64.5,-44.5 parent: 2 type: Transform - - uid: 24432 + - uid: 24657 components: - pos: 60.5,-44.5 parent: 2 type: Transform - proto: SpawnPointBotanist entities: - - uid: 24433 + - uid: 24658 components: - pos: -5.5,7.5 parent: 2 type: Transform - - uid: 24434 + - uid: 24659 components: - pos: -7.5,7.5 parent: 2 type: Transform - - uid: 24435 + - uid: 24660 components: - pos: -9.5,7.5 parent: 2 type: Transform - proto: SpawnPointBoxer entities: - - uid: 24436 + - uid: 24661 components: - pos: 22.5,2.5 parent: 2 type: Transform - proto: SpawnPointCaptain entities: - - uid: 24437 + - uid: 24662 components: - pos: 26.5,-22.5 parent: 2 type: Transform - proto: SpawnPointCargoTechnician entities: - - uid: 24438 + - uid: 24663 components: - pos: -46.5,16.5 parent: 2 type: Transform - - uid: 24439 + - uid: 24664 components: - pos: -31.5,24.5 parent: 2 type: Transform - - uid: 24440 + - uid: 24665 components: - pos: -33.5,22.5 parent: 2 type: Transform - - uid: 24441 + - uid: 24666 components: - pos: -31.5,19.5 parent: 2 type: Transform - - uid: 24442 + - uid: 24667 components: - pos: -31.5,21.5 parent: 2 type: Transform - proto: SpawnPointChaplain entities: - - uid: 24443 + - uid: 24668 components: - pos: -30.5,13.5 parent: 2 type: Transform - - uid: 24444 + - uid: 24669 components: - pos: -30.5,14.5 parent: 2 type: Transform - proto: SpawnPointChef entities: - - uid: 24445 + - uid: 24670 components: - pos: 0.5,7.5 parent: 2 type: Transform - - uid: 24446 + - uid: 24671 components: - pos: 5.5,7.5 parent: 2 type: Transform - - uid: 24447 + - uid: 24672 components: - pos: 5.5,9.5 parent: 2 type: Transform - proto: SpawnPointChemist entities: - - uid: 24448 + - uid: 24673 components: - pos: 3.5,-50.5 parent: 2 type: Transform - - uid: 24449 + - uid: 24674 components: - pos: 3.5,-48.5 parent: 2 type: Transform - - uid: 24450 + - uid: 24675 components: - pos: 3.5,-46.5 parent: 2 type: Transform - proto: SpawnPointChiefEngineer entities: - - uid: 24451 + - uid: 24676 components: - pos: -36.5,-17.5 parent: 2 type: Transform - proto: SpawnPointChiefMedicalOfficer entities: - - uid: 24452 + - uid: 24677 components: - pos: -18.5,-55.5 parent: 2 type: Transform - proto: SpawnPointClown entities: - - uid: 24453 + - uid: 24678 components: - pos: -21.5,38.5 parent: 2 type: Transform - - uid: 24454 + - uid: 24679 components: - pos: 0.5,-21.5 parent: 2 type: Transform - proto: SpawnPointDetective entities: - - uid: 24455 + - uid: 24680 components: - pos: 19.5,-11.5 parent: 2 type: Transform - proto: SpawnPointHeadOfPersonnel entities: - - uid: 24456 + - uid: 24681 components: - pos: 4.5,-5.5 parent: 2 type: Transform - proto: SpawnPointHeadOfSecurity entities: - - uid: 24457 + - uid: 24682 components: - pos: 5.5,21.5 parent: 2 type: Transform - proto: SpawnPointJanitor entities: - - uid: 24458 + - uid: 24683 components: - pos: -11.5,-18.5 parent: 2 type: Transform - - uid: 24459 + - uid: 24684 components: - pos: -10.5,-22.5 parent: 2 type: Transform - - uid: 24460 + - uid: 24685 components: - pos: -12.5,-22.5 parent: 2 type: Transform - proto: SpawnPointLatejoin entities: - - uid: 24461 + - uid: 24686 components: - pos: 39.5,-72.5 parent: 2 type: Transform - - uid: 24462 + - uid: 24687 components: - pos: 40.5,-72.5 parent: 2 type: Transform - - uid: 24463 + - uid: 24688 components: - pos: 42.5,-72.5 parent: 2 type: Transform - - uid: 24464 + - uid: 24689 components: - pos: 37.5,-72.5 parent: 2 type: Transform - proto: SpawnPointLawyer entities: - - uid: 24465 + - uid: 24690 components: - pos: 42.5,-2.5 parent: 2 type: Transform - - uid: 24466 + - uid: 24691 components: - pos: 39.5,-4.5 parent: 2 type: Transform - proto: SpawnPointLibrarian entities: - - uid: 24467 + - uid: 24692 components: - pos: 11.5,-9.5 parent: 2 type: Transform - - uid: 24468 + - uid: 24693 components: - pos: 9.5,-9.5 parent: 2 type: Transform - proto: SpawnPointMedicalDoctor entities: - - uid: 24469 + - uid: 24694 components: - pos: -14.5,-46.5 parent: 2 type: Transform - - uid: 24470 + - uid: 24695 components: - pos: -12.5,-46.5 parent: 2 type: Transform - - uid: 24471 + - uid: 24696 components: - pos: -12.5,-48.5 parent: 2 type: Transform - - uid: 24472 + - uid: 24697 components: - pos: -14.5,-48.5 parent: 2 type: Transform - - uid: 24473 + - uid: 24698 components: - pos: -28.5,-74.5 parent: 2 type: Transform - proto: SpawnPointMedicalIntern entities: - - uid: 24474 + - uid: 24699 components: - pos: -1.5,-47.5 parent: 2 type: Transform - proto: SpawnPointMime entities: - - uid: 24475 + - uid: 24700 components: - pos: -27.5,45.5 parent: 2 type: Transform + - uid: 24701 + components: + - pos: -0.5,-20.5 + parent: 2 + type: Transform - proto: SpawnPointMusician entities: - - uid: 24476 + - uid: 24702 components: - pos: -9.5,-5.5 parent: 2 type: Transform - - uid: 24477 + - uid: 24703 components: - pos: -7.5,-5.5 parent: 2 type: Transform - proto: SpawnPointObserver entities: - - uid: 24478 + - uid: 24704 components: - pos: -4.5,-41.5 parent: 2 type: Transform - proto: SpawnPointParamedic entities: - - uid: 24479 + - uid: 24705 components: - pos: 3.5,-64.5 parent: 2 type: Transform - proto: SpawnPointPsychologist entities: - - uid: 24480 + - uid: 24706 components: - pos: -11.5,-36.5 parent: 2 type: Transform - proto: SpawnPointQuartermaster entities: - - uid: 24481 + - uid: 24707 components: - pos: -31.5,30.5 parent: 2 type: Transform - proto: SpawnPointReporter entities: - - uid: 24482 + - uid: 24708 components: - pos: -25.5,11.5 parent: 2 type: Transform - proto: SpawnPointResearchAssistant entities: - - uid: 24483 + - uid: 24709 components: - pos: 49.5,-40.5 parent: 2 type: Transform - proto: SpawnPointResearchDirector entities: - - uid: 24484 + - uid: 24710 components: - pos: 63.5,-52.5 parent: 2 type: Transform - proto: SpawnPointSalvageSpecialist entities: - - uid: 24485 + - uid: 24711 components: - pos: -37.5,32.5 parent: 2 type: Transform - - uid: 24486 + - uid: 24712 components: - pos: -37.5,30.5 parent: 2 type: Transform - - uid: 24487 + - uid: 24713 components: - pos: -37.5,28.5 parent: 2 type: Transform - proto: SpawnPointScientist entities: - - uid: 24488 + - uid: 24714 components: - pos: 45.5,-46.5 parent: 2 type: Transform - - uid: 24489 + - uid: 24715 components: - pos: 43.5,-46.5 parent: 2 type: Transform - - uid: 24490 + - uid: 24716 components: - pos: 41.5,-46.5 parent: 2 type: Transform - - uid: 24491 + - uid: 24717 components: - pos: 44.5,-47.5 parent: 2 type: Transform - - uid: 24492 + - uid: 24718 components: - pos: 74.5,-34.5 parent: 2 type: Transform - proto: SpawnPointSecurityCadet entities: - - uid: 24493 + - uid: 24719 components: - pos: 23.5,18.5 parent: 2 type: Transform - - uid: 24494 + - uid: 24720 components: - pos: 25.5,18.5 parent: 2 type: Transform - proto: SpawnPointSecurityOfficer entities: - - uid: 24495 + - uid: 24721 components: - pos: 1.5,19.5 parent: 2 type: Transform - - uid: 24496 + - uid: 24722 components: - pos: 7.5,16.5 parent: 2 type: Transform - - uid: 24497 + - uid: 24723 components: - pos: 5.5,16.5 parent: 2 type: Transform - - uid: 24498 + - uid: 24724 components: - pos: 0.5,18.5 parent: 2 type: Transform - - uid: 24499 + - uid: 24725 components: - pos: 1.5,17.5 parent: 2 type: Transform - - uid: 24500 + - uid: 24726 components: - pos: 6.5,13.5 parent: 2 type: Transform - proto: SpawnPointSeniorEngineer entities: - - uid: 24501 + - uid: 24727 components: - pos: -38.5,-8.5 parent: 2 type: Transform - proto: SpawnPointSeniorOfficer entities: - - uid: 24502 + - uid: 24728 components: - pos: 6.5,17.5 parent: 2 type: Transform - proto: SpawnPointSeniorPhysician entities: - - uid: 24503 + - uid: 24729 components: - pos: -13.5,-47.5 parent: 2 type: Transform - proto: SpawnPointSeniorResearcher entities: - - uid: 24504 + - uid: 24730 components: - pos: 45.5,-37.5 parent: 2 type: Transform - proto: SpawnPointServiceWorker entities: - - uid: 24505 + - uid: 24731 components: - pos: -21.5,44.5 parent: 2 type: Transform - - uid: 24506 + - uid: 24732 components: - pos: -10.5,42.5 parent: 2 type: Transform - - uid: 24507 + - uid: 24733 components: - pos: -21.5,48.5 parent: 2 type: Transform - proto: SpawnPointStationEngineer entities: - - uid: 24508 + - uid: 24734 components: - pos: -37.5,-10.5 parent: 2 type: Transform - - uid: 24509 + - uid: 24735 components: - pos: -38.5,-12.5 parent: 2 type: Transform - - uid: 24510 + - uid: 24736 components: - pos: -36.5,-12.5 parent: 2 type: Transform - - uid: 24511 + - uid: 24737 components: - pos: -35.5,-10.5 parent: 2 type: Transform - - uid: 24512 + - uid: 24738 components: - pos: -35.5,-7.5 parent: 2 type: Transform - proto: SpawnPointTechnicalAssistant entities: - - uid: 24513 + - uid: 24739 components: - pos: -23.5,-10.5 parent: 2 type: Transform - - uid: 24514 + - uid: 24740 components: - pos: -24.5,-12.5 parent: 2 type: Transform - proto: SpawnPointWarden entities: - - uid: 24515 + - uid: 24741 components: - pos: 23.5,21.5 parent: 2 type: Transform - proto: SpawnVehicleJanicart entities: - - uid: 24516 + - uid: 24742 components: - pos: -12.5,-23.5 parent: 2 type: Transform - proto: SpawnVehicleSecway entities: - - uid: 24517 + - uid: 24743 components: - pos: 10.5,22.5 parent: 2 type: Transform - - uid: 24518 + - uid: 24744 components: - pos: 10.5,21.5 parent: 2 type: Transform - - uid: 24519 + - uid: 24745 components: - pos: 10.5,20.5 parent: 2 type: Transform - proto: SpawnVendingMachineRestockFoodDrink entities: - - uid: 24520 + - uid: 24746 components: - pos: 37.5,-10.5 parent: 2 type: Transform - - uid: 24521 + - uid: 24747 components: - pos: -13.5,-12.5 parent: 2 type: Transform - proto: SpiderWeb entities: - - uid: 24522 + - uid: 24748 components: - pos: -38.5,-71.5 parent: 2 type: Transform - - uid: 24523 + - uid: 24749 components: - pos: -39.5,-70.5 parent: 2 type: Transform - - uid: 24524 + - uid: 24750 components: - pos: -46.5,-72.5 parent: 2 type: Transform - - uid: 24525 + - uid: 24751 components: - pos: -47.5,-73.5 parent: 2 type: Transform - - uid: 24526 + - uid: 24752 components: - pos: -52.5,-68.5 parent: 2 type: Transform - - uid: 24527 + - uid: 24753 components: - pos: -50.5,-62.5 parent: 2 type: Transform - proto: SprayBottle entities: - - uid: 24528 + - uid: 24754 components: - pos: 53.44381,-51.454926 parent: 2 type: Transform - proto: SprayBottleSpaceCleaner entities: - - uid: 24529 + - uid: 24755 components: - pos: -13.517906,-22.26318 parent: 2 type: Transform - - uid: 24530 + - uid: 24756 components: - pos: -13.721031,-22.20068 parent: 2 type: Transform - - uid: 24531 + - uid: 24757 components: - pos: -13.62392,-22.29671 parent: 2 type: Transform - - uid: 24532 + - uid: 24758 components: - pos: -13.389545,-22.218584 parent: 2 type: Transform - proto: Stairs entities: - - uid: 24533 + - uid: 24759 components: - rot: 3.141592653589793 rad pos: -19.5,-8.5 parent: 2 type: Transform - - uid: 24534 + - uid: 24760 components: - rot: 3.141592653589793 rad pos: -18.5,-8.5 parent: 2 type: Transform - - uid: 24535 + - uid: 24761 components: - pos: -20.5,-23.5 parent: 2 type: Transform - - uid: 24536 + - uid: 24762 components: - pos: -19.5,-23.5 parent: 2 type: Transform - - uid: 24537 + - uid: 24763 components: - rot: 3.141592653589793 rad pos: -20.5,-8.5 parent: 2 type: Transform - - uid: 24538 + - uid: 24764 components: - pos: -18.5,-23.5 parent: 2 type: Transform - - uid: 24539 + - uid: 24765 components: - pos: -31.5,-20.5 parent: 2 type: Transform - - uid: 24540 + - uid: 24766 components: - pos: -32.5,-20.5 parent: 2 type: Transform - - uid: 24541 + - uid: 24767 components: - rot: 1.5707963267948966 rad pos: -50.5,-32.5 parent: 2 type: Transform - - uid: 24542 + - uid: 24768 components: - rot: 1.5707963267948966 rad pos: -50.5,-31.5 parent: 2 type: Transform - - uid: 24543 + - uid: 24769 components: - rot: 1.5707963267948966 rad pos: -63.5,-36.5 parent: 2 type: Transform - - uid: 24544 + - uid: 24770 components: - rot: 1.5707963267948966 rad pos: -63.5,-37.5 parent: 2 type: Transform - - uid: 24545 + - uid: 24771 components: - rot: -1.5707963267948966 rad pos: -54.5,-27.5 parent: 2 type: Transform - - uid: 24546 + - uid: 24772 components: - rot: -1.5707963267948966 rad pos: -54.5,-28.5 parent: 2 type: Transform - - uid: 24547 + - uid: 24773 components: - rot: -1.5707963267948966 rad pos: -28.5,-22.5 @@ -161590,13 +162841,13 @@ entities: type: Transform - proto: StairStage entities: - - uid: 24548 + - uid: 24774 components: - rot: 1.5707963267948966 rad pos: -39.5,-2.5 parent: 2 type: Transform - - uid: 24549 + - uid: 24775 components: - rot: -1.5707963267948966 rad pos: -43.5,-3.5 @@ -161604,88 +162855,89 @@ entities: type: Transform - proto: StasisBed entities: - - uid: 24550 + - uid: 24776 components: - pos: 4.5,-64.5 parent: 2 type: Transform - - uid: 24551 + - uid: 24777 components: - pos: 4.5,-63.5 parent: 2 type: Transform - proto: StationMap entities: - - uid: 24552 + - uid: 24778 components: - pos: 5.5,-24.5 parent: 2 type: Transform - - uid: 24553 + - uid: 24779 components: - pos: 12.5,-40.5 parent: 2 type: Transform - - uid: 24554 + - uid: 24780 components: - pos: -32.5,2.5 parent: 2 type: Transform - - uid: 24555 - components: - - pos: -0.5,4.5 - parent: 2 - type: Transform - - uid: 24556 + - uid: 24781 components: - pos: -18.5,52.5 parent: 2 type: Transform - - uid: 24557 + - uid: 24782 components: - pos: 45.5,-70.5 parent: 2 type: Transform - - uid: 24558 + - uid: 24783 components: - pos: 41.5,-40.5 parent: 2 type: Transform - - uid: 24559 + - uid: 24784 components: - pos: 48.5,3.5 parent: 2 type: Transform - - uid: 24560 + - uid: 24785 components: - pos: 20.5,9.5 parent: 2 type: Transform - - uid: 24561 + - uid: 24786 components: - pos: -8.5,47.5 parent: 2 type: Transform - - uid: 24562 + - uid: 24787 components: - pos: 12.5,-79.5 parent: 2 type: Transform - - uid: 24563 + - uid: 24788 components: - pos: -69.5,-36.5 parent: 2 type: Transform + - uid: 24789 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-2.5 + parent: 2 + type: Transform - proto: StationMapCircuitboard entities: - - uid: 24564 + - uid: 24790 components: - pos: -8.453156,37.616253 parent: 2 type: Transform - proto: SteelOre1 entities: - - uid: 24565 + - uid: 24791 components: - rot: 3.141592653589793 rad pos: 20.04077,49.432205 @@ -161693,13 +162945,13 @@ entities: type: Transform - proto: Stool entities: - - uid: 24566 + - uid: 24792 components: - rot: -1.5707963267948966 rad pos: 9.5,5.5 parent: 2 type: Transform - - uid: 24567 + - uid: 24793 components: - rot: -1.5707963267948966 rad pos: -33.5,13.5 @@ -161707,13 +162959,13 @@ entities: type: Transform - proto: StoolBar entities: - - uid: 24568 + - uid: 24794 components: - rot: 1.5707963267948966 rad pos: 14.5,10.5 parent: 2 type: Transform - - uid: 24569 + - uid: 24795 components: - name: stool type: MetaData @@ -161721,7 +162973,7 @@ entities: pos: -6.5,3.5 parent: 2 type: Transform - - uid: 24570 + - uid: 24796 components: - name: stool type: MetaData @@ -161729,24 +162981,24 @@ entities: pos: 1.5,3.5 parent: 2 type: Transform - - uid: 24571 + - uid: 24797 components: - rot: 1.5707963267948966 rad pos: 14.5,13.5 parent: 2 type: Transform - - uid: 24572 + - uid: 24798 components: - rot: 1.5707963267948966 rad pos: 14.5,12.5 parent: 2 type: Transform - - uid: 24573 + - uid: 24799 components: - pos: 5.5,12.5 parent: 2 type: Transform - - uid: 24574 + - uid: 24800 components: - name: stool type: MetaData @@ -161754,7 +163006,7 @@ entities: pos: 0.5,3.5 parent: 2 type: Transform - - uid: 24575 + - uid: 24801 components: - name: stool type: MetaData @@ -161762,78 +163014,78 @@ entities: pos: 2.5,3.5 parent: 2 type: Transform - - uid: 24576 + - uid: 24802 components: - rot: 1.5707963267948966 rad pos: 14.5,11.5 parent: 2 type: Transform - - uid: 24577 + - uid: 24803 components: - rot: -1.5707963267948966 rad pos: 8.5,9.5 parent: 2 type: Transform - - uid: 24578 + - uid: 24804 components: - rot: -1.5707963267948966 rad pos: 8.5,8.5 parent: 2 type: Transform - - uid: 24579 + - uid: 24805 components: - rot: -1.5707963267948966 rad pos: 8.5,7.5 parent: 2 type: Transform - - uid: 24580 + - uid: 24806 components: - rot: 1.5707963267948966 rad pos: 14.5,9.5 parent: 2 type: Transform - - uid: 24581 + - uid: 24807 components: - rot: 3.141592653589793 rad pos: -40.5,-79.5 parent: 2 type: Transform - - uid: 24582 + - uid: 24808 components: - rot: 3.141592653589793 rad pos: -41.5,-79.5 parent: 2 type: Transform - - uid: 24583 + - uid: 24809 components: - rot: 3.141592653589793 rad pos: -42.5,-79.5 parent: 2 type: Transform - - uid: 24584 + - uid: 24810 components: - rot: 3.141592653589793 rad pos: -43.5,-79.5 parent: 2 type: Transform - - uid: 24585 + - uid: 24811 components: - rot: -1.5707963267948966 rad pos: -39.5,-78.5 parent: 2 type: Transform - - uid: 24586 + - uid: 24812 components: - rot: 1.5707963267948966 rad pos: -44.5,-78.5 parent: 2 type: Transform - - uid: 24587 + - uid: 24813 components: - pos: 4.5,12.5 parent: 2 type: Transform - - uid: 24588 + - uid: 24814 components: - name: stool type: MetaData @@ -161841,7 +163093,7 @@ entities: pos: -7.5,3.5 parent: 2 type: Transform - - uid: 24589 + - uid: 24815 components: - name: stool type: MetaData @@ -161849,75 +163101,75 @@ entities: pos: -8.5,3.5 parent: 2 type: Transform - - uid: 24590 + - uid: 24816 components: - rot: 3.141592653589793 rad pos: 39.5,48.5 parent: 2 type: Transform - - uid: 24591 + - uid: 24817 components: - rot: 3.141592653589793 rad pos: 38.5,48.5 parent: 2 type: Transform - - uid: 24592 + - uid: 24818 components: - rot: 3.141592653589793 rad pos: 37.5,48.5 parent: 2 type: Transform - - uid: 24593 + - uid: 24819 components: - rot: 3.141592653589793 rad pos: 36.5,48.5 parent: 2 type: Transform - - uid: 24594 + - uid: 24820 components: - name: donk stool type: MetaData - pos: -9.5,44.5 parent: 2 type: Transform - - uid: 24595 + - uid: 24821 components: - name: donk stool type: MetaData - pos: -10.5,44.5 parent: 2 type: Transform - - uid: 24596 + - uid: 24822 components: - pos: -30.5,-96.5 parent: 2 type: Transform - - uid: 24597 + - uid: 24823 components: - name: donk stool type: MetaData - pos: -11.5,44.5 parent: 2 type: Transform - - uid: 24598 + - uid: 24824 components: - rot: 1.5707963267948966 rad pos: 26.5,-34.5 parent: 2 type: Transform - - uid: 24599 + - uid: 24825 components: - rot: 1.5707963267948966 rad pos: 26.5,-35.5 parent: 2 type: Transform - - uid: 24600 + - uid: 24826 components: - rot: 1.5707963267948966 rad pos: 26.5,-36.5 parent: 2 type: Transform - - uid: 24601 + - uid: 24827 components: - rot: 1.5707963267948966 rad pos: 26.5,-37.5 @@ -161925,277 +163177,275 @@ entities: type: Transform - proto: StorageCanister entities: - - uid: 24602 + - uid: 24828 components: - pos: -75.5,-45.5 parent: 2 type: Transform - - uid: 24603 + - uid: 24829 components: - pos: 45.5,-54.5 parent: 2 type: Transform - - uid: 24604 + - uid: 24830 components: - pos: 45.5,-58.5 parent: 2 type: Transform - - uid: 24605 + - uid: 24831 components: - pos: -16.5,-10.5 parent: 2 type: Transform - - uid: 24606 + - uid: 24832 components: - pos: -38.5,-51.5 parent: 2 type: Transform - - uid: 24607 + - uid: 24833 components: - pos: -38.5,-50.5 parent: 2 type: Transform - - uid: 24608 + - uid: 24834 components: - pos: -38.5,-49.5 parent: 2 type: Transform - - uid: 24609 + - uid: 24835 components: - pos: -34.5,-39.5 parent: 2 type: Transform - - uid: 24610 + - uid: 24836 components: - pos: -35.5,-39.5 parent: 2 type: Transform - - uid: 24611 + - uid: 24837 components: - pos: -50.5,-44.5 parent: 2 type: Transform - - uid: 24612 + - uid: 24838 components: - pos: -50.5,-42.5 parent: 2 type: Transform - - uid: 24613 + - uid: 24839 components: - pos: 53.5,-37.5 parent: 2 type: Transform - - uid: 24614 + - uid: 24840 components: - pos: -24.5,-55.5 parent: 2 type: Transform - - uid: 24615 + - uid: 24841 components: - pos: -26.5,-55.5 parent: 2 type: Transform - - uid: 24616 + - uid: 24842 components: - pos: 51.5,-35.5 parent: 2 type: Transform - - uid: 24617 + - uid: 24843 components: - pos: -50.5,-35.5 parent: 2 type: Transform - - uid: 24618 + - uid: 24844 components: - pos: -50.5,-34.5 parent: 2 type: Transform - - uid: 24619 + - uid: 24845 components: - pos: -35.5,-38.5 parent: 2 type: Transform - - uid: 24620 + - uid: 24846 components: - pos: -75.5,-46.5 parent: 2 type: Transform - proto: Stunbaton entities: - - uid: 24621 + - uid: 24847 components: - pos: 8.313212,12.723815 parent: 2 type: Transform - - uid: 24622 + - uid: 24848 components: - pos: 8.262076,12.8623 parent: 2 type: Transform - proto: SubstationBasic entities: - - uid: 24623 + - uid: 24849 + components: + - pos: -56.5,-86.5 + parent: 2 + type: Transform + - uid: 24850 components: - name: command substation type: MetaData - pos: 18.5,-27.5 parent: 2 type: Transform - - uid: 24624 + - uid: 24851 components: - name: teg substation type: MetaData - pos: -69.5,-34.5 parent: 2 type: Transform - - uid: 24625 + - uid: 24852 components: - name: chapel substation type: MetaData - pos: -34.5,-3.5 parent: 2 type: Transform - - uid: 24626 + - uid: 24853 components: - name: virology substation type: MetaData - pos: -12.5,-69.5 parent: 2 type: Transform - - uid: 24627 + - uid: 24854 components: - name: medical substation 3 type: MetaData - pos: 15.5,-58.5 parent: 2 type: Transform - - uid: 24628 + - uid: 24855 components: - name: boxing substation type: MetaData - pos: 30.5,-2.5 parent: 2 type: Transform - - uid: 24629 + - uid: 24856 components: - name: janitorial substation type: MetaData - pos: -8.5,-19.5 parent: 2 type: Transform - - uid: 24630 + - uid: 24857 components: - name: vault substation type: MetaData - pos: 38.5,-28.5 parent: 2 type: Transform - - uid: 24631 + - uid: 24858 components: - name: robotics substation type: MetaData - pos: 69.5,-59.5 parent: 2 type: Transform - - uid: 24632 + - uid: 24859 components: - name: sec substation type: MetaData - pos: 33.5,25.5 parent: 2 type: Transform - - uid: 24633 + - uid: 24860 components: - name: prison substation type: MetaData - pos: 63.5,7.5 parent: 2 type: Transform - - uid: 24634 + - uid: 24861 components: - name: brig substation type: MetaData - pos: 47.5,-3.5 parent: 2 type: Transform - - uid: 24635 + - uid: 24862 components: - name: evac substation type: MetaData - pos: 48.5,-5.5 parent: 2 type: Transform - - uid: 24636 + - uid: 24863 components: - name: science substation type: MetaData - pos: 38.5,-46.5 parent: 2 type: Transform - - uid: 24637 + - uid: 24864 components: - name: gravity substation type: MetaData - pos: -16.5,-0.5 parent: 2 type: Transform - - uid: 24638 + - uid: 24865 components: - name: engineering substation type: MetaData - pos: -28.5,-23.5 parent: 2 type: Transform - - uid: 24639 + - uid: 24866 components: - name: arrivals substation type: MetaData - pos: 43.5,-58.5 parent: 2 type: Transform - - uid: 24640 + - uid: 24867 components: - name: singularity substation type: MetaData - pos: -50.5,-8.5 parent: 2 type: Transform - - uid: 24641 + - uid: 24868 components: - name: PA substation type: MetaData - pos: -57.5,-20.5 parent: 2 type: Transform - - uid: 24642 + - uid: 24869 components: - name: atmos substation type: MetaData - pos: -27.5,-37.5 parent: 2 type: Transform - - uid: 24643 + - uid: 24870 components: - name: maints bar substation type: MetaData - pos: -31.5,-54.5 parent: 2 type: Transform - - uid: 24644 - components: - - name: syndicate shuttle substation - type: MetaData - - pos: -55.5,-89.5 - parent: 2 - type: Transform - - uid: 24645 + - uid: 24871 components: - name: north maints substation type: MetaData - pos: -8.5,35.5 parent: 2 type: Transform - - uid: 24646 + - uid: 24872 components: - name: cargo substation type: MetaData @@ -162204,49 +163454,49 @@ entities: type: Transform missingComponents: - Anchorable - - uid: 24647 + - uid: 24873 components: - name: telecoms substation type: MetaData - pos: 4.5,-19.5 parent: 2 type: Transform - - uid: 24648 + - uid: 24874 components: - name: medical substation 1 type: MetaData - pos: 11.5,-45.5 parent: 2 type: Transform - - uid: 24649 + - uid: 24875 components: - name: medical substation 2 type: MetaData - pos: 11.5,-47.5 parent: 2 type: Transform - - uid: 24650 + - uid: 24876 components: - name: sec maints substation type: MetaData - pos: 50.5,29.5 parent: 2 type: Transform - - uid: 24651 + - uid: 24877 components: - name: ai substation type: MetaData - pos: -10.5,62.5 parent: 2 type: Transform - - uid: 24652 + - uid: 24878 components: - name: detective substation type: MetaData - pos: 8.5,-16.5 parent: 2 type: Transform - - uid: 24653 + - uid: 24879 components: - name: shuttle substation type: MetaData @@ -162255,178 +163505,178 @@ entities: type: Transform - proto: SuitStorageAtmos entities: - - uid: 24654 + - uid: 24880 components: - pos: -40.5,-36.5 parent: 2 type: Transform - - uid: 24655 + - uid: 24881 components: - pos: -36.5,-36.5 parent: 2 type: Transform - - uid: 24656 + - uid: 24882 components: - pos: -38.5,-36.5 parent: 2 type: Transform - proto: SuitStorageCaptain entities: - - uid: 24657 + - uid: 24883 components: - pos: 28.5,-29.5 parent: 2 type: Transform - proto: SuitStorageCE entities: - - uid: 24658 + - uid: 24884 components: - pos: -37.5,-16.5 parent: 2 type: Transform - proto: SuitStorageCMO entities: - - uid: 24659 + - uid: 24885 components: - pos: -22.5,-55.5 parent: 2 type: Transform - proto: SuitStorageEngi entities: - - uid: 24660 + - uid: 24886 components: - pos: -34.5,-5.5 parent: 2 type: Transform - - uid: 24661 + - uid: 24887 components: - pos: -34.5,-7.5 parent: 2 type: Transform - - uid: 24662 + - uid: 24888 components: - pos: -34.5,-8.5 parent: 2 type: Transform - - uid: 24663 + - uid: 24889 components: - pos: -34.5,-6.5 parent: 2 type: Transform - - uid: 24664 + - uid: 24890 components: - pos: -55.5,-15.5 parent: 2 type: Transform - proto: SuitStorageEVA entities: - - uid: 24665 + - uid: 24891 components: - pos: 29.5,-10.5 parent: 2 type: Transform - - uid: 24666 + - uid: 24892 components: - pos: 29.5,-12.5 parent: 2 type: Transform - - uid: 24667 + - uid: 24893 components: - pos: 33.5,-10.5 parent: 2 type: Transform - - uid: 24668 + - uid: 24894 components: - pos: 31.5,-12.5 parent: 2 type: Transform - - uid: 24669 + - uid: 24895 components: - pos: 31.5,-10.5 parent: 2 type: Transform - - uid: 24670 + - uid: 24896 components: - pos: 33.5,-12.5 parent: 2 type: Transform - proto: SuitStorageEVAPrisoner entities: - - uid: 24671 + - uid: 24897 components: - pos: 63.5,4.5 parent: 2 type: Transform - - uid: 24672 + - uid: 24898 components: - pos: 63.5,5.5 parent: 2 type: Transform - proto: SuitStorageHOS entities: - - uid: 24673 + - uid: 24899 components: - pos: 5.5,22.5 parent: 2 type: Transform - proto: SuitStorageRD entities: - - uid: 24674 + - uid: 24900 components: - pos: 65.5,-52.5 parent: 2 type: Transform - proto: SuitStorageSalv entities: - - uid: 24675 + - uid: 24901 components: - pos: -36.5,33.5 parent: 2 type: Transform - - uid: 24676 + - uid: 24902 components: - pos: -36.5,29.5 parent: 2 type: Transform - - uid: 24677 + - uid: 24903 components: - pos: -36.5,31.5 parent: 2 type: Transform - proto: SuitStorageSec entities: - - uid: 24678 + - uid: 24904 components: - pos: 26.5,30.5 parent: 2 type: Transform - - uid: 24679 + - uid: 24905 components: - pos: 26.5,27.5 parent: 2 type: Transform - - uid: 24680 + - uid: 24906 components: - pos: 32.5,27.5 parent: 2 type: Transform - proto: SuitStorageWarden entities: - - uid: 24681 + - uid: 24907 components: - pos: 20.5,20.5 parent: 2 type: Transform - proto: SuperMatterBinStockPart entities: - - uid: 24682 + - uid: 24908 components: - pos: -50.47893,-29.292162 parent: 2 type: Transform - proto: SurveillanceCameraCommand entities: - - uid: 24683 + - uid: 24909 components: - rot: 1.5707963267948966 rad pos: -17.5,-55.5 @@ -162437,7 +163687,7 @@ entities: nameSet: True id: chief medical officer type: SurveillanceCamera - - uid: 24684 + - uid: 24910 components: - rot: -1.5707963267948966 rad pos: 4.5,21.5 @@ -162448,7 +163698,7 @@ entities: nameSet: True id: 'head of security ' type: SurveillanceCamera - - uid: 24685 + - uid: 24911 components: - rot: 3.141592653589793 rad pos: 46.5,-27.5 @@ -162459,7 +163709,7 @@ entities: nameSet: True id: vault b type: SurveillanceCamera - - uid: 24686 + - uid: 24912 components: - rot: 3.141592653589793 rad pos: 46.5,-21.5 @@ -162470,7 +163720,7 @@ entities: nameSet: True id: vault a type: SurveillanceCamera - - uid: 24687 + - uid: 24913 components: - pos: 31.5,-22.5 parent: 2 @@ -162480,7 +163730,7 @@ entities: nameSet: True id: bridge type: SurveillanceCamera - - uid: 24688 + - uid: 24914 components: - rot: 3.141592653589793 rad pos: 64.5,-51.5 @@ -162491,7 +163741,7 @@ entities: nameSet: True id: research director type: SurveillanceCamera - - uid: 24689 + - uid: 24915 components: - rot: -1.5707963267948966 rad pos: 31.5,-10.5 @@ -162502,7 +163752,7 @@ entities: nameSet: True id: EVA closet type: SurveillanceCamera - - uid: 24690 + - uid: 24916 components: - pos: 28.5,-43.5 parent: 2 @@ -162512,7 +163762,7 @@ entities: nameSet: True id: personnel type: SurveillanceCamera - - uid: 24691 + - uid: 24917 components: - rot: 1.5707963267948966 rad pos: 5.5,-6.5 @@ -162525,7 +163775,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraEngineering entities: - - uid: 24692 + - uid: 24918 components: - rot: -1.5707963267948966 rad pos: -44.5,-41.5 @@ -162536,7 +163786,7 @@ entities: nameSet: True id: atmospherics type: SurveillanceCamera - - uid: 24693 + - uid: 24919 components: - rot: 3.141592653589793 rad pos: -29.5,-16.5 @@ -162547,7 +163797,7 @@ entities: nameSet: True id: engineering main corridor type: SurveillanceCamera - - uid: 24694 + - uid: 24920 components: - pos: -38.5,-13.5 parent: 2 @@ -162557,7 +163807,7 @@ entities: nameSet: True id: engineer canteen type: SurveillanceCamera - - uid: 24695 + - uid: 24921 components: - rot: -1.5707963267948966 rad pos: -48.5,-9.5 @@ -162568,7 +163818,7 @@ entities: nameSet: True id: 'AME ' type: SurveillanceCamera - - uid: 24696 + - uid: 24922 components: - pos: -52.5,-20.5 parent: 2 @@ -162578,7 +163828,7 @@ entities: nameSet: True id: engineering console room type: SurveillanceCamera - - uid: 24697 + - uid: 24923 components: - pos: -67.5,-28.5 parent: 2 @@ -162588,7 +163838,7 @@ entities: nameSet: True id: particle accelerator type: SurveillanceCamera - - uid: 24698 + - uid: 24924 components: - rot: -1.5707963267948966 rad pos: -22.5,4.5 @@ -162601,7 +163851,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraGeneral entities: - - uid: 24699 + - uid: 24925 components: - pos: -6.5,-27.5 parent: 2 @@ -162611,7 +163861,7 @@ entities: nameSet: True id: janitorial closet type: SurveillanceCamera - - uid: 24700 + - uid: 24926 components: - rot: 1.5707963267948966 rad pos: -22.5,-23.5 @@ -162622,7 +163872,7 @@ entities: nameSet: True id: north youtool type: SurveillanceCamera - - uid: 24701 + - uid: 24927 components: - rot: 3.141592653589793 rad pos: 8.5,3.5 @@ -162633,7 +163883,7 @@ entities: nameSet: True id: food court type: SurveillanceCamera - - uid: 24702 + - uid: 24928 components: - rot: 1.5707963267948966 rad pos: 41.5,-56.5 @@ -162644,7 +163894,7 @@ entities: nameSet: True id: south youtool type: SurveillanceCamera - - uid: 24703 + - uid: 24929 components: - pos: 37.5,-73.5 parent: 2 @@ -162654,7 +163904,7 @@ entities: nameSet: True id: arrivals type: SurveillanceCamera - - uid: 24704 + - uid: 24930 components: - rot: -1.5707963267948966 rad pos: 60.5,-7.5 @@ -162665,7 +163915,7 @@ entities: nameSet: True id: evac type: SurveillanceCamera - - uid: 24705 + - uid: 24931 components: - rot: 3.141592653589793 rad pos: -12.5,-8.5 @@ -162678,7 +163928,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraMedical entities: - - uid: 24706 + - uid: 24932 components: - rot: -1.5707963267948966 rad pos: -20.5,-61.5 @@ -162689,7 +163939,7 @@ entities: nameSet: True id: medbay corridor type: SurveillanceCamera - - uid: 24707 + - uid: 24933 components: - rot: 1.5707963267948966 rad pos: 0.5,-47.5 @@ -162700,7 +163950,7 @@ entities: nameSet: True id: medbay reception type: SurveillanceCamera - - uid: 24708 + - uid: 24934 components: - pos: -10.5,-61.5 parent: 2 @@ -162710,7 +163960,7 @@ entities: nameSet: True id: medical doctors corridor type: SurveillanceCamera - - uid: 24709 + - uid: 24935 components: - rot: 3.141592653589793 rad pos: -6.5,-52.5 @@ -162721,7 +163971,7 @@ entities: nameSet: True id: medical beds type: SurveillanceCamera - - uid: 24710 + - uid: 24936 components: - rot: -1.5707963267948966 rad pos: -25.5,-70.5 @@ -162732,7 +163982,7 @@ entities: nameSet: True id: virology reception type: SurveillanceCamera - - uid: 24711 + - uid: 24937 components: - pos: -26.5,-80.5 parent: 2 @@ -162742,7 +163992,7 @@ entities: nameSet: True id: virology treatment type: SurveillanceCamera - - uid: 24712 + - uid: 24938 components: - rot: -1.5707963267948966 rad pos: -23.5,-83.5 @@ -162755,63 +164005,63 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraRouterCommand entities: - - uid: 24713 + - uid: 24939 components: - pos: -18.5,-48.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterEngineering entities: - - uid: 24714 + - uid: 24940 components: - pos: -21.5,-47.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterGeneral entities: - - uid: 24715 + - uid: 24941 components: - pos: -18.5,-45.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterMedical entities: - - uid: 24716 + - uid: 24942 components: - pos: -18.5,-46.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterScience entities: - - uid: 24717 + - uid: 24943 components: - pos: -21.5,-45.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterSecurity entities: - - uid: 24718 + - uid: 24944 components: - pos: -21.5,-48.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterService entities: - - uid: 24719 + - uid: 24945 components: - pos: -18.5,-47.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterSupply entities: - - uid: 24720 + - uid: 24946 components: - pos: -21.5,-46.5 parent: 2 type: Transform - proto: SurveillanceCameraScience entities: - - uid: 24721 + - uid: 24947 components: - rot: 1.5707963267948966 rad pos: 76.5,-48.5 @@ -162822,7 +164072,7 @@ entities: nameSet: True id: robotics type: SurveillanceCamera - - uid: 24722 + - uid: 24948 components: - rot: 1.5707963267948966 rad pos: 46.5,-36.5 @@ -162833,7 +164083,7 @@ entities: nameSet: True id: r&d type: SurveillanceCamera - - uid: 24723 + - uid: 24949 components: - rot: 1.5707963267948966 rad pos: 65.5,-47.5 @@ -162844,7 +164094,7 @@ entities: nameSet: True id: science robotics showcase type: SurveillanceCamera - - uid: 24724 + - uid: 24950 components: - rot: 3.141592653589793 rad pos: 37.5,-41.5 @@ -162855,7 +164105,7 @@ entities: nameSet: True id: science entrance type: SurveillanceCamera - - uid: 24725 + - uid: 24951 components: - rot: 1.5707963267948966 rad pos: 75.5,-38.5 @@ -162868,7 +164118,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraSecurity entities: - - uid: 24726 + - uid: 24952 components: - rot: 1.5707963267948966 rad pos: 23.5,34.5 @@ -162879,7 +164129,7 @@ entities: nameSet: True id: space armory type: SurveillanceCamera - - uid: 24727 + - uid: 24953 components: - rot: 1.5707963267948966 rad pos: 50.5,14.5 @@ -162890,7 +164140,7 @@ entities: nameSet: True id: open prison north west type: SurveillanceCamera - - uid: 24728 + - uid: 24954 components: - rot: -1.5707963267948966 rad pos: 56.5,10.5 @@ -162901,7 +164151,7 @@ entities: nameSet: True id: open prison south type: SurveillanceCamera - - uid: 24729 + - uid: 24955 components: - rot: 1.5707963267948966 rad pos: 42.5,9.5 @@ -162912,7 +164162,7 @@ entities: nameSet: True id: brig south type: SurveillanceCamera - - uid: 24730 + - uid: 24956 components: - rot: 3.141592653589793 rad pos: 33.5,16.5 @@ -162923,7 +164173,7 @@ entities: nameSet: True id: brig type: SurveillanceCamera - - uid: 24731 + - uid: 24957 components: - rot: 1.5707963267948966 rad pos: 32.5,31.5 @@ -162934,7 +164184,7 @@ entities: nameSet: True id: armory type: SurveillanceCamera - - uid: 24732 + - uid: 24958 components: - rot: 3.141592653589793 rad pos: 8.5,17.5 @@ -162945,7 +164195,7 @@ entities: nameSet: True id: security canteen type: SurveillanceCamera - - uid: 24733 + - uid: 24959 components: - rot: -1.5707963267948966 rad pos: 17.5,-11.5 @@ -162958,7 +164208,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraService entities: - - uid: 24734 + - uid: 24960 components: - rot: 1.5707963267948966 rad pos: 12.5,-6.5 @@ -162969,7 +164219,7 @@ entities: nameSet: True id: library type: SurveillanceCamera - - uid: 24735 + - uid: 24961 components: - rot: 1.5707963267948966 rad pos: 6.5,6.5 @@ -162980,7 +164230,7 @@ entities: nameSet: True id: Kitchen type: SurveillanceCamera - - uid: 24736 + - uid: 24962 components: - rot: 1.5707963267948966 rad pos: 14.5,8.5 @@ -162991,7 +164241,7 @@ entities: nameSet: True id: bar type: SurveillanceCamera - - uid: 24737 + - uid: 24963 components: - rot: 1.5707963267948966 rad pos: -6.5,9.5 @@ -163004,7 +164254,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraSupply entities: - - uid: 24738 + - uid: 24964 components: - pos: -43.5,18.5 parent: 2 @@ -163014,7 +164264,7 @@ entities: nameSet: True id: cargo dock type: SurveillanceCamera - - uid: 24739 + - uid: 24965 components: - rot: 1.5707963267948966 rad pos: -30.5,22.5 @@ -163025,7 +164275,7 @@ entities: nameSet: True id: cargo type: SurveillanceCamera - - uid: 24740 + - uid: 24966 components: - pos: -43.5,28.5 parent: 2 @@ -163035,7 +164285,7 @@ entities: nameSet: True id: salvage magnet type: SurveillanceCamera - - uid: 24741 + - uid: 24967 components: - rot: 3.141592653589793 rad pos: -44.5,16.5 @@ -163048,14 +164298,14 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraWirelessRouterEntertainment entities: - - uid: 24742 + - uid: 24968 components: - pos: -27.5,12.5 parent: 2 type: Transform - proto: SurveillanceWirelessCameraAnchoredConstructed entities: - - uid: 24743 + - uid: 24969 components: - rot: 3.141592653589793 rad pos: -26.5,13.5 @@ -163066,7 +164316,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceWirelessCameraMovableEntertainment entities: - - uid: 24744 + - uid: 24970 components: - pos: -24.5,13.5 parent: 2 @@ -163076,7 +164326,7 @@ entities: nameSet: True id: news camera type: SurveillanceCamera - - uid: 24745 + - uid: 24971 components: - rot: -1.5707963267948966 rad pos: 29.5,3.5 @@ -163084,2035 +164334,1986 @@ entities: type: Transform - proto: SynthesizerInstrument entities: - - uid: 24746 + - uid: 24972 components: - pos: -10.500677,-5.723185 parent: 2 type: Transform - proto: Syringe entities: - - uid: 24747 + - uid: 24973 components: - pos: -25.497284,-79.35806 parent: 2 type: Transform - proto: Table entities: - - uid: 24748 + - uid: 24974 components: - - rot: -1.5707963267948966 rad - pos: 55.5,-40.5 + - pos: 55.5,61.5 parent: 2 type: Transform - - uid: 24749 + - uid: 24975 components: - - rot: -1.5707963267948966 rad - pos: 52.5,-39.5 + - pos: 54.5,61.5 parent: 2 type: Transform - - uid: 24750 + - uid: 24976 + components: + - pos: 53.5,61.5 + parent: 2 + type: Transform + - uid: 24977 components: - rot: -1.5707963267948966 rad - pos: 53.5,-39.5 + pos: 55.5,-40.5 parent: 2 type: Transform - - uid: 24751 + - uid: 24978 components: - pos: -37.5,-18.5 parent: 2 type: Transform - - uid: 24752 + - uid: 24979 components: - rot: -1.5707963267948966 rad pos: -66.5,-34.5 parent: 2 type: Transform - - uid: 24753 + - uid: 24980 components: - rot: -1.5707963267948966 rad pos: -67.5,-34.5 parent: 2 type: Transform - - uid: 24754 + - uid: 24981 components: - pos: -25.5,-52.5 parent: 2 type: Transform - - uid: 24755 + - uid: 24982 components: - rot: 3.141592653589793 rad pos: -37.5,-7.5 parent: 2 type: Transform - - uid: 24756 + - uid: 24983 components: - rot: 3.141592653589793 rad pos: -36.5,-7.5 parent: 2 type: Transform - - uid: 24757 + - uid: 24984 components: - rot: 1.5707963267948966 rad pos: 2.5,7.5 parent: 2 type: Transform - - uid: 24758 + - uid: 24985 components: - rot: 3.141592653589793 rad pos: 18.5,11.5 parent: 2 type: Transform - - uid: 24759 + - uid: 24986 components: - rot: 3.141592653589793 rad pos: 18.5,13.5 parent: 2 type: Transform - - uid: 24760 + - uid: 24987 components: - pos: 7.5,-46.5 parent: 2 type: Transform - - uid: 24761 + - uid: 24988 components: - pos: -25.5,-78.5 parent: 2 type: Transform - - uid: 24762 + - uid: 24989 components: - pos: -19.5,-85.5 parent: 2 type: Transform - - uid: 24763 + - uid: 24990 components: - rot: 1.5707963267948966 rad pos: 2.5,6.5 parent: 2 type: Transform - - uid: 24764 + - uid: 24991 components: - rot: 3.141592653589793 rad pos: 4.5,-50.5 parent: 2 type: Transform - - uid: 24765 + - uid: 24992 components: - rot: -1.5707963267948966 rad pos: 6.5,12.5 parent: 2 type: Transform - - uid: 24766 + - uid: 24993 components: - pos: 10.5,-56.5 parent: 2 type: Transform - - uid: 24767 + - uid: 24994 components: - pos: -28.5,21.5 parent: 2 type: Transform - - uid: 24768 + - uid: 24995 components: - rot: 3.141592653589793 rad pos: 73.5,-38.5 parent: 2 type: Transform - - uid: 24769 + - uid: 24996 components: - rot: 1.5707963267948966 rad pos: 4.5,6.5 parent: 2 type: Transform - - uid: 24770 + - uid: 24997 components: - pos: 3.5,-45.5 parent: 2 type: Transform - - uid: 24771 + - uid: 24998 components: - rot: 3.141592653589793 rad pos: 18.5,12.5 parent: 2 type: Transform - - uid: 24772 + - uid: 24999 components: - rot: -1.5707963267948966 rad pos: -12.5,-56.5 parent: 2 type: Transform - - uid: 24773 + - uid: 25000 components: - rot: -1.5707963267948966 rad pos: -9.5,-56.5 parent: 2 type: Transform - - uid: 24774 + - uid: 25001 components: - rot: -1.5707963267948966 rad pos: -6.5,-56.5 parent: 2 type: Transform - - uid: 24775 + - uid: 25002 components: - rot: -1.5707963267948966 rad pos: -3.5,-56.5 parent: 2 type: Transform - - uid: 24776 + - uid: 25003 components: - rot: -1.5707963267948966 rad pos: -0.5,-56.5 parent: 2 type: Transform - - uid: 24777 + - uid: 25004 components: - rot: -1.5707963267948966 rad pos: 2.5,-56.5 parent: 2 type: Transform - - uid: 24778 + - uid: 25005 components: - rot: 3.141592653589793 rad pos: 64.5,-36.5 parent: 2 type: Transform - - uid: 24779 + - uid: 25006 components: - pos: 10.5,-58.5 parent: 2 type: Transform - - uid: 24780 + - uid: 25007 components: - pos: 10.5,-59.5 parent: 2 type: Transform - - uid: 24781 + - uid: 25008 components: - pos: 10.5,-61.5 parent: 2 type: Transform - - uid: 24782 + - uid: 25009 components: - pos: 10.5,-62.5 parent: 2 type: Transform - - uid: 24783 + - uid: 25010 components: - pos: 9.5,-62.5 parent: 2 type: Transform - - uid: 24784 + - uid: 25011 components: - pos: 8.5,-62.5 parent: 2 type: Transform - - uid: 24785 + - uid: 25012 components: - pos: -13.5,-21.5 parent: 2 type: Transform - - uid: 24786 + - uid: 25013 components: - pos: -13.5,-23.5 parent: 2 type: Transform - - uid: 24787 + - uid: 25014 components: - pos: -12.5,-19.5 parent: 2 type: Transform - - uid: 24788 + - uid: 25015 components: - pos: 3.5,-47.5 parent: 2 type: Transform - - uid: 24789 + - uid: 25016 components: - pos: 8.5,13.5 parent: 2 type: Transform - - uid: 24790 + - uid: 25017 components: - pos: 7.5,12.5 parent: 2 type: Transform - - uid: 24791 + - uid: 25018 components: - pos: -22.5,-78.5 parent: 2 type: Transform - - uid: 24792 + - uid: 25019 components: - pos: -20.5,-78.5 parent: 2 type: Transform - - uid: 24793 + - uid: 25020 components: - rot: 1.5707963267948966 rad pos: 3.5,7.5 parent: 2 type: Transform - - uid: 24794 + - uid: 25021 components: - rot: 1.5707963267948966 rad pos: 3.5,6.5 parent: 2 type: Transform - - uid: 24795 + - uid: 25022 components: - pos: 10.5,-60.5 parent: 2 type: Transform - - uid: 24796 + - uid: 25023 components: - rot: -1.5707963267948966 rad pos: 8.5,14.5 parent: 2 type: Transform - - uid: 24797 + - uid: 25024 components: - pos: -25.5,-79.5 parent: 2 type: Transform - - uid: 24798 + - uid: 25025 components: - pos: -26.5,-20.5 parent: 2 type: Transform - - uid: 24799 + - uid: 25026 components: - pos: 5.5,15.5 parent: 2 type: Transform - - uid: 24800 + - uid: 25027 components: - pos: -62.5,-28.5 parent: 2 type: Transform - - uid: 24801 + - uid: 25028 components: - pos: -22.5,-76.5 parent: 2 type: Transform - - uid: 24802 + - uid: 25029 components: - pos: -20.5,-77.5 parent: 2 type: Transform - - uid: 24803 + - uid: 25030 components: - pos: -6.5,-73.5 parent: 2 type: Transform - - uid: 24804 + - uid: 25031 components: - pos: 9.5,-56.5 parent: 2 type: Transform - - uid: 24805 + - uid: 25032 components: - pos: -23.5,-71.5 parent: 2 type: Transform - - uid: 24806 + - uid: 25033 components: - pos: -11.5,-67.5 parent: 2 type: Transform - - uid: 24807 + - uid: 25034 components: - pos: -24.5,-71.5 parent: 2 type: Transform - - uid: 24808 + - uid: 25035 components: - pos: -22.5,-71.5 parent: 2 type: Transform - - uid: 24809 + - uid: 25036 components: - pos: -22.5,-70.5 parent: 2 type: Transform - - uid: 24810 + - uid: 25037 components: - pos: -13.5,-22.5 parent: 2 type: Transform - - uid: 24811 + - uid: 25038 components: - pos: -22.5,-69.5 parent: 2 type: Transform - - uid: 24812 + - uid: 25039 components: - pos: -30.5,-69.5 parent: 2 type: Transform - - uid: 24813 + - uid: 25040 components: - rot: 3.141592653589793 rad pos: -31.5,-69.5 parent: 2 type: Transform - - uid: 24814 + - uid: 25041 components: - pos: -8.5,-15.5 parent: 2 type: Transform - - uid: 24815 + - uid: 25042 components: - pos: 15.5,-64.5 parent: 2 type: Transform - - uid: 24816 + - uid: 25043 components: - pos: 16.5,-64.5 parent: 2 type: Transform - - uid: 24817 + - uid: 25044 components: - rot: 1.5707963267948966 rad pos: 4.5,7.5 parent: 2 type: Transform - - uid: 24818 + - uid: 25045 components: - rot: 3.141592653589793 rad pos: 18.5,11.5 parent: 2 type: Transform - - uid: 24819 + - uid: 25046 components: - pos: 8.5,12.5 parent: 2 type: Transform - - uid: 24820 + - uid: 25047 components: - pos: 9.5,-58.5 parent: 2 type: Transform - - uid: 24821 + - uid: 25048 components: - pos: -7.5,-15.5 parent: 2 type: Transform - - uid: 24822 + - uid: 25049 components: - pos: -19.5,-87.5 parent: 2 type: Transform - - uid: 24823 + - uid: 25050 components: - pos: -19.5,-84.5 parent: 2 type: Transform - - uid: 24824 + - uid: 25051 components: - pos: -26.5,-86.5 parent: 2 type: Transform - - uid: 24825 + - uid: 25052 components: - pos: -26.5,-84.5 parent: 2 type: Transform - - uid: 24826 + - uid: 25053 components: - pos: -25.5,-84.5 parent: 2 type: Transform - - uid: 24827 + - uid: 25054 components: - pos: -24.5,-84.5 parent: 2 type: Transform - - uid: 24828 + - uid: 25055 components: - pos: 12.5,20.5 parent: 2 type: Transform - - uid: 24829 + - uid: 25056 components: - pos: 12.5,19.5 parent: 2 type: Transform - - uid: 24830 + - uid: 25057 components: - pos: 12.5,21.5 parent: 2 type: Transform - - uid: 24831 + - uid: 25058 components: - pos: -10.5,-32.5 parent: 2 type: Transform - - uid: 24832 + - uid: 25059 components: - pos: -9.5,-32.5 parent: 2 type: Transform - - uid: 24833 + - uid: 25060 components: - pos: -8.5,-32.5 parent: 2 type: Transform - - uid: 24834 + - uid: 25061 components: - pos: -8.5,-33.5 parent: 2 type: Transform - - uid: 24835 + - uid: 25062 components: - rot: 3.141592653589793 rad pos: 17.5,22.5 parent: 2 type: Transform - - uid: 24836 + - uid: 25063 components: - pos: 17.5,21.5 parent: 2 type: Transform - - uid: 24837 + - uid: 25064 components: - pos: 16.5,21.5 parent: 2 type: Transform - - uid: 24838 + - uid: 25065 components: - pos: 15.5,21.5 parent: 2 type: Transform - - uid: 24839 + - uid: 25066 components: - rot: 3.141592653589793 rad pos: 15.5,22.5 parent: 2 type: Transform - - uid: 24840 + - uid: 25067 components: - rot: 3.141592653589793 rad pos: 16.5,22.5 parent: 2 type: Transform - - uid: 24841 + - uid: 25068 components: - pos: -9.5,-15.5 parent: 2 type: Transform - - uid: 24842 + - uid: 25069 components: - pos: 53.5,35.5 parent: 2 type: Transform - - uid: 24843 + - uid: 25070 components: - pos: 54.5,35.5 parent: 2 type: Transform - - uid: 24844 + - uid: 25071 components: - rot: 1.5707963267948966 rad pos: 54.5,18.5 parent: 2 type: Transform - - uid: 24845 + - uid: 25072 components: - rot: 1.5707963267948966 rad pos: 53.5,18.5 parent: 2 type: Transform - - uid: 24846 + - uid: 25073 components: - rot: 1.5707963267948966 rad pos: 52.5,18.5 parent: 2 type: Transform - - uid: 24847 + - uid: 25074 components: - pos: 45.5,8.5 parent: 2 type: Transform - - uid: 24848 + - uid: 25075 components: - pos: 62.5,18.5 parent: 2 type: Transform - - uid: 24849 + - uid: 25076 components: - pos: 62.5,15.5 parent: 2 type: Transform - - uid: 24850 + - uid: 25077 components: - pos: 59.5,24.5 parent: 2 type: Transform - - uid: 24851 + - uid: 25078 components: - pos: 47.5,24.5 parent: 2 type: Transform - - uid: 24852 + - uid: 25079 components: - pos: 53.5,24.5 parent: 2 type: Transform - - uid: 24853 + - uid: 25080 components: - pos: 50.5,24.5 parent: 2 type: Transform - - uid: 24854 + - uid: 25081 components: - pos: 56.5,24.5 parent: 2 type: Transform - - uid: 24855 + - uid: 25082 components: - pos: 48.5,18.5 parent: 2 type: Transform - - uid: 24856 + - uid: 25083 components: - pos: 57.5,20.5 parent: 2 type: Transform - - uid: 24857 + - uid: 25084 components: - pos: 57.5,19.5 parent: 2 type: Transform - - uid: 24858 + - uid: 25085 components: - pos: 58.5,19.5 parent: 2 type: Transform - - uid: 24859 + - uid: 25086 components: - pos: 51.5,7.5 parent: 2 type: Transform - - uid: 24860 + - uid: 25087 components: - pos: 52.5,7.5 parent: 2 type: Transform - - uid: 24861 + - uid: 25088 components: - pos: 52.5,6.5 parent: 2 type: Transform - - uid: 24862 + - uid: 25089 components: - pos: 51.5,6.5 parent: 2 type: Transform - - uid: 24863 + - uid: 25090 components: - rot: 3.141592653589793 rad pos: 52.5,11.5 parent: 2 type: Transform - - uid: 24864 + - uid: 25091 components: - pos: 58.5,20.5 parent: 2 type: Transform - - uid: 24865 + - uid: 25092 components: - rot: -1.5707963267948966 rad pos: 47.5,4.5 parent: 2 type: Transform - - uid: 24866 + - uid: 25093 components: - rot: -1.5707963267948966 rad pos: 65.5,-6.5 parent: 2 type: Transform - - uid: 24867 + - uid: 25094 components: - pos: 41.5,-39.5 parent: 2 type: Transform - - uid: 24868 + - uid: 25095 components: - pos: 40.5,-39.5 parent: 2 type: Transform - - uid: 24869 + - uid: 25096 components: - pos: 39.5,-39.5 parent: 2 type: Transform - - uid: 24870 + - uid: 25097 components: - pos: 38.5,-39.5 parent: 2 type: Transform - - uid: 24871 + - uid: 25098 components: - pos: 38.5,-38.5 parent: 2 type: Transform - - uid: 24872 + - uid: 25099 components: - pos: 38.5,-37.5 parent: 2 type: Transform - - uid: 24873 - components: - - pos: 51.5,-40.5 - parent: 2 - type: Transform - - uid: 24874 - components: - - pos: 51.5,-41.5 - parent: 2 - type: Transform - - uid: 24875 - components: - - pos: 51.5,-42.5 - parent: 2 - type: Transform - - uid: 24876 - components: - - pos: 51.5,-43.5 - parent: 2 - type: Transform - - uid: 24877 - components: - - pos: 53.5,-43.5 - parent: 2 - type: Transform - - uid: 24878 - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-43.5 - parent: 2 - type: Transform - - uid: 24879 + - uid: 25100 components: - rot: 3.141592653589793 rad pos: 77.5,-46.5 parent: 2 type: Transform - - uid: 24880 + - uid: 25101 components: - pos: 38.5,-36.5 parent: 2 type: Transform - - uid: 24881 + - uid: 25102 components: - pos: 42.5,-35.5 parent: 2 type: Transform - - uid: 24882 + - uid: 25103 components: - pos: 41.5,-35.5 parent: 2 type: Transform - - uid: 24883 + - uid: 25104 components: - pos: 46.5,-49.5 parent: 2 type: Transform - - uid: 24884 + - uid: 25105 components: - pos: 45.5,-49.5 parent: 2 type: Transform - - uid: 24885 + - uid: 25106 components: - pos: 44.5,-49.5 parent: 2 type: Transform - - uid: 24886 + - uid: 25107 components: - pos: 43.5,-49.5 parent: 2 type: Transform - - uid: 24887 + - uid: 25108 components: - pos: 42.5,-49.5 parent: 2 type: Transform - - uid: 24888 + - uid: 25109 components: - pos: 42.5,-48.5 parent: 2 type: Transform - - uid: 24889 + - uid: 25110 components: - pos: 71.5,-43.5 parent: 2 type: Transform - - uid: 24890 + - uid: 25111 components: - pos: 73.5,-44.5 parent: 2 type: Transform - - uid: 24891 + - uid: 25112 components: - rot: -1.5707963267948966 rad pos: 73.5,-47.5 parent: 2 type: Transform - - uid: 24892 + - uid: 25113 components: - pos: 69.5,-49.5 parent: 2 type: Transform - - uid: 24893 + - uid: 25114 components: - rot: -1.5707963267948966 rad pos: 69.5,-47.5 parent: 2 type: Transform - - uid: 24894 + - uid: 25115 components: - pos: 73.5,-43.5 parent: 2 type: Transform - - uid: 24895 + - uid: 25116 components: - pos: 72.5,-43.5 parent: 2 type: Transform - - uid: 24896 + - uid: 25117 components: - pos: -11.5,-48.5 parent: 2 type: Transform - - uid: 24897 + - uid: 25118 components: - pos: -11.5,-49.5 parent: 2 type: Transform - - uid: 24898 + - uid: 25119 components: - pos: -11.5,-50.5 parent: 2 type: Transform - - uid: 24899 + - uid: 25120 components: - pos: -12.5,-50.5 parent: 2 type: Transform - - uid: 24900 + - uid: 25121 components: - pos: 53.5,-51.5 parent: 2 type: Transform - - uid: 24901 + - uid: 25122 components: - pos: 53.5,-52.5 parent: 2 type: Transform - - uid: 24902 + - uid: 25123 components: - pos: 53.5,-53.5 parent: 2 type: Transform - - uid: 24903 + - uid: 25124 components: - rot: 3.141592653589793 rad pos: -24.5,-19.5 parent: 2 type: Transform - - uid: 24904 + - uid: 25125 components: - rot: 3.141592653589793 rad pos: -25.5,-19.5 parent: 2 type: Transform - - uid: 24905 + - uid: 25126 components: - pos: -22.5,-20.5 parent: 2 type: Transform - - uid: 24906 + - uid: 25127 components: - rot: 1.5707963267948966 rad pos: -23.5,-24.5 parent: 2 type: Transform - - uid: 24907 + - uid: 25128 components: - rot: 1.5707963267948966 rad pos: -24.5,-24.5 parent: 2 type: Transform - - uid: 24908 + - uid: 25129 components: - rot: 1.5707963267948966 rad pos: -25.5,-24.5 parent: 2 type: Transform - - uid: 24909 + - uid: 25130 components: - pos: -26.5,-19.5 parent: 2 type: Transform - - uid: 24910 + - uid: 25131 components: - pos: 30.5,-61.5 parent: 2 type: Transform - - uid: 24911 + - uid: 25132 components: - pos: 31.5,-61.5 parent: 2 type: Transform - - uid: 24912 + - uid: 25133 components: - pos: 40.5,-53.5 parent: 2 type: Transform - - uid: 24913 + - uid: 25134 components: - pos: 41.5,-53.5 parent: 2 type: Transform - - uid: 24914 + - uid: 25135 components: - pos: 41.5,-54.5 parent: 2 type: Transform - - uid: 24915 + - uid: 25136 components: - pos: 41.5,-55.5 parent: 2 type: Transform - - uid: 24916 + - uid: 25137 components: - rot: 3.141592653589793 rad pos: 26.5,-68.5 parent: 2 type: Transform - - uid: 24917 + - uid: 25138 components: - pos: -34.5,-13.5 parent: 2 type: Transform - - uid: 24918 + - uid: 25139 components: - pos: -35.5,-13.5 parent: 2 type: Transform - - uid: 24919 + - uid: 25140 components: - pos: -36.5,-8.5 parent: 2 type: Transform - - uid: 24920 + - uid: 25141 components: - pos: -34.5,-12.5 parent: 2 type: Transform - - uid: 24921 + - uid: 25142 components: - pos: -39.5,-16.5 parent: 2 type: Transform - - uid: 24922 + - uid: 25143 components: - pos: -39.5,-17.5 parent: 2 type: Transform - - uid: 24923 + - uid: 25144 components: - pos: -39.5,-18.5 parent: 2 type: Transform - - uid: 24924 + - uid: 25145 components: - pos: -40.5,-18.5 parent: 2 type: Transform - - uid: 24925 + - uid: 25146 components: - pos: -42.5,-18.5 parent: 2 type: Transform - - uid: 24926 + - uid: 25147 components: - pos: -42.5,-17.5 parent: 2 type: Transform - - uid: 24927 + - uid: 25148 components: - pos: -42.5,-16.5 parent: 2 type: Transform - - uid: 24928 + - uid: 25149 components: - rot: 1.5707963267948966 rad pos: -12.5,-5.5 parent: 2 type: Transform - - uid: 24929 + - uid: 25150 components: - pos: -30.5,-37.5 parent: 2 type: Transform - - uid: 24930 + - uid: 25151 components: - rot: 3.141592653589793 rad pos: -52.5,-13.5 parent: 2 type: Transform - - uid: 24931 + - uid: 25152 components: - pos: -57.5,-30.5 parent: 2 type: Transform - - uid: 24932 + - uid: 25153 components: - pos: -62.5,-27.5 parent: 2 type: Transform - - uid: 24933 + - uid: 25154 components: - pos: -35.5,-46.5 parent: 2 type: Transform - - uid: 24934 + - uid: 25155 components: - pos: -35.5,-47.5 parent: 2 type: Transform - - uid: 24935 + - uid: 25156 components: - pos: -35.5,-48.5 parent: 2 type: Transform - - uid: 24936 + - uid: 25157 components: - pos: -35.5,-49.5 parent: 2 type: Transform - - uid: 24937 + - uid: 25158 components: - pos: -35.5,-50.5 parent: 2 type: Transform - - uid: 24938 + - uid: 25159 components: - pos: -52.5,-15.5 parent: 2 type: Transform - - uid: 24939 + - uid: 25160 components: - pos: -52.5,-14.5 parent: 2 type: Transform - - uid: 24940 + - uid: 25161 components: - pos: -52.5,-12.5 parent: 2 type: Transform - - uid: 24941 + - uid: 25162 components: - pos: -70.5,-25.5 parent: 2 type: Transform - - uid: 24942 + - uid: 25163 components: - pos: -70.5,-26.5 parent: 2 type: Transform - - uid: 24943 + - uid: 25164 components: - pos: -71.5,-26.5 parent: 2 type: Transform - - uid: 24944 + - uid: 25165 components: - rot: 3.141592653589793 rad pos: 20.5,-45.5 parent: 2 type: Transform - - uid: 24945 + - uid: 25166 components: - pos: -28.5,-52.5 parent: 2 type: Transform - - uid: 24946 + - uid: 25167 components: - pos: -27.5,-52.5 parent: 2 type: Transform - - uid: 24947 + - uid: 25168 components: - pos: -24.5,-52.5 parent: 2 type: Transform - - uid: 24948 + - uid: 25169 components: - pos: -38.5,-27.5 parent: 2 type: Transform - - uid: 24949 + - uid: 25170 components: - pos: -43.5,-27.5 parent: 2 type: Transform - - uid: 24950 + - uid: 25171 components: - pos: -54.5,-38.5 parent: 2 type: Transform - - uid: 24951 + - uid: 25172 components: - pos: -54.5,-39.5 parent: 2 type: Transform - - uid: 24952 + - uid: 25173 components: - pos: -55.5,-39.5 parent: 2 type: Transform - - uid: 24953 + - uid: 25174 components: - pos: -57.5,-35.5 parent: 2 type: Transform - - uid: 24954 + - uid: 25175 components: - pos: -56.5,-35.5 parent: 2 type: Transform - - uid: 24955 + - uid: 25176 components: - pos: -22.5,-33.5 parent: 2 type: Transform - - uid: 24956 + - uid: 25177 components: - pos: 38.5,-55.5 parent: 2 type: Transform - - uid: 24957 + - uid: 25178 components: - pos: 38.5,-56.5 parent: 2 type: Transform - - uid: 24958 + - uid: 25179 components: - pos: -34.5,17.5 parent: 2 type: Transform - - uid: 24959 + - uid: 25180 components: - pos: -27.5,24.5 parent: 2 type: Transform - - uid: 24960 + - uid: 25181 components: - pos: -22.5,17.5 parent: 2 type: Transform - - uid: 24961 + - uid: 25182 components: - pos: -39.5,25.5 parent: 2 type: Transform - - uid: 24962 + - uid: 25183 components: - pos: -40.5,25.5 parent: 2 type: Transform - - uid: 24963 + - uid: 25184 components: - pos: -43.5,25.5 parent: 2 type: Transform - - uid: 24964 + - uid: 25185 components: - rot: 1.5707963267948966 rad pos: 33.5,-14.5 parent: 2 type: Transform - - uid: 24965 + - uid: 25186 components: - pos: -3.5,31.5 parent: 2 type: Transform - - uid: 24966 + - uid: 25187 components: - pos: -3.5,30.5 parent: 2 type: Transform - - uid: 24967 + - uid: 25188 components: - pos: 2.5,23.5 parent: 2 type: Transform - - uid: 24968 + - uid: 25189 components: - pos: 1.5,23.5 parent: 2 type: Transform - - uid: 24969 + - uid: 25190 components: - pos: -33.5,17.5 parent: 2 type: Transform - - uid: 24970 + - uid: 25191 components: - pos: -32.5,17.5 parent: 2 type: Transform - - uid: 24971 + - uid: 25192 components: - pos: -34.5,26.5 parent: 2 type: Transform - - uid: 24972 + - uid: 25193 components: - pos: -33.5,29.5 parent: 2 type: Transform - - uid: 24973 + - uid: 25194 components: - rot: -1.5707963267948966 rad pos: -38.5,18.5 parent: 2 type: Transform - - uid: 24974 + - uid: 25195 components: - pos: -32.5,29.5 parent: 2 type: Transform - - uid: 24975 + - uid: 25196 components: - pos: -31.5,29.5 parent: 2 type: Transform - - uid: 24976 + - uid: 25197 components: - rot: -1.5707963267948966 rad pos: -37.5,18.5 parent: 2 type: Transform - - uid: 24977 + - uid: 25198 components: - pos: -41.5,35.5 parent: 2 type: Transform - - uid: 24978 + - uid: 25199 components: - pos: -40.5,35.5 parent: 2 type: Transform - - uid: 24979 + - uid: 25200 components: - pos: -40.5,34.5 parent: 2 type: Transform - - uid: 24980 + - uid: 25201 components: - pos: -40.5,33.5 parent: 2 type: Transform - - uid: 24981 + - uid: 25202 components: - pos: -40.5,32.5 parent: 2 type: Transform - - uid: 24982 + - uid: 25203 components: - pos: -38.5,28.5 parent: 2 type: Transform - - uid: 24983 + - uid: 25204 components: - pos: -38.5,27.5 parent: 2 type: Transform - - uid: 24984 + - uid: 25205 components: - pos: -37.5,27.5 parent: 2 type: Transform - - uid: 24985 + - uid: 25206 components: - pos: -36.5,27.5 parent: 2 type: Transform - - uid: 24986 + - uid: 25207 components: - rot: 3.141592653589793 rad pos: -22.5,11.5 parent: 2 type: Transform - - uid: 24987 + - uid: 25208 components: - rot: 3.141592653589793 rad pos: -23.5,11.5 parent: 2 type: Transform - - uid: 24988 + - uid: 25209 components: - rot: 3.141592653589793 rad pos: -24.5,11.5 parent: 2 type: Transform - - uid: 24989 + - uid: 25210 components: - pos: -15.5,23.5 parent: 2 type: Transform - - uid: 24990 + - uid: 25211 components: - pos: -16.5,21.5 parent: 2 type: Transform - - uid: 24991 + - uid: 25212 components: - pos: -16.5,20.5 parent: 2 type: Transform - - uid: 24992 + - uid: 25213 components: - pos: -15.5,21.5 parent: 2 type: Transform - - uid: 24993 + - uid: 25214 components: - pos: -48.5,26.5 parent: 2 type: Transform - - uid: 24994 + - uid: 25215 components: - pos: -47.5,26.5 parent: 2 type: Transform - - uid: 24995 + - uid: 25216 components: - pos: -28.5,8.5 parent: 2 type: Transform - - uid: 24996 + - uid: 25217 components: - pos: -29.5,8.5 parent: 2 type: Transform - - uid: 24997 + - uid: 25218 components: - pos: -54.5,0.5 parent: 2 type: Transform - - uid: 24998 + - uid: 25219 components: - pos: 54.5,12.5 parent: 2 type: Transform - - uid: 24999 + - uid: 25220 components: - pos: -25.5,-67.5 parent: 2 type: Transform - - uid: 25000 + - uid: 25221 components: - rot: 1.5707963267948966 rad pos: -12.5,-6.5 parent: 2 type: Transform - - uid: 25001 + - uid: 25222 components: - pos: -34.5,20.5 parent: 2 type: Transform - - uid: 25002 + - uid: 25223 components: - rot: -1.5707963267948966 rad pos: 2.5,-65.5 parent: 2 type: Transform - - uid: 25003 + - uid: 25224 components: - pos: -58.5,-27.5 parent: 2 type: Transform - - uid: 25004 + - uid: 25225 components: - pos: -57.5,-27.5 parent: 2 type: Transform - - uid: 25005 + - uid: 25226 components: - pos: -56.5,-27.5 parent: 2 type: Transform - - uid: 25006 + - uid: 25227 components: - pos: 7.5,-45.5 parent: 2 type: Transform - - uid: 25007 + - uid: 25228 components: - rot: 3.141592653589793 rad pos: 34.5,-35.5 parent: 2 type: Transform - - uid: 25008 + - uid: 25229 components: - pos: 41.5,-58.5 parent: 2 type: Transform - - uid: 25009 + - uid: 25230 components: - pos: 77.5,-47.5 parent: 2 type: Transform - - uid: 25010 + - uid: 25231 components: - rot: 1.5707963267948966 rad pos: -9.5,-65.5 parent: 2 type: Transform - - uid: 25011 + - uid: 25232 components: - pos: -2.5,-33.5 parent: 2 type: Transform - - uid: 25012 + - uid: 25233 components: - pos: 11.5,-66.5 parent: 2 type: Transform - - uid: 25013 + - uid: 25234 components: - pos: 12.5,-66.5 parent: 2 type: Transform - - uid: 25014 + - uid: 25235 components: - pos: 7.5,-16.5 parent: 2 type: Transform - - uid: 25015 + - uid: 25236 components: - pos: -7.5,-30.5 parent: 2 type: Transform - - uid: 25016 + - uid: 25237 components: - rot: 3.141592653589793 rad pos: -29.5,-69.5 parent: 2 type: Transform - - uid: 25017 - components: - - pos: 53.5,60.5 - parent: 2 - type: Transform - - uid: 25018 - components: - - pos: 54.5,60.5 - parent: 2 - type: Transform - - uid: 25019 - components: - - pos: 55.5,60.5 - parent: 2 - type: Transform - - uid: 25020 + - uid: 25238 components: - pos: 57.5,42.5 parent: 2 type: Transform - - uid: 25021 + - uid: 25239 components: - pos: 56.5,42.5 parent: 2 type: Transform - - uid: 25022 + - uid: 25240 components: - pos: 55.5,42.5 parent: 2 type: Transform - - uid: 25023 + - uid: 25241 components: - pos: 50.5,42.5 parent: 2 type: Transform - - uid: 25024 + - uid: 25242 components: - pos: 58.5,52.5 parent: 2 type: Transform - - uid: 25025 + - uid: 25243 components: - pos: 58.5,51.5 parent: 2 type: Transform - - uid: 25026 + - uid: 25244 components: - pos: -8.5,39.5 parent: 2 type: Transform - - uid: 25027 + - uid: 25245 components: - pos: -8.5,38.5 parent: 2 type: Transform - - uid: 25028 + - uid: 25246 components: - pos: -8.5,37.5 parent: 2 type: Transform - - uid: 25029 + - uid: 25247 components: - pos: -9.5,39.5 parent: 2 type: Transform - - uid: 25030 + - uid: 25248 components: - pos: -9.5,37.5 parent: 2 type: Transform - - uid: 25031 + - uid: 25249 components: - rot: 3.141592653589793 rad pos: 67.5,8.5 parent: 2 type: Transform - - uid: 25032 + - uid: 25250 components: - pos: -22.5,45.5 parent: 2 type: Transform - - uid: 25033 + - uid: 25251 components: - pos: -22.5,44.5 parent: 2 type: Transform - - uid: 25034 + - uid: 25252 components: - pos: -22.5,43.5 parent: 2 type: Transform - - uid: 25035 + - uid: 25253 components: - pos: 64.5,29.5 parent: 2 type: Transform - - uid: 25036 + - uid: 25254 components: - pos: 64.5,28.5 parent: 2 type: Transform - - uid: 25037 + - uid: 25255 components: - pos: -0.5,-77.5 parent: 2 type: Transform - - uid: 25038 + - uid: 25256 components: - pos: 72.5,36.5 parent: 2 type: Transform - - uid: 25039 + - uid: 25257 components: - pos: 73.5,36.5 parent: 2 type: Transform - - uid: 25040 + - uid: 25258 components: - pos: 71.5,36.5 parent: 2 type: Transform - - uid: 25041 + - uid: 25259 components: - rot: -1.5707963267948966 rad pos: -11.5,37.5 parent: 2 type: Transform - - uid: 25042 + - uid: 25260 components: - rot: -1.5707963267948966 rad pos: -12.5,37.5 parent: 2 type: Transform - - uid: 25043 + - uid: 25261 components: - rot: 3.141592653589793 rad pos: 37.5,51.5 parent: 2 type: Transform - - uid: 25044 + - uid: 25262 components: - rot: 3.141592653589793 rad pos: 38.5,51.5 parent: 2 type: Transform - - uid: 25045 + - uid: 25263 components: - pos: -2.5,43.5 parent: 2 type: Transform - - uid: 25046 + - uid: 25264 components: - rot: 1.5707963267948966 rad pos: -9.5,41.5 parent: 2 type: Transform - - uid: 25047 + - uid: 25265 components: - rot: 1.5707963267948966 rad pos: -8.5,41.5 parent: 2 type: Transform - - uid: 25048 + - uid: 25266 components: - pos: -10.5,41.5 parent: 2 type: Transform - - uid: 25049 + - uid: 25267 components: - pos: -20.5,47.5 parent: 2 type: Transform - - uid: 25050 + - uid: 25268 components: - pos: -21.5,47.5 parent: 2 type: Transform - - uid: 25051 + - uid: 25269 components: - pos: -16.5,24.5 parent: 2 type: Transform - - uid: 25052 + - uid: 25270 components: - pos: -16.5,23.5 parent: 2 type: Transform - - uid: 25053 + - uid: 25271 components: - pos: 30.5,47.5 parent: 2 type: Transform - - uid: 25054 + - uid: 25272 components: - pos: 30.5,46.5 parent: 2 type: Transform - - uid: 25055 + - uid: 25273 components: - rot: 3.141592653589793 rad pos: -55.5,-48.5 parent: 2 type: Transform - - uid: 25056 + - uid: 25274 components: - rot: 3.141592653589793 rad pos: -55.5,-49.5 parent: 2 type: Transform - - uid: 25057 + - uid: 25275 components: - pos: -22.5,-100.5 parent: 2 type: Transform - - uid: 25058 + - uid: 25276 components: - pos: -14.5,-96.5 parent: 2 type: Transform - - uid: 25059 + - uid: 25277 components: - pos: -15.5,-96.5 parent: 2 type: Transform - - uid: 25060 + - uid: 25278 components: - pos: -30.5,-98.5 parent: 2 type: Transform - - uid: 25061 + - uid: 25279 components: - pos: -29.5,-98.5 parent: 2 type: Transform - - uid: 25062 + - uid: 25280 components: - pos: -21.5,-100.5 parent: 2 type: Transform - - uid: 25063 + - uid: 25281 components: - pos: -23.5,-100.5 parent: 2 type: Transform - - uid: 25064 + - uid: 25282 components: - pos: -10.5,-83.5 parent: 2 type: Transform - - uid: 25065 + - uid: 25283 components: - pos: -4.5,-85.5 parent: 2 type: Transform - - uid: 25066 + - uid: 25284 components: - pos: -12.5,-84.5 parent: 2 type: Transform - - uid: 25067 + - uid: 25285 components: - pos: -13.5,-88.5 parent: 2 type: Transform - - uid: 25068 + - uid: 25286 components: - pos: -38.5,-97.5 parent: 2 type: Transform - - uid: 25069 + - uid: 25287 components: - pos: -38.5,-98.5 parent: 2 type: Transform - - uid: 25070 + - uid: 25288 components: - rot: 3.141592653589793 rad pos: -70.5,-28.5 parent: 2 type: Transform - - uid: 25071 + - uid: 25289 components: - rot: 3.141592653589793 rad pos: -71.5,-28.5 parent: 2 type: Transform - - uid: 25072 + - uid: 25290 components: - pos: 69.5,-48.5 parent: 2 type: Transform - - uid: 25073 + - uid: 25291 components: - pos: 77.5,-44.5 parent: 2 type: Transform - - uid: 25074 + - uid: 25292 components: - pos: 77.5,-43.5 parent: 2 type: Transform - - uid: 25075 + - uid: 25293 components: - pos: 76.5,-43.5 parent: 2 type: Transform - - uid: 25076 + - uid: 25294 components: - pos: 73.5,-49.5 parent: 2 type: Transform - - uid: 25077 + - uid: 25295 components: - pos: 73.5,-48.5 parent: 2 type: Transform - - uid: 25078 + - uid: 25296 components: - rot: -1.5707963267948966 rad pos: 22.5,-47.5 parent: 2 type: Transform - - uid: 25079 + - uid: 25297 components: - rot: 3.141592653589793 rad pos: 6.5,-57.5 parent: 2 type: Transform - - uid: 25080 + - uid: 25298 components: - rot: 1.5707963267948966 rad pos: -16.5,-21.5 parent: 2 type: Transform - - uid: 25081 + - uid: 25299 components: - rot: -1.5707963267948966 rad pos: -15.5,-23.5 parent: 2 type: Transform - - uid: 25082 + - uid: 25300 components: - pos: 53.5,-67.5 parent: 2 type: Transform - - uid: 25083 + - uid: 25301 components: - rot: 3.141592653589793 rad pos: 63.5,-36.5 parent: 2 type: Transform - - uid: 25084 + - uid: 25302 components: - pos: 59.5,-29.5 parent: 2 type: Transform - - uid: 25085 + - uid: 25303 components: - pos: 53.5,-65.5 parent: 2 type: Transform - - uid: 25086 + - uid: 25304 components: - rot: 3.141592653589793 rad pos: 58.5,-37.5 parent: 2 type: Transform - - uid: 25087 + - uid: 25305 components: - rot: 3.141592653589793 rad pos: 57.5,-37.5 parent: 2 type: Transform - - uid: 25088 + - uid: 25306 components: - rot: 3.141592653589793 rad pos: 53.5,-28.5 parent: 2 type: Transform - - uid: 25089 + - uid: 25307 components: - rot: 3.141592653589793 rad pos: 54.5,-28.5 parent: 2 type: Transform - - uid: 25090 + - uid: 25308 components: - rot: 3.141592653589793 rad pos: 70.5,-65.5 parent: 2 type: Transform - - uid: 25091 + - uid: 25309 components: - rot: 3.141592653589793 rad pos: 70.5,-66.5 parent: 2 type: Transform - - uid: 25092 + - uid: 25310 components: - rot: 3.141592653589793 rad pos: 69.5,-66.5 parent: 2 type: Transform - - uid: 25093 + - uid: 25311 components: - rot: 3.141592653589793 rad pos: 43.5,-62.5 parent: 2 type: Transform - - uid: 25094 + - uid: 25312 components: - pos: 67.5,-64.5 parent: 2 type: Transform - - uid: 25095 + - uid: 25313 components: - pos: 67.5,-65.5 parent: 2 type: Transform - - uid: 25096 + - uid: 25314 components: - pos: 45.5,-63.5 parent: 2 type: Transform - - uid: 25097 + - uid: 25315 components: - pos: 46.5,-63.5 parent: 2 type: Transform - - uid: 25098 + - uid: 25316 components: - pos: 39.5,-35.5 parent: 2 type: Transform - - uid: 25099 + - uid: 25317 components: - pos: 38.5,-35.5 parent: 2 type: Transform - - uid: 25100 + - uid: 25318 components: - pos: -37.5,-8.5 parent: 2 type: Transform - - uid: 25101 + - uid: 25319 components: - rot: 3.141592653589793 rad pos: -25.5,-6.5 parent: 2 type: Transform - - uid: 25102 + - uid: 25320 components: - rot: -1.5707963267948966 rad pos: -36.5,18.5 parent: 2 type: Transform - - uid: 25103 + - uid: 25321 components: - pos: -12.5,-18.5 parent: 2 type: Transform - - uid: 25104 + - uid: 25322 components: - rot: -1.5707963267948966 rad pos: -26.5,-6.5 parent: 2 type: Transform - - uid: 25105 + - uid: 25323 components: - pos: -26.5,-61.5 parent: 2 type: Transform - - uid: 25106 + - uid: 25324 components: - pos: -22.5,-57.5 parent: 2 type: Transform - - uid: 25107 + - uid: 25325 components: - pos: -22.5,-58.5 parent: 2 type: Transform - - uid: 25108 + - uid: 25326 components: - pos: -26.5,-59.5 parent: 2 type: Transform - - uid: 25109 + - uid: 25327 components: - rot: -1.5707963267948966 rad pos: 7.5,-47.5 parent: 2 type: Transform - - uid: 25110 + - uid: 25328 components: - rot: 3.141592653589793 rad pos: 25.5,-68.5 parent: 2 type: Transform - - uid: 25111 + - uid: 25329 components: - rot: 3.141592653589793 rad pos: 50.5,-72.5 parent: 2 type: Transform - - uid: 25112 + - uid: 25330 components: - rot: -1.5707963267948966 rad pos: 4.5,-75.5 parent: 2 type: Transform - - uid: 25113 + - uid: 25331 components: - rot: -1.5707963267948966 rad pos: 3.5,-75.5 parent: 2 type: Transform - - uid: 25114 + - uid: 25332 components: - rot: -1.5707963267948966 rad pos: 2.5,-75.5 parent: 2 type: Transform - - uid: 25115 + - uid: 25333 components: - rot: 1.5707963267948966 rad pos: -47.5,38.5 parent: 2 type: Transform - - uid: 25116 + - uid: 25334 components: - rot: 1.5707963267948966 rad pos: -47.5,39.5 parent: 2 type: Transform - - uid: 25117 + - uid: 25335 components: - rot: 1.5707963267948966 rad pos: -47.5,40.5 parent: 2 type: Transform - - uid: 25118 + - uid: 25336 components: - pos: -2.5,10.5 parent: 2 type: Transform - - uid: 25119 + - uid: 25337 components: - pos: -72.5,-39.5 parent: 2 type: Transform - - uid: 25120 + - uid: 25338 components: - pos: -73.5,-39.5 parent: 2 type: Transform - - uid: 25121 + - uid: 25339 components: - rot: -1.5707963267948966 rad pos: -66.5,-43.5 parent: 2 type: Transform - - uid: 25122 + - uid: 25340 components: - rot: -1.5707963267948966 rad pos: -64.5,-34.5 parent: 2 type: Transform - - uid: 25123 + - uid: 25341 components: - rot: -1.5707963267948966 rad pos: -65.5,-34.5 parent: 2 type: Transform - - uid: 25124 + - uid: 25342 components: - rot: -1.5707963267948966 rad pos: 29.5,-34.5 parent: 2 type: Transform - - uid: 25125 + - uid: 25343 components: - rot: -1.5707963267948966 rad pos: 29.5,-35.5 parent: 2 type: Transform - - uid: 25126 + - uid: 25344 components: - pos: -0.5,-8.5 parent: 2 type: Transform - - uid: 25127 + - uid: 25345 components: - pos: 5.5,-13.5 parent: 2 type: Transform - - uid: 25128 + - uid: 25346 components: - pos: 4.5,15.5 parent: 2 type: Transform - - uid: 25129 - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-39.5 - parent: 2 - type: Transform - - uid: 25130 + - uid: 25347 components: - rot: -1.5707963267948966 rad pos: 56.5,-40.5 @@ -165120,223 +166321,223 @@ entities: type: Transform - proto: TableCarpet entities: - - uid: 25131 + - uid: 25348 components: - pos: 23.5,-35.5 parent: 2 type: Transform - - uid: 25132 + - uid: 25349 components: - rot: -1.5707963267948966 rad pos: 10.5,-7.5 parent: 2 type: Transform - - uid: 25133 + - uid: 25350 components: - rot: -1.5707963267948966 rad pos: 10.5,-6.5 parent: 2 type: Transform - - uid: 25134 + - uid: 25351 components: - rot: -1.5707963267948966 rad pos: 9.5,-7.5 parent: 2 type: Transform - - uid: 25135 + - uid: 25352 components: - rot: -1.5707963267948966 rad pos: 9.5,-6.5 parent: 2 type: Transform - - uid: 25136 + - uid: 25353 components: - pos: -24.5,34.5 parent: 2 type: Transform - - uid: 25137 + - uid: 25354 components: - rot: 3.141592653589793 rad pos: -1.5,31.5 parent: 2 type: Transform - - uid: 25138 + - uid: 25355 components: - rot: 3.141592653589793 rad pos: -0.5,31.5 parent: 2 type: Transform - - uid: 25139 + - uid: 25356 components: - rot: 3.141592653589793 rad pos: -0.5,30.5 parent: 2 type: Transform - - uid: 25140 + - uid: 25357 components: - rot: 3.141592653589793 rad pos: -1.5,30.5 parent: 2 type: Transform - - uid: 25141 + - uid: 25358 components: - pos: 53.5,29.5 parent: 2 type: Transform - - uid: 25142 + - uid: 25359 components: - pos: 53.5,28.5 parent: 2 type: Transform - - uid: 25143 + - uid: 25360 components: - pos: 54.5,29.5 parent: 2 type: Transform - - uid: 25144 + - uid: 25361 components: - pos: 54.5,28.5 parent: 2 type: Transform - - uid: 25145 + - uid: 25362 components: - pos: 8.5,32.5 parent: 2 type: Transform - - uid: 25146 + - uid: 25363 components: - rot: 3.141592653589793 rad pos: -18.5,62.5 parent: 2 type: Transform - - uid: 25147 + - uid: 25364 components: - rot: 3.141592653589793 rad pos: -18.5,61.5 parent: 2 type: Transform - - uid: 25148 + - uid: 25365 components: - rot: 3.141592653589793 rad pos: -17.5,62.5 parent: 2 type: Transform - - uid: 25149 + - uid: 25366 components: - rot: 3.141592653589793 rad pos: -17.5,61.5 parent: 2 type: Transform - - uid: 25150 + - uid: 25367 components: - rot: 3.141592653589793 rad pos: -16.5,62.5 parent: 2 type: Transform - - uid: 25151 + - uid: 25368 components: - rot: 3.141592653589793 rad pos: -16.5,61.5 parent: 2 type: Transform - - uid: 25152 + - uid: 25369 components: - pos: 37.5,45.5 parent: 2 type: Transform - - uid: 25153 + - uid: 25370 components: - pos: 38.5,45.5 parent: 2 type: Transform - - uid: 25154 + - uid: 25371 components: - pos: 38.5,46.5 parent: 2 type: Transform - - uid: 25155 + - uid: 25372 components: - pos: 37.5,46.5 parent: 2 type: Transform - proto: TableCounterMetal entities: - - uid: 25156 + - uid: 25373 components: - pos: 32.5,30.5 parent: 2 type: Transform - - uid: 25157 + - uid: 25374 components: - pos: 32.5,29.5 parent: 2 type: Transform - - uid: 25158 + - uid: 25375 components: - pos: 0.5,-67.5 parent: 2 type: Transform - - uid: 25159 + - uid: 25376 components: - pos: -3.5,5.5 parent: 2 type: Transform - - uid: 25160 + - uid: 25377 components: - pos: 0.5,-64.5 parent: 2 type: Transform - - uid: 25161 + - uid: 25378 components: - pos: 0.5,-65.5 parent: 2 type: Transform - - uid: 25162 + - uid: 25379 components: - pos: 0.5,-66.5 parent: 2 type: Transform - - uid: 25163 + - uid: 25380 components: - pos: -3.5,-64.5 parent: 2 type: Transform - - uid: 25164 + - uid: 25381 components: - pos: -3.5,-65.5 parent: 2 type: Transform - - uid: 25165 + - uid: 25382 components: - pos: -3.5,-66.5 parent: 2 type: Transform - - uid: 25166 + - uid: 25383 components: - pos: -16.5,-77.5 parent: 2 type: Transform - - uid: 25167 + - uid: 25384 components: - pos: -4.5,5.5 parent: 2 type: Transform - - uid: 25168 + - uid: 25385 components: - pos: 4.5,11.5 parent: 2 type: Transform - - uid: 25169 + - uid: 25386 components: - pos: 5.5,11.5 parent: 2 type: Transform - - uid: 25170 + - uid: 25387 components: - pos: 0.5,-63.5 parent: 2 type: Transform - - uid: 25171 + - uid: 25388 components: - rot: 1.5707963267948966 rad pos: -21.5,-34.5 @@ -165344,69 +166545,69 @@ entities: type: Transform - proto: TableCounterWood entities: - - uid: 25172 + - uid: 25389 components: - pos: 3.5,-35.5 parent: 2 type: Transform - - uid: 25173 + - uid: 25390 components: - rot: -1.5707963267948966 rad pos: 37.5,-5.5 parent: 2 type: Transform - - uid: 25174 + - uid: 25391 components: - pos: 18.5,15.5 parent: 2 type: Transform - - uid: 25175 + - uid: 25392 components: - pos: 17.5,15.5 parent: 2 type: Transform - - uid: 25176 + - uid: 25393 components: - rot: -1.5707963267948966 rad pos: 37.5,-4.5 parent: 2 type: Transform - - uid: 25177 + - uid: 25394 components: - rot: -1.5707963267948966 rad pos: 37.5,-3.5 parent: 2 type: Transform - - uid: 25178 + - uid: 25395 components: - rot: -1.5707963267948966 rad pos: 37.5,-2.5 parent: 2 type: Transform - - uid: 25179 + - uid: 25396 components: - rot: -1.5707963267948966 rad pos: 38.5,-2.5 parent: 2 type: Transform - - uid: 25180 + - uid: 25397 components: - rot: -1.5707963267948966 rad pos: 39.5,-2.5 parent: 2 type: Transform - - uid: 25181 + - uid: 25398 components: - pos: 57.5,32.5 parent: 2 type: Transform - - uid: 25182 + - uid: 25399 components: - rot: 3.141592653589793 rad pos: -10.5,-95.5 parent: 2 type: Transform - - uid: 25183 + - uid: 25400 components: - rot: 3.141592653589793 rad pos: -9.5,-95.5 @@ -165414,1875 +166615,1956 @@ entities: type: Transform - proto: TableFrame entities: - - uid: 25184 + - uid: 25401 components: - pos: -25.5,-99.5 parent: 2 type: Transform - - uid: 25185 + - uid: 25402 components: - pos: -33.5,-98.5 parent: 2 type: Transform - - uid: 25186 + - uid: 25403 components: - pos: -34.5,-98.5 parent: 2 type: Transform - proto: TableGlass entities: - - uid: 25187 + - uid: 25404 components: - rot: -1.5707963267948966 rad pos: 30.5,4.5 parent: 2 type: Transform - - uid: 25188 + - uid: 25405 components: - rot: -1.5707963267948966 rad pos: 29.5,4.5 parent: 2 type: Transform - - uid: 25189 + - uid: 25406 components: - pos: -25.5,55.5 parent: 2 type: Transform - - uid: 25190 + - uid: 25407 components: - rot: 1.5707963267948966 rad pos: 63.5,-33.5 parent: 2 type: Transform - - uid: 25191 + - uid: 25408 components: - rot: 1.5707963267948966 rad pos: 62.5,-33.5 parent: 2 type: Transform - - uid: 25192 + - uid: 25409 components: - pos: 15.5,-79.5 parent: 2 type: Transform - - uid: 25193 + - uid: 25410 components: - rot: -1.5707963267948966 rad pos: 15.5,-87.5 parent: 2 type: Transform - - uid: 25194 + - uid: 25411 components: - rot: 3.141592653589793 rad pos: 26.5,-81.5 parent: 2 type: Transform + - uid: 25412 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,63.5 + parent: 2 + type: Transform + - uid: 25413 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,63.5 + parent: 2 + type: Transform + - uid: 25414 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,63.5 + parent: 2 + type: Transform + - uid: 25415 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,63.5 + parent: 2 + type: Transform + - uid: 25416 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,64.5 + parent: 2 + type: Transform + - uid: 25417 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,62.5 + parent: 2 + type: Transform - proto: TableReinforced entities: - - uid: 25195 + - uid: 25418 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,-86.5 + parent: 2 + type: Transform + - uid: 25419 + components: + - pos: 53.5,-43.5 + parent: 2 + type: Transform + - uid: 25420 + components: + - pos: 51.5,-41.5 + parent: 2 + type: Transform + - uid: 25421 + components: + - pos: 51.5,-43.5 + parent: 2 + type: Transform + - uid: 25422 components: - pos: 24.5,23.5 parent: 2 type: Transform - - uid: 25196 + - uid: 25423 components: - rot: 3.141592653589793 rad pos: -14.5,-35.5 parent: 2 type: Transform - - uid: 25197 + - uid: 25424 components: - rot: 3.141592653589793 rad pos: 48.5,-30.5 parent: 2 type: Transform - - uid: 25198 + - uid: 25425 components: - pos: 2.5,4.5 parent: 2 type: Transform - - uid: 25199 + - uid: 25426 components: - pos: -8.5,4.5 parent: 2 type: Transform - - uid: 25200 + - uid: 25427 components: - rot: -1.5707963267948966 rad pos: 45.5,-26.5 parent: 2 type: Transform - - uid: 25201 + - uid: 25428 components: - pos: 26.5,32.5 parent: 2 type: Transform - - uid: 25202 + - uid: 25429 components: - pos: -6.5,4.5 parent: 2 type: Transform - - uid: 25203 + - uid: 25430 components: - pos: -28.5,-9.5 parent: 2 type: Transform - - uid: 25204 + - uid: 25431 components: - pos: 1.5,-48.5 parent: 2 type: Transform - - uid: 25205 + - uid: 25432 components: - rot: 1.5707963267948966 rad pos: 25.5,19.5 parent: 2 type: Transform - - uid: 25206 + - uid: 25433 components: - rot: 3.141592653589793 rad pos: 26.5,-21.5 parent: 2 type: Transform - - uid: 25207 + - uid: 25434 components: - pos: 37.5,49.5 parent: 2 type: Transform - - uid: 25208 + - uid: 25435 components: - rot: 3.141592653589793 rad pos: 48.5,-21.5 parent: 2 type: Transform - - uid: 25209 + - uid: 25436 components: - pos: 27.5,32.5 parent: 2 type: Transform - - uid: 25210 + - uid: 25437 components: - rot: -1.5707963267948966 rad pos: 32.5,-22.5 parent: 2 type: Transform - - uid: 25211 + - uid: 25438 components: - rot: 3.141592653589793 rad pos: 47.5,-30.5 parent: 2 type: Transform - - uid: 25212 + - uid: 25439 components: - rot: -1.5707963267948966 rad pos: 36.5,19.5 parent: 2 type: Transform - - uid: 25213 + - uid: 25440 components: - pos: -23.5,-87.5 parent: 2 type: Transform - - uid: 25214 + - uid: 25441 components: - pos: -7.5,4.5 parent: 2 type: Transform - - uid: 25215 + - uid: 25442 components: - rot: 1.5707963267948966 rad pos: 21.5,-44.5 parent: 2 type: Transform - - uid: 25216 + - uid: 25443 components: - pos: 0.5,4.5 parent: 2 type: Transform - - uid: 25217 + - uid: 25444 components: - rot: 1.5707963267948966 rad pos: 24.5,19.5 parent: 2 type: Transform - - uid: 25218 + - uid: 25445 components: - rot: -1.5707963267948966 rad pos: 32.5,-20.5 parent: 2 type: Transform - - uid: 25219 + - uid: 25446 components: - rot: -1.5707963267948966 rad pos: 31.5,-20.5 parent: 2 type: Transform - - uid: 25220 + - uid: 25447 components: - rot: -1.5707963267948966 rad pos: 32.5,-21.5 parent: 2 type: Transform - - uid: 25221 + - uid: 25448 components: - rot: -1.5707963267948966 rad pos: 32.5,-22.5 parent: 2 type: Transform - - uid: 25222 + - uid: 25449 components: - rot: -1.5707963267948966 rad pos: 19.5,-20.5 parent: 2 type: Transform - - uid: 25223 + - uid: 25450 components: - rot: -1.5707963267948966 rad pos: 18.5,-20.5 parent: 2 type: Transform - - uid: 25224 + - uid: 25451 components: - rot: -1.5707963267948966 rad pos: 18.5,-21.5 parent: 2 type: Transform - - uid: 25225 + - uid: 25452 components: - pos: 7.5,7.5 parent: 2 type: Transform - - uid: 25226 + - uid: 25453 components: - rot: 1.5707963267948966 rad pos: 22.5,-21.5 parent: 2 type: Transform - - uid: 25227 + - uid: 25454 components: - pos: 1.5,-46.5 parent: 2 type: Transform - - uid: 25228 + - uid: 25455 components: - pos: 28.5,32.5 parent: 2 type: Transform - - uid: 25229 + - uid: 25456 components: - pos: 30.5,32.5 parent: 2 type: Transform - - uid: 25230 + - uid: 25457 components: - pos: 31.5,32.5 parent: 2 type: Transform - - uid: 25231 + - uid: 25458 components: - pos: 18.5,-22.5 parent: 2 type: Transform - - uid: 25232 + - uid: 25459 components: - pos: 1.5,4.5 parent: 2 type: Transform - - uid: 25233 + - uid: 25460 components: - rot: 3.141592653589793 rad pos: 48.5,-28.5 parent: 2 type: Transform - - uid: 25234 + - uid: 25461 components: - rot: 1.5707963267948966 rad pos: 26.5,19.5 parent: 2 type: Transform - - uid: 25235 + - uid: 25462 components: - rot: -1.5707963267948966 rad pos: -26.5,-12.5 parent: 2 type: Transform - - uid: 25236 + - uid: 25463 components: - pos: 47.5,49.5 parent: 2 type: Transform - - uid: 25237 + - uid: 25464 components: - pos: 7.5,8.5 parent: 2 type: Transform - - uid: 25238 + - uid: 25465 components: - pos: 39.5,49.5 parent: 2 type: Transform - - uid: 25239 + - uid: 25466 components: - pos: 38.5,49.5 parent: 2 type: Transform - - uid: 25240 + - uid: 25467 components: - rot: 3.141592653589793 rad pos: 48.5,-22.5 parent: 2 type: Transform - - uid: 25241 + - uid: 25468 components: - rot: 3.141592653589793 rad pos: 48.5,-24.5 parent: 2 type: Transform - - uid: 25242 + - uid: 25469 components: - pos: 36.5,49.5 parent: 2 type: Transform - - uid: 25243 + - uid: 25470 components: - rot: 3.141592653589793 rad pos: 48.5,-29.5 parent: 2 type: Transform - - uid: 25244 + - uid: 25471 components: - rot: 3.141592653589793 rad pos: 47.5,-27.5 parent: 2 type: Transform - - uid: 25245 + - uid: 25472 components: - rot: 3.141592653589793 rad pos: 47.5,-21.5 parent: 2 type: Transform - - uid: 25246 + - uid: 25473 components: - pos: 32.5,32.5 parent: 2 type: Transform - - uid: 25247 + - uid: 25474 components: - rot: 3.141592653589793 rad pos: 3.5,-51.5 parent: 2 type: Transform - - uid: 25248 + - uid: 25475 components: - rot: 3.141592653589793 rad pos: 28.5,-21.5 parent: 2 type: Transform - - uid: 25249 + - uid: 25476 components: - pos: 7.5,9.5 parent: 2 type: Transform - - uid: 25250 + - uid: 25477 components: - rot: 3.141592653589793 rad pos: 48.5,-23.5 parent: 2 type: Transform - - uid: 25251 + - uid: 25478 components: - rot: 3.141592653589793 rad pos: 48.5,-27.5 parent: 2 type: Transform - - uid: 25252 + - uid: 25479 components: - pos: -34.5,23.5 parent: 2 type: Transform - - uid: 25253 + - uid: 25480 components: - rot: 3.141592653589793 rad pos: 24.5,-21.5 parent: 2 type: Transform - - uid: 25254 + - uid: 25481 components: - rot: -1.5707963267948966 rad pos: 44.5,-26.5 parent: 2 type: Transform - - uid: 25255 + - uid: 25482 components: - rot: -1.5707963267948966 rad pos: 47.5,-25.5 parent: 2 type: Transform - - uid: 25256 + - uid: 25483 components: - rot: -1.5707963267948966 rad pos: 48.5,-25.5 parent: 2 type: Transform - - uid: 25257 + - uid: 25484 components: - pos: -22.5,-87.5 parent: 2 type: Transform - - uid: 25258 + - uid: 25485 components: - pos: 22.5,23.5 parent: 2 type: Transform - - uid: 25259 + - uid: 25486 components: - pos: 25.5,23.5 parent: 2 type: Transform - - uid: 25260 + - uid: 25487 components: - pos: -11.5,43.5 parent: 2 type: Transform - - uid: 25261 + - uid: 25488 components: - rot: 1.5707963267948966 rad pos: -9.5,43.5 parent: 2 type: Transform - - uid: 25262 + - uid: 25489 components: - rot: 1.5707963267948966 rad pos: 48.5,6.5 parent: 2 type: Transform - - uid: 25263 + - uid: 25490 components: - rot: -1.5707963267948966 rad pos: 36.5,17.5 parent: 2 type: Transform - - uid: 25264 + - uid: 25491 components: - pos: -17.5,-22.5 parent: 2 type: Transform - - uid: 25265 + - uid: 25492 components: - pos: -17.5,-23.5 parent: 2 type: Transform - - uid: 25266 + - uid: 25493 components: - pos: 42.5,-40.5 parent: 2 type: Transform - - uid: 25267 + - uid: 25494 components: - pos: 43.5,-40.5 parent: 2 type: Transform - - uid: 25268 + - uid: 25495 components: - pos: -27.5,-9.5 parent: 2 type: Transform - - uid: 25269 + - uid: 25496 components: - pos: -22.5,-8.5 parent: 2 type: Transform - - uid: 25270 + - uid: 25497 components: - pos: -23.5,-8.5 parent: 2 type: Transform - - uid: 25271 + - uid: 25498 components: - pos: -27.5,-10.5 parent: 2 type: Transform - - uid: 25272 + - uid: 25499 components: - pos: -27.5,-11.5 parent: 2 type: Transform - - uid: 25273 + - uid: 25500 components: - pos: 57.5,-47.5 parent: 2 type: Transform - - uid: 25274 + - uid: 25501 components: - rot: 1.5707963267948966 rad pos: 22.5,-44.5 parent: 2 type: Transform - - uid: 25275 + - uid: 25502 components: - pos: -25.5,-35.5 parent: 2 type: Transform - - uid: 25276 + - uid: 25503 components: - pos: -25.5,-36.5 parent: 2 type: Transform - - uid: 25277 + - uid: 25504 components: - pos: -24.5,-36.5 parent: 2 type: Transform - - uid: 25278 + - uid: 25505 components: - pos: -23.5,-36.5 parent: 2 type: Transform - - uid: 25279 + - uid: 25506 components: - pos: -36.5,-33.5 parent: 2 type: Transform - - uid: 25280 + - uid: 25507 components: - pos: -36.5,-32.5 parent: 2 type: Transform - - uid: 25281 + - uid: 25508 components: - pos: -37.5,-32.5 parent: 2 type: Transform - - uid: 25282 + - uid: 25509 components: - pos: -38.5,-32.5 parent: 2 type: Transform - - uid: 25283 + - uid: 25510 components: - pos: -39.5,-32.5 parent: 2 type: Transform - - uid: 25284 + - uid: 25511 components: - pos: -58.5,-25.5 parent: 2 type: Transform - - uid: 25285 + - uid: 25512 components: - pos: -57.5,-25.5 parent: 2 type: Transform - - uid: 25286 + - uid: 25513 components: - pos: -56.5,-25.5 parent: 2 type: Transform - - uid: 25287 + - uid: 25514 components: - pos: -55.5,-25.5 parent: 2 type: Transform - - uid: 25288 + - uid: 25515 components: - pos: -54.5,-25.5 parent: 2 type: Transform - - uid: 25289 + - uid: 25516 components: - pos: -15.5,12.5 parent: 2 type: Transform - - uid: 25290 - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-88.5 - parent: 2 - type: Transform - - uid: 25291 - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-86.5 - parent: 2 - type: Transform - - uid: 25292 + - uid: 25517 components: - rot: -1.5707963267948966 rad pos: -17.5,25.5 parent: 2 type: Transform - - uid: 25293 + - uid: 25518 components: - rot: 3.141592653589793 rad pos: -26.5,22.5 parent: 2 type: Transform - - uid: 25294 + - uid: 25519 components: - pos: 17.5,32.5 parent: 2 type: Transform - - uid: 25295 + - uid: 25520 components: - pos: 17.5,31.5 parent: 2 type: Transform - - uid: 25296 + - uid: 25521 components: - pos: -34.5,24.5 parent: 2 type: Transform - - uid: 25297 + - uid: 25522 components: - pos: -14.5,12.5 parent: 2 type: Transform - - uid: 25298 + - uid: 25523 components: - pos: -13.5,12.5 parent: 2 type: Transform - - uid: 25299 + - uid: 25524 components: - pos: -16.5,12.5 parent: 2 type: Transform - - uid: 25300 + - uid: 25525 components: - pos: -10.5,-61.5 parent: 2 type: Transform - - uid: 25301 + - uid: 25526 components: - pos: 0.5,-61.5 parent: 2 type: Transform - - uid: 25302 + - uid: 25527 components: - pos: -0.5,-61.5 parent: 2 type: Transform - - uid: 25303 + - uid: 25528 components: - pos: -11.5,-61.5 parent: 2 type: Transform - - uid: 25304 + - uid: 25529 components: - pos: -16.5,-61.5 parent: 2 type: Transform - - uid: 25305 + - uid: 25530 components: - pos: -17.5,-61.5 parent: 2 type: Transform - - uid: 25306 + - uid: 25531 components: - rot: 3.141592653589793 rad pos: -15.5,-35.5 parent: 2 type: Transform - - uid: 25307 + - uid: 25532 components: - rot: 3.141592653589793 rad pos: -16.5,-35.5 parent: 2 type: Transform - - uid: 25308 + - uid: 25533 components: - rot: 1.5707963267948966 rad pos: -10.5,43.5 parent: 2 type: Transform - - uid: 25309 + - uid: 25534 components: - pos: -20.5,49.5 parent: 2 type: Transform - - uid: 25310 + - uid: 25535 components: - rot: 3.141592653589793 rad pos: -15.5,65.5 parent: 2 type: Transform - - uid: 25311 + - uid: 25536 components: - rot: 3.141592653589793 rad pos: -16.5,65.5 parent: 2 type: Transform - - uid: 25312 + - uid: 25537 components: - pos: -21.5,49.5 parent: 2 type: Transform - - uid: 25313 + - uid: 25538 components: - rot: 3.141592653589793 rad pos: -19.5,43.5 parent: 2 type: Transform - - uid: 25314 + - uid: 25539 components: - rot: 3.141592653589793 rad pos: -19.5,41.5 parent: 2 type: Transform - - uid: 25315 + - uid: 25540 components: - rot: 3.141592653589793 rad pos: -19.5,42.5 parent: 2 type: Transform - - uid: 25316 + - uid: 25541 components: - pos: 48.5,50.5 parent: 2 type: Transform - - uid: 25317 + - uid: 25542 components: - pos: 47.5,50.5 parent: 2 type: Transform - - uid: 25318 + - uid: 25543 components: - pos: 46.5,49.5 parent: 2 type: Transform - - uid: 25319 + - uid: 25544 components: - pos: 45.5,49.5 parent: 2 type: Transform - - uid: 25320 + - uid: 25545 components: - rot: 3.141592653589793 rad pos: -9.5,-100.5 parent: 2 type: Transform - - uid: 25321 + - uid: 25546 components: - rot: 1.5707963267948966 rad pos: 55.5,-67.5 parent: 2 type: Transform - - uid: 25322 + - uid: 25547 components: - pos: 29.5,32.5 parent: 2 type: Transform - - uid: 25323 + - uid: 25548 components: - pos: 65.5,-28.5 parent: 2 type: Transform - - uid: 25324 + - uid: 25549 components: - pos: 65.5,-29.5 parent: 2 type: Transform - - uid: 25325 + - uid: 25550 components: - pos: -7.5,14.5 parent: 2 type: Transform - - uid: 25326 + - uid: 25551 components: - pos: -8.5,14.5 parent: 2 type: Transform - - uid: 25327 + - uid: 25552 components: - rot: 3.141592653589793 rad pos: 4.5,-3.5 parent: 2 type: Transform + - uid: 25553 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,-88.5 + parent: 2 + type: Transform + - uid: 25554 + components: + - pos: 51.5,-40.5 + parent: 2 + type: Transform + - uid: 25555 + components: + - pos: 52.5,-43.5 + parent: 2 + type: Transform + - uid: 25556 + components: + - pos: 53.5,-39.5 + parent: 2 + type: Transform + - uid: 25557 + components: + - pos: 51.5,-42.5 + parent: 2 + type: Transform + - uid: 25558 + components: + - pos: 51.5,-39.5 + parent: 2 + type: Transform + - uid: 25559 + components: + - pos: 52.5,-39.5 + parent: 2 + type: Transform - proto: TableReinforcedGlass entities: - - uid: 25328 + - uid: 25560 components: - pos: -30.5,-77.5 parent: 2 type: Transform - - uid: 25329 + - uid: 25561 components: - pos: -30.5,-79.5 parent: 2 type: Transform - proto: TableWood entities: - - uid: 25330 + - uid: 25562 components: - pos: -1.5,-6.5 parent: 2 type: Transform - - uid: 25331 + - uid: 25563 components: - rot: -1.5707963267948966 rad pos: 3.5,-9.5 parent: 2 type: Transform - - uid: 25332 + - uid: 25564 components: - rot: -1.5707963267948966 rad pos: 3.5,-10.5 parent: 2 type: Transform - - uid: 25333 + - uid: 25565 components: - rot: -1.5707963267948966 rad pos: 2.5,-19.5 parent: 2 type: Transform - - uid: 25334 + - uid: 25566 components: - rot: -1.5707963267948966 rad pos: 2.5,-21.5 parent: 2 type: Transform - - uid: 25335 + - uid: 25567 components: - rot: -1.5707963267948966 rad pos: 2.5,-20.5 parent: 2 type: Transform - - uid: 25336 + - uid: 25568 components: - rot: 1.5707963267948966 rad pos: 27.5,-37.5 parent: 2 type: Transform - - uid: 25337 + - uid: 25569 components: - rot: 1.5707963267948966 rad pos: 27.5,-35.5 parent: 2 type: Transform - - uid: 25338 + - uid: 25570 components: - rot: 1.5707963267948966 rad pos: 21.5,-29.5 parent: 2 type: Transform - - uid: 25339 + - uid: 25571 components: - rot: 1.5707963267948966 rad pos: 4.5,-7.5 parent: 2 type: Transform - - uid: 25340 + - uid: 25572 components: - pos: -22.5,-54.5 parent: 2 type: Transform - - uid: 25341 + - uid: 25573 components: - pos: -27.5,46.5 parent: 2 type: Transform - - uid: 25342 + - uid: 25574 components: - rot: 3.141592653589793 rad pos: 5.5,20.5 parent: 2 type: Transform - - uid: 25343 + - uid: 25575 components: - pos: 22.5,10.5 parent: 2 type: Transform - - uid: 25344 + - uid: 25576 components: - pos: -19.5,-56.5 parent: 2 type: Transform - - uid: 25345 + - uid: 25577 components: - rot: -1.5707963267948966 rad pos: 9.5,-12.5 parent: 2 type: Transform - - uid: 25346 + - uid: 25578 components: - pos: 59.5,-1.5 parent: 2 type: Transform - - uid: 25347 + - uid: 25579 components: - rot: 1.5707963267948966 rad pos: 22.5,-29.5 parent: 2 type: Transform - - uid: 25348 + - uid: 25580 components: - pos: -4.5,-48.5 parent: 2 type: Transform - - uid: 25349 + - uid: 25581 components: - rot: -1.5707963267948966 rad pos: 2.5,21.5 parent: 2 type: Transform - - uid: 25350 + - uid: 25582 components: - rot: 1.5707963267948966 rad pos: 23.5,-29.5 parent: 2 type: Transform - - uid: 25351 + - uid: 25583 components: - pos: 15.5,13.5 parent: 2 type: Transform - - uid: 25352 + - uid: 25584 components: - rot: 1.5707963267948966 rad pos: 13.5,-34.5 parent: 2 type: Transform - - uid: 25353 + - uid: 25585 components: - pos: -28.5,46.5 parent: 2 type: Transform - - uid: 25354 + - uid: 25586 components: - pos: -20.5,-56.5 parent: 2 type: Transform - - uid: 25355 + - uid: 25587 components: - pos: -18.5,-56.5 parent: 2 type: Transform - - uid: 25356 + - uid: 25588 components: - rot: -1.5707963267948966 rad pos: 22.5,-28.5 parent: 2 type: Transform - - uid: 25357 + - uid: 25589 components: - pos: 15.5,10.5 parent: 2 type: Transform - - uid: 25358 + - uid: 25590 components: - pos: 15.5,9.5 parent: 2 type: Transform - - uid: 25359 + - uid: 25591 components: - pos: 15.5,12.5 parent: 2 type: Transform - - uid: 25360 + - uid: 25592 components: - pos: 20.5,-12.5 parent: 2 type: Transform - - uid: 25361 + - uid: 25593 components: - pos: 19.5,-12.5 parent: 2 type: Transform - - uid: 25362 + - uid: 25594 components: - rot: 3.141592653589793 rad pos: -3.5,52.5 parent: 2 type: Transform - - uid: 25363 + - uid: 25595 components: - rot: -1.5707963267948966 rad pos: 2.5,20.5 parent: 2 type: Transform - - uid: 25364 + - uid: 25596 components: - rot: -1.5707963267948966 rad pos: 1.5,21.5 parent: 2 type: Transform - - uid: 25365 + - uid: 25597 components: - pos: 6.5,20.5 parent: 2 type: Transform - - uid: 25366 + - uid: 25598 components: - pos: -2.5,-48.5 parent: 2 type: Transform - - uid: 25367 + - uid: 25599 components: - pos: -2.5,-49.5 parent: 2 type: Transform - - uid: 25368 + - uid: 25600 components: - pos: -5.5,-48.5 parent: 2 type: Transform - - uid: 25369 + - uid: 25601 components: - pos: -6.5,-48.5 parent: 2 type: Transform - - uid: 25370 + - uid: 25602 components: - pos: 7.5,20.5 parent: 2 type: Transform - - uid: 25371 + - uid: 25603 components: - rot: 1.5707963267948966 rad pos: 13.5,-32.5 parent: 2 type: Transform - - uid: 25372 + - uid: 25604 components: - pos: -6.5,-49.5 parent: 2 type: Transform - - uid: 25373 + - uid: 25605 components: - pos: 21.5,-12.5 parent: 2 type: Transform - - uid: 25374 + - uid: 25606 components: - pos: 22.5,-14.5 parent: 2 type: Transform - - uid: 25375 + - uid: 25607 components: - rot: -1.5707963267948966 rad pos: 8.5,-12.5 parent: 2 type: Transform - - uid: 25376 + - uid: 25608 components: - rot: 1.5707963267948966 rad pos: 2.5,0.5 parent: 2 type: Transform - - uid: 25377 + - uid: 25609 components: - rot: 1.5707963267948966 rad pos: 2.5,1.5 parent: 2 type: Transform - - uid: 25378 + - uid: 25610 components: - rot: 1.5707963267948966 rad pos: 12.5,-4.5 parent: 2 type: Transform - - uid: 25379 + - uid: 25611 components: - pos: -3.5,-48.5 parent: 2 type: Transform - - uid: 25380 + - uid: 25612 components: - pos: 15.5,11.5 parent: 2 type: Transform - - uid: 25381 + - uid: 25613 components: - pos: -1.5,17.5 parent: 2 type: Transform - - uid: 25382 + - uid: 25614 components: - pos: -28.5,44.5 parent: 2 type: Transform - - uid: 25383 + - uid: 25615 components: - rot: -1.5707963267948966 rad pos: 11.5,8.5 parent: 2 type: Transform - - uid: 25384 + - uid: 25616 components: - pos: -10.5,-5.5 parent: 2 type: Transform - - uid: 25385 + - uid: 25617 components: - pos: -28.5,45.5 parent: 2 type: Transform - - uid: 25386 + - uid: 25618 components: - pos: -10.5,-3.5 parent: 2 type: Transform - - uid: 25387 + - uid: 25619 components: - pos: -10.5,-4.5 parent: 2 type: Transform - - uid: 25388 + - uid: 25620 components: - pos: -10.5,-6.5 parent: 2 type: Transform - - uid: 25389 + - uid: 25621 components: - pos: 22.5,11.5 parent: 2 type: Transform - - uid: 25390 + - uid: 25622 components: - rot: -1.5707963267948966 rad pos: 11.5,7.5 parent: 2 type: Transform - - uid: 25391 + - uid: 25623 components: - rot: 3.141592653589793 rad pos: 12.5,11.5 parent: 2 type: Transform - - uid: 25392 + - uid: 25624 components: - rot: 3.141592653589793 rad pos: 11.5,11.5 parent: 2 type: Transform - - uid: 25393 + - uid: 25625 components: - rot: -1.5707963267948966 rad pos: -14.5,-37.5 parent: 2 type: Transform - - uid: 25394 + - uid: 25626 components: - rot: 3.141592653589793 rad pos: -9.5,-35.5 parent: 2 type: Transform - - uid: 25395 + - uid: 25627 components: - rot: 3.141592653589793 rad pos: -9.5,-36.5 parent: 2 type: Transform - - uid: 25396 + - uid: 25628 components: - rot: 3.141592653589793 rad pos: -9.5,-37.5 parent: 2 type: Transform - - uid: 25397 + - uid: 25629 components: - rot: 3.141592653589793 rad pos: -10.5,-37.5 parent: 2 type: Transform - - uid: 25398 + - uid: 25630 components: - rot: 3.141592653589793 rad pos: -11.5,-37.5 parent: 2 type: Transform - - uid: 25399 + - uid: 25631 components: - pos: -14.5,-39.5 parent: 2 type: Transform - - uid: 25400 + - uid: 25632 components: - pos: -12.5,-35.5 parent: 2 type: Transform - - uid: 25401 + - uid: 25633 components: - rot: 3.141592653589793 rad pos: 20.5,12.5 parent: 2 type: Transform - - uid: 25402 + - uid: 25634 components: - pos: 22.5,13.5 parent: 2 type: Transform - - uid: 25403 + - uid: 25635 components: - rot: 3.141592653589793 rad pos: -4.5,1.5 parent: 2 type: Transform - - uid: 25404 + - uid: 25636 components: - rot: 3.141592653589793 rad pos: -8.5,0.5 parent: 2 type: Transform - - uid: 25405 + - uid: 25637 components: - rot: 3.141592653589793 rad pos: -8.5,1.5 parent: 2 type: Transform - - uid: 25406 + - uid: 25638 components: - pos: -1.5,19.5 parent: 2 type: Transform - - uid: 25407 + - uid: 25639 components: - rot: -1.5707963267948966 rad pos: 2.5,19.5 parent: 2 type: Transform - - uid: 25408 + - uid: 25640 components: - pos: -17.5,41.5 parent: 2 type: Transform - - uid: 25409 + - uid: 25641 components: - pos: 40.5,21.5 parent: 2 type: Transform - - uid: 25410 + - uid: 25642 components: - pos: 38.5,21.5 parent: 2 type: Transform - - uid: 25411 + - uid: 25643 components: - pos: 38.5,18.5 parent: 2 type: Transform - - uid: 25412 + - uid: 25644 components: - pos: 40.5,18.5 parent: 2 type: Transform - - uid: 25413 + - uid: 25645 components: - rot: -1.5707963267948966 rad pos: 43.5,-4.5 parent: 2 type: Transform - - uid: 25414 + - uid: 25646 components: - rot: -1.5707963267948966 rad pos: 43.5,-3.5 parent: 2 type: Transform - - uid: 25415 + - uid: 25647 components: - rot: -1.5707963267948966 rad pos: 43.5,-2.5 parent: 2 type: Transform - - uid: 25416 + - uid: 25648 components: - rot: -1.5707963267948966 rad pos: 6.5,22.5 parent: 2 type: Transform - - uid: 25417 + - uid: 25649 components: - pos: 61.5,-53.5 parent: 2 type: Transform - - uid: 25418 + - uid: 25650 components: - pos: 62.5,-53.5 parent: 2 type: Transform - - uid: 25419 + - uid: 25651 components: - pos: 63.5,-53.5 parent: 2 type: Transform - - uid: 25420 + - uid: 25652 components: - pos: -16.5,-45.5 parent: 2 type: Transform - - uid: 25421 + - uid: 25653 components: - pos: -16.5,-47.5 parent: 2 type: Transform - - uid: 25422 + - uid: 25654 components: - pos: -16.5,-49.5 parent: 2 type: Transform - - uid: 25423 + - uid: 25655 components: - rot: 3.141592653589793 rad pos: 34.5,-50.5 parent: 2 type: Transform - - uid: 25424 + - uid: 25656 components: - rot: 3.141592653589793 rad pos: 33.5,-50.5 parent: 2 type: Transform - - uid: 25425 + - uid: 25657 components: - rot: 3.141592653589793 rad pos: 32.5,-50.5 parent: 2 type: Transform - - uid: 25426 + - uid: 25658 components: - rot: 3.141592653589793 rad pos: 30.5,-50.5 parent: 2 type: Transform - - uid: 25427 + - uid: 25659 components: - rot: 3.141592653589793 rad pos: 29.5,-50.5 parent: 2 type: Transform - - uid: 25428 + - uid: 25660 components: - rot: 3.141592653589793 rad pos: 28.5,-50.5 parent: 2 type: Transform - - uid: 25429 + - uid: 25661 components: - rot: 3.141592653589793 rad pos: 30.5,-48.5 parent: 2 type: Transform - - uid: 25430 + - uid: 25662 components: - rot: 3.141592653589793 rad pos: 31.5,-48.5 parent: 2 type: Transform - - uid: 25431 + - uid: 25663 components: - rot: 3.141592653589793 rad pos: 32.5,-48.5 parent: 2 type: Transform - - uid: 25432 + - uid: 25664 components: - pos: 60.5,-1.5 parent: 2 type: Transform - - uid: 25433 + - uid: 25665 components: - pos: 62.5,-1.5 parent: 2 type: Transform - - uid: 25434 + - uid: 25666 components: - pos: 61.5,-1.5 parent: 2 type: Transform - - uid: 25435 + - uid: 25667 components: - rot: 1.5707963267948966 rad pos: -35.5,-17.5 parent: 2 type: Transform - - uid: 25436 + - uid: 25668 components: - rot: 1.5707963267948966 rad pos: -35.5,-16.5 parent: 2 type: Transform - - uid: 25437 + - uid: 25669 components: - rot: 1.5707963267948966 rad pos: -35.5,-15.5 parent: 2 type: Transform - - uid: 25438 + - uid: 25670 components: - pos: 65.5,-51.5 parent: 2 type: Transform - - uid: 25439 + - uid: 25671 components: - pos: 59.5,-51.5 parent: 2 type: Transform - - uid: 25440 + - uid: 25672 components: - pos: 59.5,-52.5 parent: 2 type: Transform - - uid: 25441 + - uid: 25673 components: - pos: -39.5,-76.5 parent: 2 type: Transform - - uid: 25442 + - uid: 25674 components: - pos: -39.5,-77.5 parent: 2 type: Transform - - uid: 25443 + - uid: 25675 components: - pos: -40.5,-77.5 parent: 2 type: Transform - - uid: 25444 + - uid: 25676 components: - pos: -40.5,-78.5 parent: 2 type: Transform - - uid: 25445 + - uid: 25677 components: - pos: -41.5,-78.5 parent: 2 type: Transform - - uid: 25446 + - uid: 25678 components: - pos: -42.5,-78.5 parent: 2 type: Transform - - uid: 25447 + - uid: 25679 components: - pos: -43.5,-78.5 parent: 2 type: Transform - - uid: 25448 + - uid: 25680 components: - pos: -43.5,-77.5 parent: 2 type: Transform - - uid: 25449 + - uid: 25681 components: - pos: -44.5,-77.5 parent: 2 type: Transform - - uid: 25450 + - uid: 25682 components: - pos: -44.5,-76.5 parent: 2 type: Transform - - uid: 25451 + - uid: 25683 components: - rot: -1.5707963267948966 rad pos: -40.5,-74.5 parent: 2 type: Transform - - uid: 25452 + - uid: 25684 components: - rot: -1.5707963267948966 rad pos: -43.5,-74.5 parent: 2 type: Transform - - uid: 25453 + - uid: 25685 components: - pos: 23.5,-28.5 parent: 2 type: Transform - - uid: 25454 + - uid: 25686 components: - pos: 30.5,-28.5 parent: 2 type: Transform - - uid: 25455 + - uid: 25687 components: - pos: 30.5,-29.5 parent: 2 type: Transform - - uid: 25456 + - uid: 25688 components: - pos: 59.5,-3.5 parent: 2 type: Transform - - uid: 25457 + - uid: 25689 components: - rot: 3.141592653589793 rad pos: -27.5,14.5 parent: 2 type: Transform - - uid: 25458 + - uid: 25690 components: - rot: 3.141592653589793 rad pos: -26.5,14.5 parent: 2 type: Transform - - uid: 25459 + - uid: 25691 components: - rot: 3.141592653589793 rad pos: -36.5,16.5 parent: 2 type: Transform - - uid: 25460 + - uid: 25692 components: - rot: 3.141592653589793 rad pos: -37.5,16.5 parent: 2 type: Transform - - uid: 25461 + - uid: 25693 components: - rot: 3.141592653589793 rad pos: -38.5,16.5 parent: 2 type: Transform - - uid: 25462 + - uid: 25694 components: - rot: 3.141592653589793 rad pos: -39.5,16.5 parent: 2 type: Transform - - uid: 25463 + - uid: 25695 components: - rot: 3.141592653589793 rad pos: -31.5,15.5 parent: 2 type: Transform - - uid: 25464 + - uid: 25696 components: - rot: 3.141592653589793 rad pos: -30.5,15.5 parent: 2 type: Transform - - uid: 25465 + - uid: 25697 components: - rot: 3.141592653589793 rad pos: -29.5,15.5 parent: 2 type: Transform - - uid: 25466 + - uid: 25698 components: - rot: 1.5707963267948966 rad pos: -48.5,6.5 parent: 2 type: Transform - - uid: 25467 + - uid: 25699 components: - rot: 1.5707963267948966 rad pos: -48.5,5.5 parent: 2 type: Transform - - uid: 25468 + - uid: 25700 components: - rot: 1.5707963267948966 rad pos: -47.5,5.5 parent: 2 type: Transform - - uid: 25469 + - uid: 25701 components: - rot: 1.5707963267948966 rad pos: -47.5,6.5 parent: 2 type: Transform - - uid: 25470 + - uid: 25702 components: - pos: -52.5,13.5 parent: 2 type: Transform - - uid: 25471 + - uid: 25703 components: - pos: -42.5,8.5 parent: 2 type: Transform - - uid: 25472 + - uid: 25704 components: - pos: -51.5,8.5 parent: 2 type: Transform - - uid: 25473 + - uid: 25705 components: - pos: -17.5,42.5 parent: 2 type: Transform - - uid: 25474 + - uid: 25706 components: - pos: -14.5,47.5 parent: 2 type: Transform - - uid: 25475 + - uid: 25707 components: - pos: -16.5,42.5 parent: 2 type: Transform - - uid: 25476 + - uid: 25708 components: - pos: -16.5,41.5 parent: 2 type: Transform - - uid: 25477 + - uid: 25709 components: - rot: 3.141592653589793 rad pos: -5.5,-15.5 parent: 2 type: Transform - - uid: 25478 + - uid: 25710 components: - pos: -33.5,-67.5 parent: 2 type: Transform - - uid: 25479 + - uid: 25711 components: - rot: -1.5707963267948966 rad pos: 30.5,-27.5 parent: 2 type: Transform - - uid: 25480 + - uid: 25712 components: - pos: -31.5,-73.5 parent: 2 type: Transform - - uid: 25481 + - uid: 25713 components: - rot: 3.141592653589793 rad pos: 67.5,10.5 parent: 2 type: Transform - - uid: 25482 + - uid: 25714 components: - pos: -23.5,29.5 parent: 2 type: Transform - - uid: 25483 + - uid: 25715 components: - rot: 1.5707963267948966 rad pos: -24.5,29.5 parent: 2 type: Transform - - uid: 25484 + - uid: 25716 components: - pos: -18.5,33.5 parent: 2 type: Transform - - uid: 25485 + - uid: 25717 components: - pos: -21.5,35.5 parent: 2 type: Transform - - uid: 25486 + - uid: 25718 components: - pos: -12.5,35.5 parent: 2 type: Transform - - uid: 25487 + - uid: 25719 components: - pos: -12.5,32.5 parent: 2 type: Transform - - uid: 25488 + - uid: 25720 components: - pos: -12.5,31.5 parent: 2 type: Transform - - uid: 25489 + - uid: 25721 components: - pos: 65.5,-0.5 parent: 2 type: Transform - - uid: 25490 + - uid: 25722 components: - pos: 65.5,-1.5 parent: 2 type: Transform - - uid: 25491 + - uid: 25723 components: - rot: 1.5707963267948966 rad pos: 42.5,48.5 parent: 2 type: Transform - - uid: 25492 + - uid: 25724 components: - rot: 1.5707963267948966 rad pos: 43.5,48.5 parent: 2 type: Transform - - uid: 25493 + - uid: 25725 components: - rot: 1.5707963267948966 rad pos: 33.5,44.5 parent: 2 type: Transform - - uid: 25494 + - uid: 25726 components: - rot: 1.5707963267948966 rad pos: 32.5,47.5 parent: 2 type: Transform - - uid: 25495 + - uid: 25727 components: - rot: 1.5707963267948966 rad pos: 32.5,46.5 parent: 2 type: Transform - - uid: 25496 + - uid: 25728 components: - rot: 1.5707963267948966 rad pos: 40.5,43.5 parent: 2 type: Transform - - uid: 25497 + - uid: 25729 components: - rot: 3.141592653589793 rad pos: -21.5,37.5 parent: 2 type: Transform - - uid: 25498 + - uid: 25730 components: - rot: 3.141592653589793 rad pos: -22.5,37.5 parent: 2 type: Transform - - uid: 25499 + - uid: 25731 components: - pos: -19.5,37.5 parent: 2 type: Transform - - uid: 25500 + - uid: 25732 components: - pos: -22.5,-97.5 parent: 2 type: Transform - - uid: 25501 + - uid: 25733 components: - pos: -22.5,-98.5 parent: 2 type: Transform - - uid: 25502 + - uid: 25734 components: - rot: 3.141592653589793 rad pos: -7.5,-100.5 parent: 2 type: Transform - - uid: 25503 + - uid: 25735 components: - rot: 3.141592653589793 rad pos: -6.5,-100.5 parent: 2 type: Transform - - uid: 25504 + - uid: 25736 components: - pos: -22.5,-96.5 parent: 2 type: Transform - - uid: 25505 + - uid: 25737 components: - pos: -33.5,8.5 parent: 2 type: Transform - - uid: 25506 + - uid: 25738 components: - pos: -32.5,8.5 parent: 2 type: Transform - - uid: 25507 + - uid: 25739 components: - pos: 54.5,-35.5 parent: 2 type: Transform - - uid: 25508 + - uid: 25740 components: - pos: 58.5,-30.5 parent: 2 type: Transform - - uid: 25509 + - uid: 25741 components: - rot: 3.141592653589793 rad pos: 49.5,-66.5 parent: 2 type: Transform - - uid: 25510 + - uid: 25742 components: - rot: -1.5707963267948966 rad pos: 57.5,-30.5 parent: 2 type: Transform - - uid: 25511 + - uid: 25743 components: - pos: 12.5,-5.5 parent: 2 type: Transform - - uid: 25512 + - uid: 25744 components: - pos: 18.5,-14.5 parent: 2 type: Transform - - uid: 25513 + - uid: 25745 components: - rot: 1.5707963267948966 rad pos: -4.5,0.5 parent: 2 type: Transform - - uid: 25514 + - uid: 25746 components: - pos: -31.5,-74.5 parent: 2 type: Transform - - uid: 25515 + - uid: 25747 components: - pos: 12.5,-6.5 parent: 2 type: Transform - - uid: 25516 + - uid: 25748 components: - rot: 3.141592653589793 rad pos: 2.5,-7.5 parent: 2 type: Transform - - uid: 25517 + - uid: 25749 components: - rot: 1.5707963267948966 rad pos: 21.5,-28.5 parent: 2 type: Transform - - uid: 25518 + - uid: 25750 components: - pos: -0.5,-23.5 parent: 2 type: Transform - - uid: 25519 + - uid: 25751 components: - pos: 0.5,-23.5 parent: 2 type: Transform - - uid: 25520 + - uid: 25752 components: - rot: 1.5707963267948966 rad pos: 27.5,-36.5 parent: 2 type: Transform - - uid: 25521 + - uid: 25753 components: - rot: 1.5707963267948966 rad pos: 27.5,-34.5 parent: 2 type: Transform - - uid: 25522 + - uid: 25754 components: - rot: -1.5707963267948966 rad pos: 22.5,-38.5 parent: 2 type: Transform - - uid: 25523 + - uid: 25755 components: - rot: -1.5707963267948966 rad pos: 22.5,-39.5 parent: 2 type: Transform - - uid: 25524 + - uid: 25756 components: - pos: 28.5,-39.5 parent: 2 type: Transform - proto: TegCenter entities: - - uid: 25525 + - uid: 25757 components: - rot: -1.5707963267948966 rad pos: -69.5,-44.5 @@ -167290,7 +168572,7 @@ entities: type: Transform - proto: TegCirculator entities: - - uid: 25526 + - uid: 25758 components: - rot: 3.141592653589793 rad pos: -70.5,-44.5 @@ -167298,7 +168580,7 @@ entities: type: Transform - color: '#FF3300FF' type: PointLight - - uid: 25527 + - uid: 25759 components: - pos: -68.5,-44.5 parent: 2 @@ -167307,7 +168589,7 @@ entities: type: PointLight - proto: TelecomServer entities: - - uid: 14492 + - uid: 14544 components: - pos: 8.5,-20.5 parent: 2 @@ -167317,7 +168599,7 @@ entities: showEnts: False occludes: True ents: - - 14493 + - 14545 machine_board: !type:Container showEnts: False occludes: True @@ -167327,7 +168609,7 @@ entities: occludes: True ents: [] type: ContainerContainer - - uid: 14494 + - uid: 14546 components: - pos: 9.5,-20.5 parent: 2 @@ -167337,7 +168619,7 @@ entities: showEnts: False occludes: True ents: - - 14495 + - 14547 machine_board: !type:Container showEnts: False occludes: True @@ -167347,7 +168629,7 @@ entities: occludes: True ents: [] type: ContainerContainer - - uid: 14496 + - uid: 14548 components: - pos: 10.5,-20.5 parent: 2 @@ -167357,7 +168639,7 @@ entities: showEnts: False occludes: True ents: - - 14497 + - 14549 machine_board: !type:Container showEnts: False occludes: True @@ -167367,7 +168649,7 @@ entities: occludes: True ents: [] type: ContainerContainer - - uid: 14498 + - uid: 14550 components: - pos: 11.5,-20.5 parent: 2 @@ -167377,7 +168659,7 @@ entities: showEnts: False occludes: True ents: - - 14499 + - 14551 machine_board: !type:Container showEnts: False occludes: True @@ -167387,7 +168669,7 @@ entities: occludes: True ents: [] type: ContainerContainer - - uid: 14500 + - uid: 14552 components: - pos: 9.5,-22.5 parent: 2 @@ -167397,7 +168679,7 @@ entities: showEnts: False occludes: True ents: - - 14501 + - 14553 machine_board: !type:Container showEnts: False occludes: True @@ -167407,7 +168689,7 @@ entities: occludes: True ents: [] type: ContainerContainer - - uid: 14502 + - uid: 14554 components: - pos: 8.5,-22.5 parent: 2 @@ -167417,8 +168699,8 @@ entities: showEnts: False occludes: True ents: - - 14504 - - 14503 + - 14556 + - 14555 machine_board: !type:Container showEnts: False occludes: True @@ -167428,7 +168710,7 @@ entities: occludes: True ents: [] type: ContainerContainer - - uid: 14505 + - uid: 14557 components: - pos: 10.5,-22.5 parent: 2 @@ -167438,7 +168720,7 @@ entities: showEnts: False occludes: True ents: - - 14506 + - 14558 machine_board: !type:Container showEnts: False occludes: True @@ -167448,7 +168730,7 @@ entities: occludes: True ents: [] type: ContainerContainer - - uid: 14507 + - uid: 14559 components: - pos: 11.5,-22.5 parent: 2 @@ -167458,7 +168740,7 @@ entities: showEnts: False occludes: True ents: - - 14508 + - 14560 machine_board: !type:Container showEnts: False occludes: True @@ -167470,66 +168752,86 @@ entities: type: ContainerContainer - proto: ThermomachineFreezerMachineCircuitBoard entities: - - uid: 25528 + - uid: 25760 components: - pos: -36.51641,35.415855 parent: 2 type: Transform - proto: Thruster entities: - - uid: 25529 + - uid: 25761 components: - rot: 1.5707963267948966 rad - pos: -58.5,-87.5 + pos: -58.5,-88.5 parent: 2 type: Transform - - uid: 25530 + - uid: 25763 components: - - rot: 1.5707963267948966 rad - pos: -56.5,-84.5 + - rot: 3.141592653589793 rad + pos: -56.5,-90.5 parent: 2 type: Transform - - uid: 25531 + - uid: 25764 + components: + - rot: -1.5707963267948966 rad + pos: -52.5,-90.5 + parent: 2 + type: Transform + - uid: 25765 components: - rot: 1.5707963267948966 rad - pos: -56.5,-90.5 + pos: -58.5,-86.5 parent: 2 type: Transform - proto: TimerTrigger entities: - - uid: 25532 + - uid: 25766 components: - pos: 65.507225,-28.362265 parent: 2 type: Transform +- proto: TintedWindow + entities: + - uid: 25767 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,17.5 + parent: 2 + type: Transform + - uid: 25768 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,17.5 + parent: 2 + type: Transform - proto: TobaccoSeeds entities: - - uid: 25533 + - uid: 25769 components: - pos: -32.36416,6.3223424 parent: 2 type: Transform - proto: ToiletDirtyWater entities: - - uid: 25534 + - uid: 25770 components: - rot: 1.5707963267948966 rad pos: -32.5,-5.5 parent: 2 type: Transform - - uid: 25535 + - uid: 25771 components: - rot: 1.5707963267948966 rad pos: -32.5,-7.5 parent: 2 type: Transform - - uid: 25536 + - uid: 25772 components: - rot: -1.5707963267948966 rad pos: -28.5,-5.5 parent: 2 type: Transform - - uid: 25537 + - uid: 25773 components: - rot: -1.5707963267948966 rad pos: -28.5,-7.5 @@ -167537,12 +168839,12 @@ entities: type: Transform - proto: ToiletEmpty entities: - - uid: 25538 + - uid: 25774 components: - pos: 61.5,24.5 parent: 2 type: Transform - - uid: 25539 + - uid: 25775 components: - pos: 63.5,24.5 parent: 2 @@ -167551,365 +168853,357 @@ entities: type: Construction - proto: TomatoSeeds entities: - - uid: 25540 + - uid: 25776 components: - pos: -32.45791,6.4317174 parent: 2 type: Transform - proto: ToolboxElectrical entities: - - uid: 25541 + - uid: 25777 components: - pos: 46.470684,-5.411702 parent: 2 type: Transform - proto: ToolboxElectricalFilled entities: - - uid: 25542 + - uid: 25778 components: - pos: -36.493176,-7.9722276 parent: 2 type: Transform - - uid: 25543 + - uid: 25779 components: - pos: 32.521046,-20.990738 parent: 2 type: Transform - - uid: 25544 + - uid: 25780 components: - pos: -24.509478,-19.362955 parent: 2 type: Transform - - uid: 25545 + - uid: 25781 components: - pos: -12.493107,-98.55707 parent: 2 type: Transform - - uid: 25546 + - uid: 25782 components: - pos: 67.55947,-64.54127 parent: 2 type: Transform - proto: ToolboxEmergencyFilled entities: - - uid: 25547 + - uid: 25783 components: - pos: 32.521046,-22.058308 parent: 2 type: Transform - - uid: 25548 + - uid: 25784 components: - pos: 4.5177064,-69.50256 parent: 2 type: Transform - - uid: 25549 + - uid: 25785 components: - pos: -22.596659,-20.233759 parent: 2 type: Transform - - uid: 25550 + - uid: 25786 components: - pos: -28.343418,-52.353195 parent: 2 type: Transform - - uid: 25551 + - uid: 25787 components: - pos: -38.44295,-67.482124 parent: 2 type: Transform - - uid: 25552 + - uid: 25788 components: - pos: -35.451088,-50.209225 parent: 2 type: Transform - - uid: 25553 + - uid: 25789 components: - pos: 54.54983,-30.496807 parent: 2 type: Transform - - uid: 25554 + - uid: 25790 components: - pos: 65.53578,-10.518121 parent: 2 type: Transform - - uid: 25555 + - uid: 25791 components: - pos: -12.486199,-5.5686293 parent: 2 type: Transform - - uid: 25556 + - uid: 25792 components: - pos: -36.5088,-7.6284776 parent: 2 type: Transform - proto: ToolboxGoldFilled entities: - - uid: 25557 + - uid: 25793 components: - pos: 32.512478,-22.558695 parent: 2 type: Transform - proto: ToolboxMechanical entities: - - uid: 25558 + - uid: 25794 components: - pos: -22.637089,-8.36341 parent: 2 type: Transform - proto: ToolboxMechanicalFilled entities: - - uid: 25559 + - uid: 25795 components: - pos: -36.493176,-7.2222276 parent: 2 type: Transform - - uid: 25560 + - uid: 25796 components: - pos: -15.996035,12.5348 parent: 2 type: Transform - - uid: 25561 + - uid: 25797 components: - pos: 32.521046,-21.537613 parent: 2 type: Transform - - uid: 25562 + - uid: 25798 components: - pos: -22.52499,-67.50294 parent: 2 type: Transform - - uid: 25563 + - uid: 25799 components: - pos: 41.46839,-54.726734 parent: 2 type: Transform - - uid: 25564 + - uid: 25800 components: - pos: -36.497368,-32.593475 parent: 2 type: Transform - - uid: 25565 + - uid: 25801 components: - pos: -26.431704,-19.50094 parent: 2 type: Transform - proto: ToyAi entities: - - uid: 25566 + - uid: 25802 components: - pos: 48.41234,-27.902035 parent: 2 type: Transform - - uid: 25567 + - uid: 25803 components: - pos: -1.529743,69.62148 parent: 2 type: Transform - proto: ToyAmongPequeno entities: - - uid: 25568 + - uid: 25804 components: - pos: 64.471924,-66.472046 parent: 2 type: Transform - proto: ToyDurand entities: - - uid: 25569 + - uid: 25805 components: - pos: -18.14669,61.77462 parent: 2 type: Transform - proto: ToyFigurineClown entities: - - uid: 25570 + - uid: 25806 components: - pos: 2.672367,-19.349606 parent: 2 type: Transform - proto: ToyFigurineHamlet entities: - - uid: 25571 + - uid: 25807 components: - pos: 19.529411,-12.229433 parent: 2 type: Transform - proto: ToyFigurineMime entities: - - uid: 25572 + - uid: 25808 components: - pos: 2.266117,-19.537106 parent: 2 type: Transform - proto: ToyFigurinePassenger entities: - - uid: 25573 + - uid: 25809 components: - pos: -17.943565,62.415245 parent: 2 type: Transform - proto: ToyGygax entities: - - uid: 25574 + - uid: 25810 components: - pos: -17.318565,61.89962 parent: 2 type: Transform - proto: ToyHonk entities: - - uid: 25575 + - uid: 25811 components: - pos: 62.0246,-1.3985255 parent: 2 type: Transform - - uid: 25576 + - uid: 25812 components: - pos: -17.287315,62.508995 parent: 2 type: Transform - proto: ToyIan entities: - - uid: 25577 + - uid: 25813 components: - pos: 48.44359,-22.433285 parent: 2 type: Transform - proto: ToyNuke entities: - - uid: 25578 + - uid: 25814 components: - pos: 48.50609,-28.933285 parent: 2 type: Transform - proto: ToyRubberDuck entities: - - uid: 25579 + - uid: 25815 components: - pos: 48.59984,-28.457928 parent: 2 type: Transform - - uid: 25580 + - uid: 25816 components: - pos: 48.396713,-28.473553 parent: 2 type: Transform - - uid: 25581 + - uid: 25817 components: - pos: 48.50609,-28.286053 parent: 2 type: Transform - proto: ToySpawner entities: - - uid: 25582 + - uid: 25818 components: - pos: 53.5,-65.5 parent: 2 type: Transform - - uid: 25583 + - uid: 25819 components: - pos: 54.5,-35.5 parent: 2 type: Transform -- proto: ToySword - entities: - - uid: 12266 - components: - - flags: InContainer - type: MetaData - - parent: 12261 - type: Transform - proto: TrainingBomb entities: - - uid: 25584 + - uid: 25820 components: - pos: 11.5,23.5 parent: 2 type: Transform - - uid: 25585 + - uid: 25821 components: - pos: 10.5,23.5 parent: 2 type: Transform - proto: TrashBananaPeel entities: - - uid: 25586 + - uid: 25822 components: - pos: 46.551132,46.620934 parent: 2 type: Transform - - uid: 25587 + - uid: 25823 components: - pos: 48.49847,33.344906 parent: 2 type: Transform - - uid: 25588 + - uid: 25824 components: - pos: 50.451595,31.673027 parent: 2 type: Transform - - uid: 25589 + - uid: 25825 components: - pos: 5.4959826,24.50416 parent: 2 type: Transform - - uid: 25590 + - uid: 25826 components: - pos: 0.5065335,-21.863766 parent: 2 type: Transform - proto: trayScanner entities: - - uid: 25591 + - uid: 25827 components: - pos: -36.91505,-7.9878526 parent: 2 type: Transform - - uid: 25592 + - uid: 25828 components: - pos: -47.457436,-19.479069 parent: 2 type: Transform - - uid: 25593 + - uid: 25829 components: - pos: -42.463882,-20.49279 parent: 2 type: Transform - - uid: 25594 + - uid: 25830 components: - pos: 39.581177,-30.49341 parent: 2 type: Transform - - uid: 25595 + - uid: 25831 components: - pos: 73.06597,36.576 parent: 2 type: Transform - - uid: 25596 + - uid: 25832 components: - pos: 77.48675,-44.195305 parent: 2 type: Transform - - uid: 25597 + - uid: 25833 components: - pos: -26.403507,-59.437252 parent: 2 type: Transform - proto: TromboneInstrument entities: - - uid: 25598 + - uid: 25834 components: - pos: 68.56264,48.54323 parent: 2 type: Transform - proto: TrumpetInstrument entities: - - uid: 25599 + - uid: 25835 components: - pos: -10.547552,-5.035685 parent: 2 type: Transform - proto: TwoWayLever entities: - - uid: 25600 + - uid: 25836 components: - pos: 16.5,-53.5 parent: 2 @@ -167917,150 +169211,150 @@ entities: - nextSignalLeft: True type: TwoWayLever - linkedPorts: - 12634: + 12682: - Left: Forward - Right: Reverse - Middle: Off - 12632: + 12680: - Left: Forward - Right: Reverse - Middle: Off - 12633: + 12681: - Left: Forward - Right: Reverse - Middle: Off - 12630: + 12678: - Left: Forward - Right: Reverse - Middle: Off - 12627: + 12675: - Left: Forward - Right: Reverse - Middle: Off - 12624: + 12672: - Left: Forward - Right: Reverse - Middle: Off - 12626: + 12674: - Left: Forward - Right: Reverse - Middle: Off - 12628: + 12676: - Left: Forward - Right: Reverse - Middle: Off - 23091: + 23244: - Left: Forward - Right: Reverse - Middle: Off - 12625: + 12673: - Left: Forward - Right: Reverse - Middle: Off - 12631: + 12679: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 25601 + - uid: 25837 components: - pos: -28.5,24.5 parent: 2 type: Transform - linkedPorts: - 12642: + 12690: - Left: Forward - Right: Reverse - Middle: Off - 12643: + 12691: - Left: Forward - Right: Reverse - Middle: Off - 12641: + 12689: - Left: Forward - Right: Reverse - Middle: Off - 12640: + 12688: - Left: Forward - Right: Reverse - Middle: Off - 12639: + 12687: - Left: Forward - Right: Reverse - Middle: Off - 12638: + 12686: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - type: ItemCooldown - - uid: 25602 + - uid: 25838 components: - pos: -41.5,17.5 parent: 2 type: Transform - linkedPorts: - 12684: + 12732: - Left: Forward - Right: Reverse - Middle: Off - 12724: + 12772: - Left: Forward - Right: Reverse - Middle: Off - 12683: + 12731: - Left: Forward - Right: Reverse - Middle: Off - 12665: + 12713: - Left: Forward - Right: Reverse - Middle: Off - 12685: + 12733: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 25603 + - uid: 25839 components: - pos: -48.5,24.5 parent: 2 type: Transform - linkedPorts: - 12656: + 12704: - Left: Forward - Right: Reverse - Middle: Off - 12655: + 12703: - Left: Forward - Right: Reverse - Middle: Off - 12654: + 12702: - Left: Forward - Right: Reverse - Middle: Off - 12653: + 12701: - Left: Forward - Right: Reverse - Middle: Off - 12661: + 12709: - Left: Forward - Right: Reverse - Middle: Off - 12662: + 12710: - Left: Forward - Right: Reverse - Middle: Off - 12663: + 12711: - Left: Forward - Right: Reverse - Middle: Off - 12664: + 12712: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 25604 + - uid: 25840 components: - pos: -48.5,18.5 parent: 2 @@ -168068,40 +169362,40 @@ entities: - nextSignalLeft: True type: TwoWayLever - linkedPorts: - 12652: + 12700: - Left: Forward - Right: Reverse - Middle: Off - 12651: + 12699: - Left: Forward - Right: Reverse - Middle: Off - 12650: + 12698: - Left: Forward - Right: Reverse - Middle: Off - 12649: + 12697: - Left: Forward - Right: Reverse - Middle: Off - 12659: + 12707: - Left: Forward - Right: Reverse - Middle: Off - 12660: + 12708: - Left: Forward - Right: Reverse - Middle: Off - 12658: + 12706: - Left: Forward - Right: Reverse - Middle: Off - 12657: + 12705: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 25605 + - uid: 25841 components: - pos: -36.5,24.5 parent: 2 @@ -168109,99 +169403,99 @@ entities: - nextSignalLeft: True type: TwoWayLever - linkedPorts: - 12648: + 12696: - Left: Forward - Right: Reverse - Middle: Off - 12647: + 12695: - Left: Forward - Right: Reverse - Middle: Off - 12646: + 12694: - Left: Forward - Right: Reverse - Middle: Off - 12644: + 12692: - Left: Forward - Right: Reverse - Middle: Off - 12645: + 12693: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 25606 + - uid: 25842 components: - pos: -11.5,28.5 parent: 2 type: Transform - linkedPorts: - 12701: + 12749: - Left: Forward - Right: Reverse - Middle: Off - 12702: + 12750: - Left: Forward - Right: Reverse - Middle: Off - 12703: + 12751: - Left: Forward - Right: Reverse - Middle: Off - 12704: + 12752: - Left: Forward - Right: Reverse - Middle: Off - 12705: + 12753: - Left: Forward - Right: Reverse - Middle: Off - 12700: + 12748: - Left: Forward - Right: Reverse - Middle: Off - 12689: + 12737: - Left: Forward - Right: Reverse - Middle: Off - 12690: + 12738: - Left: Forward - Right: Reverse - Middle: Off - 12691: + 12739: - Left: Forward - Right: Reverse - Middle: Off - 12707: + 12755: - Left: Forward - Right: Reverse - Middle: Off - 12706: + 12754: - Left: Forward - Right: Reverse - Middle: Off - 12682: + 12730: - Left: Reverse - Right: Forward - Middle: Off - 12681: + 12729: - Left: Reverse - Right: Forward - Middle: Off - 12708: + 12756: - Left: Reverse - Right: Forward - Middle: Off - 12709: + 12757: - Left: Reverse - Right: Forward - Middle: Off - 12680: + 12728: - Left: Reverse - Right: Forward - Middle: Off type: DeviceLinkSource - - uid: 25607 + - uid: 25843 components: - pos: -48.5,29.5 parent: 2 @@ -168209,36 +169503,36 @@ entities: - nextSignalLeft: True type: TwoWayLever - linkedPorts: - 12677: + 12725: - Left: Forward - Right: Reverse - Middle: Off - 12667: + 12715: - Left: Forward - Right: Reverse - Middle: Off - 12666: + 12714: - Left: Forward - Right: Reverse - Middle: Off - 12668: + 12716: - Left: Forward - Right: Reverse - Middle: Off - 12669: + 12717: - Left: Forward - Right: Reverse - Middle: Off - 12670: + 12718: - Left: Forward - Right: Reverse - Middle: Off - 12679: + 12727: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 25608 + - uid: 25844 components: - pos: -48.5,35.5 parent: 2 @@ -168246,36 +169540,36 @@ entities: - nextSignalLeft: True type: TwoWayLever - linkedPorts: - 12676: + 12724: - Left: Forward - Right: Reverse - Middle: Off - 12671: + 12719: - Left: Forward - Right: Reverse - Middle: Off - 12672: + 12720: - Left: Forward - Right: Reverse - Middle: Off - 12673: + 12721: - Left: Forward - Right: Reverse - Middle: Off - 12674: + 12722: - Left: Forward - Right: Reverse - Middle: Off - 12675: + 12723: - Left: Forward - Right: Reverse - Middle: Off - 12678: + 12726: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 25609 + - uid: 25845 components: - pos: -46.5,14.5 parent: 2 @@ -168283,21 +169577,21 @@ entities: - nextSignalLeft: True type: TwoWayLever - linkedPorts: - 12687: + 12735: - Left: Forward - Right: Reverse - Middle: Off - 12686: + 12734: - Left: Forward - Right: Reverse - Middle: Off - 12688: + 12736: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - type: ItemCooldown - - uid: 25610 + - uid: 25846 components: - pos: 47.5,39.5 parent: 2 @@ -168305,177 +169599,177 @@ entities: - nextSignalLeft: True type: TwoWayLever - linkedPorts: - 12692: + 12740: - Left: Forward - Right: Reverse - Middle: Off - 12693: + 12741: - Left: Forward - Right: Reverse - Middle: Off - 12694: + 12742: - Left: Forward - Right: Reverse - Middle: Off - 12695: + 12743: - Left: Forward - Right: Reverse - Middle: Off - 12696: + 12744: - Left: Forward - Right: Reverse - Middle: Off - 12697: + 12745: - Left: Forward - Right: Reverse - Middle: Off - 12698: + 12746: - Left: Forward - Right: Reverse - Middle: Off - 12699: + 12747: - Left: Forward - Right: Reverse - Middle: Off - 12710: + 12758: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 25611 + - uid: 25847 components: - pos: -36.5,-98.5 parent: 2 type: Transform - linkedPorts: - 12712: + 12760: - Left: Forward - Right: Reverse - Middle: Off - 12711: + 12759: - Left: Forward - Right: Reverse - Middle: Off - 12713: + 12761: - Left: Forward - Right: Reverse - Middle: Off - 12714: + 12762: - Left: Forward - Right: Reverse - Middle: Off - 12715: + 12763: - Left: Forward - Right: Reverse - Middle: Off - 12716: + 12764: - Left: Forward - Right: Reverse - Middle: Off - 12717: + 12765: - Left: Forward - Right: Reverse - Middle: Off - 12721: + 12769: - Left: Forward - Right: Reverse - Middle: Off - 12720: + 12768: - Left: Forward - Right: Reverse - Middle: Off - 12718: + 12766: - Left: Forward - Right: Reverse - Middle: Off - 12719: + 12767: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 25612 + - uid: 25848 components: - pos: -36.5,-104.5 parent: 2 type: Transform - linkedPorts: - 12719: + 12767: - Left: Forward - Right: Reverse - Middle: Off - 12718: + 12766: - Left: Forward - Right: Reverse - Middle: Off - 12720: + 12768: - Left: Forward - Right: Reverse - Middle: Off - 12721: + 12769: - Left: Forward - Right: Reverse - Middle: Off - 12717: + 12765: - Left: Forward - Right: Reverse - Middle: Off - 12716: + 12764: - Left: Forward - Right: Reverse - Middle: Off - 12715: + 12763: - Left: Forward - Right: Reverse - Middle: Off - 12714: + 12762: - Left: Forward - Right: Reverse - Middle: Off - 12713: + 12761: - Left: Forward - Right: Reverse - Middle: Off - 12711: + 12759: - Left: Forward - Right: Reverse - Middle: Off - 12712: + 12760: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 25613 + - uid: 25849 components: - pos: -9.5,-12.5 parent: 2 type: Transform - linkedPorts: - 12635: + 12683: - Left: Reverse - Right: Reverse - Middle: Off - 12636: + 12684: - Left: Reverse - Right: Reverse - Middle: Off - 12629: + 12677: - Left: Reverse - Right: Reverse - Middle: Off - 12723: + 12771: - Left: Reverse - Right: Reverse - Middle: Off - 12722: + 12770: - Left: Reverse - Right: Reverse - Middle: Off - 12637: + 12685: - Left: Reverse - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 25614 + - uid: 25850 components: - pos: -15.5,10.5 parent: 2 @@ -168483,15 +169777,15 @@ entities: - nextSignalLeft: True type: TwoWayLever - linkedPorts: - 12725: + 12773: - Left: Reverse - Right: Forward - Middle: Off - 12726: + 12774: - Left: Reverse - Right: Forward - Middle: Off - 12727: + 12775: - Left: Reverse - Right: Forward - Middle: Off @@ -168499,44 +169793,44 @@ entities: - type: ItemCooldown - proto: UnfinishedMachineFrame entities: - - uid: 25615 + - uid: 25851 components: - pos: -26.5,-24.5 parent: 2 type: Transform - - uid: 25616 + - uid: 25852 components: - pos: -10.5,39.5 parent: 2 type: Transform - - uid: 25617 + - uid: 25853 components: - pos: 53.5,-30.5 parent: 2 type: Transform - proto: UniformPrinter entities: - - uid: 25618 + - uid: 25854 components: - pos: 2.5,-4.5 parent: 2 type: Transform - proto: UniformShortsRedWithTop entities: - - uid: 25619 + - uid: 25855 components: - pos: 30.57281,4.627015 parent: 2 type: Transform - proto: UprightPianoInstrument entities: - - uid: 25620 + - uid: 25856 components: - rot: -1.5707963267948966 rad pos: -47.5,-75.5 parent: 2 type: Transform - - uid: 25621 + - uid: 25857 components: - rot: -1.5707963267948966 rad pos: 8.5,5.5 @@ -168544,43 +169838,43 @@ entities: type: Transform - proto: Vaccinator entities: - - uid: 25622 + - uid: 25858 components: - pos: -22.5,-77.5 parent: 2 type: Transform - - uid: 25623 + - uid: 25859 components: - pos: -20.5,-76.5 parent: 2 type: Transform - proto: VehicleKeyJanicart entities: - - uid: 25624 + - uid: 25860 components: - pos: -13.519899,-23.451248 parent: 2 type: Transform - proto: VehicleKeySecway entities: - - uid: 25625 + - uid: 25861 components: - pos: 12.469265,19.745214 parent: 2 type: Transform - - uid: 25626 + - uid: 25862 components: - pos: 12.39114,19.557714 parent: 2 type: Transform - - uid: 25627 + - uid: 25863 components: - pos: 12.594265,19.82334 parent: 2 type: Transform - proto: VendingBarDrobe entities: - - uid: 25628 + - uid: 25864 components: - flags: SessionSpecific type: MetaData @@ -168589,7 +169883,7 @@ entities: type: Transform - proto: VendingMachineAtmosDrobe entities: - - uid: 25629 + - uid: 25865 components: - flags: SessionSpecific type: MetaData @@ -168598,28 +169892,28 @@ entities: type: Transform - proto: VendingMachineBooze entities: - - uid: 25630 + - uid: 25866 components: - flags: SessionSpecific type: MetaData - pos: -41.5,-74.5 parent: 2 type: Transform - - uid: 25631 + - uid: 25867 components: - flags: SessionSpecific type: MetaData - pos: 18.5,10.5 parent: 2 type: Transform - - uid: 25632 + - uid: 25868 components: - flags: SessionSpecific type: MetaData - pos: 36.5,51.5 parent: 2 type: Transform - - uid: 25633 + - uid: 25869 components: - flags: SessionSpecific type: MetaData @@ -168628,7 +169922,7 @@ entities: type: Transform - proto: VendingMachineCargoDrobe entities: - - uid: 25634 + - uid: 25870 components: - flags: SessionSpecific type: MetaData @@ -168637,7 +169931,7 @@ entities: type: Transform - proto: VendingMachineCart entities: - - uid: 25635 + - uid: 25871 components: - flags: SessionSpecific type: MetaData @@ -168646,21 +169940,21 @@ entities: type: Transform - proto: VendingMachineChang entities: - - uid: 25636 + - uid: 25872 components: - flags: SessionSpecific type: MetaData - pos: 53.5,3.5 parent: 2 type: Transform - - uid: 25637 + - uid: 25873 components: - flags: SessionSpecific type: MetaData - pos: -2.5,-31.5 parent: 2 type: Transform - - uid: 25638 + - uid: 25874 components: - flags: SessionSpecific type: MetaData @@ -168669,7 +169963,7 @@ entities: type: Transform - proto: VendingMachineChapel entities: - - uid: 25639 + - uid: 25875 components: - flags: SessionSpecific type: MetaData @@ -168678,7 +169972,7 @@ entities: type: Transform - proto: VendingMachineChefDrobe entities: - - uid: 25640 + - uid: 25876 components: - flags: SessionSpecific type: MetaData @@ -168687,7 +169981,7 @@ entities: type: Transform - proto: VendingMachineChefvend entities: - - uid: 25641 + - uid: 25877 components: - flags: SessionSpecific type: MetaData @@ -168696,7 +169990,7 @@ entities: type: Transform - proto: VendingMachineChemDrobe entities: - - uid: 25642 + - uid: 25878 components: - flags: SessionSpecific type: MetaData @@ -168705,7 +169999,7 @@ entities: type: Transform - proto: VendingMachineChemicals entities: - - uid: 25643 + - uid: 25879 components: - flags: SessionSpecific type: MetaData @@ -168714,42 +170008,42 @@ entities: type: Transform - proto: VendingMachineCigs entities: - - uid: 25644 + - uid: 25880 components: - flags: SessionSpecific type: MetaData - pos: 2.5,58.5 parent: 2 type: Transform - - uid: 25645 + - uid: 25881 components: - flags: SessionSpecific type: MetaData - pos: -6.5,-34.5 parent: 2 type: Transform - - uid: 25646 + - uid: 25882 components: - flags: SessionSpecific type: MetaData - pos: 7.5,-2.5 parent: 2 type: Transform - - uid: 25647 + - uid: 25883 components: - flags: SessionSpecific type: MetaData - pos: 61.5,-13.5 parent: 2 type: Transform - - uid: 25648 + - uid: 25884 components: - flags: SessionSpecific type: MetaData - pos: -13.5,8.5 parent: 2 type: Transform - - uid: 25649 + - uid: 25885 components: - flags: SessionSpecific type: MetaData @@ -168758,7 +170052,7 @@ entities: type: Transform - proto: VendingMachineClothing entities: - - uid: 25650 + - uid: 25886 components: - flags: SessionSpecific type: MetaData @@ -168767,77 +170061,77 @@ entities: type: Transform - proto: VendingMachineCoffee entities: - - uid: 25651 + - uid: 25887 components: - flags: SessionSpecific type: MetaData - pos: -10.5,-52.5 parent: 2 type: Transform - - uid: 25652 + - uid: 25888 components: - flags: SessionSpecific type: MetaData - pos: 37.5,-17.5 parent: 2 type: Transform - - uid: 25653 + - uid: 25889 components: - flags: SessionSpecific type: MetaData - pos: 45.5,17.5 parent: 2 type: Transform - - uid: 25654 + - uid: 25890 components: - flags: SessionSpecific type: MetaData - pos: 51.5,3.5 parent: 2 type: Transform - - uid: 25655 + - uid: 25891 components: - flags: SessionSpecific type: MetaData - pos: 60.5,-13.5 parent: 2 type: Transform - - uid: 25656 + - uid: 25892 components: - flags: SessionSpecific type: MetaData - pos: -33.5,-22.5 parent: 2 type: Transform - - uid: 25657 + - uid: 25893 components: - flags: SessionSpecific type: MetaData - pos: -43.5,4.5 parent: 2 type: Transform - - uid: 25658 + - uid: 25894 components: - flags: SessionSpecific type: MetaData - pos: -0.5,43.5 parent: 2 type: Transform - - uid: 25659 + - uid: 25895 components: - flags: SessionSpecific type: MetaData - pos: -14.5,49.5 parent: 2 type: Transform - - uid: 25660 + - uid: 25896 components: - flags: SessionSpecific type: MetaData - pos: 51.5,-37.5 parent: 2 type: Transform - - uid: 25661 + - uid: 25897 components: - flags: SessionSpecific type: MetaData @@ -168846,21 +170140,21 @@ entities: type: Transform - proto: VendingMachineCola entities: - - uid: 25662 + - uid: 25898 components: - flags: SessionSpecific type: MetaData - pos: 8.5,-2.5 parent: 2 type: Transform - - uid: 25663 + - uid: 25899 components: - flags: SessionSpecific type: MetaData - pos: 27.5,-11.5 parent: 2 type: Transform - - uid: 25664 + - uid: 25900 components: - flags: SessionSpecific type: MetaData @@ -168869,14 +170163,14 @@ entities: type: Transform - proto: VendingMachineCondiments entities: - - uid: 25665 + - uid: 25901 components: - flags: SessionSpecific type: MetaData - pos: 8.5,10.5 parent: 2 type: Transform - - uid: 25666 + - uid: 25902 components: - flags: SessionSpecific type: MetaData @@ -168885,7 +170179,7 @@ entities: type: Transform - proto: VendingMachineDetDrobe entities: - - uid: 25667 + - uid: 25903 components: - flags: SessionSpecific type: MetaData @@ -168894,14 +170188,14 @@ entities: type: Transform - proto: VendingMachineDinnerware entities: - - uid: 25668 + - uid: 25904 components: - flags: SessionSpecific type: MetaData - pos: -0.5,5.5 parent: 2 type: Transform - - uid: 25669 + - uid: 25905 components: - flags: SessionSpecific type: MetaData @@ -168910,28 +170204,28 @@ entities: type: Transform - proto: VendingMachineDiscount entities: - - uid: 25670 + - uid: 25906 components: - flags: SessionSpecific type: MetaData - pos: -6.5,-32.5 parent: 2 type: Transform - - uid: 25671 + - uid: 25907 components: - flags: SessionSpecific type: MetaData - pos: -33.5,-23.5 parent: 2 type: Transform - - uid: 25672 + - uid: 25908 components: - flags: SessionSpecific type: MetaData - pos: -43.5,3.5 parent: 2 type: Transform - - uid: 25673 + - uid: 25909 components: - flags: SessionSpecific type: MetaData @@ -168940,7 +170234,7 @@ entities: type: Transform - proto: VendingMachineEngiDrobe entities: - - uid: 25674 + - uid: 25910 components: - flags: SessionSpecific type: MetaData @@ -168949,7 +170243,7 @@ entities: type: Transform - proto: VendingMachineEngivend entities: - - uid: 25675 + - uid: 25911 components: - flags: SessionSpecific type: MetaData @@ -168958,7 +170252,7 @@ entities: type: Transform - proto: VendingMachineGames entities: - - uid: 25676 + - uid: 25912 components: - flags: SessionSpecific type: MetaData @@ -168967,7 +170261,7 @@ entities: type: Transform - proto: VendingMachineGeneDrobe entities: - - uid: 25677 + - uid: 25913 components: - flags: SessionSpecific type: MetaData @@ -168976,7 +170270,7 @@ entities: type: Transform - proto: VendingMachineHappyHonk entities: - - uid: 25678 + - uid: 25914 components: - flags: SessionSpecific type: MetaData @@ -168985,7 +170279,7 @@ entities: type: Transform - proto: VendingMachineHydrobe entities: - - uid: 25679 + - uid: 25915 components: - flags: SessionSpecific type: MetaData @@ -168994,7 +170288,7 @@ entities: type: Transform - proto: VendingMachineJaniDrobe entities: - - uid: 25680 + - uid: 25916 components: - flags: SessionSpecific type: MetaData @@ -169003,7 +170297,7 @@ entities: type: Transform - proto: VendingMachineLawDrobe entities: - - uid: 25681 + - uid: 25917 components: - flags: SessionSpecific type: MetaData @@ -169012,14 +170306,14 @@ entities: type: Transform - proto: VendingMachineMedical entities: - - uid: 25682 + - uid: 25918 components: - flags: SessionSpecific type: MetaData - pos: -28.5,-75.5 parent: 2 type: Transform - - uid: 25683 + - uid: 25919 components: - flags: SessionSpecific type: MetaData @@ -169028,7 +170322,7 @@ entities: type: Transform - proto: VendingMachineMediDrobe entities: - - uid: 25684 + - uid: 25920 components: - flags: SessionSpecific type: MetaData @@ -169037,7 +170331,7 @@ entities: type: Transform - proto: VendingMachineNutri entities: - - uid: 25685 + - uid: 25921 components: - flags: SessionSpecific type: MetaData @@ -169046,14 +170340,14 @@ entities: type: Transform - proto: VendingMachineRestockSmokes entities: - - uid: 25686 + - uid: 25922 components: - pos: -26.439571,39.52594 parent: 2 type: Transform - proto: VendingMachineRoboDrobe entities: - - uid: 25687 + - uid: 25923 components: - flags: SessionSpecific type: MetaData @@ -169062,7 +170356,7 @@ entities: type: Transform - proto: VendingMachineRobotics entities: - - uid: 25688 + - uid: 25924 components: - flags: SessionSpecific type: MetaData @@ -169071,7 +170365,7 @@ entities: type: Transform - proto: VendingMachineSalvage entities: - - uid: 25689 + - uid: 25925 components: - flags: SessionSpecific type: MetaData @@ -169080,7 +170374,7 @@ entities: type: Transform - proto: VendingMachineSciDrobe entities: - - uid: 25690 + - uid: 25926 components: - flags: SessionSpecific type: MetaData @@ -169089,7 +170383,7 @@ entities: type: Transform - proto: VendingMachineSec entities: - - uid: 25691 + - uid: 25927 components: - flags: SessionSpecific type: MetaData @@ -169098,7 +170392,7 @@ entities: type: Transform - proto: VendingMachineSecDrobe entities: - - uid: 25692 + - uid: 25928 components: - flags: SessionSpecific type: MetaData @@ -169107,14 +170401,14 @@ entities: type: Transform - proto: VendingMachineSeeds entities: - - uid: 25693 + - uid: 25929 components: - flags: SessionSpecific type: MetaData - pos: -8.5,12.5 parent: 2 type: Transform - - uid: 25694 + - uid: 25930 components: - flags: SessionSpecific type: MetaData @@ -169123,7 +170417,7 @@ entities: type: Transform - proto: VendingMachineSeedsUnlocked entities: - - uid: 25695 + - uid: 25931 components: - flags: SessionSpecific type: MetaData @@ -169132,7 +170426,7 @@ entities: type: Transform - proto: VendingMachineSmartFridge entities: - - uid: 25696 + - uid: 25932 components: - flags: SessionSpecific type: MetaData @@ -169141,14 +170435,14 @@ entities: type: Transform - proto: VendingMachineSnack entities: - - uid: 25697 + - uid: 25933 components: - flags: SessionSpecific type: MetaData - pos: 2.5,57.5 parent: 2 type: Transform - - uid: 25698 + - uid: 25934 components: - flags: SessionSpecific type: MetaData @@ -169157,42 +170451,42 @@ entities: type: Transform - proto: VendingMachineSovietSoda entities: - - uid: 25699 + - uid: 25935 components: - flags: SessionSpecific type: MetaData - pos: -1.5,-8.5 parent: 2 type: Transform - - uid: 25700 + - uid: 25936 components: - flags: SessionSpecific type: MetaData - pos: 61.5,-15.5 parent: 2 type: Transform - - uid: 25701 + - uid: 25937 components: - flags: SessionSpecific type: MetaData - pos: -37.5,-72.5 parent: 2 type: Transform - - uid: 25702 + - uid: 25938 components: - flags: SessionSpecific type: MetaData - pos: -40.5,27.5 parent: 2 type: Transform - - uid: 25703 + - uid: 25939 components: - flags: SessionSpecific type: MetaData - pos: 44.5,-15.5 parent: 2 type: Transform - - uid: 25704 + - uid: 25940 components: - flags: SessionSpecific type: MetaData @@ -169201,7 +170495,7 @@ entities: type: Transform - proto: VendingMachineTankDispenserEngineering entities: - - uid: 25705 + - uid: 25941 components: - flags: SessionSpecific type: MetaData @@ -169210,42 +170504,42 @@ entities: type: Transform - proto: VendingMachineTankDispenserEVA entities: - - uid: 25706 + - uid: 25942 components: - flags: SessionSpecific type: MetaData - pos: 28.5,-14.5 parent: 2 type: Transform - - uid: 25707 + - uid: 25943 components: - flags: SessionSpecific type: MetaData - pos: -22.5,-36.5 parent: 2 type: Transform - - uid: 25708 + - uid: 25944 components: - flags: SessionSpecific type: MetaData - pos: -35.5,-51.5 parent: 2 type: Transform - - uid: 25709 + - uid: 25945 components: - flags: SessionSpecific type: MetaData - pos: -48.5,36.5 parent: 2 type: Transform - - uid: 25710 + - uid: 25946 components: - flags: SessionSpecific type: MetaData - pos: 28.5,47.5 parent: 2 type: Transform - - uid: 25711 + - uid: 25947 components: - flags: SessionSpecific type: MetaData @@ -169254,28 +170548,28 @@ entities: type: Transform - proto: VendingMachineTheater entities: - - uid: 25712 + - uid: 25948 components: - flags: SessionSpecific type: MetaData - pos: -8.5,-4.5 parent: 2 type: Transform - - uid: 25713 + - uid: 25949 components: - flags: SessionSpecific type: MetaData - pos: -20.5,31.5 parent: 2 type: Transform - - uid: 25714 + - uid: 25950 components: - flags: SessionSpecific type: MetaData - pos: 11.5,-82.5 parent: 2 type: Transform - - uid: 25715 + - uid: 25951 components: - flags: SessionSpecific type: MetaData @@ -169284,28 +170578,28 @@ entities: type: Transform - proto: VendingMachineVendomat entities: - - uid: 25716 + - uid: 25952 components: - flags: SessionSpecific type: MetaData - pos: 27.5,-12.5 parent: 2 type: Transform - - uid: 25717 + - uid: 25953 components: - flags: SessionSpecific type: MetaData - pos: -27.5,-70.5 parent: 2 type: Transform - - uid: 25718 + - uid: 25954 components: - flags: SessionSpecific type: MetaData - pos: -43.5,6.5 parent: 2 type: Transform - - uid: 25719 + - uid: 25955 components: - flags: SessionSpecific type: MetaData @@ -169314,7 +170608,7 @@ entities: type: Transform - proto: VendingMachineViroDrobe entities: - - uid: 25720 + - uid: 25956 components: - flags: SessionSpecific type: MetaData @@ -169323,7 +170617,7 @@ entities: type: Transform - proto: VendingMachineWinter entities: - - uid: 25721 + - uid: 25957 components: - flags: SessionSpecific type: MetaData @@ -169332,28 +170626,28 @@ entities: type: Transform - proto: VendingMachineYouTool entities: - - uid: 25722 + - uid: 25958 components: - flags: SessionSpecific type: MetaData - pos: 39.5,-53.5 parent: 2 type: Transform - - uid: 25723 + - uid: 25959 components: - flags: SessionSpecific type: MetaData - pos: -37.5,-4.5 parent: 2 type: Transform - - uid: 25724 + - uid: 25960 components: - flags: SessionSpecific type: MetaData - pos: -23.5,-19.5 parent: 2 type: Transform - - uid: 25725 + - uid: 25961 components: - flags: SessionSpecific type: MetaData @@ -169362,14252 +170656,14163 @@ entities: type: Transform - proto: VoiceTrigger entities: - - uid: 25726 + - uid: 25962 components: - pos: 65.475975,-28.50289 parent: 2 type: Transform - proto: WallmountTelevision entities: - - uid: 25727 + - uid: 25963 components: - pos: 17.5,8.5 parent: 2 type: Transform - proto: WallPlastitanium entities: - - uid: 25728 + - uid: 25964 components: - - pos: 62.5,-46.5 + - rot: -1.5707963267948966 rad + pos: -55.5,-90.5 parent: 2 type: Transform - - uid: 25729 + - uid: 25965 components: - - pos: -53.5,-84.5 + - rot: 1.5707963267948966 rad + pos: -53.5,-88.5 parent: 2 type: Transform - - uid: 25730 + - uid: 25966 components: - - pos: -55.5,-84.5 + - rot: 1.5707963267948966 rad + pos: -53.5,-86.5 parent: 2 type: Transform - - uid: 25731 + - uid: 25967 components: - - pos: -53.5,-85.5 + - rot: 1.5707963267948966 rad + pos: -52.5,-85.5 parent: 2 type: Transform - - uid: 25732 + - uid: 25968 components: - - pos: -51.5,-85.5 + - rot: 1.5707963267948966 rad + pos: -52.5,-89.5 parent: 2 type: Transform - - uid: 25733 + - uid: 25969 components: - - pos: -51.5,-86.5 + - pos: 62.5,-46.5 parent: 2 type: Transform - - uid: 25734 + - uid: 25970 components: - - rot: 1.5707963267948966 rad - pos: -50.5,-88.5 + - pos: -55.5,-84.5 parent: 2 type: Transform - - uid: 25735 + - uid: 25971 components: - - rot: 1.5707963267948966 rad - pos: -50.5,-86.5 + - pos: -53.5,-85.5 parent: 2 type: Transform - - uid: 25736 + - uid: 25972 components: - - pos: -51.5,-88.5 + - pos: -56.5,-89.5 parent: 2 type: Transform - - uid: 25737 + - uid: 25973 components: - - pos: -51.5,-89.5 + - pos: -57.5,-89.5 parent: 2 type: Transform - - uid: 25738 + - uid: 25974 components: - - pos: -56.5,-89.5 + - pos: -53.5,-89.5 parent: 2 type: Transform - - uid: 25739 + - uid: 25975 components: - - pos: -57.5,-89.5 + - rot: 3.141592653589793 rad + pos: -57.5,-86.5 parent: 2 type: Transform - - uid: 25740 + - uid: 25976 components: - - pos: -55.5,-90.5 + - rot: 3.141592653589793 rad + pos: -57.5,-88.5 parent: 2 type: Transform - - uid: 25741 + - uid: 25977 components: - - pos: -57.5,-87.5 + - pos: -57.5,-85.5 parent: 2 type: Transform - - uid: 25742 + - uid: 25978 components: - - pos: -53.5,-90.5 + - pos: -56.5,-85.5 parent: 2 type: Transform - - uid: 25743 + - uid: 25979 components: - - pos: -53.5,-89.5 + - rot: -1.5707963267948966 rad + pos: -53.5,-90.5 parent: 2 type: Transform - - uid: 25744 +- proto: WallPlastitaniumDiagonal + entities: + - uid: 25980 components: - - pos: -57.5,-86.5 + - rot: 1.5707963267948966 rad + pos: -58.5,-89.5 parent: 2 type: Transform - - uid: 25745 + - uid: 25981 components: - - pos: -57.5,-88.5 + - pos: -58.5,-85.5 parent: 2 type: Transform - - uid: 25746 + - uid: 25982 components: - - pos: -57.5,-85.5 + - rot: 3.141592653589793 rad + pos: -55.5,-85.5 parent: 2 type: Transform - - uid: 25747 + - uid: 25983 components: - - pos: -56.5,-85.5 + - rot: -1.5707963267948966 rad + pos: -55.5,-89.5 + parent: 2 + type: Transform + - uid: 25984 + components: + - rot: -1.5707963267948966 rad + pos: -53.5,-84.5 parent: 2 type: Transform - proto: WallReinforced entities: - - uid: 25748 + - uid: 25985 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-91.5 + parent: 2 + type: Transform + - uid: 25986 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-91.5 + parent: 2 + type: Transform + - uid: 25987 components: - pos: 12.5,26.5 parent: 2 type: Transform - - uid: 25749 + - uid: 25988 components: - pos: 11.5,27.5 parent: 2 type: Transform - - uid: 25750 + - uid: 25989 components: - pos: 7.5,26.5 parent: 2 type: Transform - - uid: 25751 + - uid: 25990 components: - rot: 3.141592653589793 rad pos: 24.5,-31.5 parent: 2 type: Transform - - uid: 25752 + - uid: 25991 components: - rot: 3.141592653589793 rad pos: 23.5,-31.5 parent: 2 type: Transform - - uid: 25753 + - uid: 25992 components: - rot: 3.141592653589793 rad pos: 23.5,-33.5 parent: 2 type: Transform - - uid: 25754 + - uid: 25993 components: - pos: 29.5,-33.5 parent: 2 type: Transform - - uid: 25755 + - uid: 25994 components: - pos: 6.5,-6.5 parent: 2 type: Transform - - uid: 25756 + - uid: 25995 components: - pos: -0.5,-7.5 parent: 2 type: Transform - - uid: 25757 + - uid: 25996 components: - rot: 1.5707963267948966 rad pos: 19.5,-31.5 parent: 2 type: Transform - - uid: 25758 + - uid: 25997 components: - pos: 0.5,-2.5 parent: 2 type: Transform - - uid: 25759 + - uid: 25998 components: - pos: 0.5,-3.5 parent: 2 type: Transform - - uid: 25760 + - uid: 25999 components: - pos: 0.5,-6.5 parent: 2 type: Transform - - uid: 25761 + - uid: 26000 components: - rot: 1.5707963267948966 rad pos: 0.5,-4.5 parent: 2 type: Transform - - uid: 25762 + - uid: 26001 components: - pos: -2.5,-6.5 parent: 2 type: Transform - - uid: 25763 + - uid: 26002 components: - rot: 1.5707963267948966 rad pos: 19.5,-30.5 parent: 2 type: Transform - - uid: 25764 + - uid: 26003 components: - pos: -0.5,-2.5 parent: 2 type: Transform - - uid: 25765 + - uid: 26004 components: - pos: 0.5,-7.5 parent: 2 type: Transform - - uid: 25766 + - uid: 26005 components: - rot: 1.5707963267948966 rad pos: 19.5,-29.5 parent: 2 type: Transform - - uid: 25767 + - uid: 26006 components: - pos: 4.5,-8.5 parent: 2 type: Transform - - uid: 25768 + - uid: 26007 components: - pos: -2.5,-4.5 parent: 2 type: Transform - - uid: 25769 + - uid: 26008 components: - pos: -1.5,-7.5 parent: 2 type: Transform - - uid: 25770 + - uid: 26009 components: - pos: -16.5,-56.5 parent: 2 type: Transform - - uid: 25771 + - uid: 26010 components: - pos: -23.5,-53.5 parent: 2 type: Transform - - uid: 25772 + - uid: 26011 components: - pos: 28.5,-40.5 parent: 2 type: Transform - - uid: 25773 + - uid: 26012 components: - pos: 2.5,-8.5 parent: 2 type: Transform - - uid: 25774 + - uid: 26013 components: - rot: 3.141592653589793 rad pos: 3.5,-8.5 parent: 2 type: Transform - - uid: 25775 + - uid: 26014 components: - pos: 5.5,-8.5 parent: 2 type: Transform - - uid: 25776 + - uid: 26015 components: - pos: 22.5,-40.5 parent: 2 type: Transform - - uid: 25777 + - uid: 26016 components: - pos: 0.5,-8.5 parent: 2 type: Transform - - uid: 25778 + - uid: 26017 components: - pos: -1.5,-2.5 parent: 2 type: Transform - - uid: 25779 + - uid: 26018 components: - pos: -38.5,-20.5 parent: 2 type: Transform - - uid: 25780 + - uid: 26019 components: - pos: 6.5,-4.5 parent: 2 type: Transform - - uid: 25781 + - uid: 26020 components: - pos: -2.5,-3.5 parent: 2 type: Transform - - uid: 25782 + - uid: 26021 components: - pos: 6.5,-5.5 parent: 2 type: Transform - - uid: 25783 + - uid: 26022 components: - pos: -2.5,-2.5 parent: 2 type: Transform - - uid: 25784 + - uid: 26023 components: - pos: -2.5,-7.5 parent: 2 type: Transform - - uid: 25785 + - uid: 26024 components: - pos: -38.5,-21.5 parent: 2 type: Transform - - uid: 25786 + - uid: 26025 components: - pos: -37.5,-21.5 parent: 2 type: Transform - - uid: 25787 + - uid: 26026 components: - pos: -36.5,-21.5 parent: 2 type: Transform - - uid: 25788 + - uid: 26027 components: - pos: -35.5,-21.5 parent: 2 type: Transform - - uid: 25789 + - uid: 26028 components: - pos: -34.5,-21.5 parent: 2 type: Transform - - uid: 25790 + - uid: 26029 components: - pos: -33.5,-21.5 parent: 2 type: Transform - - uid: 25791 + - uid: 26030 components: - pos: -33.5,-20.5 parent: 2 type: Transform - - uid: 25792 + - uid: 26031 components: - pos: -22.5,-53.5 parent: 2 type: Transform - - uid: 25793 + - uid: 26032 components: - pos: -23.5,-54.5 parent: 2 type: Transform - - uid: 25794 + - uid: 26033 components: - pos: -22.5,-56.5 parent: 2 type: Transform - - uid: 25795 + - uid: 26034 components: - pos: -23.5,-55.5 parent: 2 type: Transform - - uid: 25796 + - uid: 26035 components: - pos: -23.5,-56.5 parent: 2 type: Transform - - uid: 25797 + - uid: 26036 components: - rot: -1.5707963267948966 rad pos: -51.5,-33.5 parent: 2 type: Transform - - uid: 25798 + - uid: 26037 components: - rot: -1.5707963267948966 rad pos: -50.5,-33.5 parent: 2 type: Transform - - uid: 25799 + - uid: 26038 components: - rot: -1.5707963267948966 rad pos: -49.5,-33.5 parent: 2 type: Transform - - uid: 25800 + - uid: 26039 components: - rot: -1.5707963267948966 rad pos: -49.5,-24.5 parent: 2 type: Transform - - uid: 25801 + - uid: 26040 components: - rot: 1.5707963267948966 rad pos: -49.5,-25.5 parent: 2 type: Transform - - uid: 25802 + - uid: 26041 components: - rot: 1.5707963267948966 rad pos: -45.5,-24.5 parent: 2 type: Transform - - uid: 25803 + - uid: 26042 components: - rot: -1.5707963267948966 rad pos: -48.5,-24.5 parent: 2 type: Transform - - uid: 25804 + - uid: 26043 components: - rot: -1.5707963267948966 rad pos: -48.5,-33.5 parent: 2 type: Transform - - uid: 25805 + - uid: 26044 components: - rot: 1.5707963267948966 rad pos: -52.5,-35.5 parent: 2 type: Transform - - uid: 25806 + - uid: 26045 components: - pos: -42.5,-33.5 parent: 2 type: Transform - - uid: 25807 + - uid: 26046 components: - pos: -43.5,-33.5 parent: 2 type: Transform - - uid: 25808 + - uid: 26047 components: - pos: -45.5,-33.5 parent: 2 type: Transform - - uid: 25809 + - uid: 26048 components: - pos: -46.5,-24.5 parent: 2 type: Transform - - uid: 25810 + - uid: 26049 components: - rot: -1.5707963267948966 rad pos: -63.5,-33.5 parent: 2 type: Transform - - uid: 25811 + - uid: 26050 components: - rot: 3.141592653589793 rad pos: -41.5,-33.5 parent: 2 type: Transform - - uid: 25812 + - uid: 26051 components: - rot: 3.141592653589793 rad pos: -58.5,-43.5 parent: 2 type: Transform - - uid: 25813 + - uid: 26052 components: - rot: 1.5707963267948966 rad pos: -63.5,-38.5 parent: 2 type: Transform - - uid: 25814 + - uid: 26053 components: - rot: 1.5707963267948966 rad pos: -65.5,-35.5 parent: 2 type: Transform - - uid: 25815 + - uid: 26054 components: - rot: 1.5707963267948966 rad pos: -67.5,-35.5 parent: 2 type: Transform - - uid: 25816 + - uid: 26055 components: - rot: 1.5707963267948966 rad pos: -59.5,-38.5 parent: 2 type: Transform - - uid: 25817 + - uid: 26056 components: - pos: -44.5,-33.5 parent: 2 type: Transform - - uid: 25818 + - uid: 26057 components: - rot: 3.141592653589793 rad pos: -59.5,-44.5 parent: 2 type: Transform - - uid: 25819 + - uid: 26058 components: - pos: -61.5,-38.5 parent: 2 type: Transform - - uid: 25820 + - uid: 26059 components: - rot: 1.5707963267948966 rad pos: -59.5,-35.5 parent: 2 type: Transform - - uid: 25821 + - uid: 26060 components: - rot: 1.5707963267948966 rad pos: -66.5,-35.5 parent: 2 type: Transform - - uid: 25822 + - uid: 26061 components: - rot: 1.5707963267948966 rad pos: -64.5,-35.5 parent: 2 type: Transform - - uid: 25823 + - uid: 26062 components: - rot: 3.141592653589793 rad pos: -58.5,-44.5 parent: 2 type: Transform - - uid: 25824 + - uid: 26063 components: - pos: -64.5,-44.5 parent: 2 type: Transform - - uid: 25825 + - uid: 26064 components: - pos: -78.5,-44.5 parent: 2 type: Transform - - uid: 25826 + - uid: 26065 components: - pos: -76.5,-39.5 parent: 2 type: Transform - - uid: 25827 + - uid: 26066 components: - rot: 3.141592653589793 rad pos: -61.5,-26.5 parent: 2 type: Transform - - uid: 25828 + - uid: 26067 components: - pos: -71.5,-36.5 parent: 2 type: Transform - - uid: 25829 + - uid: 26068 components: - pos: -70.5,-36.5 parent: 2 type: Transform - - uid: 25830 + - uid: 26069 components: - pos: -69.5,-36.5 parent: 2 type: Transform - - uid: 25831 + - uid: 26070 components: - pos: -68.5,-36.5 parent: 2 type: Transform - - uid: 25832 + - uid: 26071 components: - pos: -74.5,-36.5 parent: 2 type: Transform - - uid: 25833 + - uid: 26072 components: - pos: -68.5,-35.5 parent: 2 type: Transform - - uid: 25834 + - uid: 26073 components: - pos: -68.5,-34.5 parent: 2 type: Transform - - uid: 25835 + - uid: 26074 components: - pos: -71.5,-34.5 parent: 2 type: Transform - - uid: 25836 + - uid: 26075 components: - rot: -1.5707963267948966 rad pos: -74.5,-43.5 parent: 2 type: Transform - - uid: 25837 + - uid: 26076 components: - rot: -1.5707963267948966 rad pos: -74.5,-39.5 parent: 2 type: Transform - - uid: 25838 + - uid: 26077 components: - rot: -1.5707963267948966 rad pos: -74.5,-38.5 parent: 2 type: Transform - - uid: 25839 + - uid: 26078 components: - rot: -1.5707963267948966 rad pos: -74.5,-37.5 parent: 2 type: Transform - - uid: 25840 + - uid: 26079 components: - pos: -76.5,-30.5 parent: 2 type: Transform - - uid: 25841 + - uid: 26080 components: - pos: -77.5,-30.5 parent: 2 type: Transform - - uid: 25842 + - uid: 26081 components: - pos: -64.5,-46.5 parent: 2 type: Transform - - uid: 25843 + - uid: 26082 components: - rot: 1.5707963267948966 rad pos: -64.5,-38.5 parent: 2 type: Transform - - uid: 25844 + - uid: 26083 components: - rot: -1.5707963267948966 rad pos: -78.5,-43.5 parent: 2 type: Transform - - uid: 25845 + - uid: 26084 components: - rot: -1.5707963267948966 rad pos: -78.5,-39.5 parent: 2 type: Transform - - uid: 25846 + - uid: 26085 components: - pos: -2.5,16.5 parent: 2 type: Transform - - uid: 25847 + - uid: 26086 components: - pos: 52.5,-88.5 parent: 2 type: Transform - - uid: 25848 + - uid: 26087 components: - pos: 51.5,-88.5 parent: 2 type: Transform - - uid: 25849 + - uid: 26088 components: - pos: 50.5,-88.5 parent: 2 type: Transform - - uid: 25850 + - uid: 26089 components: - pos: 50.5,-90.5 parent: 2 type: Transform - - uid: 25851 + - uid: 26090 components: - pos: 51.5,-90.5 parent: 2 type: Transform - - uid: 25852 + - uid: 26091 components: - pos: 52.5,-90.5 parent: 2 type: Transform - - uid: 25853 + - uid: 26092 components: - pos: 50.5,-83.5 parent: 2 type: Transform - - uid: 25854 + - uid: 26093 components: - pos: 52.5,-81.5 parent: 2 type: Transform - - uid: 25855 + - uid: 26094 components: - pos: 50.5,-81.5 parent: 2 type: Transform - - uid: 25856 + - uid: 26095 components: - pos: 51.5,-83.5 parent: 2 type: Transform - - uid: 25857 + - uid: 26096 components: - pos: 51.5,-81.5 parent: 2 type: Transform - - uid: 25858 + - uid: 26097 components: - pos: 52.5,-83.5 parent: 2 type: Transform - - uid: 25859 + - uid: 26098 components: - pos: 70.5,-26.5 parent: 2 type: Transform - - uid: 25860 + - uid: 26099 components: - pos: 64.5,-29.5 parent: 2 type: Transform - - uid: 25861 + - uid: 26100 components: - pos: 64.5,-28.5 parent: 2 type: Transform - - uid: 25862 + - uid: 26101 components: - pos: 66.5,-26.5 parent: 2 type: Transform - - uid: 25863 + - uid: 26102 components: - pos: 67.5,-26.5 parent: 2 type: Transform - - uid: 25864 + - uid: 26103 components: - rot: -1.5707963267948966 rad pos: -48.5,41.5 parent: 2 type: Transform - - uid: 25865 + - uid: 26104 components: - rot: -1.5707963267948966 rad pos: -49.5,41.5 parent: 2 type: Transform - - uid: 25866 + - uid: 26105 components: - rot: -1.5707963267948966 rad pos: -50.5,41.5 parent: 2 type: Transform - - uid: 25867 + - uid: 26106 components: - rot: -1.5707963267948966 rad pos: -50.5,45.5 parent: 2 type: Transform - - uid: 25868 + - uid: 26107 components: - rot: -1.5707963267948966 rad pos: -50.5,46.5 parent: 2 type: Transform - - uid: 25869 + - uid: 26108 components: - rot: -1.5707963267948966 rad pos: -53.5,41.5 parent: 2 type: Transform - - uid: 25870 + - uid: 26109 components: - rot: -1.5707963267948966 rad pos: -52.5,41.5 parent: 2 type: Transform - - uid: 25871 + - uid: 26110 components: - rot: -1.5707963267948966 rad pos: -51.5,41.5 parent: 2 type: Transform - - uid: 25872 + - uid: 26111 components: - rot: -1.5707963267948966 rad pos: -51.5,44.5 parent: 2 type: Transform - - uid: 25873 + - uid: 26112 components: - rot: -1.5707963267948966 rad pos: -52.5,44.5 parent: 2 type: Transform - - uid: 25874 + - uid: 26113 components: - rot: -1.5707963267948966 rad pos: -53.5,44.5 parent: 2 type: Transform - - uid: 25875 + - uid: 26114 components: - rot: -1.5707963267948966 rad pos: -48.5,45.5 parent: 2 type: Transform - - uid: 25876 + - uid: 26115 components: - rot: -1.5707963267948966 rad pos: -43.5,40.5 parent: 2 type: Transform - - uid: 25877 + - uid: 26116 components: - rot: -1.5707963267948966 rad pos: -44.5,40.5 parent: 2 type: Transform - - uid: 25878 + - uid: 26117 components: - rot: 1.5707963267948966 rad pos: 29.5,-64.5 parent: 2 type: Transform - - uid: 25879 + - uid: 26118 components: - rot: 3.141592653589793 rad pos: 34.5,-10.5 parent: 2 type: Transform - - uid: 25880 + - uid: 26119 components: - rot: 3.141592653589793 rad pos: 23.5,-57.5 parent: 2 type: Transform - - uid: 25881 + - uid: 26120 components: - pos: 11.5,-30.5 parent: 2 type: Transform - - uid: 25882 + - uid: 26121 components: - rot: -1.5707963267948966 rad pos: 37.5,3.5 parent: 2 type: Transform - - uid: 25883 + - uid: 26122 components: - pos: 72.5,-42.5 parent: 2 type: Transform - - uid: 25884 + - uid: 26123 components: - pos: 71.5,-42.5 parent: 2 type: Transform - - uid: 25885 + - uid: 26124 components: - rot: -1.5707963267948966 rad pos: 36.5,9.5 parent: 2 type: Transform - - uid: 25886 + - uid: 26125 components: - rot: -1.5707963267948966 rad pos: 0.5,-79.5 parent: 2 type: Transform - - uid: 25887 + - uid: 26126 components: - rot: 3.141592653589793 rad pos: 26.5,-61.5 parent: 2 type: Transform - - uid: 25888 + - uid: 26127 components: - rot: 3.141592653589793 rad pos: 30.5,-9.5 parent: 2 type: Transform - - uid: 25889 + - uid: 26128 components: - rot: 3.141592653589793 rad pos: 33.5,-61.5 parent: 2 type: Transform - - uid: 25890 + - uid: 26129 components: - rot: -1.5707963267948966 rad pos: 65.5,-38.5 parent: 2 type: Transform - - uid: 25891 + - uid: 26130 components: - rot: -1.5707963267948966 rad pos: 37.5,6.5 parent: 2 type: Transform - - uid: 25892 + - uid: 26131 components: - pos: 66.5,-42.5 parent: 2 type: Transform - - uid: 25893 + - uid: 26132 components: - rot: 3.141592653589793 rad pos: 24.5,-61.5 parent: 2 type: Transform - - uid: 25894 + - uid: 26133 components: - pos: 67.5,-42.5 parent: 2 type: Transform - - uid: 25895 + - uid: 26134 components: - rot: -1.5707963267948966 rad pos: 33.5,12.5 parent: 2 type: Transform - - uid: 25896 + - uid: 26135 components: - rot: -1.5707963267948966 rad pos: -25.5,-83.5 parent: 2 type: Transform - - uid: 25897 + - uid: 26136 components: - pos: 30.5,-26.5 parent: 2 type: Transform - - uid: 25898 + - uid: 26137 components: - pos: 19.5,-26.5 parent: 2 type: Transform - - uid: 25899 + - uid: 26138 components: - pos: 18.5,-67.5 parent: 2 type: Transform - - uid: 25900 + - uid: 26139 components: - rot: -1.5707963267948966 rad pos: 34.5,-83.5 parent: 2 type: Transform - - uid: 25901 + - uid: 26140 components: - rot: 3.141592653589793 rad pos: 26.5,24.5 parent: 2 type: Transform - - uid: 25902 + - uid: 26141 components: - pos: -16.5,-80.5 parent: 2 type: Transform - - uid: 25903 + - uid: 26142 components: - pos: -13.5,-80.5 parent: 2 type: Transform - - uid: 25904 + - uid: 26143 components: - rot: 3.141592653589793 rad pos: 31.5,-19.5 parent: 2 type: Transform - - uid: 25905 + - uid: 26144 components: - pos: 38.5,17.5 parent: 2 type: Transform - - uid: 25906 + - uid: 26145 components: - pos: 30.5,9.5 parent: 2 type: Transform - - uid: 25907 + - uid: 26146 components: - pos: -14.5,-80.5 parent: 2 type: Transform - - uid: 25908 + - uid: 26147 components: - pos: -16.5,-74.5 parent: 2 type: Transform - - uid: 25909 + - uid: 26148 components: - pos: -13.5,-75.5 parent: 2 type: Transform - - uid: 25910 + - uid: 26149 components: - rot: -1.5707963267948966 rad pos: -31.5,-80.5 parent: 2 type: Transform - - uid: 25911 + - uid: 26150 components: - pos: -27.5,-84.5 parent: 2 type: Transform - - uid: 25912 + - uid: 26151 components: - pos: -27.5,-85.5 parent: 2 type: Transform - - uid: 25913 + - uid: 26152 components: - rot: -1.5707963267948966 rad pos: -18.5,-83.5 parent: 2 type: Transform - - uid: 25914 - components: - - pos: -27.5,-90.5 - parent: 2 - type: Transform - - uid: 25915 + - uid: 26153 components: - rot: -1.5707963267948966 rad pos: 43.5,49.5 parent: 2 type: Transform - - uid: 25916 + - uid: 26154 components: - rot: 3.141592653589793 rad pos: 24.5,24.5 parent: 2 type: Transform - - uid: 25917 + - uid: 26155 components: - rot: 1.5707963267948966 rad pos: 27.5,19.5 parent: 2 type: Transform - - uid: 25918 + - uid: 26156 components: - rot: 1.5707963267948966 rad pos: 33.5,32.5 parent: 2 type: Transform - - uid: 25919 + - uid: 26157 components: - rot: 1.5707963267948966 rad pos: 16.5,15.5 parent: 2 type: Transform - - uid: 25920 + - uid: 26158 components: - rot: 3.141592653589793 rad pos: 39.5,12.5 parent: 2 type: Transform - - uid: 25921 + - uid: 26159 components: - pos: 42.5,51.5 parent: 2 type: Transform - - uid: 25922 + - uid: 26160 components: - pos: -15.5,-2.5 parent: 2 type: Transform - - uid: 25923 + - uid: 26161 components: - pos: -18.5,-86.5 parent: 2 type: Transform - - uid: 25924 + - uid: 26162 components: - pos: -22.5,-48.5 parent: 2 type: Transform - - uid: 25925 + - uid: 26163 components: - pos: 3.5,15.5 parent: 2 type: Transform - - uid: 25926 + - uid: 26164 components: - pos: 7.5,-71.5 parent: 2 type: Transform - - uid: 25927 - components: - - pos: -1.5,-30.5 - parent: 2 - type: Transform - - uid: 25928 + - uid: 26165 components: - pos: -23.5,5.5 parent: 2 type: Transform - - uid: 25929 + - uid: 26166 components: - pos: 44.5,-25.5 parent: 2 type: Transform - - uid: 25930 + - uid: 26167 components: - pos: 49.5,-25.5 parent: 2 type: Transform - - uid: 25931 + - uid: 26168 components: - pos: 49.5,-23.5 parent: 2 type: Transform - - uid: 25932 + - uid: 26169 components: - pos: 39.5,-24.5 parent: 2 type: Transform - - uid: 25933 + - uid: 26170 components: - pos: 27.5,26.5 parent: 2 type: Transform - - uid: 25934 + - uid: 26171 components: - pos: 31.5,26.5 parent: 2 type: Transform - - uid: 25935 + - uid: 26172 components: - pos: 31.5,25.5 parent: 2 type: Transform - - uid: 25936 + - uid: 26173 components: - rot: 3.141592653589793 rad pos: 30.5,33.5 parent: 2 type: Transform - - uid: 25937 + - uid: 26174 components: - rot: -1.5707963267948966 rad pos: 4.5,-18.5 parent: 2 type: Transform - - uid: 25938 + - uid: 26175 components: - pos: 19.5,15.5 parent: 2 type: Transform - - uid: 25939 + - uid: 26176 components: - rot: -1.5707963267948966 rad pos: 20.5,-31.5 parent: 2 type: Transform - - uid: 25940 + - uid: 26177 components: - pos: 3.5,18.5 parent: 2 type: Transform - - uid: 25941 + - uid: 26178 components: - pos: 4.5,18.5 parent: 2 type: Transform - - uid: 25942 + - uid: 26179 components: - pos: -15.5,-0.5 parent: 2 type: Transform - - uid: 25943 + - uid: 26180 components: - pos: 13.5,15.5 parent: 2 type: Transform - - uid: 25944 + - uid: 26181 components: - pos: -23.5,-1.5 parent: 2 type: Transform - - uid: 25945 + - uid: 26182 components: - pos: -23.5,-3.5 parent: 2 type: Transform - - uid: 25946 + - uid: 26183 components: - pos: -20.5,-3.5 parent: 2 type: Transform - - uid: 25947 + - uid: 26184 components: - pos: -20.5,-2.5 parent: 2 type: Transform - - uid: 25948 + - uid: 26185 components: - pos: -18.5,-1.5 parent: 2 type: Transform - - uid: 25949 + - uid: 26186 components: - rot: 3.141592653589793 rad pos: 29.5,-20.5 parent: 2 type: Transform - - uid: 25950 + - uid: 26187 components: - rot: -1.5707963267948966 rad pos: 44.5,49.5 parent: 2 type: Transform - - uid: 25951 + - uid: 26188 components: - rot: -1.5707963267948966 rad pos: 43.5,42.5 parent: 2 type: Transform - - uid: 25952 + - uid: 26189 components: - rot: -1.5707963267948966 rad pos: 38.5,42.5 parent: 2 type: Transform - - uid: 25953 + - uid: 26190 components: - rot: -1.5707963267948966 rad pos: 34.5,42.5 parent: 2 type: Transform - - uid: 25954 + - uid: 26191 components: - rot: -1.5707963267948966 rad pos: 33.5,43.5 parent: 2 type: Transform - - uid: 25955 + - uid: 26192 components: - pos: 35.5,50.5 parent: 2 type: Transform - - uid: 25956 + - uid: 26193 components: - pos: 35.5,52.5 parent: 2 type: Transform - - uid: 25957 + - uid: 26194 components: - pos: 36.5,52.5 parent: 2 type: Transform - - uid: 25958 + - uid: 26195 components: - pos: 34.5,48.5 parent: 2 type: Transform - - uid: 25959 + - uid: 26196 components: - pos: -15.5,-1.5 parent: 2 type: Transform - - uid: 25960 + - uid: 26197 components: - rot: -1.5707963267948966 rad pos: 36.5,11.5 parent: 2 type: Transform - - uid: 25961 + - uid: 26198 components: - rot: 3.141592653589793 rad pos: 33.5,-19.5 parent: 2 type: Transform - - uid: 25962 + - uid: 26199 components: - rot: 1.5707963267948966 rad pos: 29.5,-63.5 parent: 2 type: Transform - - uid: 25963 + - uid: 26200 components: - rot: -1.5707963267948966 rad pos: 39.5,3.5 parent: 2 type: Transform - - uid: 25964 + - uid: 26201 components: - rot: -1.5707963267948966 rad pos: 1.5,-76.5 parent: 2 type: Transform - - uid: 25965 + - uid: 26202 components: - rot: 3.141592653589793 rad pos: -15.5,5.5 parent: 2 type: Transform - - uid: 25966 + - uid: 26203 components: - rot: 3.141592653589793 rad pos: 17.5,-21.5 parent: 2 type: Transform - - uid: 25967 + - uid: 26204 components: - rot: 3.141592653589793 rad pos: 17.5,-22.5 parent: 2 type: Transform - - uid: 25968 + - uid: 26205 components: - rot: 3.141592653589793 rad pos: 30.5,-19.5 parent: 2 type: Transform - - uid: 25969 + - uid: 26206 components: - pos: 28.5,-13.5 parent: 2 type: Transform - - uid: 25970 + - uid: 26207 components: - rot: 3.141592653589793 rad pos: 20.5,-20.5 parent: 2 type: Transform - - uid: 25971 + - uid: 26208 components: - rot: 3.141592653589793 rad pos: 17.5,-23.5 parent: 2 type: Transform - - uid: 25972 + - uid: 26209 components: - rot: -1.5707963267948966 rad pos: -0.5,-84.5 parent: 2 type: Transform - - uid: 25973 + - uid: 26210 components: - rot: 3.141592653589793 rad pos: 28.5,-61.5 parent: 2 type: Transform - - uid: 25974 + - uid: 26211 components: - pos: -23.5,1.5 parent: 2 type: Transform - - uid: 25975 + - uid: 26212 components: - pos: 8.5,-71.5 parent: 2 type: Transform - - uid: 25976 + - uid: 26213 components: - pos: 5.5,-80.5 parent: 2 type: Transform - - uid: 25977 + - uid: 26214 components: - rot: -1.5707963267948966 rad pos: 0.5,-77.5 parent: 2 type: Transform - - uid: 25978 + - uid: 26215 components: - pos: -18.5,-2.5 parent: 2 type: Transform - - uid: 25979 + - uid: 26216 components: - rot: -1.5707963267948966 rad pos: 33.5,10.5 parent: 2 type: Transform - - uid: 25980 + - uid: 26217 components: - rot: -1.5707963267948966 rad pos: -28.5,-81.5 parent: 2 type: Transform - - uid: 25981 + - uid: 26218 components: - rot: -1.5707963267948966 rad pos: -19.5,-81.5 parent: 2 type: Transform - - uid: 25982 + - uid: 26219 components: - rot: -1.5707963267948966 rad pos: -24.5,-81.5 parent: 2 type: Transform - - uid: 25983 + - uid: 26220 components: - pos: -13.5,-78.5 parent: 2 type: Transform - - uid: 25984 + - uid: 26221 components: - pos: -21.5,-57.5 parent: 2 type: Transform - - uid: 25985 + - uid: 26222 components: - pos: 29.5,33.5 parent: 2 type: Transform - - uid: 25986 + - uid: 26223 components: - rot: 1.5707963267948966 rad pos: 38.5,-17.5 parent: 2 type: Transform - - uid: 25987 + - uid: 26224 components: - rot: 1.5707963267948966 rad pos: 37.5,-19.5 parent: 2 type: Transform - - uid: 25988 + - uid: 26225 components: - rot: 3.141592653589793 rad pos: 3.5,-18.5 parent: 2 type: Transform - - uid: 25989 + - uid: 26226 components: - pos: 33.5,-28.5 parent: 2 type: Transform - - uid: 25990 + - uid: 26227 components: - pos: 20.5,-33.5 parent: 2 type: Transform - - uid: 25991 + - uid: 26228 components: - pos: 33.5,-29.5 parent: 2 type: Transform - - uid: 25992 + - uid: 26229 components: - pos: 40.5,-30.5 parent: 2 type: Transform - - uid: 25993 + - uid: 26230 components: - pos: 3.5,22.5 parent: 2 type: Transform - - uid: 25994 + - uid: 26231 components: - pos: 40.5,-31.5 parent: 2 type: Transform - - uid: 25995 + - uid: 26232 components: - pos: 40.5,-29.5 parent: 2 type: Transform - - uid: 25996 + - uid: 26233 components: - pos: 32.5,-26.5 parent: 2 type: Transform - - uid: 25997 + - uid: 26234 components: - rot: 3.141592653589793 rad pos: 42.5,17.5 parent: 2 type: Transform - - uid: 25998 + - uid: 26235 components: - pos: 43.5,16.5 parent: 2 type: Transform - - uid: 25999 + - uid: 26236 components: - pos: 43.5,9.5 parent: 2 type: Transform - - uid: 26000 + - uid: 26237 components: - rot: 3.141592653589793 rad pos: 43.5,3.5 parent: 2 type: Transform - - uid: 26001 + - uid: 26238 components: - pos: 28.5,-10.5 parent: 2 type: Transform - - uid: 26002 + - uid: 26239 components: - rot: 3.141592653589793 rad pos: 13.5,-23.5 parent: 2 type: Transform - - uid: 26003 + - uid: 26240 components: - rot: 3.141592653589793 rad pos: 13.5,-20.5 parent: 2 type: Transform - - uid: 26004 + - uid: 26241 components: - rot: 3.141592653589793 rad pos: 13.5,-19.5 parent: 2 type: Transform - - uid: 26005 + - uid: 26242 components: - rot: 3.141592653589793 rad pos: 13.5,-17.5 parent: 2 type: Transform - - uid: 26006 + - uid: 26243 components: - rot: 3.141592653589793 rad pos: 13.5,-16.5 parent: 2 type: Transform - - uid: 26007 + - uid: 26244 components: - rot: 3.141592653589793 rad pos: 13.5,-15.5 parent: 2 type: Transform - - uid: 26008 + - uid: 26245 components: - pos: 25.5,-26.5 parent: 2 type: Transform - - uid: 26009 + - uid: 26246 components: - pos: 21.5,-26.5 parent: 2 type: Transform - - uid: 26010 + - uid: 26247 components: - rot: 1.5707963267948966 rad pos: 33.5,-33.5 parent: 2 type: Transform - - uid: 26011 + - uid: 26248 components: - rot: -1.5707963267948966 rad pos: 38.5,6.5 parent: 2 type: Transform - - uid: 26012 + - uid: 26249 components: - rot: -1.5707963267948966 rad pos: 39.5,6.5 parent: 2 type: Transform - - uid: 26013 + - uid: 26250 components: - rot: -1.5707963267948966 rad pos: 38.5,3.5 parent: 2 type: Transform - - uid: 26014 + - uid: 26251 components: - pos: 29.5,-9.5 parent: 2 type: Transform - - uid: 26015 + - uid: 26252 components: - rot: 3.141592653589793 rad pos: -15.5,-3.5 parent: 2 type: Transform - - uid: 26016 + - uid: 26253 components: - rot: 3.141592653589793 rad pos: -16.5,5.5 parent: 2 type: Transform - - uid: 26017 + - uid: 26254 components: - rot: -1.5707963267948966 rad pos: 36.5,10.5 parent: 2 type: Transform - - uid: 26018 + - uid: 26255 components: - pos: 38.5,-24.5 parent: 2 type: Transform - - uid: 26019 + - uid: 26256 components: - pos: -15.5,-2.5 parent: 2 type: Transform - - uid: 26020 + - uid: 26257 components: - pos: 41.5,52.5 parent: 2 type: Transform - - uid: 26021 + - uid: 26258 components: - rot: -1.5707963267948966 rad pos: 5.5,-24.5 parent: 2 type: Transform - - uid: 26022 + - uid: 26259 components: - rot: 3.141592653589793 rad pos: 27.5,24.5 parent: 2 type: Transform - - uid: 26023 + - uid: 26260 components: - rot: -1.5707963267948966 rad pos: 9.5,23.5 parent: 2 type: Transform - - uid: 26024 + - uid: 26261 components: - pos: -0.5,15.5 parent: 2 type: Transform - - uid: 26025 + - uid: 26262 components: - rot: -1.5707963267948966 rad pos: 5.5,23.5 parent: 2 type: Transform - - uid: 26026 + - uid: 26263 components: - rot: -1.5707963267948966 rad pos: 4.5,23.5 parent: 2 type: Transform - - uid: 26027 + - uid: 26264 components: - rot: -1.5707963267948966 rad pos: 3.5,23.5 parent: 2 type: Transform - - uid: 26028 + - uid: 26265 components: - pos: 42.5,50.5 parent: 2 type: Transform - - uid: 26029 + - uid: 26266 components: - pos: 27.5,-15.5 parent: 2 type: Transform - - uid: 26030 + - uid: 26267 components: - pos: 2.5,22.5 parent: 2 type: Transform - - uid: 26031 + - uid: 26268 components: - pos: 1.5,22.5 parent: 2 type: Transform - - uid: 26032 + - uid: 26269 components: - pos: -2.5,-30.5 parent: 2 type: Transform - - uid: 26033 + - uid: 26270 components: - pos: 1.5,-39.5 parent: 2 type: Transform - - uid: 26034 + - uid: 26271 components: - pos: 5.5,-40.5 parent: 2 type: Transform - - uid: 26035 + - uid: 26272 components: - rot: 3.141592653589793 rad pos: 3.5,12.5 parent: 2 type: Transform - - uid: 26036 + - uid: 26273 components: - rot: -1.5707963267948966 rad pos: 63.5,18.5 parent: 2 type: Transform - - uid: 26037 + - uid: 26274 components: - rot: -1.5707963267948966 rad pos: 30.5,11.5 parent: 2 type: Transform - - uid: 26038 + - uid: 26275 components: - pos: 7.5,-24.5 parent: 2 type: Transform - - uid: 26039 + - uid: 26276 components: - pos: 9.5,-24.5 parent: 2 type: Transform - - uid: 26040 + - uid: 26277 components: - rot: 3.141592653589793 rad pos: 3.5,-24.5 parent: 2 type: Transform - - uid: 26041 + - uid: 26278 components: - pos: 1.5,-29.5 parent: 2 type: Transform - - uid: 26042 + - uid: 26279 components: - pos: 27.5,-14.5 parent: 2 type: Transform - - uid: 26043 + - uid: 26280 components: - rot: -1.5707963267948966 rad pos: -16.5,-57.5 parent: 2 type: Transform - - uid: 26044 + - uid: 26281 components: - rot: 3.141592653589793 rad pos: 21.5,-33.5 parent: 2 type: Transform - - uid: 26045 + - uid: 26282 components: - pos: 13.5,-24.5 parent: 2 type: Transform - - uid: 26046 + - uid: 26283 components: - pos: 37.5,-24.5 parent: 2 type: Transform - - uid: 26047 + - uid: 26284 components: - rot: -1.5707963267948966 rad pos: 36.5,12.5 parent: 2 type: Transform - - uid: 26048 + - uid: 26285 components: - pos: 3.5,19.5 parent: 2 type: Transform - - uid: 26049 + - uid: 26286 components: - pos: 3.5,21.5 parent: 2 type: Transform - - uid: 26050 + - uid: 26287 components: - pos: 13.5,19.5 parent: 2 type: Transform - - uid: 26051 + - uid: 26288 components: - pos: 13.5,20.5 parent: 2 type: Transform - - uid: 26052 + - uid: 26289 components: - pos: 13.5,21.5 parent: 2 type: Transform - - uid: 26053 + - uid: 26290 components: - pos: 20.5,-38.5 parent: 2 type: Transform - - uid: 26054 + - uid: 26291 components: - pos: 6.5,-24.5 parent: 2 type: Transform - - uid: 26055 + - uid: 26292 components: - pos: -13.5,-77.5 parent: 2 type: Transform - - uid: 26056 + - uid: 26293 components: - rot: -1.5707963267948966 rad pos: -27.5,-83.5 parent: 2 type: Transform - - uid: 26057 + - uid: 26294 components: - rot: -1.5707963267948966 rad pos: -24.5,-82.5 parent: 2 type: Transform - - uid: 26058 + - uid: 26295 components: - rot: -1.5707963267948966 rad pos: -27.5,-81.5 parent: 2 type: Transform - - uid: 26059 + - uid: 26296 components: - pos: 1.5,-32.5 parent: 2 type: Transform - - uid: 26060 + - uid: 26297 components: - rot: 1.5707963267948966 rad pos: 22.5,25.5 parent: 2 type: Transform - - uid: 26061 + - uid: 26298 components: - rot: -1.5707963267948966 rad pos: 33.5,11.5 parent: 2 type: Transform - - uid: 26062 + - uid: 26299 components: - rot: -1.5707963267948966 rad pos: 30.5,13.5 parent: 2 type: Transform - - uid: 26063 + - uid: 26300 components: - rot: 3.141592653589793 rad pos: 23.5,-55.5 parent: 2 type: Transform - - uid: 26064 + - uid: 26301 components: - rot: 3.141592653589793 rad pos: 23.5,-56.5 parent: 2 type: Transform - - uid: 26065 + - uid: 26302 components: - pos: 18.5,-64.5 parent: 2 type: Transform - - uid: 26066 + - uid: 26303 components: - pos: 15.5,-62.5 parent: 2 type: Transform - - uid: 26067 + - uid: 26304 components: - pos: 15.5,-61.5 parent: 2 type: Transform - - uid: 26068 + - uid: 26305 components: - pos: 17.5,-56.5 parent: 2 type: Transform - - uid: 26069 + - uid: 26306 components: - pos: 15.5,-60.5 parent: 2 type: Transform - - uid: 26070 + - uid: 26307 components: - pos: 15.5,-59.5 parent: 2 type: Transform - - uid: 26071 + - uid: 26308 components: - pos: 16.5,-59.5 parent: 2 type: Transform - - uid: 26072 + - uid: 26309 components: - pos: 16.5,-58.5 parent: 2 type: Transform - - uid: 26073 + - uid: 26310 components: - pos: 16.5,-57.5 parent: 2 type: Transform - - uid: 26074 + - uid: 26311 components: - pos: 16.5,-56.5 parent: 2 type: Transform - - uid: 26075 + - uid: 26312 components: - pos: 17.5,-67.5 parent: 2 type: Transform - - uid: 26076 + - uid: 26313 components: - rot: 3.141592653589793 rad pos: 22.5,24.5 parent: 2 type: Transform - - uid: 26077 + - uid: 26314 components: - rot: 3.141592653589793 rad pos: 27.5,-61.5 parent: 2 type: Transform - - uid: 26078 + - uid: 26315 components: - rot: 1.5707963267948966 rad pos: 32.5,-64.5 parent: 2 type: Transform - - uid: 26079 + - uid: 26316 components: - rot: 3.141592653589793 rad pos: 34.5,-14.5 parent: 2 type: Transform - - uid: 26080 + - uid: 26317 components: - pos: 40.5,-23.5 parent: 2 type: Transform - - uid: 26081 + - uid: 26318 components: - pos: 40.5,-24.5 parent: 2 type: Transform - - uid: 26082 + - uid: 26319 components: - pos: 49.5,-24.5 parent: 2 type: Transform - - uid: 26083 + - uid: 26320 components: - pos: 43.5,-26.5 parent: 2 type: Transform - - uid: 26084 + - uid: 26321 components: - pos: 17.5,-63.5 parent: 2 type: Transform - - uid: 26085 + - uid: 26322 components: - rot: 3.141592653589793 rad pos: 23.5,24.5 parent: 2 type: Transform - - uid: 26086 + - uid: 26323 components: - pos: -2.5,18.5 parent: 2 type: Transform - - uid: 26087 + - uid: 26324 components: - rot: -1.5707963267948966 rad pos: -16.5,-58.5 parent: 2 type: Transform - - uid: 26088 + - uid: 26325 components: - rot: -1.5707963267948966 rad pos: 30.5,10.5 parent: 2 type: Transform - - uid: 26089 + - uid: 26326 components: - pos: 39.5,17.5 parent: 2 type: Transform - - uid: 26090 + - uid: 26327 components: - pos: 37.5,17.5 parent: 2 type: Transform - - uid: 26091 + - uid: 26328 components: - rot: -1.5707963267948966 rad pos: 33.5,18.5 parent: 2 type: Transform - - uid: 26092 + - uid: 26329 components: - rot: -1.5707963267948966 rad pos: 63.5,15.5 parent: 2 type: Transform - - uid: 26093 + - uid: 26330 components: - rot: 1.5707963267948966 rad pos: 27.5,16.5 parent: 2 type: Transform - - uid: 26094 + - uid: 26331 components: - rot: -1.5707963267948966 rad pos: 36.5,3.5 parent: 2 type: Transform - - uid: 26095 + - uid: 26332 components: - rot: 1.5707963267948966 rad pos: 38.5,9.5 parent: 2 type: Transform - - uid: 26096 + - uid: 26333 components: - rot: -1.5707963267948966 rad pos: 36.5,6.5 parent: 2 type: Transform - - uid: 26097 + - uid: 26334 components: - rot: 1.5707963267948966 rad pos: 32.5,-33.5 parent: 2 type: Transform - - uid: 26098 + - uid: 26335 components: - pos: 25.5,-28.5 parent: 2 type: Transform - - uid: 26099 + - uid: 26336 components: - pos: 20.5,-26.5 parent: 2 type: Transform - - uid: 26100 + - uid: 26337 components: - pos: 17.5,-26.5 parent: 2 type: Transform - - uid: 26101 + - uid: 26338 components: - pos: 18.5,-26.5 parent: 2 type: Transform - - uid: 26102 + - uid: 26339 components: - rot: 3.141592653589793 rad pos: 34.5,-15.5 parent: 2 type: Transform - - uid: 26103 + - uid: 26340 components: - rot: 3.141592653589793 rad pos: 37.5,-20.5 parent: 2 type: Transform - - uid: 26104 + - uid: 26341 components: - rot: 3.141592653589793 rad pos: 37.5,-20.5 parent: 2 type: Transform - - uid: 26105 + - uid: 26342 components: - rot: 3.141592653589793 rad pos: 37.5,-23.5 parent: 2 type: Transform - - uid: 26106 + - uid: 26343 components: - rot: 3.141592653589793 rad pos: 40.5,3.5 parent: 2 type: Transform - - uid: 26107 + - uid: 26344 components: - rot: 3.141592653589793 rad pos: 43.5,4.5 parent: 2 type: Transform - - uid: 26108 + - uid: 26345 components: - rot: 3.141592653589793 rad pos: 43.5,12.5 parent: 2 type: Transform - - uid: 26109 + - uid: 26346 components: - pos: 44.5,16.5 parent: 2 type: Transform - - uid: 26110 + - uid: 26347 components: - pos: 43.5,13.5 parent: 2 type: Transform - - uid: 26111 + - uid: 26348 components: - pos: 45.5,16.5 parent: 2 type: Transform - - uid: 26112 + - uid: 26349 components: - pos: 46.5,16.5 parent: 2 type: Transform - - uid: 26113 + - uid: 26350 components: - pos: 46.5,13.5 parent: 2 type: Transform - - uid: 26114 + - uid: 26351 components: - pos: 45.5,13.5 parent: 2 type: Transform - - uid: 26115 + - uid: 26352 components: - rot: 3.141592653589793 rad pos: 21.5,-39.5 parent: 2 type: Transform - - uid: 26116 + - uid: 26353 components: - pos: 20.5,-37.5 parent: 2 type: Transform - - uid: 26117 + - uid: 26354 components: - pos: 30.5,-34.5 parent: 2 type: Transform - - uid: 26118 + - uid: 26355 components: - pos: 30.5,-35.5 parent: 2 type: Transform - - uid: 26119 + - uid: 26356 components: - pos: 30.5,-36.5 parent: 2 type: Transform - - uid: 26120 + - uid: 26357 components: - pos: 30.5,-37.5 parent: 2 type: Transform - - uid: 26121 + - uid: 26358 components: - pos: 30.5,-33.5 parent: 2 type: Transform - - uid: 26122 + - uid: 26359 components: - pos: 24.5,-33.5 parent: 2 type: Transform - - uid: 26123 + - uid: 26360 components: - pos: 21.5,-31.5 parent: 2 type: Transform - - uid: 26124 + - uid: 26361 components: - pos: 28.5,9.5 parent: 2 type: Transform - - uid: 26125 + - uid: 26362 components: - pos: 31.5,9.5 parent: 2 type: Transform - - uid: 26126 + - uid: 26363 components: - pos: 35.5,9.5 parent: 2 type: Transform - - uid: 26127 + - uid: 26364 components: - pos: 35.5,8.5 parent: 2 type: Transform - - uid: 26128 + - uid: 26365 components: - pos: 35.5,6.5 parent: 2 type: Transform - - uid: 26129 + - uid: 26366 components: - pos: 23.5,19.5 parent: 2 type: Transform - - uid: 26130 + - uid: 26367 components: - pos: 17.5,-38.5 parent: 2 type: Transform - - uid: 26131 + - uid: 26368 components: - pos: 33.5,-38.5 parent: 2 type: Transform - - uid: 26132 + - uid: 26369 components: - rot: 3.141592653589793 rad pos: 17.5,-37.5 parent: 2 type: Transform - - uid: 26133 + - uid: 26370 components: - pos: 31.5,22.5 parent: 2 type: Transform - - uid: 26134 + - uid: 26371 components: - pos: 31.5,23.5 parent: 2 type: Transform - - uid: 26135 + - uid: 26372 components: - pos: 31.5,24.5 parent: 2 type: Transform - - uid: 26136 + - uid: 26373 components: - pos: 33.5,26.5 parent: 2 type: Transform - - uid: 26137 + - uid: 26374 components: - pos: 33.5,28.5 parent: 2 type: Transform - - uid: 26138 + - uid: 26375 components: - rot: 3.141592653589793 rad pos: 25.5,27.5 parent: 2 type: Transform - - uid: 26139 + - uid: 26376 components: - pos: 33.5,30.5 parent: 2 type: Transform - - uid: 26140 + - uid: 26377 components: - pos: -2.5,-29.5 parent: 2 type: Transform - - uid: 26141 + - uid: 26378 components: - pos: -2.5,-44.5 parent: 2 type: Transform - - uid: 26142 + - uid: 26379 components: - pos: 19.5,24.5 parent: 2 type: Transform - - uid: 26143 + - uid: 26380 components: - pos: 19.5,18.5 parent: 2 type: Transform - - uid: 26144 + - uid: 26381 components: - pos: 12.5,-35.5 parent: 2 type: Transform - - uid: 26145 + - uid: 26382 components: - pos: 12.5,-30.5 parent: 2 type: Transform - - uid: 26146 + - uid: 26383 components: - pos: 0.5,-28.5 parent: 2 type: Transform - - uid: 26147 + - uid: 26384 components: - pos: -2.5,-28.5 parent: 2 type: Transform - - uid: 26148 + - uid: 26385 components: - pos: -0.5,-28.5 parent: 2 type: Transform - - uid: 26149 + - uid: 26386 components: - pos: -1.5,-28.5 parent: 2 type: Transform - - uid: 26150 + - uid: 26387 components: - pos: 1.5,-28.5 parent: 2 type: Transform - - uid: 26151 + - uid: 26388 components: - pos: 1.5,-34.5 parent: 2 type: Transform - - uid: 26152 + - uid: 26389 components: - rot: -1.5707963267948966 rad pos: 13.5,-36.5 parent: 2 type: Transform - - uid: 26153 + - uid: 26390 components: - rot: -1.5707963267948966 rad pos: 13.5,-38.5 parent: 2 type: Transform - - uid: 26154 + - uid: 26391 components: - rot: -1.5707963267948966 rad pos: 10.5,-18.5 parent: 2 type: Transform - - uid: 26155 + - uid: 26392 components: - rot: -1.5707963267948966 rad pos: 6.5,-18.5 parent: 2 type: Transform - - uid: 26156 + - uid: 26393 components: - pos: -2.5,19.5 parent: 2 type: Transform - - uid: 26157 + - uid: 26394 components: - pos: -2.5,17.5 parent: 2 type: Transform - - uid: 26158 + - uid: 26395 components: - rot: 3.141592653589793 rad pos: 30.5,-20.5 parent: 2 type: Transform - - uid: 26159 + - uid: 26396 components: - pos: -1.5,-40.5 parent: 2 type: Transform - - uid: 26160 + - uid: 26397 components: - pos: 0.5,-40.5 parent: 2 type: Transform - - uid: 26161 + - uid: 26398 components: - pos: -0.5,-40.5 parent: 2 type: Transform - - uid: 26162 + - uid: 26399 components: - rot: 1.5707963267948966 rad pos: 38.5,-18.5 parent: 2 type: Transform - - uid: 26163 + - uid: 26400 components: - rot: 1.5707963267948966 rad pos: 38.5,-16.5 parent: 2 type: Transform - - uid: 26164 + - uid: 26401 components: - rot: 1.5707963267948966 rad pos: 38.5,-19.5 parent: 2 type: Transform - - uid: 26165 + - uid: 26402 components: - rot: 1.5707963267948966 rad pos: 33.5,31.5 parent: 2 type: Transform - - uid: 26166 + - uid: 26403 components: - rot: 1.5707963267948966 rad pos: 33.5,33.5 parent: 2 type: Transform - - uid: 26167 + - uid: 26404 components: - rot: 1.5707963267948966 rad pos: 25.5,31.5 parent: 2 type: Transform - - uid: 26168 + - uid: 26405 components: - rot: 1.5707963267948966 rad pos: 25.5,32.5 parent: 2 type: Transform - - uid: 26169 + - uid: 26406 components: - rot: 1.5707963267948966 rad pos: 25.5,33.5 parent: 2 type: Transform - - uid: 26170 + - uid: 26407 components: - rot: 1.5707963267948966 rad pos: 26.5,33.5 parent: 2 type: Transform - - uid: 26171 + - uid: 26408 components: - rot: 3.141592653589793 rad pos: 28.5,33.5 parent: 2 type: Transform - - uid: 26172 + - uid: 26409 components: - rot: 1.5707963267948966 rad pos: 32.5,33.5 parent: 2 type: Transform - - uid: 26173 + - uid: 26410 components: - pos: 13.5,-39.5 parent: 2 type: Transform - - uid: 26174 + - uid: 26411 components: - rot: -1.5707963267948966 rad pos: 33.5,13.5 parent: 2 type: Transform - - uid: 26175 + - uid: 26412 components: - rot: 1.5707963267948966 rad pos: -17.5,-53.5 parent: 2 type: Transform - - uid: 26176 + - uid: 26413 components: - rot: 1.5707963267948966 rad pos: -19.5,-53.5 parent: 2 type: Transform - - uid: 26177 + - uid: 26414 components: - rot: 1.5707963267948966 rad pos: -20.5,-53.5 parent: 2 type: Transform - - uid: 26178 + - uid: 26415 components: - rot: 1.5707963267948966 rad pos: -21.5,-53.5 parent: 2 type: Transform - - uid: 26179 + - uid: 26416 components: - pos: -21.5,-58.5 parent: 2 type: Transform - - uid: 26180 + - uid: 26417 components: - pos: 33.5,-26.5 parent: 2 type: Transform - - uid: 26181 + - uid: 26418 components: - pos: 27.5,-28.5 parent: 2 type: Transform - - uid: 26182 + - uid: 26419 components: - pos: -22.5,-49.5 parent: 2 type: Transform - - uid: 26183 + - uid: 26420 components: - rot: 1.5707963267948966 rad pos: 17.5,-33.5 parent: 2 type: Transform - - uid: 26184 + - uid: 26421 components: - rot: 3.141592653589793 rad pos: 33.5,-23.5 parent: 2 type: Transform - - uid: 26185 + - uid: 26422 components: - pos: 27.5,-29.5 parent: 2 type: Transform - - uid: 26186 + - uid: 26423 components: - rot: 3.141592653589793 rad pos: 30.5,-40.5 parent: 2 type: Transform - - uid: 26187 + - uid: 26424 components: - pos: 9.5,12.5 parent: 2 type: Transform - - uid: 26188 + - uid: 26425 components: - pos: 8.5,11.5 parent: 2 type: Transform - - uid: 26189 + - uid: 26426 components: - pos: 25.5,-33.5 parent: 2 type: Transform - - uid: 26190 + - uid: 26427 components: - pos: -17.5,-80.5 parent: 2 type: Transform - - uid: 26191 + - uid: 26428 components: - pos: -15.5,-80.5 parent: 2 type: Transform - - uid: 26192 + - uid: 26429 components: - pos: -14.5,-74.5 parent: 2 type: Transform - - uid: 26193 + - uid: 26430 components: - rot: -1.5707963267948966 rad pos: -31.5,-78.5 parent: 2 type: Transform - - uid: 26194 + - uid: 26431 components: - rot: -1.5707963267948966 rad pos: -25.5,-81.5 parent: 2 type: Transform - - uid: 26195 + - uid: 26432 components: - rot: -1.5707963267948966 rad pos: -26.5,-81.5 parent: 2 type: Transform - - uid: 26196 + - uid: 26433 components: - rot: -1.5707963267948966 rad pos: -19.5,-82.5 parent: 2 type: Transform - - uid: 26197 + - uid: 26434 components: - rot: -1.5707963267948966 rad pos: -29.5,-81.5 parent: 2 type: Transform - - uid: 26198 + - uid: 26435 components: - rot: -1.5707963267948966 rad pos: -30.5,-81.5 parent: 2 type: Transform - - uid: 26199 + - uid: 26436 components: - rot: -1.5707963267948966 rad pos: -31.5,-81.5 parent: 2 type: Transform - - uid: 26200 + - uid: 26437 components: - pos: -27.5,-86.5 parent: 2 type: Transform - - uid: 26201 + - uid: 26438 components: - rot: -1.5707963267948966 rad pos: -19.5,-83.5 parent: 2 type: Transform - - uid: 26202 - components: - - pos: -22.5,-91.5 - parent: 2 - type: Transform - - uid: 26203 + - uid: 26439 components: - rot: -1.5707963267948966 rad pos: 44.5,-66.5 parent: 2 type: Transform - - uid: 26204 + - uid: 26440 components: - pos: 57.5,-50.5 parent: 2 type: Transform - - uid: 26205 + - uid: 26441 components: - pos: -51.5,-52.5 parent: 2 type: Transform - - uid: 26206 + - uid: 26442 components: - rot: 1.5707963267948966 rad pos: -17.5,-58.5 parent: 2 type: Transform - - uid: 26207 + - uid: 26443 components: - rot: 3.141592653589793 rad pos: 21.5,-20.5 parent: 2 type: Transform - - uid: 26208 + - uid: 26444 components: - pos: 29.5,-26.5 parent: 2 type: Transform - - uid: 26209 + - uid: 26445 components: - rot: 3.141592653589793 rad pos: 33.5,-21.5 parent: 2 type: Transform - - uid: 26210 + - uid: 26446 components: - rot: 3.141592653589793 rad pos: 33.5,-27.5 parent: 2 type: Transform - - uid: 26211 + - uid: 26447 components: - rot: 3.141592653589793 rad pos: 13.5,-18.5 parent: 2 type: Transform - - uid: 26212 + - uid: 26448 components: - rot: 3.141592653589793 rad pos: 41.5,17.5 parent: 2 type: Transform - - uid: 26213 + - uid: 26449 components: - rot: 3.141592653589793 rad pos: 43.5,17.5 parent: 2 type: Transform - - uid: 26214 + - uid: 26450 components: - rot: -1.5707963267948966 rad pos: 27.5,12.5 parent: 2 type: Transform - - uid: 26215 + - uid: 26451 components: - rot: -1.5707963267948966 rad pos: 27.5,13.5 parent: 2 type: Transform - - uid: 26216 + - uid: 26452 components: - rot: -1.5707963267948966 rad pos: 27.5,11.5 parent: 2 type: Transform - - uid: 26217 + - uid: 26453 components: - pos: 14.5,15.5 parent: 2 type: Transform - - uid: 26218 + - uid: 26454 components: - pos: 9.5,15.5 parent: 2 type: Transform - - uid: 26219 + - uid: 26455 components: - pos: 9.5,-71.5 parent: 2 type: Transform - - uid: 26220 + - uid: 26456 components: - pos: 5.5,-78.5 parent: 2 type: Transform - - uid: 26221 + - uid: 26457 components: - rot: 3.141592653589793 rad pos: 30.5,-39.5 parent: 2 type: Transform - - uid: 26222 + - uid: 26458 components: - pos: 28.5,-9.5 parent: 2 type: Transform - - uid: 26223 + - uid: 26459 components: - pos: 31.5,20.5 parent: 2 type: Transform - - uid: 26224 + - uid: 26460 components: - rot: -1.5707963267948966 rad pos: 30.5,12.5 parent: 2 type: Transform - - uid: 26225 + - uid: 26461 components: - pos: 0.5,15.5 parent: 2 type: Transform - - uid: 26226 + - uid: 26462 components: - rot: -1.5707963267948966 rad pos: 9.5,11.5 parent: 2 type: Transform - - uid: 26227 + - uid: 26463 components: - rot: 3.141592653589793 rad pos: 6.5,11.5 parent: 2 type: Transform - - uid: 26228 + - uid: 26464 components: - rot: 1.5707963267948966 rad pos: 3.5,14.5 parent: 2 type: Transform - - uid: 26229 + - uid: 26465 components: - pos: -1.5,15.5 parent: 2 type: Transform - - uid: 26230 + - uid: 26466 components: - pos: 9.5,-2.5 parent: 2 type: Transform - - uid: 26231 + - uid: 26467 components: - rot: 1.5707963267948966 rad pos: 18.5,-33.5 parent: 2 type: Transform - - uid: 26232 + - uid: 26468 components: - rot: 1.5707963267948966 rad pos: 15.5,15.5 parent: 2 type: Transform - - uid: 26233 + - uid: 26469 components: - rot: -1.5707963267948966 rad pos: 63.5,17.5 parent: 2 type: Transform - - uid: 26234 + - uid: 26470 components: - rot: -1.5707963267948966 rad pos: -2.5,-84.5 parent: 2 type: Transform - - uid: 26235 + - uid: 26471 components: - pos: 16.5,-63.5 parent: 2 type: Transform - - uid: 26236 + - uid: 26472 components: - pos: 17.5,-68.5 parent: 2 type: Transform - - uid: 26237 + - uid: 26473 components: - pos: -23.5,0.5 parent: 2 type: Transform - - uid: 26238 + - uid: 26474 components: - pos: 25.5,-29.5 parent: 2 type: Transform - - uid: 26239 + - uid: 26475 components: - pos: -23.5,-2.5 parent: 2 type: Transform - - uid: 26240 + - uid: 26476 components: - rot: 3.141592653589793 rad pos: 33.5,-20.5 parent: 2 type: Transform - - uid: 26241 + - uid: 26477 components: - pos: -23.5,3.5 parent: 2 type: Transform - - uid: 26242 + - uid: 26478 components: - pos: -23.5,4.5 parent: 2 type: Transform - - uid: 26243 + - uid: 26479 components: - pos: -21.5,5.5 parent: 2 type: Transform - - uid: 26244 + - uid: 26480 components: - pos: 49.5,-26.5 parent: 2 type: Transform - - uid: 26245 + - uid: 26481 components: - pos: 47.5,-20.5 parent: 2 type: Transform - - uid: 26246 + - uid: 26482 components: - pos: 44.5,-20.5 parent: 2 type: Transform - - uid: 26247 + - uid: 26483 components: - pos: 43.5,-22.5 parent: 2 type: Transform - - uid: 26248 + - uid: 26484 components: - pos: 43.5,-25.5 parent: 2 type: Transform - - uid: 26249 + - uid: 26485 components: - pos: 43.5,-23.5 parent: 2 type: Transform - - uid: 26250 + - uid: 26486 components: - pos: 43.5,-28.5 parent: 2 type: Transform - - uid: 26251 + - uid: 26487 components: - pos: 1.5,15.5 parent: 2 type: Transform - - uid: 26252 + - uid: 26488 components: - pos: 40.5,-28.5 parent: 2 type: Transform - - uid: 26253 + - uid: 26489 components: - pos: 26.5,26.5 parent: 2 type: Transform - - uid: 26254 + - uid: 26490 components: - pos: 25.5,26.5 parent: 2 type: Transform - - uid: 26255 + - uid: 26491 components: - pos: 25.5,28.5 parent: 2 type: Transform - - uid: 26256 + - uid: 26492 components: - rot: 3.141592653589793 rad pos: 33.5,29.5 parent: 2 type: Transform - - uid: 26257 + - uid: 26493 components: - pos: 25.5,30.5 parent: 2 type: Transform - - uid: 26258 + - uid: 26494 components: - pos: 32.5,26.5 parent: 2 type: Transform - - uid: 26259 + - uid: 26495 components: - rot: -1.5707963267948966 rad pos: 13.5,23.5 parent: 2 type: Transform - - uid: 26260 + - uid: 26496 components: - rot: -1.5707963267948966 rad pos: 8.5,23.5 parent: 2 type: Transform - - uid: 26261 + - uid: 26497 components: - pos: -2.5,-39.5 parent: 2 type: Transform - - uid: 26262 + - uid: 26498 components: - rot: -1.5707963267948966 rad pos: -1.5,-39.5 parent: 2 type: Transform - - uid: 26263 + - uid: 26499 components: - rot: -1.5707963267948966 rad pos: 12.5,-24.5 parent: 2 type: Transform - - uid: 26264 + - uid: 26500 components: - pos: 11.5,-24.5 parent: 2 type: Transform - - uid: 26265 + - uid: 26501 components: - pos: 10.5,-24.5 parent: 2 type: Transform - - uid: 26266 + - uid: 26502 components: - rot: -1.5707963267948966 rad pos: 4.5,-24.5 parent: 2 type: Transform - - uid: 26267 + - uid: 26503 components: - rot: -1.5707963267948966 rad pos: 5.5,-18.5 parent: 2 type: Transform - - uid: 26268 + - uid: 26504 components: - pos: -2.5,21.5 parent: 2 type: Transform - - uid: 26269 + - uid: 26505 components: - pos: -0.5,22.5 parent: 2 type: Transform - - uid: 26270 + - uid: 26506 components: - pos: 0.5,22.5 parent: 2 type: Transform - - uid: 26271 + - uid: 26507 components: - pos: -2.5,22.5 parent: 2 type: Transform - - uid: 26272 + - uid: 26508 components: - pos: -2.5,20.5 parent: 2 type: Transform - - uid: 26273 + - uid: 26509 components: - pos: 6.5,-40.5 parent: 2 type: Transform - - uid: 26274 + - uid: 26510 components: - pos: 5.5,-39.5 parent: 2 type: Transform - - uid: 26275 + - uid: 26511 components: - pos: 8.5,18.5 parent: 2 type: Transform - - uid: 26276 + - uid: 26512 components: - rot: 3.141592653589793 rad pos: 27.5,23.5 parent: 2 type: Transform - - uid: 26277 + - uid: 26513 components: - pos: -15.5,4.5 parent: 2 type: Transform - - uid: 26278 + - uid: 26514 components: - pos: -15.5,3.5 parent: 2 type: Transform - - uid: 26279 + - uid: 26515 components: - pos: 9.5,18.5 parent: 2 type: Transform - - uid: 26280 + - uid: 26516 components: - pos: -18.5,-85.5 parent: 2 type: Transform - - uid: 26281 + - uid: 26517 components: - rot: 3.141592653589793 rad pos: 3.5,11.5 parent: 2 type: Transform - - uid: 26282 + - uid: 26518 components: - rot: -1.5707963267948966 rad pos: 37.5,42.5 parent: 2 type: Transform - - uid: 26283 + - uid: 26519 components: - rot: 3.141592653589793 rad pos: 62.5,42.5 parent: 2 type: Transform - - uid: 26284 + - uid: 26520 components: - rot: -1.5707963267948966 rad pos: 32.5,43.5 parent: 2 type: Transform - - uid: 26285 + - uid: 26521 components: - rot: 3.141592653589793 rad pos: 18.5,-19.5 parent: 2 type: Transform - - uid: 26286 + - uid: 26522 components: - rot: -1.5707963267948966 rad pos: 42.5,49.5 parent: 2 type: Transform - - uid: 26287 + - uid: 26523 components: - rot: -1.5707963267948966 rad pos: 34.5,43.5 parent: 2 type: Transform - - uid: 26288 + - uid: 26524 components: - pos: -23.5,-0.5 parent: 2 type: Transform - - uid: 26289 + - uid: 26525 components: - rot: -1.5707963267948966 rad pos: 63.5,16.5 parent: 2 type: Transform - - uid: 26290 + - uid: 26526 components: - pos: -20.5,5.5 parent: 2 type: Transform - - uid: 26291 + - uid: 26527 components: - rot: 3.141592653589793 rad pos: 13.5,18.5 parent: 2 type: Transform - - uid: 26292 + - uid: 26528 components: - rot: -1.5707963267948966 rad pos: 64.5,14.5 parent: 2 type: Transform - - uid: 26293 + - uid: 26529 components: - rot: -1.5707963267948966 rad pos: -0.5,-80.5 parent: 2 type: Transform - - uid: 26294 + - uid: 26530 components: - rot: -1.5707963267948966 rad pos: 0.5,-78.5 parent: 2 type: Transform - - uid: 26295 + - uid: 26531 components: - rot: 3.141592653589793 rad pos: -17.5,5.5 parent: 2 type: Transform - - uid: 26296 + - uid: 26532 components: - rot: 3.141592653589793 rad pos: 19.5,-19.5 parent: 2 type: Transform - - uid: 26297 + - uid: 26533 components: - pos: 40.5,52.5 parent: 2 type: Transform - - uid: 26298 + - uid: 26534 components: - pos: -29.5,44.5 parent: 2 type: Transform - - uid: 26299 + - uid: 26535 components: - pos: 40.5,17.5 parent: 2 type: Transform - - uid: 26300 + - uid: 26536 components: - pos: -15.5,-74.5 parent: 2 type: Transform - - uid: 26301 + - uid: 26537 components: - rot: 3.141592653589793 rad pos: 30.5,-15.5 parent: 2 type: Transform - - uid: 26302 + - uid: 26538 components: - rot: -1.5707963267948966 rad pos: 27.5,10.5 parent: 2 type: Transform - - uid: 26303 + - uid: 26539 components: - pos: -15.5,1.5 parent: 2 type: Transform - - uid: 26304 + - uid: 26540 components: - pos: -15.5,0.5 parent: 2 type: Transform - - uid: 26305 + - uid: 26541 components: - pos: 38.5,52.5 parent: 2 type: Transform - - uid: 26306 + - uid: 26542 components: - rot: 3.141592653589793 rad pos: 34.5,-13.5 parent: 2 type: Transform - - uid: 26307 + - uid: 26543 components: - pos: 43.5,-20.5 parent: 2 type: Transform - - uid: 26308 + - uid: 26544 components: - rot: 1.5707963267948966 rad pos: 32.5,-63.5 parent: 2 type: Transform - - uid: 26309 + - uid: 26545 components: - pos: 0.5,-39.5 parent: 2 type: Transform - - uid: 26310 + - uid: 26546 components: - pos: 4.5,-39.5 parent: 2 type: Transform - - uid: 26311 + - uid: 26547 components: - pos: 2.5,15.5 parent: 2 type: Transform - - uid: 26312 + - uid: 26548 components: - rot: -1.5707963267948966 rad pos: 25.5,-31.5 parent: 2 type: Transform - - uid: 26313 + - uid: 26549 components: - rot: -1.5707963267948966 rad pos: 14.5,-68.5 parent: 2 type: Transform - - uid: 26314 + - uid: 26550 components: - pos: 7.5,11.5 parent: 2 type: Transform - - uid: 26315 + - uid: 26551 components: - pos: 10.5,15.5 parent: 2 type: Transform - - uid: 26316 + - uid: 26552 components: - rot: -1.5707963267948966 rad pos: 36.5,42.5 parent: 2 type: Transform - - uid: 26317 + - uid: 26553 components: - rot: -1.5707963267948966 rad pos: -0.5,-81.5 parent: 2 type: Transform - - uid: 26318 + - uid: 26554 components: - rot: -1.5707963267948966 rad pos: 37.5,9.5 parent: 2 type: Transform - - uid: 26319 + - uid: 26555 components: - rot: -1.5707963267948966 rad pos: -26.5,-83.5 parent: 2 type: Transform - - uid: 26320 + - uid: 26556 components: - rot: -1.5707963267948966 rad pos: -24.5,-83.5 parent: 2 type: Transform - - uid: 26321 + - uid: 26557 components: - pos: -22.5,5.5 parent: 2 type: Transform - - uid: 26322 + - uid: 26558 components: - rot: -1.5707963267948966 rad pos: 27.5,14.5 parent: 2 type: Transform - - uid: 26323 + - uid: 26559 components: - pos: -29.5,43.5 parent: 2 type: Transform - - uid: 26324 + - uid: 26560 components: - rot: 3.141592653589793 rad pos: 33.5,-22.5 parent: 2 type: Transform - - uid: 26325 + - uid: 26561 components: - rot: 3.141592653589793 rad pos: 20.5,24.5 parent: 2 type: Transform - - uid: 26326 + - uid: 26562 components: - rot: 1.5707963267948966 rad pos: 7.5,-18.5 parent: 2 type: Transform - - uid: 26327 + - uid: 26563 components: - pos: 7.5,27.5 parent: 2 type: Transform - - uid: 26328 + - uid: 26564 components: - rot: -1.5707963267948966 rad pos: 27.5,15.5 parent: 2 type: Transform - - uid: 26329 + - uid: 26565 components: - pos: -15.5,3.5 parent: 2 type: Transform - - uid: 26330 + - uid: 26566 components: - rot: -1.5707963267948966 rad pos: -31.5,-76.5 parent: 2 type: Transform - - uid: 26331 + - uid: 26567 components: - pos: -18.5,-80.5 parent: 2 type: Transform - - uid: 26332 + - uid: 26568 components: - rot: -1.5707963267948966 rad pos: 12.5,-68.5 parent: 2 type: Transform - - uid: 26333 + - uid: 26569 components: - rot: -1.5707963267948966 rad pos: 14.5,18.5 parent: 2 type: Transform - - uid: 26334 + - uid: 26570 components: - pos: 27.5,25.5 parent: 2 type: Transform - - uid: 26335 + - uid: 26571 components: - pos: 10.5,24.5 parent: 2 type: Transform - - uid: 26336 + - uid: 26572 components: - pos: 9.5,24.5 parent: 2 type: Transform - - uid: 26337 + - uid: 26573 components: - pos: -13.5,-74.5 parent: 2 type: Transform - - uid: 26338 + - uid: 26574 components: - pos: -13.5,-79.5 parent: 2 type: Transform - - uid: 26339 + - uid: 26575 components: - pos: -19.5,-80.5 parent: 2 type: Transform - - uid: 26340 + - uid: 26576 components: - pos: -13.5,-76.5 parent: 2 type: Transform - - uid: 26341 + - uid: 26577 components: - pos: 9.5,20.5 parent: 2 type: Transform - - uid: 26342 + - uid: 26578 components: - rot: -1.5707963267948966 rad pos: 13.5,-68.5 parent: 2 type: Transform - - uid: 26343 + - uid: 26579 components: - pos: -18.5,-50.5 parent: 2 type: Transform - - uid: 26344 + - uid: 26580 components: - rot: -1.5707963267948966 rad pos: -16.5,-53.5 parent: 2 type: Transform - - uid: 26345 + - uid: 26581 components: - rot: 3.141592653589793 rad pos: 33.5,-37.5 parent: 2 type: Transform - - uid: 26346 + - uid: 26582 components: - rot: 3.141592653589793 rad pos: 34.5,-11.5 parent: 2 type: Transform - - uid: 26347 + - uid: 26583 components: - rot: 3.141592653589793 rad pos: 34.5,-12.5 parent: 2 type: Transform - - uid: 26348 + - uid: 26584 components: - pos: -16.5,-54.5 parent: 2 type: Transform - - uid: 26349 + - uid: 26585 components: - rot: 3.141592653589793 rad pos: 34.5,-9.5 parent: 2 type: Transform - - uid: 26350 + - uid: 26586 components: - rot: 3.141592653589793 rad pos: 33.5,-9.5 parent: 2 type: Transform - - uid: 26351 + - uid: 26587 components: - rot: -1.5707963267948966 rad pos: -16.5,-55.5 parent: 2 type: Transform - - uid: 26352 + - uid: 26588 components: - pos: 19.5,-56.5 parent: 2 type: Transform - - uid: 26353 + - uid: 26589 components: - pos: -21.5,-56.5 parent: 2 type: Transform - - uid: 26354 + - uid: 26590 components: - pos: 33.5,48.5 parent: 2 type: Transform - - uid: 26355 + - uid: 26591 components: - pos: 31.5,-26.5 parent: 2 type: Transform - - uid: 26356 + - uid: 26592 components: - pos: 11.5,15.5 parent: 2 type: Transform - - uid: 26357 + - uid: 26593 components: - rot: 3.141592653589793 rad pos: 17.5,-19.5 parent: 2 type: Transform - - uid: 26358 + - uid: 26594 components: - pos: -2.5,-38.5 parent: 2 type: Transform - - uid: 26359 + - uid: 26595 components: - rot: -1.5707963267948966 rad pos: 63.5,14.5 parent: 2 type: Transform - - uid: 26360 + - uid: 26596 components: - pos: 12.5,-36.5 parent: 2 type: Transform - - uid: 26361 + - uid: 26597 components: - rot: 3.141592653589793 rad pos: 27.5,33.5 parent: 2 type: Transform - - uid: 26362 + - uid: 26598 components: - pos: 35.5,51.5 parent: 2 type: Transform - - uid: 26363 + - uid: 26599 components: - pos: 5.5,-79.5 parent: 2 type: Transform - - uid: 26364 + - uid: 26600 components: - pos: 33.5,-30.5 parent: 2 type: Transform - - uid: 26365 + - uid: 26601 components: - pos: 28.5,-12.5 parent: 2 type: Transform - - uid: 26366 + - uid: 26602 components: - rot: 3.141592653589793 rad pos: 17.5,-20.5 parent: 2 type: Transform - - uid: 26367 + - uid: 26603 components: - pos: 37.5,52.5 parent: 2 type: Transform - - uid: 26368 + - uid: 26604 components: - pos: 29.5,-15.5 parent: 2 type: Transform - - uid: 26369 + - uid: 26605 components: - rot: 3.141592653589793 rad pos: 32.5,-19.5 parent: 2 type: Transform - - uid: 26370 + - uid: 26606 components: - rot: 3.141592653589793 rad pos: -18.5,-3.5 parent: 2 type: Transform - - uid: 26371 + - uid: 26607 components: - rot: 3.141592653589793 rad pos: 19.5,-55.5 parent: 2 type: Transform - - uid: 26372 + - uid: 26608 components: - rot: -1.5707963267948966 rad pos: 35.5,42.5 parent: 2 type: Transform - - uid: 26373 + - uid: 26609 components: - rot: 3.141592653589793 rad pos: -18.5,5.5 parent: 2 type: Transform - - uid: 26374 + - uid: 26610 components: - pos: 35.5,5.5 parent: 2 type: Transform - - uid: 26375 + - uid: 26611 components: - pos: 35.5,3.5 parent: 2 type: Transform - - uid: 26376 + - uid: 26612 components: - pos: 33.5,9.5 parent: 2 type: Transform - - uid: 26377 + - uid: 26613 components: - pos: 27.5,9.5 parent: 2 type: Transform - - uid: 26378 + - uid: 26614 components: - rot: 3.141592653589793 rad pos: 29.5,-40.5 parent: 2 type: Transform - - uid: 26379 + - uid: 26615 components: - pos: 30.5,-38.5 parent: 2 type: Transform - - uid: 26380 + - uid: 26616 components: - rot: 3.141592653589793 rad pos: 25.5,-61.5 parent: 2 type: Transform - - uid: 26381 + - uid: 26617 components: - rot: -1.5707963267948966 rad pos: 7.5,23.5 parent: 2 type: Transform - - uid: 26382 + - uid: 26618 components: - rot: -1.5707963267948966 rad pos: 6.5,23.5 parent: 2 type: Transform - - uid: 26383 + - uid: 26619 components: - pos: 9.5,22.5 parent: 2 type: Transform - - uid: 26384 + - uid: 26620 components: - pos: 9.5,21.5 parent: 2 type: Transform - - uid: 26385 + - uid: 26621 components: - rot: 3.141592653589793 rad pos: 36.5,13.5 parent: 2 type: Transform - - uid: 26386 + - uid: 26622 components: - pos: 3.5,20.5 parent: 2 type: Transform - - uid: 26387 + - uid: 26623 components: - pos: 8.5,-24.5 parent: 2 type: Transform - - uid: 26388 + - uid: 26624 components: - pos: 12.5,-31.5 parent: 2 type: Transform - - uid: 26389 + - uid: 26625 components: - pos: 1.5,-33.5 parent: 2 type: Transform - - uid: 26390 + - uid: 26626 components: - pos: -18.5,-87.5 parent: 2 type: Transform - - uid: 26391 + - uid: 26627 components: - pos: 28.5,-11.5 parent: 2 type: Transform - - uid: 26392 + - uid: 26628 components: - pos: 13.5,-22.5 parent: 2 type: Transform - - uid: 26393 + - uid: 26629 components: - pos: 12.5,-18.5 parent: 2 type: Transform - - uid: 26394 + - uid: 26630 components: - pos: 5.5,-82.5 parent: 2 type: Transform - - uid: 26395 + - uid: 26631 components: - pos: 12.5,-69.5 parent: 2 type: Transform - - uid: 26396 + - uid: 26632 components: - rot: 3.141592653589793 rad pos: 26.5,-33.5 parent: 2 type: Transform - - uid: 26397 + - uid: 26633 components: - pos: 27.5,-27.5 parent: 2 type: Transform - - uid: 26398 + - uid: 26634 components: - pos: -6.5,-44.5 parent: 2 type: Transform - - uid: 26399 + - uid: 26635 components: - rot: 1.5707963267948966 rad pos: -18.5,-53.5 parent: 2 type: Transform - - uid: 26400 + - uid: 26636 components: - pos: -2.5,-37.5 parent: 2 type: Transform - - uid: 26401 + - uid: 26637 components: - pos: 13.5,-40.5 parent: 2 type: Transform - - uid: 26402 + - uid: 26638 components: - pos: 12.5,-40.5 parent: 2 type: Transform - - uid: 26403 + - uid: 26639 components: - pos: 10.5,-40.5 parent: 2 type: Transform - - uid: 26404 + - uid: 26640 components: - pos: 11.5,-40.5 parent: 2 type: Transform - - uid: 26405 - components: - - pos: -1.5,-36.5 - parent: 2 - type: Transform - - uid: 26406 + - uid: 26641 components: - pos: 27.5,-13.5 parent: 2 type: Transform - - uid: 26407 + - uid: 26642 components: - rot: 1.5707963267948966 rad pos: 12.5,15.5 parent: 2 type: Transform - - uid: 26408 + - uid: 26643 components: - rot: 3.141592653589793 rad pos: 31.5,-9.5 parent: 2 type: Transform - - uid: 26409 + - uid: 26644 components: - pos: 28.5,-15.5 parent: 2 type: Transform - - uid: 26410 + - uid: 26645 components: - pos: 42.5,52.5 parent: 2 type: Transform - - uid: 26411 + - uid: 26646 components: - rot: 3.141592653589793 rad pos: 20.5,-19.5 parent: 2 type: Transform - - uid: 26412 + - uid: 26647 components: - pos: -18.5,-84.5 parent: 2 type: Transform - - uid: 26413 + - uid: 26648 components: - pos: -20.5,-1.5 parent: 2 type: Transform - - uid: 26414 + - uid: 26649 components: - rot: -1.5707963267948966 rad pos: 0.5,-76.5 parent: 2 type: Transform - - uid: 26415 + - uid: 26650 components: - rot: 1.5707963267948966 rad pos: 3.5,13.5 parent: 2 type: Transform - - uid: 26416 + - uid: 26651 components: - pos: 18.5,18.5 parent: 2 type: Transform - - uid: 26417 + - uid: 26652 components: - rot: -1.5707963267948966 rad pos: -0.5,-83.5 parent: 2 type: Transform - - uid: 26418 + - uid: 26653 components: - rot: -1.5707963267948966 rad pos: 0.5,-80.5 parent: 2 type: Transform - - uid: 26419 + - uid: 26654 components: - pos: 15.5,-63.5 parent: 2 type: Transform - - uid: 26420 + - uid: 26655 components: - pos: 17.5,-64.5 parent: 2 type: Transform - - uid: 26421 + - uid: 26656 components: - pos: 49.5,-21.5 parent: 2 type: Transform - - uid: 26422 + - uid: 26657 components: - pos: 45.5,-20.5 parent: 2 type: Transform - - uid: 26423 + - uid: 26658 components: - pos: 46.5,-20.5 parent: 2 type: Transform - - uid: 26424 + - uid: 26659 components: - pos: 43.5,-29.5 parent: 2 type: Transform - - uid: 26425 + - uid: 26660 components: - pos: 43.5,-30.5 parent: 2 type: Transform - - uid: 26426 + - uid: 26661 components: - pos: 43.5,-31.5 parent: 2 type: Transform - - uid: 26427 + - uid: 26662 components: - pos: 44.5,-31.5 parent: 2 type: Transform - - uid: 26428 + - uid: 26663 components: - pos: 49.5,-31.5 parent: 2 type: Transform - - uid: 26429 + - uid: 26664 components: - pos: 49.5,-30.5 parent: 2 type: Transform - - uid: 26430 + - uid: 26665 components: - pos: 49.5,-29.5 parent: 2 type: Transform - - uid: 26431 + - uid: 26666 components: - pos: 49.5,-28.5 parent: 2 type: Transform - - uid: 26432 + - uid: 26667 components: - pos: 48.5,-20.5 parent: 2 type: Transform - - uid: 26433 + - uid: 26668 components: - pos: 48.5,-31.5 parent: 2 type: Transform - - uid: 26434 + - uid: 26669 components: - pos: 47.5,-31.5 parent: 2 type: Transform - - uid: 26435 + - uid: 26670 components: - pos: 46.5,-31.5 parent: 2 type: Transform - - uid: 26436 + - uid: 26671 components: - pos: 45.5,-31.5 parent: 2 type: Transform - - uid: 26437 + - uid: 26672 components: - pos: 49.5,-27.5 parent: 2 type: Transform - - uid: 26438 + - uid: 26673 components: - pos: 49.5,-20.5 parent: 2 type: Transform - - uid: 26439 + - uid: 26674 components: - pos: 43.5,-21.5 parent: 2 type: Transform - - uid: 26440 + - uid: 26675 components: - pos: 49.5,-22.5 parent: 2 type: Transform - - uid: 26441 + - uid: 26676 components: - pos: 48.5,-26.5 parent: 2 type: Transform - - uid: 26442 + - uid: 26677 components: - pos: 47.5,-26.5 parent: 2 type: Transform - - uid: 26443 + - uid: 26678 components: - rot: -1.5707963267948966 rad pos: 46.5,-25.5 parent: 2 type: Transform - - uid: 26444 + - uid: 26679 components: - rot: -1.5707963267948966 rad pos: 45.5,-25.5 parent: 2 type: Transform - - uid: 26445 + - uid: 26680 components: - rot: -1.5707963267948966 rad pos: 46.5,-26.5 parent: 2 type: Transform - - uid: 26446 + - uid: 26681 components: - rot: 3.141592653589793 rad pos: 47.5,3.5 parent: 2 type: Transform - - uid: 26447 - components: - - pos: -27.5,-91.5 - parent: 2 - type: Transform - - uid: 26448 - components: - - pos: -18.5,-90.5 - parent: 2 - type: Transform - - uid: 26449 - components: - - pos: -18.5,-91.5 - parent: 2 - type: Transform - - uid: 26450 - components: - - pos: -19.5,-91.5 - parent: 2 - type: Transform - - uid: 26451 - components: - - pos: -23.5,-91.5 - parent: 2 - type: Transform - - uid: 26452 - components: - - pos: -26.5,-91.5 - parent: 2 - type: Transform - - uid: 26453 + - uid: 26682 components: - pos: -27.5,-87.5 parent: 2 type: Transform - - uid: 26454 + - uid: 26683 components: - pos: 7.5,-37.5 parent: 2 type: Transform - - uid: 26455 + - uid: 26684 components: - rot: 1.5707963267948966 rad pos: 15.5,28.5 parent: 2 type: Transform - - uid: 26456 + - uid: 26685 components: - pos: 5.5,30.5 parent: 2 type: Transform - - uid: 26457 + - uid: 26686 components: - pos: 18.5,24.5 parent: 2 type: Transform - - uid: 26458 + - uid: 26687 components: - pos: 17.5,24.5 parent: 2 type: Transform - - uid: 26459 + - uid: 26688 components: - pos: 16.5,24.5 parent: 2 type: Transform - - uid: 26460 + - uid: 26689 components: - pos: 15.5,24.5 parent: 2 type: Transform - - uid: 26461 + - uid: 26690 components: - pos: 13.5,24.5 parent: 2 type: Transform - - uid: 26462 + - uid: 26691 components: - rot: 1.5707963267948966 rad pos: 15.5,29.5 parent: 2 type: Transform - - uid: 26463 + - uid: 26692 components: - pos: 44.5,-32.5 parent: 2 type: Transform - - uid: 26464 + - uid: 26693 components: - pos: 49.5,44.5 parent: 2 type: Transform - - uid: 26465 + - uid: 26694 components: - pos: 19.5,30.5 parent: 2 type: Transform - - uid: 26466 + - uid: 26695 components: - pos: 19.5,29.5 parent: 2 type: Transform - - uid: 26467 + - uid: 26696 components: - pos: 19.5,28.5 parent: 2 type: Transform - - uid: 26468 + - uid: 26697 components: - pos: 19.5,27.5 parent: 2 type: Transform - - uid: 26469 + - uid: 26698 components: - rot: 1.5707963267948966 rad pos: 20.5,26.5 parent: 2 type: Transform - - uid: 26470 + - uid: 26699 components: - rot: 1.5707963267948966 rad pos: 19.5,26.5 parent: 2 type: Transform - - uid: 26471 + - uid: 26700 components: - rot: 1.5707963267948966 rad pos: 21.5,26.5 parent: 2 type: Transform - - uid: 26472 + - uid: 26701 components: - rot: 1.5707963267948966 rad pos: 22.5,26.5 parent: 2 type: Transform - - uid: 26473 + - uid: 26702 components: - pos: 3.5,31.5 parent: 2 type: Transform - - uid: 26474 + - uid: 26703 components: - pos: 4.5,30.5 parent: 2 type: Transform - - uid: 26475 + - uid: 26704 components: - pos: 3.5,33.5 parent: 2 type: Transform - - uid: 26476 + - uid: 26705 components: - pos: 11.5,29.5 parent: 2 type: Transform - - uid: 26477 + - uid: 26706 components: - pos: 11.5,35.5 parent: 2 type: Transform - - uid: 26478 + - uid: 26707 components: - pos: 4.5,31.5 parent: 2 type: Transform - - uid: 26479 + - uid: 26708 components: - pos: 11.5,33.5 parent: 2 type: Transform - - uid: 26480 + - uid: 26709 components: - pos: 6.5,35.5 parent: 2 type: Transform - - uid: 26481 + - uid: 26710 components: - pos: 66.5,4.5 parent: 2 type: Transform - - uid: 26482 + - uid: 26711 components: - pos: 66.5,5.5 parent: 2 type: Transform - - uid: 26483 + - uid: 26712 components: - pos: 66.5,3.5 parent: 2 type: Transform - - uid: 26484 + - uid: 26713 components: - pos: 66.5,2.5 parent: 2 type: Transform - - uid: 26485 + - uid: 26714 components: - pos: 66.5,1.5 parent: 2 type: Transform - - uid: 26486 + - uid: 26715 components: - rot: 1.5707963267948966 rad pos: 14.5,26.5 parent: 2 type: Transform - - uid: 26487 + - uid: 26716 components: - rot: 1.5707963267948966 rad pos: 15.5,26.5 parent: 2 type: Transform - - uid: 26488 + - uid: 26717 components: - rot: 1.5707963267948966 rad pos: 15.5,27.5 parent: 2 type: Transform - - uid: 26489 + - uid: 26718 components: - rot: 1.5707963267948966 rad pos: 13.5,26.5 parent: 2 type: Transform - - uid: 26490 + - uid: 26719 components: - pos: 11.5,26.5 parent: 2 type: Transform - - uid: 26491 + - uid: 26720 components: - pos: 12.5,24.5 parent: 2 type: Transform - - uid: 26492 + - uid: 26721 components: - pos: 11.5,24.5 parent: 2 type: Transform - - uid: 26493 + - uid: 26722 components: - rot: 1.5707963267948966 rad pos: 7.5,25.5 parent: 2 type: Transform - - uid: 26494 + - uid: 26723 components: - rot: 1.5707963267948966 rad pos: 5.5,25.5 parent: 2 type: Transform - - uid: 26495 + - uid: 26724 components: - rot: 1.5707963267948966 rad pos: 3.5,25.5 parent: 2 type: Transform - - uid: 26496 + - uid: 26725 components: - rot: 1.5707963267948966 rad pos: 18.5,30.5 parent: 2 type: Transform - - uid: 26497 + - uid: 26726 components: - rot: 1.5707963267948966 rad pos: 15.5,30.5 parent: 2 type: Transform - - uid: 26498 + - uid: 26727 components: - rot: 1.5707963267948966 rad pos: 14.5,30.5 parent: 2 type: Transform - - uid: 26499 + - uid: 26728 components: - rot: 1.5707963267948966 rad pos: 14.5,31.5 parent: 2 type: Transform - - uid: 26500 + - uid: 26729 components: - rot: 1.5707963267948966 rad pos: 13.5,31.5 parent: 2 type: Transform - - uid: 26501 + - uid: 26730 components: - pos: 49.5,50.5 parent: 2 type: Transform - - uid: 26502 + - uid: 26731 components: - rot: 1.5707963267948966 rad pos: 14.5,33.5 parent: 2 type: Transform - - uid: 26503 + - uid: 26732 components: - rot: 1.5707963267948966 rad pos: 13.5,33.5 parent: 2 type: Transform - - uid: 26504 + - uid: 26733 components: - pos: -1.5,26.5 parent: 2 type: Transform - - uid: 26505 + - uid: 26734 components: - pos: 59.5,41.5 parent: 2 type: Transform - - uid: 26506 + - uid: 26735 components: - rot: 1.5707963267948966 rad pos: 14.5,34.5 parent: 2 type: Transform - - uid: 26507 + - uid: 26736 components: - rot: 1.5707963267948966 rad pos: 18.5,31.5 parent: 2 type: Transform - - uid: 26508 + - uid: 26737 components: - pos: 11.5,34.5 parent: 2 type: Transform - - uid: 26509 + - uid: 26738 components: - pos: 5.5,35.5 parent: 2 type: Transform - - uid: 26510 + - uid: 26739 components: - pos: 18.5,34.5 parent: 2 type: Transform - - uid: 26511 + - uid: 26740 components: - pos: 10.5,35.5 parent: 2 type: Transform - - uid: 26512 + - uid: 26741 components: - pos: 11.5,30.5 parent: 2 type: Transform - - uid: 26513 + - uid: 26742 components: - pos: 1.5,25.5 parent: 2 type: Transform - - uid: 26514 + - uid: 26743 components: - pos: 0.5,25.5 parent: 2 type: Transform - - uid: 26515 + - uid: 26744 components: - pos: -0.5,25.5 parent: 2 type: Transform - - uid: 26516 + - uid: 26745 components: - pos: -1.5,25.5 parent: 2 type: Transform - - uid: 26517 + - uid: 26746 components: - pos: -1.5,28.5 parent: 2 type: Transform - - uid: 26518 + - uid: 26747 components: - pos: -3.5,25.5 parent: 2 type: Transform - - uid: 26519 + - uid: 26748 components: - pos: -3.5,24.5 parent: 2 type: Transform - - uid: 26520 + - uid: 26749 components: - pos: 59.5,48.5 parent: 2 type: Transform - - uid: 26521 + - uid: 26750 components: - pos: 34.5,26.5 parent: 2 type: Transform - - uid: 26522 + - uid: 26751 components: - pos: 34.5,25.5 parent: 2 type: Transform - - uid: 26523 + - uid: 26752 components: - pos: 34.5,24.5 parent: 2 type: Transform - - uid: 26524 + - uid: 26753 components: - rot: -1.5707963267948966 rad pos: 37.5,21.5 parent: 2 type: Transform - - uid: 26525 + - uid: 26754 components: - pos: 36.5,21.5 parent: 2 type: Transform - - uid: 26526 + - uid: 26755 components: - pos: 33.5,21.5 parent: 2 type: Transform - - uid: 26527 + - uid: 26756 components: - pos: 33.5,20.5 parent: 2 type: Transform - - uid: 26528 + - uid: 26757 components: - rot: -1.5707963267948966 rad pos: 37.5,22.5 parent: 2 type: Transform - - uid: 26529 + - uid: 26758 components: - rot: -1.5707963267948966 rad pos: 38.5,22.5 parent: 2 type: Transform - - uid: 26530 + - uid: 26759 components: - pos: 35.5,21.5 parent: 2 type: Transform - - uid: 26531 + - uid: 26760 components: - rot: -1.5707963267948966 rad pos: 37.5,19.5 parent: 2 type: Transform - - uid: 26532 + - uid: 26761 components: - rot: -1.5707963267948966 rad pos: 39.5,22.5 parent: 2 type: Transform - - uid: 26533 + - uid: 26762 components: - rot: -1.5707963267948966 rad pos: 40.5,22.5 parent: 2 type: Transform - - uid: 26534 + - uid: 26763 components: - rot: -1.5707963267948966 rad pos: 37.5,18.5 parent: 2 type: Transform - - uid: 26535 + - uid: 26764 components: - rot: 3.141592653589793 rad pos: 35.5,24.5 parent: 2 type: Transform - - uid: 26536 + - uid: 26765 components: - rot: 3.141592653589793 rad pos: 37.5,24.5 parent: 2 type: Transform - - uid: 26537 + - uid: 26766 components: - rot: -1.5707963267948966 rad pos: 39.5,24.5 parent: 2 type: Transform - - uid: 26538 + - uid: 26767 components: - rot: -1.5707963267948966 rad pos: 46.5,25.5 parent: 2 type: Transform - - uid: 26539 + - uid: 26768 components: - rot: -1.5707963267948966 rad pos: 61.5,25.5 parent: 2 type: Transform - - uid: 26540 + - uid: 26769 components: - rot: -1.5707963267948966 rad pos: 59.5,25.5 parent: 2 type: Transform - - uid: 26541 + - uid: 26770 components: - rot: -1.5707963267948966 rad pos: 58.5,25.5 parent: 2 type: Transform - - uid: 26542 + - uid: 26771 components: - rot: -1.5707963267948966 rad pos: 47.5,25.5 parent: 2 type: Transform - - uid: 26543 + - uid: 26772 components: - rot: -1.5707963267948966 rad pos: 60.5,25.5 parent: 2 type: Transform - - uid: 26544 + - uid: 26773 components: - rot: -1.5707963267948966 rad pos: 57.5,25.5 parent: 2 type: Transform - - uid: 26545 + - uid: 26774 components: - rot: -1.5707963267948966 rad pos: 54.5,25.5 parent: 2 type: Transform - - uid: 26546 + - uid: 26775 components: - rot: -1.5707963267948966 rad pos: 50.5,25.5 parent: 2 type: Transform - - uid: 26547 + - uid: 26776 components: - rot: -1.5707963267948966 rad pos: 45.5,25.5 parent: 2 type: Transform - - uid: 26548 + - uid: 26777 components: - rot: -1.5707963267948966 rad pos: 45.5,24.5 parent: 2 type: Transform - - uid: 26549 + - uid: 26778 components: - rot: -1.5707963267948966 rad pos: 45.5,23.5 parent: 2 type: Transform - - uid: 26550 + - uid: 26779 components: - rot: -1.5707963267948966 rad pos: 56.5,25.5 parent: 2 type: Transform - - uid: 26551 + - uid: 26780 components: - rot: -1.5707963267948966 rad pos: 55.5,25.5 parent: 2 type: Transform - - uid: 26552 + - uid: 26781 components: - rot: -1.5707963267948966 rad pos: 49.5,25.5 parent: 2 type: Transform - - uid: 26553 + - uid: 26782 components: - rot: -1.5707963267948966 rad pos: 48.5,25.5 parent: 2 type: Transform - - uid: 26554 + - uid: 26783 components: - rot: -1.5707963267948966 rad pos: 53.5,25.5 parent: 2 type: Transform - - uid: 26555 + - uid: 26784 components: - rot: -1.5707963267948966 rad pos: 62.5,25.5 parent: 2 type: Transform - - uid: 26556 + - uid: 26785 components: - rot: -1.5707963267948966 rad pos: 52.5,25.5 parent: 2 type: Transform - - uid: 26557 + - uid: 26786 components: - rot: -1.5707963267948966 rad pos: 51.5,25.5 parent: 2 type: Transform - - uid: 26558 + - uid: 26787 components: - rot: -1.5707963267948966 rad pos: 64.5,25.5 parent: 2 type: Transform - - uid: 26559 + - uid: 26788 components: - rot: -1.5707963267948966 rad pos: 63.5,25.5 parent: 2 type: Transform - - uid: 26560 + - uid: 26789 components: - rot: -1.5707963267948966 rad pos: 64.5,24.5 parent: 2 type: Transform - - uid: 26561 + - uid: 26790 components: - rot: -1.5707963267948966 rad pos: 64.5,23.5 parent: 2 type: Transform - - uid: 26562 + - uid: 26791 components: - rot: -1.5707963267948966 rad pos: 64.5,22.5 parent: 2 type: Transform - - uid: 26563 + - uid: 26792 components: - pos: 64.5,21.5 parent: 2 type: Transform - - uid: 26564 + - uid: 26793 components: - rot: -1.5707963267948966 rad pos: 64.5,20.5 parent: 2 type: Transform - - uid: 26565 + - uid: 26794 components: - rot: -1.5707963267948966 rad pos: 63.5,20.5 parent: 2 type: Transform - - uid: 26566 + - uid: 26795 components: - rot: -1.5707963267948966 rad pos: 63.5,19.5 parent: 2 type: Transform - - uid: 26567 + - uid: 26796 components: - rot: -1.5707963267948966 rad pos: 45.5,22.5 parent: 2 type: Transform - - uid: 26568 + - uid: 26797 components: - rot: -1.5707963267948966 rad pos: 44.5,22.5 parent: 2 type: Transform - - uid: 26569 + - uid: 26798 components: - rot: -1.5707963267948966 rad pos: 43.5,22.5 parent: 2 type: Transform - - uid: 26570 + - uid: 26799 components: - rot: -1.5707963267948966 rad pos: 41.5,22.5 parent: 2 type: Transform - - uid: 26571 + - uid: 26800 components: - rot: 3.141592653589793 rad pos: 31.5,33.5 parent: 2 type: Transform - - uid: 26572 + - uid: 26801 components: - pos: 43.5,24.5 parent: 2 type: Transform - - uid: 26573 + - uid: 26802 components: - pos: 43.5,25.5 parent: 2 type: Transform - - uid: 26574 + - uid: 26803 components: - pos: 43.5,26.5 parent: 2 type: Transform - - uid: 26575 + - uid: 26804 components: - pos: 43.5,27.5 parent: 2 type: Transform - - uid: 26576 + - uid: 26805 components: - pos: 51.5,59.5 parent: 2 type: Transform - - uid: 26577 + - uid: 26806 components: - pos: 50.5,59.5 parent: 2 type: Transform - - uid: 26578 + - uid: 26807 components: - pos: 50.5,55.5 parent: 2 type: Transform - - uid: 26579 + - uid: 26808 components: - pos: 51.5,55.5 parent: 2 type: Transform - - uid: 26580 + - uid: 26809 components: - pos: 51.5,54.5 parent: 2 type: Transform - - uid: 26581 + - uid: 26810 components: - pos: 57.5,54.5 parent: 2 type: Transform - - uid: 26582 + - uid: 26811 components: - pos: 57.5,55.5 parent: 2 type: Transform - - uid: 26583 + - uid: 26812 components: - pos: 57.5,59.5 parent: 2 type: Transform - - uid: 26584 + - uid: 26813 components: - pos: 58.5,59.5 parent: 2 type: Transform - - uid: 26585 + - uid: 26814 components: - pos: 58.5,55.5 parent: 2 type: Transform - - uid: 26586 + - uid: 26815 components: - pos: 51.5,60.5 parent: 2 type: Transform - - uid: 26587 + - uid: 26816 components: - pos: 52.5,60.5 parent: 2 type: Transform - - uid: 26588 + - uid: 26817 components: - pos: 52.5,61.5 parent: 2 type: Transform - - uid: 26589 + - uid: 26818 components: - pos: 56.5,61.5 parent: 2 type: Transform - - uid: 26590 + - uid: 26819 components: - pos: 56.5,60.5 parent: 2 type: Transform - - uid: 26591 + - uid: 26820 components: - pos: 65.5,27.5 parent: 2 type: Transform - - uid: 26592 + - uid: 26821 components: - rot: -1.5707963267948966 rad pos: 64.5,13.5 parent: 2 type: Transform - - uid: 26593 + - uid: 26822 components: - rot: -1.5707963267948966 rad pos: 64.5,12.5 parent: 2 type: Transform - - uid: 26594 + - uid: 26823 components: - rot: -1.5707963267948966 rad pos: 64.5,11.5 parent: 2 type: Transform - - uid: 26595 + - uid: 26824 components: - rot: -1.5707963267948966 rad pos: 64.5,10.5 parent: 2 type: Transform - - uid: 26596 + - uid: 26825 components: - rot: -1.5707963267948966 rad pos: 64.5,8.5 parent: 2 type: Transform - - uid: 26597 + - uid: 26826 components: - rot: -1.5707963267948966 rad pos: 64.5,9.5 parent: 2 type: Transform - - uid: 26598 + - uid: 26827 components: - rot: -1.5707963267948966 rad pos: 64.5,7.5 parent: 2 type: Transform - - uid: 26599 + - uid: 26828 components: - rot: -1.5707963267948966 rad pos: 64.5,6.5 parent: 2 type: Transform - - uid: 26600 + - uid: 26829 components: - pos: 66.5,27.5 parent: 2 type: Transform - - uid: 26601 + - uid: 26830 components: - pos: 66.5,27.5 parent: 2 type: Transform - - uid: 26602 + - uid: 26831 components: - pos: 66.5,26.5 parent: 2 type: Transform - - uid: 26603 + - uid: 26832 components: - pos: 66.5,24.5 parent: 2 type: Transform - - uid: 26604 + - uid: 26833 components: - pos: 66.5,22.5 parent: 2 type: Transform - - uid: 26605 + - uid: 26834 components: - pos: 66.5,21.5 parent: 2 type: Transform - - uid: 26606 + - uid: 26835 components: - pos: 66.5,20.5 parent: 2 type: Transform - - uid: 26607 + - uid: 26836 components: - pos: 66.5,19.5 parent: 2 type: Transform - - uid: 26608 + - uid: 26837 components: - pos: 66.5,18.5 parent: 2 type: Transform - - uid: 26609 + - uid: 26838 components: - pos: 65.5,18.5 parent: 2 type: Transform - - uid: 26610 + - uid: 26839 components: - pos: 65.5,17.5 parent: 2 type: Transform - - uid: 26611 + - uid: 26840 components: - pos: 65.5,16.5 parent: 2 type: Transform - - uid: 26612 + - uid: 26841 components: - pos: 66.5,16.5 parent: 2 type: Transform - - uid: 26613 + - uid: 26842 components: - pos: 66.5,15.5 parent: 2 type: Transform - - uid: 26614 + - uid: 26843 components: - pos: 66.5,14.5 parent: 2 type: Transform - - uid: 26615 + - uid: 26844 components: - pos: 66.5,13.5 parent: 2 type: Transform - - uid: 26616 + - uid: 26845 components: - pos: 67.5,5.5 parent: 2 type: Transform - - uid: 26617 + - uid: 26846 components: - pos: 68.5,9.5 parent: 2 type: Transform - - uid: 26618 + - uid: 26847 components: - pos: 67.5,13.5 parent: 2 type: Transform - - uid: 26619 + - uid: 26848 components: - pos: 67.5,12.5 parent: 2 type: Transform - - uid: 26620 + - uid: 26849 components: - pos: 67.5,6.5 parent: 2 type: Transform - - uid: 26621 + - uid: 26850 components: - pos: 43.5,8.5 parent: 2 type: Transform - - uid: 26622 + - uid: 26851 components: - pos: 48.5,4.5 parent: 2 type: Transform - - uid: 26623 + - uid: 26852 components: - pos: 48.5,5.5 parent: 2 type: Transform - - uid: 26624 + - uid: 26853 components: - pos: 49.5,3.5 parent: 2 type: Transform - - uid: 26625 + - uid: 26854 components: - pos: 50.5,3.5 parent: 2 type: Transform - - uid: 26626 + - uid: 26855 components: - pos: 50.5,4.5 parent: 2 type: Transform - - uid: 26627 + - uid: 26856 components: - pos: 51.5,4.5 parent: 2 type: Transform - - uid: 26628 + - uid: 26857 components: - pos: 52.5,4.5 parent: 2 type: Transform - - uid: 26629 + - uid: 26858 components: - pos: 53.5,4.5 parent: 2 type: Transform - - uid: 26630 + - uid: 26859 components: - pos: 54.5,4.5 parent: 2 type: Transform - - uid: 26631 + - uid: 26860 components: - pos: 54.5,3.5 parent: 2 type: Transform - - uid: 26632 + - uid: 26861 components: - pos: 55.5,3.5 parent: 2 type: Transform - - uid: 26633 + - uid: 26862 components: - pos: 56.5,3.5 parent: 2 type: Transform - - uid: 26634 + - uid: 26863 components: - pos: 57.5,3.5 parent: 2 type: Transform - - uid: 26635 + - uid: 26864 components: - pos: 58.5,3.5 parent: 2 type: Transform - - uid: 26636 + - uid: 26865 components: - pos: 64.5,5.5 parent: 2 type: Transform - - uid: 26637 + - uid: 26866 components: - pos: 64.5,4.5 parent: 2 type: Transform - - uid: 26638 + - uid: 26867 components: - pos: 64.5,3.5 parent: 2 type: Transform - - uid: 26639 + - uid: 26868 components: - pos: 63.5,3.5 parent: 2 type: Transform - - uid: 26640 + - uid: 26869 components: - pos: 62.5,3.5 parent: 2 type: Transform - - uid: 26641 + - uid: 26870 components: - pos: 61.5,3.5 parent: 2 type: Transform - - uid: 26642 + - uid: 26871 components: - pos: 60.5,3.5 parent: 2 type: Transform - - uid: 26643 + - uid: 26872 components: - pos: 59.5,3.5 parent: 2 type: Transform - - uid: 26644 + - uid: 26873 components: - rot: -1.5707963267948966 rad pos: 59.5,46.5 parent: 2 type: Transform - - uid: 26645 + - uid: 26874 components: - pos: 68.5,6.5 parent: 2 type: Transform - - uid: 26646 + - uid: 26875 components: - pos: 47.5,-17.5 parent: 2 type: Transform - - uid: 26647 + - uid: 26876 components: - pos: 44.5,13.5 parent: 2 type: Transform - - uid: 26648 + - uid: 26877 components: - pos: 47.5,9.5 parent: 2 type: Transform - - uid: 26649 + - uid: 26878 components: - pos: 44.5,3.5 parent: 2 type: Transform - - uid: 26650 + - uid: 26879 components: - rot: 3.141592653589793 rad pos: 39.5,10.5 parent: 2 type: Transform - - uid: 26651 + - uid: 26880 components: - pos: 48.5,8.5 parent: 2 type: Transform - - uid: 26652 + - uid: 26881 components: - pos: 33.5,19.5 parent: 2 type: Transform - - uid: 26653 + - uid: 26882 components: - rot: -1.5707963267948966 rad pos: 41.5,24.5 parent: 2 type: Transform - - uid: 26654 + - uid: 26883 components: - rot: 3.141592653589793 rad pos: 33.5,27.5 parent: 2 type: Transform - - uid: 26655 + - uid: 26884 components: - rot: 3.141592653589793 rad pos: 25.5,29.5 parent: 2 type: Transform - - uid: 26656 + - uid: 26885 components: - pos: 42.5,22.5 parent: 2 type: Transform - - uid: 26657 + - uid: 26886 components: - pos: 47.5,-16.5 parent: 2 type: Transform - - uid: 26658 + - uid: 26887 components: - rot: -1.5707963267948966 rad pos: 39.5,-16.5 parent: 2 type: Transform - - uid: 26659 + - uid: 26888 components: - rot: -1.5707963267948966 rad pos: 40.5,-16.5 parent: 2 type: Transform - - uid: 26660 + - uid: 26889 components: - rot: -1.5707963267948966 rad pos: 40.5,-15.5 parent: 2 type: Transform - - uid: 26661 + - uid: 26890 components: - rot: -1.5707963267948966 rad pos: 41.5,-15.5 parent: 2 type: Transform - - uid: 26662 + - uid: 26891 components: - pos: 48.5,-15.5 parent: 2 type: Transform - - uid: 26663 + - uid: 26892 components: - pos: 44.5,-17.5 parent: 2 type: Transform - - uid: 26664 + - uid: 26893 components: - pos: 44.5,-16.5 parent: 2 type: Transform - - uid: 26665 + - uid: 26894 components: - pos: 11.5,-18.5 parent: 2 type: Transform - - uid: 26666 + - uid: 26895 components: - pos: 44.5,9.5 parent: 2 type: Transform - - uid: 26667 + - uid: 26896 components: - rot: 1.5707963267948966 rad pos: 69.5,-12.5 parent: 2 type: Transform - - uid: 26668 + - uid: 26897 components: - rot: 1.5707963267948966 rad pos: 69.5,-10.5 parent: 2 type: Transform - - uid: 26669 + - uid: 26898 components: - rot: 1.5707963267948966 rad pos: 66.5,-14.5 parent: 2 type: Transform - - uid: 26670 + - uid: 26899 components: - rot: 1.5707963267948966 rad pos: 69.5,-14.5 parent: 2 type: Transform - - uid: 26671 + - uid: 26900 components: - pos: 48.5,-14.5 parent: 2 type: Transform - - uid: 26672 + - uid: 26901 components: - pos: 48.5,-16.5 parent: 2 type: Transform - - uid: 26673 + - uid: 26902 components: - pos: 43.5,-16.5 parent: 2 type: Transform - - uid: 26674 + - uid: 26903 components: - pos: 49.5,-14.5 parent: 2 type: Transform - - uid: 26675 + - uid: 26904 components: - pos: 50.5,-14.5 parent: 2 type: Transform - - uid: 26676 + - uid: 26905 components: - pos: 51.5,-14.5 parent: 2 type: Transform - - uid: 26677 + - uid: 26906 components: - rot: 3.141592653589793 rad pos: 54.5,-15.5 parent: 2 type: Transform - - uid: 26678 + - uid: 26907 components: - rot: 3.141592653589793 rad pos: 60.5,-15.5 parent: 2 type: Transform - - uid: 26679 + - uid: 26908 components: - rot: 3.141592653589793 rad pos: 57.5,-15.5 parent: 2 type: Transform - - uid: 26680 + - uid: 26909 components: - rot: 3.141592653589793 rad pos: 53.5,-15.5 parent: 2 type: Transform - - uid: 26681 + - uid: 26910 components: - rot: 3.141592653589793 rad pos: 53.5,-16.5 parent: 2 type: Transform - - uid: 26682 + - uid: 26911 components: - rot: 3.141592653589793 rad pos: 51.5,-15.5 parent: 2 type: Transform - - uid: 26683 + - uid: 26912 components: - pos: 63.5,-14.5 parent: 2 type: Transform - - uid: 26684 + - uid: 26913 components: - pos: 64.5,-14.5 parent: 2 type: Transform - - uid: 26685 + - uid: 26914 components: - pos: 65.5,-14.5 parent: 2 type: Transform - - uid: 26686 + - uid: 26915 components: - rot: 1.5707963267948966 rad pos: 69.5,-4.5 parent: 2 type: Transform - - uid: 26687 + - uid: 26916 components: - rot: 3.141592653589793 rad pos: 66.5,-2.5 parent: 2 type: Transform - - uid: 26688 + - uid: 26917 components: - pos: 68.5,-14.5 parent: 2 type: Transform - - uid: 26689 + - uid: 26918 components: - rot: 1.5707963267948966 rad pos: 69.5,-2.5 parent: 2 type: Transform - - uid: 26690 + - uid: 26919 components: - pos: 63.5,-15.5 parent: 2 type: Transform - - uid: 26691 + - uid: 26920 components: - rot: 3.141592653589793 rad pos: 51.5,-16.5 parent: 2 type: Transform - - uid: 26692 + - uid: 26921 components: - pos: 63.5,-16.5 parent: 2 type: Transform - - uid: 26693 + - uid: 26922 components: - pos: 63.5,-17.5 parent: 2 type: Transform - - uid: 26694 + - uid: 26923 components: - pos: 63.5,-19.5 parent: 2 type: Transform - - uid: 26695 + - uid: 26924 components: - pos: 63.5,-21.5 parent: 2 type: Transform - - uid: 26696 + - uid: 26925 components: - pos: 63.5,-23.5 parent: 2 type: Transform - - uid: 26697 + - uid: 26926 components: - pos: 63.5,-25.5 parent: 2 type: Transform - - uid: 26698 + - uid: 26927 components: - pos: 63.5,-27.5 parent: 2 type: Transform - - uid: 26699 + - uid: 26928 components: - pos: 64.5,-27.5 parent: 2 type: Transform - - uid: 26700 + - uid: 26929 components: - pos: 69.5,-31.5 parent: 2 type: Transform - - uid: 26701 + - uid: 26930 components: - pos: 61.5,-16.5 parent: 2 type: Transform - - uid: 26702 + - uid: 26931 components: - pos: 61.5,-17.5 parent: 2 type: Transform - - uid: 26703 + - uid: 26932 components: - pos: 61.5,-19.5 parent: 2 type: Transform - - uid: 26704 + - uid: 26933 components: - pos: 61.5,-21.5 parent: 2 type: Transform - - uid: 26705 + - uid: 26934 components: - pos: 61.5,-23.5 parent: 2 type: Transform - - uid: 26706 + - uid: 26935 components: - pos: 61.5,-25.5 parent: 2 type: Transform - - uid: 26707 + - uid: 26936 components: - pos: 69.5,-32.5 parent: 2 type: Transform - - uid: 26708 + - uid: 26937 components: - pos: 60.5,-16.5 parent: 2 type: Transform - - uid: 26709 + - uid: 26938 components: - pos: -2.5,-36.5 parent: 2 type: Transform - - uid: 26710 + - uid: 26939 components: - pos: 43.5,-15.5 parent: 2 type: Transform - - uid: 26711 + - uid: 26940 components: - pos: 42.5,-15.5 parent: 2 type: Transform - - uid: 26712 + - uid: 26941 components: - pos: 68.5,-15.5 parent: 2 type: Transform - - uid: 26713 + - uid: 26942 components: - rot: 1.5707963267948966 rad pos: 69.5,-6.5 parent: 2 type: Transform - - uid: 26714 + - uid: 26943 components: - rot: -1.5707963267948966 rad pos: 57.5,37.5 parent: 2 type: Transform - - uid: 26715 + - uid: 26944 components: - pos: 70.5,-30.5 parent: 2 type: Transform - - uid: 26716 + - uid: 26945 components: - pos: 72.5,-39.5 parent: 2 type: Transform - - uid: 26717 + - uid: 26946 components: - pos: 76.5,-32.5 parent: 2 type: Transform - - uid: 26718 + - uid: 26947 components: - pos: 65.5,-37.5 parent: 2 type: Transform - - uid: 26719 + - uid: 26948 components: - pos: 63.5,-40.5 parent: 2 type: Transform - - uid: 26720 + - uid: 26949 components: - pos: 63.5,-38.5 parent: 2 type: Transform - - uid: 26721 + - uid: 26950 components: - pos: 76.5,-31.5 parent: 2 type: Transform - - uid: 26722 + - uid: 26951 components: - rot: -1.5707963267948966 rad pos: 60.5,-25.5 parent: 2 type: Transform - - uid: 26723 + - uid: 26952 components: - pos: 52.5,-48.5 parent: 2 type: Transform - - uid: 26724 + - uid: 26953 components: - pos: 52.5,-47.5 parent: 2 type: Transform - - uid: 26725 + - uid: 26954 components: - pos: 52.5,-46.5 parent: 2 type: Transform - - uid: 26726 + - uid: 26955 components: - pos: 53.5,-46.5 parent: 2 type: Transform - - uid: 26727 + - uid: 26956 components: - pos: 54.5,-46.5 parent: 2 type: Transform - - uid: 26728 + - uid: 26957 components: - pos: 71.5,-66.5 parent: 2 type: Transform - - uid: 26729 + - uid: 26958 components: - pos: 75.5,-31.5 parent: 2 type: Transform - - uid: 26730 + - uid: 26959 components: - pos: 75.5,-30.5 parent: 2 type: Transform - - uid: 26731 + - uid: 26960 components: - pos: 74.5,-30.5 parent: 2 type: Transform - - uid: 26732 + - uid: 26961 components: - rot: -1.5707963267948966 rad pos: 70.5,-29.5 parent: 2 type: Transform - - uid: 26733 + - uid: 26962 components: - pos: 64.5,-42.5 parent: 2 type: Transform - - uid: 26734 + - uid: 26963 components: - pos: 55.5,-46.5 parent: 2 type: Transform - - uid: 26735 + - uid: 26964 components: - pos: 57.5,-46.5 parent: 2 type: Transform - - uid: 26736 + - uid: 26965 components: - pos: 58.5,-46.5 parent: 2 type: Transform - - uid: 26737 + - uid: 26966 components: - pos: 58.5,-47.5 parent: 2 type: Transform - - uid: 26738 + - uid: 26967 components: - pos: 58.5,-49.5 parent: 2 type: Transform - - uid: 26739 + - uid: 26968 components: - pos: 59.5,-50.5 parent: 2 type: Transform - - uid: 26740 + - uid: 26969 components: - pos: 60.5,-50.5 parent: 2 type: Transform - - uid: 26741 + - uid: 26970 components: - pos: 64.5,-50.5 parent: 2 type: Transform - - uid: 26742 + - uid: 26971 components: - pos: 65.5,-50.5 parent: 2 type: Transform - - uid: 26743 + - uid: 26972 components: - pos: 63.5,-37.5 parent: 2 type: Transform - - uid: 26744 + - uid: 26973 components: - pos: 7.5,-39.5 parent: 2 type: Transform - - uid: 26745 + - uid: 26974 components: - rot: -1.5707963267948966 rad pos: 53.5,-64.5 parent: 2 type: Transform - - uid: 26746 + - uid: 26975 components: - pos: 63.5,-39.5 parent: 2 type: Transform - - uid: 26747 + - uid: 26976 components: - pos: 63.5,-41.5 parent: 2 type: Transform - - uid: 26748 + - uid: 26977 components: - pos: 52.5,-49.5 parent: 2 type: Transform - - uid: 26749 + - uid: 26978 components: - pos: 53.5,-49.5 parent: 2 type: Transform - - uid: 26750 + - uid: 26979 components: - pos: 53.5,-50.5 parent: 2 type: Transform - - uid: 26751 + - uid: 26980 components: - pos: 54.5,-50.5 parent: 2 type: Transform - - uid: 26752 + - uid: 26981 components: - pos: 55.5,-54.5 parent: 2 type: Transform - - uid: 26753 + - uid: 26982 components: - pos: 65.5,-53.5 parent: 2 type: Transform - - uid: 26754 + - uid: 26983 components: - pos: 54.5,-54.5 parent: 2 type: Transform - - uid: 26755 + - uid: 26984 components: - pos: 59.5,-53.5 parent: 2 type: Transform - - uid: 26756 + - uid: 26985 components: - pos: 56.5,-54.5 parent: 2 type: Transform - - uid: 26757 + - uid: 26986 components: - pos: 64.5,-56.5 parent: 2 type: Transform - - uid: 26758 + - uid: 26987 components: - pos: 64.5,-55.5 parent: 2 type: Transform - - uid: 26759 + - uid: 26988 components: - pos: 60.5,-56.5 parent: 2 type: Transform - - uid: 26760 + - uid: 26989 components: - pos: 60.5,-55.5 parent: 2 type: Transform - - uid: 26761 + - uid: 26990 components: - pos: 66.5,-50.5 parent: 2 type: Transform - - uid: 26762 + - uid: 26991 components: - pos: 66.5,-53.5 parent: 2 type: Transform - - uid: 26763 + - uid: 26992 components: - pos: 65.5,-55.5 parent: 2 type: Transform - - uid: 26764 + - uid: 26993 components: - pos: 59.5,-55.5 parent: 2 type: Transform - - uid: 26765 + - uid: 26994 components: - pos: 58.5,-53.5 parent: 2 type: Transform - - uid: 26766 + - uid: 26995 components: - pos: 58.5,-50.5 parent: 2 type: Transform - - uid: 26767 + - uid: 26996 components: - pos: 76.5,-42.5 parent: 2 type: Transform - - uid: 26768 + - uid: 26997 components: - pos: 44.5,-65.5 parent: 2 type: Transform - - uid: 26769 + - uid: 26998 components: - pos: 70.5,-31.5 parent: 2 type: Transform - - uid: 26770 + - uid: 26999 components: - pos: 64.5,-30.5 parent: 2 type: Transform - - uid: 26771 + - uid: 27000 components: - pos: 73.5,-39.5 parent: 2 type: Transform - - uid: 26772 + - uid: 27001 components: - pos: 73.5,-42.5 parent: 2 type: Transform - - uid: 26773 + - uid: 27002 components: - pos: 73.5,-41.5 parent: 2 type: Transform - - uid: 26774 + - uid: 27003 components: - pos: 68.5,-50.5 parent: 2 type: Transform - - uid: 26775 + - uid: 27004 components: - pos: 67.5,-50.5 parent: 2 type: Transform - - uid: 26776 + - uid: 27005 components: - pos: 65.5,-27.5 parent: 2 type: Transform - - uid: 26777 + - uid: 27006 components: - pos: 65.5,-30.5 parent: 2 type: Transform - - uid: 26778 + - uid: 27007 components: - pos: 76.5,-39.5 parent: 2 type: Transform - - uid: 26779 + - uid: 27008 components: - pos: 76.5,-38.5 parent: 2 type: Transform - - uid: 26780 + - uid: 27009 components: - pos: 79.5,-32.5 parent: 2 type: Transform - - uid: 26781 + - uid: 27010 components: - pos: 79.5,-38.5 parent: 2 type: Transform - - uid: 26782 + - uid: 27011 components: - rot: -1.5707963267948966 rad pos: 74.5,-27.5 parent: 2 type: Transform - - uid: 26783 - components: - - pos: 78.5,-43.5 - parent: 2 - type: Transform - - uid: 26784 + - uid: 27012 components: - pos: 76.5,-41.5 parent: 2 type: Transform - - uid: 26785 + - uid: 27013 components: - pos: 76.5,-40.5 parent: 2 type: Transform - - uid: 26786 + - uid: 27014 components: - pos: 24.5,-57.5 parent: 2 type: Transform - - uid: 26787 + - uid: 27015 components: - rot: -1.5707963267948966 rad pos: 32.5,-80.5 parent: 2 type: Transform - - uid: 26788 + - uid: 27016 components: - pos: -45.5,-38.5 parent: 2 type: Transform - - uid: 26789 + - uid: 27017 components: - pos: 53.5,-54.5 parent: 2 type: Transform - - uid: 26790 + - uid: 27018 components: - pos: 53.5,-55.5 parent: 2 type: Transform - - uid: 26791 + - uid: 27019 components: - pos: 53.5,-56.5 parent: 2 type: Transform - - uid: 26792 + - uid: 27020 components: - rot: 3.141592653589793 rad pos: 52.5,-62.5 parent: 2 type: Transform - - uid: 26793 + - uid: 27021 components: - rot: 3.141592653589793 rad pos: 48.5,-62.5 parent: 2 type: Transform - - uid: 26794 + - uid: 27022 components: - rot: 3.141592653589793 rad pos: 47.5,-62.5 parent: 2 type: Transform - - uid: 26795 + - uid: 27023 components: - pos: 34.5,-61.5 parent: 2 type: Transform - - uid: 26796 + - uid: 27024 components: - pos: 35.5,-61.5 parent: 2 type: Transform - - uid: 26797 + - uid: 27025 components: - pos: 36.5,-61.5 parent: 2 type: Transform - - uid: 26798 + - uid: 27026 components: - pos: 37.5,-61.5 parent: 2 type: Transform - - uid: 26799 + - uid: 27027 components: - pos: 37.5,-62.5 parent: 2 type: Transform - - uid: 26800 + - uid: 27028 components: - pos: 37.5,-63.5 parent: 2 type: Transform - - uid: 26801 + - uid: 27029 components: - pos: 37.5,-65.5 parent: 2 type: Transform - - uid: 26802 + - uid: 27030 components: - pos: 37.5,-67.5 parent: 2 type: Transform - - uid: 26803 + - uid: 27031 components: - pos: 37.5,-68.5 parent: 2 type: Transform - - uid: 26804 + - uid: 27032 components: - rot: -1.5707963267948966 rad pos: 48.5,-66.5 parent: 2 type: Transform - - uid: 26805 + - uid: 27033 components: - pos: 41.5,-67.5 parent: 2 type: Transform - - uid: 26806 + - uid: 27034 components: - pos: 41.5,-68.5 parent: 2 type: Transform - - uid: 26807 + - uid: 27035 components: - pos: -33.5,-14.5 parent: 2 type: Transform - - uid: 26808 + - uid: 27036 components: - pos: -33.5,-18.5 parent: 2 type: Transform - - uid: 26809 + - uid: 27037 components: - pos: -33.5,-19.5 parent: 2 type: Transform - - uid: 26810 + - uid: 27038 components: - rot: 1.5707963267948966 rad pos: 44.5,-81.5 parent: 2 type: Transform - - uid: 26811 + - uid: 27039 components: - rot: -1.5707963267948966 rad pos: 57.5,41.5 parent: 2 type: Transform - - uid: 26812 + - uid: 27040 components: - pos: -17.5,-47.5 parent: 2 type: Transform - - uid: 26813 + - uid: 27041 components: - pos: -22.5,-44.5 parent: 2 type: Transform - - uid: 26814 + - uid: 27042 components: - rot: 3.141592653589793 rad pos: 24.5,26.5 parent: 2 type: Transform - - uid: 26815 + - uid: 27043 components: - pos: 56.5,-56.5 parent: 2 type: Transform - - uid: 26816 + - uid: 27044 components: - pos: 56.5,-57.5 parent: 2 type: Transform - - uid: 26817 + - uid: 27045 components: - pos: 57.5,-57.5 parent: 2 type: Transform - - uid: 26818 + - uid: 27046 components: - pos: 57.5,-58.5 parent: 2 type: Transform - - uid: 26819 + - uid: 27047 components: - pos: 58.5,-58.5 parent: 2 type: Transform - - uid: 26820 + - uid: 27048 components: - pos: 58.5,-61.5 parent: 2 type: Transform - - uid: 26821 + - uid: 27049 components: - pos: 53.5,-62.5 parent: 2 type: Transform - - uid: 26822 + - uid: 27050 components: - pos: 53.5,-25.5 parent: 2 type: Transform - - uid: 26823 + - uid: 27051 components: - pos: 52.5,-26.5 parent: 2 type: Transform - - uid: 26824 + - uid: 27052 components: - pos: -17.5,-49.5 parent: 2 type: Transform - - uid: 26825 + - uid: 27053 components: - pos: -17.5,-48.5 parent: 2 type: Transform - - uid: 26826 + - uid: 27054 components: - pos: -22.5,-45.5 parent: 2 type: Transform - - uid: 26827 + - uid: 27055 components: - pos: -22.5,-46.5 parent: 2 type: Transform - - uid: 26828 + - uid: 27056 components: - pos: -22.5,-47.5 parent: 2 type: Transform - - uid: 26829 + - uid: 27057 components: - rot: 1.5707963267948966 rad pos: 33.5,-88.5 parent: 2 type: Transform - - uid: 26830 + - uid: 27058 components: - rot: -1.5707963267948966 rad pos: 36.5,-74.5 parent: 2 type: Transform - - uid: 26831 + - uid: 27059 components: - rot: -1.5707963267948966 rad pos: 36.5,-75.5 parent: 2 type: Transform - - uid: 26832 + - uid: 27060 components: - pos: 42.5,-74.5 parent: 2 type: Transform - - uid: 26833 + - uid: 27061 components: - rot: 3.141592653589793 rad pos: 45.5,-74.5 parent: 2 type: Transform - - uid: 26834 + - uid: 27062 components: - rot: 3.141592653589793 rad pos: 46.5,-74.5 parent: 2 type: Transform - - uid: 26835 + - uid: 27063 components: - rot: 1.5707963267948966 rad pos: 34.5,-90.5 parent: 2 type: Transform - - uid: 26836 + - uid: 27064 components: - rot: 3.141592653589793 rad pos: 46.5,-70.5 parent: 2 type: Transform - - uid: 26837 + - uid: 27065 components: - pos: 33.5,-70.5 parent: 2 type: Transform - - uid: 26838 + - uid: 27066 components: - pos: 32.5,-70.5 parent: 2 type: Transform - - uid: 26839 + - uid: 27067 components: - pos: 12.5,-70.5 parent: 2 type: Transform - - uid: 26840 + - uid: 27068 components: - pos: 45.5,-70.5 parent: 2 type: Transform - - uid: 26841 + - uid: 27069 components: - pos: 41.5,-69.5 parent: 2 type: Transform - - uid: 26842 + - uid: 27070 components: - rot: -1.5707963267948966 rad pos: 42.5,-65.5 parent: 2 type: Transform - - uid: 26843 + - uid: 27071 components: - rot: -1.5707963267948966 rad pos: 41.5,-65.5 parent: 2 type: Transform - - uid: 26844 + - uid: 27072 components: - pos: 45.5,-69.5 parent: 2 type: Transform - - uid: 26845 + - uid: 27073 components: - pos: 37.5,-69.5 parent: 2 type: Transform - - uid: 26846 + - uid: 27074 components: - pos: 33.5,-69.5 parent: 2 type: Transform - - uid: 26847 + - uid: 27075 components: - rot: 1.5707963267948966 rad pos: 28.5,-75.5 parent: 2 type: Transform - - uid: 26848 + - uid: 27076 components: - rot: -1.5707963267948966 rad pos: 31.5,-94.5 parent: 2 type: Transform - - uid: 26849 + - uid: 27077 components: - rot: -1.5707963267948966 rad pos: 32.5,-75.5 parent: 2 type: Transform - - uid: 26850 + - uid: 27078 components: - pos: 7.5,-77.5 parent: 2 type: Transform - - uid: 26851 + - uid: 27079 components: - rot: 3.141592653589793 rad pos: 20.5,-84.5 parent: 2 type: Transform - - uid: 26852 + - uid: 27080 components: - rot: -1.5707963267948966 rad pos: 28.5,-93.5 parent: 2 type: Transform - - uid: 26853 + - uid: 27081 components: - rot: 3.141592653589793 rad pos: 10.5,-86.5 parent: 2 type: Transform - - uid: 26854 + - uid: 27082 components: - rot: 3.141592653589793 rad pos: 11.5,-87.5 parent: 2 type: Transform - - uid: 26855 + - uid: 27083 components: - rot: 3.141592653589793 rad pos: 12.5,-87.5 parent: 2 type: Transform - - uid: 26856 + - uid: 27084 components: - rot: 1.5707963267948966 rad pos: 50.5,-85.5 parent: 2 type: Transform - - uid: 26857 + - uid: 27085 components: - rot: 3.141592653589793 rad pos: 21.5,-82.5 parent: 2 type: Transform - - uid: 26858 + - uid: 27086 components: - rot: -1.5707963267948966 rad pos: 46.5,-76.5 parent: 2 type: Transform - - uid: 26859 + - uid: 27087 components: - rot: 3.141592653589793 rad pos: 20.5,-82.5 parent: 2 type: Transform - - uid: 26860 + - uid: 27088 components: - rot: 1.5707963267948966 rad pos: 45.5,-83.5 parent: 2 type: Transform - - uid: 26861 + - uid: 27089 components: - rot: 3.141592653589793 rad pos: 15.5,-78.5 parent: 2 type: Transform - - uid: 26862 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-88.5 - parent: 2 - type: Transform - - uid: 26863 + - uid: 27090 components: - rot: 3.141592653589793 rad pos: 18.5,-87.5 parent: 2 type: Transform - - uid: 26864 + - uid: 27091 components: - rot: 3.141592653589793 rad pos: 19.5,-87.5 parent: 2 type: Transform - - uid: 26865 + - uid: 27092 components: - rot: -1.5707963267948966 rad pos: 28.5,-87.5 parent: 2 type: Transform - - uid: 26866 + - uid: 27093 components: - rot: 3.141592653589793 rad pos: 19.5,-86.5 parent: 2 type: Transform - - uid: 26867 + - uid: 27094 components: - rot: 3.141592653589793 rad pos: 20.5,-86.5 parent: 2 type: Transform - - uid: 26868 + - uid: 27095 components: - rot: 3.141592653589793 rad pos: 20.5,-85.5 parent: 2 type: Transform - - uid: 26869 + - uid: 27096 components: - rot: 3.141592653589793 rad pos: 22.5,-84.5 parent: 2 type: Transform - - uid: 26870 + - uid: 27097 components: - rot: 1.5707963267948966 rad pos: 50.5,-75.5 parent: 2 type: Transform - - uid: 26871 + - uid: 27098 components: - rot: 3.141592653589793 rad pos: 20.5,-81.5 parent: 2 type: Transform - - uid: 26872 + - uid: 27099 components: - rot: 3.141592653589793 rad pos: 19.5,-80.5 parent: 2 type: Transform - - uid: 26873 - components: - - rot: 3.141592653589793 rad - pos: 18.5,-78.5 - parent: 2 - type: Transform - - uid: 26874 + - uid: 27100 components: - pos: 7.5,-75.5 parent: 2 type: Transform - - uid: 26875 + - uid: 27101 components: - rot: -1.5707963267948966 rad pos: 29.5,-93.5 parent: 2 type: Transform - - uid: 26876 + - uid: 27102 components: - rot: -1.5707963267948966 rad pos: 31.5,-95.5 parent: 2 type: Transform - - uid: 26877 + - uid: 27103 components: - rot: -1.5707963267948966 rad pos: 29.5,-95.5 parent: 2 type: Transform - - uid: 26878 + - uid: 27104 components: - rot: -1.5707963267948966 rad pos: 29.5,-94.5 parent: 2 type: Transform - - uid: 26879 + - uid: 27105 components: - rot: -1.5707963267948966 rad pos: 46.5,-80.5 parent: 2 type: Transform - - uid: 26880 + - uid: 27106 components: - pos: 8.5,-77.5 parent: 2 type: Transform - - uid: 26881 + - uid: 27107 components: - rot: 3.141592653589793 rad pos: 19.5,-79.5 parent: 2 type: Transform - - uid: 26882 + - uid: 27108 components: - rot: 3.141592653589793 rad pos: 18.5,-79.5 parent: 2 type: Transform - - uid: 26883 + - uid: 27109 components: - rot: 1.5707963267948966 rad pos: 34.5,-88.5 parent: 2 type: Transform - - uid: 26884 + - uid: 27110 components: - rot: -1.5707963267948966 rad pos: 44.5,-74.5 parent: 2 type: Transform - - uid: 26885 - components: - - rot: 3.141592653589793 rad - pos: 18.5,-88.5 - parent: 2 - type: Transform - - uid: 26886 + - uid: 27111 components: - pos: 12.5,-71.5 parent: 2 type: Transform - - uid: 26887 + - uid: 27112 components: - pos: 9.5,-72.5 parent: 2 type: Transform - - uid: 26888 + - uid: 27113 components: - pos: 9.5,-73.5 parent: 2 type: Transform - - uid: 26889 + - uid: 27114 components: - pos: 9.5,-74.5 parent: 2 type: Transform - - uid: 26890 + - uid: 27115 components: - pos: 10.5,-74.5 parent: 2 type: Transform - - uid: 26891 + - uid: 27116 components: - pos: 11.5,-74.5 parent: 2 type: Transform - - uid: 26892 + - uid: 27117 components: - pos: 12.5,-74.5 parent: 2 type: Transform - - uid: 26893 + - uid: 27118 components: - pos: 13.5,-74.5 parent: 2 type: Transform - - uid: 26894 + - uid: 27119 components: - pos: 16.5,-74.5 parent: 2 type: Transform - - uid: 26895 + - uid: 27120 components: - pos: 19.5,-74.5 parent: 2 type: Transform - - uid: 26896 + - uid: 27121 components: - pos: 21.5,-74.5 parent: 2 type: Transform - - uid: 26897 + - uid: 27122 components: - pos: 21.5,-72.5 parent: 2 type: Transform - - uid: 26898 + - uid: 27123 components: - pos: 20.5,-72.5 parent: 2 type: Transform - - uid: 26899 + - uid: 27124 components: - pos: 19.5,-72.5 parent: 2 type: Transform - - uid: 26900 + - uid: 27125 components: - pos: 31.5,-70.5 parent: 2 type: Transform - - uid: 26901 + - uid: 27126 components: - pos: 42.5,-75.5 parent: 2 type: Transform - - uid: 26902 + - uid: 27127 components: - pos: 44.5,-75.5 parent: 2 type: Transform - - uid: 26903 + - uid: 27128 components: - rot: -1.5707963267948966 rad pos: 27.5,-87.5 parent: 2 type: Transform - - uid: 26904 + - uid: 27129 components: - rot: -1.5707963267948966 rad pos: 33.5,-83.5 parent: 2 type: Transform - - uid: 26905 + - uid: 27130 components: - rot: 1.5707963267948966 rad pos: 46.5,-81.5 parent: 2 type: Transform - - uid: 26906 + - uid: 27131 components: - rot: -1.5707963267948966 rad pos: 26.5,-87.5 parent: 2 type: Transform - - uid: 26907 + - uid: 27132 components: - rot: -1.5707963267948966 rad pos: 34.5,-75.5 parent: 2 type: Transform - - uid: 26908 + - uid: 27133 components: - rot: 1.5707963267948966 rad pos: 46.5,-83.5 parent: 2 type: Transform - - uid: 26909 + - uid: 27134 components: - rot: -1.5707963267948966 rad pos: 27.5,-79.5 parent: 2 type: Transform - - uid: 26910 + - uid: 27135 components: - pos: 16.5,-71.5 parent: 2 type: Transform - - uid: 26911 + - uid: 27136 components: - pos: 29.5,-69.5 parent: 2 type: Transform - - uid: 26912 + - uid: 27137 components: - pos: 29.5,-70.5 parent: 2 type: Transform - - uid: 26913 + - uid: 27138 components: - pos: 28.5,-68.5 parent: 2 type: Transform - - uid: 26914 + - uid: 27139 components: - pos: 30.5,-70.5 parent: 2 type: Transform - - uid: 26915 + - uid: 27140 components: - pos: 20.5,-74.5 parent: 2 type: Transform - - uid: 26916 + - uid: 27141 components: - pos: 19.5,-71.5 parent: 2 type: Transform - - uid: 26917 + - uid: 27142 components: - pos: 22.5,-70.5 parent: 2 type: Transform - - uid: 26918 + - uid: 27143 components: - rot: -1.5707963267948966 rad pos: 32.5,-93.5 parent: 2 type: Transform - - uid: 26919 + - uid: 27144 components: - pos: 23.5,-82.5 parent: 2 type: Transform - - uid: 26920 + - uid: 27145 components: - rot: 3.141592653589793 rad pos: 22.5,-82.5 parent: 2 type: Transform - - uid: 26921 + - uid: 27146 components: - pos: 23.5,-84.5 parent: 2 type: Transform - - uid: 26922 + - uid: 27147 components: - pos: 21.5,-70.5 parent: 2 type: Transform - - uid: 26923 + - uid: 27148 components: - pos: 22.5,-74.5 parent: 2 type: Transform - - uid: 26924 + - uid: 27149 components: - pos: 23.5,-74.5 parent: 2 type: Transform - - uid: 26925 + - uid: 27150 components: - pos: 23.5,-75.5 parent: 2 type: Transform - - uid: 26926 + - uid: 27151 components: - rot: 1.5707963267948966 rad pos: 28.5,-78.5 parent: 2 type: Transform - - uid: 26927 + - uid: 27152 components: - rot: -1.5707963267948966 rad pos: 23.5,-86.5 parent: 2 type: Transform - - uid: 26928 + - uid: 27153 components: - rot: 1.5707963267948966 rad pos: 28.5,-88.5 parent: 2 type: Transform - - uid: 26929 + - uid: 27154 components: - rot: 1.5707963267948966 rad pos: 50.5,-86.5 parent: 2 type: Transform - - uid: 26930 + - uid: 27155 components: - rot: 3.141592653589793 rad pos: 11.5,-80.5 parent: 2 type: Transform - - uid: 26931 + - uid: 27156 components: - rot: 3.141592653589793 rad pos: 11.5,-86.5 parent: 2 type: Transform - - uid: 26932 + - uid: 27157 components: - pos: 7.5,-73.5 parent: 2 type: Transform - - uid: 26933 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-78.5 - parent: 2 - type: Transform - - uid: 26934 + - uid: 27158 components: - rot: 3.141592653589793 rad pos: 21.5,-84.5 parent: 2 type: Transform - - uid: 26935 + - uid: 27159 components: - rot: 3.141592653589793 rad pos: 15.5,-88.5 parent: 2 type: Transform - - uid: 26936 + - uid: 27160 components: - rot: 3.141592653589793 rad pos: 20.5,-80.5 parent: 2 type: Transform - - uid: 26937 + - uid: 27161 components: - rot: 1.5707963267948966 rad pos: 28.5,-76.5 parent: 2 type: Transform - - uid: 26938 + - uid: 27162 components: - rot: 1.5707963267948966 rad pos: 32.5,-90.5 parent: 2 type: Transform - - uid: 26939 + - uid: 27163 components: - rot: 1.5707963267948966 rad pos: 32.5,-88.5 parent: 2 type: Transform - - uid: 26940 + - uid: 27164 components: - rot: -1.5707963267948966 rad pos: 41.5,-66.5 parent: 2 type: Transform - - uid: 26941 + - uid: 27165 components: - rot: 1.5707963267948966 rad pos: 46.5,-90.5 parent: 2 type: Transform - - uid: 26942 + - uid: 27166 components: - rot: -1.5707963267948966 rad pos: 23.5,-81.5 parent: 2 type: Transform - - uid: 26943 + - uid: 27167 components: - pos: 21.5,-71.5 parent: 2 type: Transform - - uid: 26944 + - uid: 27168 components: - rot: -1.5707963267948966 rad pos: 53.5,-63.5 parent: 2 type: Transform - - uid: 26945 + - uid: 27169 components: - rot: 1.5707963267948966 rad pos: 49.5,-70.5 parent: 2 type: Transform - - uid: 26946 + - uid: 27170 components: - rot: -1.5707963267948966 rad pos: 23.5,-85.5 parent: 2 type: Transform - - uid: 26947 + - uid: 27171 components: - pos: 23.5,-68.5 parent: 2 type: Transform - - uid: 26948 + - uid: 27172 components: - pos: -34.5,-14.5 parent: 2 type: Transform - - uid: 26949 + - uid: 27173 components: - pos: -35.5,-14.5 parent: 2 type: Transform - - uid: 26950 + - uid: 27174 components: - pos: -38.5,-14.5 parent: 2 type: Transform - - uid: 26951 + - uid: 27175 components: - pos: -39.5,-14.5 parent: 2 type: Transform - - uid: 26952 + - uid: 27176 components: - pos: -40.5,-14.5 parent: 2 type: Transform - - uid: 26953 + - uid: 27177 components: - pos: -17.5,-46.5 parent: 2 type: Transform - - uid: 26954 + - uid: 27178 components: - pos: -17.5,-45.5 parent: 2 type: Transform - - uid: 26955 + - uid: 27179 components: - pos: -17.5,-44.5 parent: 2 type: Transform - - uid: 26956 + - uid: 27180 components: - pos: -18.5,-44.5 parent: 2 type: Transform - - uid: 26957 + - uid: 27181 components: - pos: -20.5,-44.5 parent: 2 type: Transform - - uid: 26958 + - uid: 27182 components: - pos: -21.5,-44.5 parent: 2 type: Transform - - uid: 26959 + - uid: 27183 components: - pos: -38.5,-19.5 parent: 2 type: Transform - - uid: 26960 + - uid: 27184 components: - pos: -38.5,-18.5 parent: 2 type: Transform - - uid: 26961 + - uid: 27185 components: - pos: -38.5,-17.5 parent: 2 type: Transform - - uid: 26962 + - uid: 27186 components: - pos: -38.5,-16.5 parent: 2 type: Transform - - uid: 26963 + - uid: 27187 components: - pos: -38.5,-15.5 parent: 2 type: Transform - - uid: 26964 + - uid: 27188 components: - pos: 77.5,-49.5 parent: 2 type: Transform - - uid: 26965 + - uid: 27189 components: - pos: 73.5,-50.5 parent: 2 type: Transform - - uid: 26966 + - uid: 27190 components: - pos: 73.5,-52.5 parent: 2 type: Transform - - uid: 26967 + - uid: 27191 components: - pos: 73.5,-54.5 parent: 2 type: Transform - - uid: 26968 + - uid: 27192 components: - pos: 72.5,-54.5 parent: 2 type: Transform - - uid: 26969 + - uid: 27193 components: - pos: 69.5,-54.5 parent: 2 type: Transform - - uid: 26970 + - uid: 27194 components: - rot: -1.5707963267948966 rad pos: 69.5,-55.5 parent: 2 type: Transform - - uid: 26971 + - uid: 27195 components: - rot: 3.141592653589793 rad pos: -40.5,-21.5 parent: 2 type: Transform - - uid: 26972 + - uid: 27196 components: - rot: 3.141592653589793 rad pos: -40.5,-22.5 parent: 2 type: Transform - - uid: 26973 + - uid: 27197 components: - pos: -44.5,-24.5 parent: 2 type: Transform - - uid: 26974 + - uid: 27198 components: - pos: -42.5,-14.5 parent: 2 type: Transform - - uid: 26975 + - uid: 27199 components: - pos: -43.5,-14.5 parent: 2 type: Transform - - uid: 26976 + - uid: 27200 components: - pos: -43.5,-12.5 parent: 2 type: Transform - - uid: 26977 + - uid: 27201 components: - pos: -43.5,-9.5 parent: 2 type: Transform - - uid: 26978 + - uid: 27202 components: - pos: -43.5,-8.5 parent: 2 type: Transform - - uid: 26979 + - uid: 27203 components: - pos: -43.5,-7.5 parent: 2 type: Transform - - uid: 26980 + - uid: 27204 components: - pos: -43.5,-19.5 parent: 2 type: Transform - - uid: 26981 + - uid: 27205 components: - pos: -42.5,-19.5 parent: 2 type: Transform - - uid: 26982 + - uid: 27206 components: - pos: -40.5,-19.5 parent: 2 type: Transform - - uid: 26983 + - uid: 27207 components: - pos: -39.5,-19.5 parent: 2 type: Transform - - uid: 26984 + - uid: 27208 components: - pos: -43.5,-15.5 parent: 2 type: Transform - - uid: 26985 + - uid: 27209 components: - pos: -43.5,-16.5 parent: 2 type: Transform - - uid: 26986 + - uid: 27210 components: - pos: -43.5,-17.5 parent: 2 type: Transform - - uid: 26987 + - uid: 27211 components: - pos: -43.5,-18.5 parent: 2 type: Transform - - uid: 26988 + - uid: 27212 components: - pos: 59.5,-61.5 parent: 2 type: Transform - - uid: 26989 + - uid: 27213 components: - pos: 67.5,-58.5 parent: 2 type: Transform - - uid: 26990 + - uid: 27214 components: - rot: -1.5707963267948966 rad pos: 67.5,-60.5 parent: 2 type: Transform - - uid: 26991 + - uid: 27215 components: - pos: 68.5,-58.5 parent: 2 type: Transform - - uid: 26992 + - uid: 27216 components: - pos: 65.5,-61.5 parent: 2 type: Transform - - uid: 26993 + - uid: 27217 components: - pos: 60.5,-61.5 parent: 2 type: Transform - - uid: 26994 + - uid: 27218 components: - pos: 65.5,-60.5 parent: 2 type: Transform - - uid: 26995 + - uid: 27219 components: - pos: 67.5,-59.5 parent: 2 type: Transform - - uid: 26996 + - uid: 27220 components: - pos: 52.5,-29.5 parent: 2 type: Transform - - uid: 26997 + - uid: 27221 components: - pos: 52.5,-28.5 parent: 2 type: Transform - - uid: 26998 + - uid: 27222 components: - pos: 52.5,-27.5 parent: 2 type: Transform - - uid: 26999 + - uid: 27223 components: - pos: 52.5,-30.5 parent: 2 type: Transform - - uid: 27000 + - uid: 27224 components: - pos: 52.5,-31.5 parent: 2 type: Transform - - uid: 27001 + - uid: 27225 components: - pos: 43.5,-32.5 parent: 2 type: Transform - - uid: 27002 + - uid: 27226 components: - pos: 58.5,-68.5 parent: 2 type: Transform - - uid: 27003 + - uid: 27227 components: - pos: 49.5,-32.5 parent: 2 type: Transform - - uid: 27004 + - uid: 27228 components: - pos: 48.5,-32.5 parent: 2 type: Transform - - uid: 27005 + - uid: 27229 components: - pos: 46.5,-32.5 parent: 2 type: Transform - - uid: 27006 + - uid: 27230 components: - pos: 57.5,-68.5 parent: 2 type: Transform - - uid: 27007 + - uid: 27231 components: - pos: 45.5,-32.5 parent: 2 type: Transform - - uid: 27008 + - uid: 27232 components: - pos: 69.5,-67.5 parent: 2 type: Transform - - uid: 27009 + - uid: 27233 components: - pos: 70.5,-67.5 parent: 2 type: Transform - - uid: 27010 + - uid: 27234 components: - pos: 71.5,-67.5 parent: 2 type: Transform - - uid: 27011 + - uid: 27235 components: - pos: 71.5,-63.5 parent: 2 type: Transform - - uid: 27012 + - uid: 27236 components: - pos: 72.5,-63.5 parent: 2 type: Transform - - uid: 27013 + - uid: 27237 components: - pos: 72.5,-60.5 parent: 2 type: Transform - - uid: 27014 + - uid: 27238 components: - pos: 73.5,-60.5 parent: 2 type: Transform - - uid: 27015 + - uid: 27239 components: - pos: 72.5,-61.5 parent: 2 type: Transform - - uid: 27016 + - uid: 27240 components: - pos: 72.5,-62.5 parent: 2 type: Transform - - uid: 27017 + - uid: 27241 components: - pos: 73.5,-59.5 parent: 2 type: Transform - - uid: 27018 + - uid: 27242 components: - pos: 73.5,-58.5 parent: 2 type: Transform - - uid: 27019 + - uid: 27243 components: - pos: 74.5,-58.5 parent: 2 type: Transform - - uid: 27020 + - uid: 27244 components: - pos: 75.5,-58.5 parent: 2 type: Transform - - uid: 27021 + - uid: 27245 components: - pos: 10.5,-38.5 parent: 2 type: Transform - - uid: 27022 + - uid: 27246 components: - pos: -43.5,-23.5 parent: 2 type: Transform - - uid: 27023 + - uid: 27247 components: - rot: 3.141592653589793 rad pos: -59.5,-28.5 parent: 2 type: Transform - - uid: 27024 + - uid: 27248 components: - pos: -43.5,-24.5 parent: 2 type: Transform - - uid: 27025 + - uid: 27249 components: - rot: 3.141592653589793 rad pos: -40.5,-20.5 parent: 2 type: Transform - - uid: 27026 + - uid: 27250 components: - rot: -1.5707963267948966 rad pos: -34.5,-38.5 parent: 2 type: Transform - - uid: 27027 + - uid: 27251 components: - rot: -1.5707963267948966 rad pos: -40.5,-37.5 parent: 2 type: Transform - - uid: 27028 + - uid: 27252 components: - pos: 28.5,-69.5 parent: 2 type: Transform - - uid: 27029 + - uid: 27253 components: - pos: 22.5,-69.5 parent: 2 type: Transform - - uid: 27030 + - uid: 27254 components: - pos: 23.5,-69.5 parent: 2 type: Transform - - uid: 27031 + - uid: 27255 components: - rot: -1.5707963267948966 rad pos: -33.5,-39.5 parent: 2 type: Transform - - uid: 27032 + - uid: 27256 components: - rot: -1.5707963267948966 rad pos: -33.5,-38.5 parent: 2 type: Transform - - uid: 27033 + - uid: 27257 components: - pos: -41.5,-36.5 parent: 2 type: Transform - - uid: 27034 + - uid: 27258 components: - pos: -41.5,-37.5 parent: 2 type: Transform - - uid: 27035 + - uid: 27259 components: - rot: -1.5707963267948966 rad pos: -39.5,-37.5 parent: 2 type: Transform - - uid: 27036 + - uid: 27260 components: - rot: -1.5707963267948966 rad pos: -35.5,-37.5 parent: 2 type: Transform - - uid: 27037 + - uid: 27261 components: - rot: -1.5707963267948966 rad pos: -36.5,-37.5 parent: 2 type: Transform - - uid: 27038 + - uid: 27262 components: - rot: -1.5707963267948966 rad pos: -33.5,-42.5 parent: 2 type: Transform - - uid: 27039 + - uid: 27263 components: - rot: -1.5707963267948966 rad pos: -32.5,-42.5 parent: 2 type: Transform - - uid: 27040 + - uid: 27264 components: - pos: -44.5,-7.5 parent: 2 type: Transform - - uid: 27041 + - uid: 27265 components: - pos: -45.5,-7.5 parent: 2 type: Transform - - uid: 27042 + - uid: 27266 components: - pos: -47.5,-7.5 parent: 2 type: Transform - - uid: 27043 + - uid: 27267 components: - pos: -48.5,-7.5 parent: 2 type: Transform - - uid: 27044 + - uid: 27268 components: - pos: -49.5,-10.5 parent: 2 type: Transform - - uid: 27045 + - uid: 27269 components: - pos: -49.5,-9.5 parent: 2 type: Transform - - uid: 27046 + - uid: 27270 components: - pos: -49.5,-8.5 parent: 2 type: Transform - - uid: 27047 + - uid: 27271 components: - pos: -49.5,-7.5 parent: 2 type: Transform - - uid: 27048 + - uid: 27272 components: - pos: -49.5,-18.5 parent: 2 type: Transform - - uid: 27049 + - uid: 27273 components: - pos: -48.5,-18.5 parent: 2 type: Transform - - uid: 27050 + - uid: 27274 components: - pos: -47.5,-18.5 parent: 2 type: Transform - - uid: 27051 + - uid: 27275 components: - pos: -46.5,-18.5 parent: 2 type: Transform - - uid: 27052 + - uid: 27276 components: - pos: -49.5,-11.5 parent: 2 type: Transform - - uid: 27053 + - uid: 27277 components: - pos: -50.5,-11.5 parent: 2 type: Transform - - uid: 27054 + - uid: 27278 components: - pos: -51.5,-11.5 parent: 2 type: Transform - - uid: 27055 + - uid: 27279 components: - pos: -51.5,-12.5 parent: 2 type: Transform - - uid: 27056 + - uid: 27280 components: - pos: -51.5,-14.5 parent: 2 type: Transform - - uid: 27057 + - uid: 27281 components: - pos: -51.5,-15.5 parent: 2 type: Transform - - uid: 27058 + - uid: 27282 components: - pos: -50.5,-15.5 parent: 2 type: Transform - - uid: 27059 + - uid: 27283 components: - pos: -49.5,-15.5 parent: 2 type: Transform - - uid: 27060 + - uid: 27284 components: - pos: -49.5,-4.5 parent: 2 type: Transform - - uid: 27061 + - uid: 27285 components: - pos: -50.5,-4.5 parent: 2 type: Transform - - uid: 27062 + - uid: 27286 components: - pos: -51.5,-4.5 parent: 2 type: Transform - - uid: 27063 + - uid: 27287 components: - pos: -52.5,-4.5 parent: 2 type: Transform - - uid: 27064 + - uid: 27288 components: - pos: -53.5,-4.5 parent: 2 type: Transform - - uid: 27065 + - uid: 27289 components: - pos: -54.5,-4.5 parent: 2 type: Transform - - uid: 27066 + - uid: 27290 components: - pos: -55.5,-4.5 parent: 2 type: Transform - - uid: 27067 + - uid: 27291 components: - pos: -55.5,-5.5 parent: 2 type: Transform - - uid: 27068 + - uid: 27292 components: - pos: -56.5,-5.5 parent: 2 type: Transform - - uid: 27069 + - uid: 27293 components: - pos: -56.5,-6.5 parent: 2 type: Transform - - uid: 27070 + - uid: 27294 components: - pos: -56.5,-7.5 parent: 2 type: Transform - - uid: 27071 + - uid: 27295 components: - pos: -56.5,-8.5 parent: 2 type: Transform - - uid: 27072 + - uid: 27296 components: - pos: -56.5,-9.5 parent: 2 type: Transform - - uid: 27073 + - uid: 27297 components: - pos: -56.5,-10.5 parent: 2 type: Transform - - uid: 27074 + - uid: 27298 components: - pos: -56.5,-16.5 parent: 2 type: Transform - - uid: 27075 + - uid: 27299 components: - pos: -56.5,-17.5 parent: 2 type: Transform - - uid: 27076 + - uid: 27300 components: - rot: -1.5707963267948966 rad pos: -57.5,-17.5 parent: 2 type: Transform - - uid: 27077 + - uid: 27301 components: - pos: -56.5,-19.5 parent: 2 type: Transform - - uid: 27078 + - uid: 27302 components: - pos: -56.5,-19.5 parent: 2 type: Transform - - uid: 27079 + - uid: 27303 components: - pos: -52.5,-21.5 parent: 2 type: Transform - - uid: 27080 + - uid: 27304 components: - pos: -50.5,-21.5 parent: 2 type: Transform - - uid: 27081 + - uid: 27305 components: - pos: -49.5,-21.5 parent: 2 type: Transform - - uid: 27082 + - uid: 27306 components: - pos: -44.5,-18.5 parent: 2 type: Transform - - uid: 27083 + - uid: 27307 components: - pos: -44.5,-18.5 parent: 2 type: Transform - - uid: 27084 + - uid: 27308 components: - pos: 55.5,-50.5 parent: 2 type: Transform - - uid: 27085 + - uid: 27309 components: - pos: -49.5,-22.5 parent: 2 type: Transform - - uid: 27086 + - uid: 27310 components: - rot: -1.5707963267948966 rad pos: -47.5,-24.5 parent: 2 type: Transform - - uid: 27087 + - uid: 27311 components: - pos: 56.5,-50.5 parent: 2 type: Transform - - uid: 27088 + - uid: 27312 components: - pos: -52.5,-26.5 parent: 2 type: Transform - - uid: 27089 + - uid: 27313 components: - pos: -49.5,-20.5 parent: 2 type: Transform - - uid: 27090 + - uid: 27314 components: - rot: 3.141592653589793 rad pos: -58.5,-22.5 parent: 2 type: Transform - - uid: 27091 + - uid: 27315 components: - rot: 3.141592653589793 rad pos: -59.5,-22.5 parent: 2 type: Transform - - uid: 27092 + - uid: 27316 components: - rot: 3.141592653589793 rad pos: -60.5,-22.5 parent: 2 type: Transform - - uid: 27093 + - uid: 27317 components: - rot: 3.141592653589793 rad pos: -61.5,-22.5 parent: 2 type: Transform - - uid: 27094 + - uid: 27318 components: - rot: 3.141592653589793 rad pos: -62.5,-22.5 parent: 2 type: Transform - - uid: 27095 + - uid: 27319 components: - rot: 3.141592653589793 rad pos: -63.5,-22.5 parent: 2 type: Transform - - uid: 27096 + - uid: 27320 components: - rot: 3.141592653589793 rad pos: -69.5,-22.5 parent: 2 type: Transform - - uid: 27097 + - uid: 27321 components: - rot: 3.141592653589793 rad pos: -70.5,-22.5 parent: 2 type: Transform - - uid: 27098 + - uid: 27322 components: - rot: 3.141592653589793 rad pos: -53.5,-26.5 parent: 2 type: Transform - - uid: 27099 + - uid: 27323 components: - rot: 3.141592653589793 rad pos: -55.5,-26.5 parent: 2 type: Transform - - uid: 27100 + - uid: 27324 components: - rot: 1.5707963267948966 rad pos: -56.5,-26.5 parent: 2 type: Transform - - uid: 27101 + - uid: 27325 components: - rot: 3.141592653589793 rad pos: -57.5,-26.5 parent: 2 type: Transform - - uid: 27102 + - uid: 27326 components: - rot: 3.141592653589793 rad pos: -59.5,-26.5 parent: 2 type: Transform - - uid: 27103 + - uid: 27327 components: - pos: -59.5,-29.5 parent: 2 type: Transform - - uid: 27104 + - uid: 27328 components: - rot: 3.141592653589793 rad pos: -63.5,-29.5 parent: 2 type: Transform - - uid: 27105 + - uid: 27329 components: - pos: -62.5,-26.5 parent: 2 type: Transform - - uid: 27106 + - uid: 27330 components: - pos: -63.5,-27.5 parent: 2 type: Transform - - uid: 27107 + - uid: 27331 components: - pos: -63.5,-28.5 parent: 2 type: Transform - - uid: 27108 + - uid: 27332 components: - pos: -63.5,-26.5 parent: 2 type: Transform - - uid: 27109 + - uid: 27333 components: - pos: -59.5,-31.5 parent: 2 type: Transform - - uid: 27110 + - uid: 27334 components: - pos: -60.5,-31.5 parent: 2 type: Transform - - uid: 27111 + - uid: 27335 components: - pos: -57.5,-19.5 parent: 2 type: Transform - - uid: 27112 + - uid: 27336 components: - pos: -58.5,-19.5 parent: 2 type: Transform - - uid: 27113 + - uid: 27337 components: - pos: -58.5,-20.5 parent: 2 type: Transform - - uid: 27114 + - uid: 27338 components: - pos: -58.5,-21.5 parent: 2 type: Transform - - uid: 27115 + - uid: 27339 components: - pos: -62.5,-31.5 parent: 2 type: Transform - - uid: 27116 + - uid: 27340 components: - pos: -63.5,-31.5 parent: 2 type: Transform - - uid: 27117 + - uid: 27341 components: - pos: -63.5,-32.5 parent: 2 type: Transform - - uid: 27118 + - uid: 27342 components: - rot: 1.5707963267948966 rad pos: -58.5,-26.5 parent: 2 type: Transform - - uid: 27119 + - uid: 27343 components: - rot: 1.5707963267948966 rad pos: -54.5,-26.5 parent: 2 type: Transform - - uid: 27120 + - uid: 27344 components: - rot: 3.141592653589793 rad pos: -40.5,-23.5 parent: 2 type: Transform - - uid: 27121 + - uid: 27345 components: - rot: 3.141592653589793 rad pos: -41.5,-23.5 parent: 2 type: Transform - - uid: 27122 + - uid: 27346 components: - rot: 3.141592653589793 rad pos: -42.5,-23.5 parent: 2 type: Transform - - uid: 27123 + - uid: 27347 components: - pos: -59.5,-27.5 parent: 2 type: Transform - - uid: 27124 + - uid: 27348 components: - pos: -50.5,-55.5 parent: 2 type: Transform - - uid: 27125 + - uid: 27349 components: - pos: -50.5,-53.5 parent: 2 type: Transform - - uid: 27126 + - uid: 27350 components: - pos: -50.5,-51.5 parent: 2 type: Transform - - uid: 27127 + - uid: 27351 components: - pos: -50.5,-49.5 parent: 2 type: Transform - - uid: 27128 + - uid: 27352 components: - pos: -50.5,-47.5 parent: 2 type: Transform - - uid: 27129 + - uid: 27353 components: - pos: -50.5,-45.5 parent: 2 type: Transform - - uid: 27130 + - uid: 27354 components: - pos: -50.5,-43.5 parent: 2 type: Transform - - uid: 27131 + - uid: 27355 components: - pos: -50.5,-41.5 parent: 2 type: Transform - - uid: 27132 + - uid: 27356 components: - pos: -49.5,-41.5 parent: 2 type: Transform - - uid: 27133 + - uid: 27357 components: - pos: -48.5,-41.5 parent: 2 type: Transform - - uid: 27134 + - uid: 27358 components: - pos: -47.5,-41.5 parent: 2 type: Transform - - uid: 27135 + - uid: 27359 components: - pos: -49.5,-43.5 parent: 2 type: Transform - - uid: 27136 + - uid: 27360 components: - pos: -48.5,-43.5 parent: 2 type: Transform - - uid: 27137 + - uid: 27361 components: - pos: -47.5,-43.5 parent: 2 type: Transform - - uid: 27138 + - uid: 27362 components: - pos: -49.5,-45.5 parent: 2 type: Transform - - uid: 27139 + - uid: 27363 components: - pos: -48.5,-45.5 parent: 2 type: Transform - - uid: 27140 + - uid: 27364 components: - pos: -47.5,-45.5 parent: 2 type: Transform - - uid: 27141 + - uid: 27365 components: - pos: -49.5,-47.5 parent: 2 type: Transform - - uid: 27142 + - uid: 27366 components: - pos: -48.5,-47.5 parent: 2 type: Transform - - uid: 27143 + - uid: 27367 components: - pos: -47.5,-47.5 parent: 2 type: Transform - - uid: 27144 + - uid: 27368 components: - pos: -49.5,-49.5 parent: 2 type: Transform - - uid: 27145 + - uid: 27369 components: - pos: -48.5,-49.5 parent: 2 type: Transform - - uid: 27146 + - uid: 27370 components: - pos: -47.5,-49.5 parent: 2 type: Transform - - uid: 27147 + - uid: 27371 components: - pos: -49.5,-51.5 parent: 2 type: Transform - - uid: 27148 + - uid: 27372 components: - pos: -48.5,-51.5 parent: 2 type: Transform - - uid: 27149 + - uid: 27373 components: - pos: -47.5,-51.5 parent: 2 type: Transform - - uid: 27150 + - uid: 27374 components: - pos: -49.5,-53.5 parent: 2 type: Transform - - uid: 27151 + - uid: 27375 components: - pos: -48.5,-53.5 parent: 2 type: Transform - - uid: 27152 + - uid: 27376 components: - pos: -47.5,-53.5 parent: 2 type: Transform - - uid: 27153 + - uid: 27377 components: - pos: -49.5,-55.5 parent: 2 type: Transform - - uid: 27154 + - uid: 27378 components: - pos: -48.5,-55.5 parent: 2 type: Transform - - uid: 27155 + - uid: 27379 components: - pos: -47.5,-55.5 parent: 2 type: Transform - - uid: 27156 + - uid: 27380 components: - pos: -51.5,-55.5 parent: 2 type: Transform - - uid: 27157 + - uid: 27381 components: - pos: -51.5,-54.5 parent: 2 type: Transform - - uid: 27158 + - uid: 27382 components: - pos: -51.5,-53.5 parent: 2 type: Transform - - uid: 27159 + - uid: 27383 components: - pos: -51.5,-51.5 parent: 2 type: Transform - - uid: 27160 + - uid: 27384 components: - pos: -51.5,-50.5 parent: 2 type: Transform - - uid: 27161 + - uid: 27385 components: - pos: -51.5,-49.5 parent: 2 type: Transform - - uid: 27162 + - uid: 27386 components: - pos: -51.5,-48.5 parent: 2 type: Transform - - uid: 27163 + - uid: 27387 components: - pos: -51.5,-47.5 parent: 2 type: Transform - - uid: 27164 + - uid: 27388 components: - pos: -51.5,-46.5 parent: 2 type: Transform - - uid: 27165 + - uid: 27389 components: - pos: -51.5,-45.5 parent: 2 type: Transform - - uid: 27166 + - uid: 27390 components: - pos: -51.5,-44.5 parent: 2 type: Transform - - uid: 27167 + - uid: 27391 components: - pos: -51.5,-43.5 parent: 2 type: Transform - - uid: 27168 + - uid: 27392 components: - pos: -51.5,-42.5 parent: 2 type: Transform - - uid: 27169 + - uid: 27393 components: - pos: -51.5,-41.5 parent: 2 type: Transform - - uid: 27170 + - uid: 27394 components: - pos: -47.5,-38.5 parent: 2 type: Transform - - uid: 27171 + - uid: 27395 components: - pos: -41.5,-39.5 parent: 2 type: Transform - - uid: 27172 + - uid: 27396 components: - pos: -41.5,-38.5 parent: 2 type: Transform - - uid: 27173 + - uid: 27397 components: - rot: 1.5707963267948966 rad pos: -59.5,-30.5 parent: 2 type: Transform - - uid: 27174 + - uid: 27398 components: - rot: 3.141592653589793 rad pos: -58.5,-31.5 parent: 2 type: Transform - - uid: 27175 + - uid: 27399 components: - rot: 3.141592653589793 rad pos: -57.5,-5.5 parent: 2 type: Transform - - uid: 27176 + - uid: 27400 components: - rot: 3.141592653589793 rad pos: -57.5,-4.5 parent: 2 type: Transform - - uid: 27177 + - uid: 27401 components: - rot: 3.141592653589793 rad pos: -58.5,-4.5 parent: 2 type: Transform - - uid: 27178 + - uid: 27402 components: - rot: 3.141592653589793 rad pos: -59.5,-4.5 parent: 2 type: Transform - - uid: 27179 + - uid: 27403 components: - rot: 3.141592653589793 rad pos: -60.5,-4.5 parent: 2 type: Transform - - uid: 27180 + - uid: 27404 components: - rot: 3.141592653589793 rad pos: -61.5,-4.5 parent: 2 type: Transform - - uid: 27181 + - uid: 27405 components: - rot: 3.141592653589793 rad pos: -62.5,-4.5 parent: 2 type: Transform - - uid: 27182 + - uid: 27406 components: - rot: 3.141592653589793 rad pos: -63.5,-4.5 parent: 2 type: Transform - - uid: 27183 + - uid: 27407 components: - rot: 3.141592653589793 rad pos: -64.5,-4.5 parent: 2 type: Transform - - uid: 27184 + - uid: 27408 components: - rot: 3.141592653589793 rad pos: -65.5,-4.5 parent: 2 type: Transform - - uid: 27185 + - uid: 27409 components: - rot: 3.141592653589793 rad pos: -66.5,-4.5 parent: 2 type: Transform - - uid: 27186 + - uid: 27410 components: - rot: 3.141592653589793 rad pos: -67.5,-4.5 parent: 2 type: Transform - - uid: 27187 + - uid: 27411 components: - rot: 3.141592653589793 rad pos: -68.5,-4.5 parent: 2 type: Transform - - uid: 27188 + - uid: 27412 components: - rot: 3.141592653589793 rad pos: -69.5,-4.5 parent: 2 type: Transform - - uid: 27189 + - uid: 27413 components: - rot: 3.141592653589793 rad pos: -70.5,-4.5 parent: 2 type: Transform - - uid: 27190 + - uid: 27414 components: - rot: 3.141592653589793 rad pos: -71.5,-4.5 parent: 2 type: Transform - - uid: 27191 + - uid: 27415 components: - rot: 3.141592653589793 rad pos: -72.5,-4.5 parent: 2 type: Transform - - uid: 27192 + - uid: 27416 components: - rot: 3.141592653589793 rad pos: -73.5,-4.5 parent: 2 type: Transform - - uid: 27193 + - uid: 27417 components: - rot: 3.141592653589793 rad pos: -74.5,-4.5 parent: 2 type: Transform - - uid: 27194 + - uid: 27418 components: - rot: 3.141592653589793 rad pos: -75.5,-4.5 parent: 2 type: Transform - - uid: 27195 + - uid: 27419 components: - rot: 3.141592653589793 rad pos: -75.5,-5.5 parent: 2 type: Transform - - uid: 27196 + - uid: 27420 components: - rot: 3.141592653589793 rad pos: -75.5,-6.5 parent: 2 type: Transform - - uid: 27197 + - uid: 27421 components: - rot: 3.141592653589793 rad pos: -75.5,-7.5 parent: 2 type: Transform - - uid: 27198 + - uid: 27422 components: - rot: 3.141592653589793 rad pos: -75.5,-8.5 parent: 2 type: Transform - - uid: 27199 + - uid: 27423 components: - rot: 3.141592653589793 rad pos: -75.5,-9.5 parent: 2 type: Transform - - uid: 27200 + - uid: 27424 components: - rot: 3.141592653589793 rad pos: -75.5,-10.5 parent: 2 type: Transform - - uid: 27201 + - uid: 27425 components: - rot: 3.141592653589793 rad pos: -75.5,-11.5 parent: 2 type: Transform - - uid: 27202 + - uid: 27426 components: - rot: 3.141592653589793 rad pos: -75.5,-13.5 parent: 2 type: Transform - - uid: 27203 + - uid: 27427 components: - rot: 3.141592653589793 rad pos: -75.5,-14.5 parent: 2 type: Transform - - uid: 27204 + - uid: 27428 components: - rot: 3.141592653589793 rad pos: -75.5,-15.5 parent: 2 type: Transform - - uid: 27205 + - uid: 27429 components: - rot: 3.141592653589793 rad pos: -75.5,-16.5 parent: 2 type: Transform - - uid: 27206 + - uid: 27430 components: - rot: 3.141592653589793 rad pos: -75.5,-17.5 parent: 2 type: Transform - - uid: 27207 + - uid: 27431 components: - rot: 3.141592653589793 rad pos: -75.5,-18.5 parent: 2 type: Transform - - uid: 27208 + - uid: 27432 components: - rot: 3.141592653589793 rad pos: -75.5,-19.5 parent: 2 type: Transform - - uid: 27209 + - uid: 27433 components: - rot: 3.141592653589793 rad pos: -75.5,-20.5 parent: 2 type: Transform - - uid: 27210 + - uid: 27434 components: - rot: 3.141592653589793 rad pos: -75.5,-21.5 parent: 2 type: Transform - - uid: 27211 + - uid: 27435 components: - rot: 3.141592653589793 rad pos: -75.5,-22.5 parent: 2 type: Transform - - uid: 27212 + - uid: 27436 components: - rot: 3.141592653589793 rad pos: -74.5,-22.5 parent: 2 type: Transform - - uid: 27213 + - uid: 27437 components: - rot: 3.141592653589793 rad pos: -73.5,-22.5 parent: 2 type: Transform - - uid: 27214 + - uid: 27438 components: - rot: 3.141592653589793 rad pos: -72.5,-22.5 parent: 2 type: Transform - - uid: 27215 + - uid: 27439 components: - rot: 3.141592653589793 rad pos: -71.5,-22.5 parent: 2 type: Transform - - uid: 27216 + - uid: 27440 components: - pos: -45.5,-57.5 parent: 2 type: Transform - - uid: 27217 + - uid: 27441 components: - pos: -45.5,-56.5 parent: 2 type: Transform - - uid: 27218 + - uid: 27442 components: - pos: -45.5,-58.5 parent: 2 type: Transform - - uid: 27219 + - uid: 27443 components: - rot: 3.141592653589793 rad pos: -39.5,-59.5 parent: 2 type: Transform - - uid: 27220 + - uid: 27444 components: - pos: -43.5,-58.5 parent: 2 type: Transform - - uid: 27221 + - uid: 27445 components: - rot: 3.141592653589793 rad pos: -36.5,-58.5 parent: 2 type: Transform - - uid: 27222 + - uid: 27446 components: - pos: -40.5,-58.5 parent: 2 type: Transform - - uid: 27223 + - uid: 27447 components: - pos: -45.5,-32.5 parent: 2 type: Transform - - uid: 27224 + - uid: 27448 components: - pos: -45.5,-36.5 parent: 2 type: Transform - - uid: 27225 + - uid: 27449 components: - rot: 3.141592653589793 rad pos: -40.5,-59.5 parent: 2 type: Transform - - uid: 27226 + - uid: 27450 components: - rot: -1.5707963267948966 rad pos: -32.5,-43.5 parent: 2 type: Transform - - uid: 27227 + - uid: 27451 components: - rot: 1.5707963267948966 rad pos: -36.5,-38.5 parent: 2 type: Transform - - uid: 27228 + - uid: 27452 components: - rot: 1.5707963267948966 rad pos: -36.5,-39.5 parent: 2 type: Transform - - uid: 27229 + - uid: 27453 components: - rot: 1.5707963267948966 rad pos: -36.5,-40.5 parent: 2 type: Transform - - uid: 27230 + - uid: 27454 components: - rot: 1.5707963267948966 rad pos: -41.5,-40.5 parent: 2 type: Transform - - uid: 27231 + - uid: 27455 components: - pos: -32.5,-44.5 parent: 2 type: Transform - - uid: 27232 + - uid: 27456 components: - pos: -32.5,-45.5 parent: 2 type: Transform - - uid: 27233 + - uid: 27457 components: - pos: -32.5,-46.5 parent: 2 type: Transform - - uid: 27234 + - uid: 27458 components: - pos: -32.5,-47.5 parent: 2 type: Transform - - uid: 27235 + - uid: 27459 components: - pos: -32.5,-48.5 parent: 2 type: Transform - - uid: 27236 + - uid: 27460 components: - pos: -32.5,-49.5 parent: 2 type: Transform - - uid: 27237 + - uid: 27461 components: - pos: -32.5,-51.5 parent: 2 type: Transform - - uid: 27238 + - uid: 27462 components: - pos: -32.5,-52.5 parent: 2 type: Transform - - uid: 27239 + - uid: 27463 components: - pos: -32.5,-53.5 parent: 2 type: Transform - - uid: 27240 + - uid: 27464 components: - pos: -32.5,-54.5 parent: 2 type: Transform - - uid: 27241 + - uid: 27465 components: - pos: -32.5,-55.5 parent: 2 type: Transform - - uid: 27242 + - uid: 27466 components: - pos: -32.5,-56.5 parent: 2 type: Transform - - uid: 27243 + - uid: 27467 components: - pos: -32.5,-57.5 parent: 2 type: Transform - - uid: 27244 + - uid: 27468 components: - pos: -33.5,-57.5 parent: 2 type: Transform - - uid: 27245 + - uid: 27469 components: - pos: -33.5,-58.5 parent: 2 type: Transform - - uid: 27246 + - uid: 27470 components: - pos: -34.5,-58.5 parent: 2 type: Transform - - uid: 27247 + - uid: 27471 components: - pos: 65.5,-31.5 parent: 2 type: Transform - - uid: 27248 + - uid: 27472 components: - pos: -70.5,-3.5 parent: 2 type: Transform - - uid: 27249 + - uid: 27473 components: - pos: -71.5,-3.5 parent: 2 type: Transform - - uid: 27250 + - uid: 27474 components: - pos: -72.5,-3.5 parent: 2 type: Transform - - uid: 27251 + - uid: 27475 components: - pos: -76.5,-4.5 parent: 2 type: Transform - - uid: 27252 + - uid: 27476 components: - pos: -76.5,-5.5 parent: 2 type: Transform - - uid: 27253 + - uid: 27477 components: - pos: -76.5,-6.5 parent: 2 type: Transform - - uid: 27254 + - uid: 27478 components: - rot: -1.5707963267948966 rad pos: -58.5,-17.5 parent: 2 type: Transform - - uid: 27255 + - uid: 27479 components: - pos: -76.5,-18.5 parent: 2 type: Transform - - uid: 27256 + - uid: 27480 components: - pos: -76.5,-19.5 parent: 2 type: Transform - - uid: 27257 + - uid: 27481 components: - pos: -76.5,-20.5 parent: 2 type: Transform - - uid: 27258 + - uid: 27482 components: - pos: -75.5,-23.5 parent: 2 type: Transform - - uid: 27259 + - uid: 27483 components: - pos: -63.5,-3.5 parent: 2 type: Transform - - uid: 27260 + - uid: 27484 components: - pos: -64.5,-3.5 parent: 2 type: Transform - - uid: 27261 + - uid: 27485 components: - pos: -65.5,-3.5 parent: 2 type: Transform - - uid: 27262 + - uid: 27486 components: - pos: -58.5,-3.5 parent: 2 type: Transform - - uid: 27263 + - uid: 27487 components: - pos: -75.5,-24.5 parent: 2 type: Transform - - uid: 27264 + - uid: 27488 components: - pos: -75.5,-27.5 parent: 2 type: Transform - - uid: 27265 + - uid: 27489 components: - pos: -75.5,-26.5 parent: 2 type: Transform - - uid: 27266 + - uid: 27490 components: - pos: -76.5,-26.5 parent: 2 type: Transform - - uid: 27267 + - uid: 27491 components: - pos: -45.5,-31.5 parent: 2 type: Transform - - uid: 27268 + - uid: 27492 components: - rot: -1.5707963267948966 rad pos: -46.5,-31.5 parent: 2 type: Transform - - uid: 27269 + - uid: 27493 components: - rot: -1.5707963267948966 rad pos: -47.5,-31.5 parent: 2 type: Transform - - uid: 27270 + - uid: 27494 components: - rot: -1.5707963267948966 rad pos: -47.5,-32.5 parent: 2 type: Transform - - uid: 27271 + - uid: 27495 components: - rot: -1.5707963267948966 rad pos: -47.5,-33.5 parent: 2 type: Transform - - uid: 27272 + - uid: 27496 components: - rot: -1.5707963267948966 rad pos: -53.5,-35.5 parent: 2 type: Transform - - uid: 27273 + - uid: 27497 components: - rot: -1.5707963267948966 rad pos: -53.5,-38.5 parent: 2 type: Transform - - uid: 27274 + - uid: 27498 components: - rot: -1.5707963267948966 rad pos: -53.5,-39.5 parent: 2 type: Transform - - uid: 27275 + - uid: 27499 components: - rot: -1.5707963267948966 rad pos: -53.5,-40.5 parent: 2 type: Transform - - uid: 27276 + - uid: 27500 components: - rot: -1.5707963267948966 rad pos: -54.5,-40.5 parent: 2 type: Transform - - uid: 27277 + - uid: 27501 components: - rot: -1.5707963267948966 rad pos: -55.5,-40.5 parent: 2 type: Transform - - uid: 27278 + - uid: 27502 components: - rot: -1.5707963267948966 rad pos: -55.5,-41.5 parent: 2 type: Transform - - uid: 27279 + - uid: 27503 components: - rot: -1.5707963267948966 rad pos: -55.5,-42.5 parent: 2 type: Transform - - uid: 27280 + - uid: 27504 components: - rot: -1.5707963267948966 rad pos: -55.5,-43.5 parent: 2 type: Transform - - uid: 27281 + - uid: 27505 components: - rot: -1.5707963267948966 rad pos: -55.5,-44.5 parent: 2 type: Transform - - uid: 27282 + - uid: 27506 components: - rot: -1.5707963267948966 rad pos: -55.5,-45.5 parent: 2 type: Transform - - uid: 27283 + - uid: 27507 components: - rot: -1.5707963267948966 rad pos: -55.5,-46.5 parent: 2 type: Transform - - uid: 27284 + - uid: 27508 components: - pos: -53.5,-46.5 parent: 2 type: Transform - - uid: 27285 + - uid: 27509 components: - pos: -53.5,-51.5 parent: 2 type: Transform - - uid: 27286 + - uid: 27510 components: - pos: -54.5,-51.5 parent: 2 type: Transform - - uid: 27287 + - uid: 27511 components: - pos: -54.5,-46.5 parent: 2 type: Transform - - uid: 27288 + - uid: 27512 components: - rot: -1.5707963267948966 rad pos: -55.5,-51.5 parent: 2 type: Transform - - uid: 27289 + - uid: 27513 components: - rot: -1.5707963267948966 rad pos: -55.5,-52.5 parent: 2 type: Transform - - uid: 27290 + - uid: 27514 components: - rot: -1.5707963267948966 rad pos: -55.5,-53.5 parent: 2 type: Transform - - uid: 27291 + - uid: 27515 components: - rot: -1.5707963267948966 rad pos: -55.5,-54.5 parent: 2 type: Transform - - uid: 27292 + - uid: 27516 components: - rot: -1.5707963267948966 rad pos: -55.5,-55.5 parent: 2 type: Transform - - uid: 27293 + - uid: 27517 components: - rot: -1.5707963267948966 rad pos: -55.5,-56.5 parent: 2 type: Transform - - uid: 27294 + - uid: 27518 components: - rot: -1.5707963267948966 rad pos: -55.5,-57.5 parent: 2 type: Transform - - uid: 27295 + - uid: 27519 components: - rot: -1.5707963267948966 rad pos: -58.5,-32.5 parent: 2 type: Transform - - uid: 27296 + - uid: 27520 components: - rot: -1.5707963267948966 rad pos: -58.5,-33.5 parent: 2 type: Transform - - uid: 27297 + - uid: 27521 components: - rot: -1.5707963267948966 rad pos: -58.5,-34.5 parent: 2 type: Transform - - uid: 27298 + - uid: 27522 components: - rot: -1.5707963267948966 rad pos: -58.5,-35.5 parent: 2 type: Transform - - uid: 27299 + - uid: 27523 components: - rot: -1.5707963267948966 rad pos: -58.5,-38.5 parent: 2 type: Transform - - uid: 27300 + - uid: 27524 components: - rot: -1.5707963267948966 rad pos: -58.5,-39.5 parent: 2 type: Transform - - uid: 27301 + - uid: 27525 components: - rot: -1.5707963267948966 rad pos: -58.5,-40.5 parent: 2 type: Transform - - uid: 27302 + - uid: 27526 components: - rot: -1.5707963267948966 rad pos: -58.5,-41.5 parent: 2 type: Transform - - uid: 27303 + - uid: 27527 components: - rot: -1.5707963267948966 rad pos: -58.5,-42.5 parent: 2 type: Transform - - uid: 27304 + - uid: 27528 components: - rot: -1.5707963267948966 rad pos: -58.5,-45.5 parent: 2 type: Transform - - uid: 27305 + - uid: 27529 components: - rot: -1.5707963267948966 rad pos: -58.5,-46.5 parent: 2 type: Transform - - uid: 27306 + - uid: 27530 components: - rot: -1.5707963267948966 rad pos: -58.5,-49.5 parent: 2 type: Transform - - uid: 27307 + - uid: 27531 components: - rot: -1.5707963267948966 rad pos: -58.5,-50.5 parent: 2 type: Transform - - uid: 27308 + - uid: 27532 components: - rot: -1.5707963267948966 rad pos: -58.5,-53.5 parent: 2 type: Transform - - uid: 27309 + - uid: 27533 components: - rot: -1.5707963267948966 rad pos: -58.5,-55.5 parent: 2 type: Transform - - uid: 27310 + - uid: 27534 components: - rot: -1.5707963267948966 rad pos: -58.5,-56.5 parent: 2 type: Transform - - uid: 27311 + - uid: 27535 components: - rot: -1.5707963267948966 rad pos: -58.5,-57.5 parent: 2 type: Transform - - uid: 27312 + - uid: 27536 components: - rot: -1.5707963267948966 rad pos: -58.5,-58.5 parent: 2 type: Transform - - uid: 27313 + - uid: 27537 components: - rot: -1.5707963267948966 rad pos: -56.5,-64.5 parent: 2 type: Transform - - uid: 27314 + - uid: 27538 components: - rot: -1.5707963267948966 rad pos: -56.5,-65.5 parent: 2 type: Transform - - uid: 27315 + - uid: 27539 components: - rot: -1.5707963267948966 rad pos: -56.5,-66.5 parent: 2 type: Transform - - uid: 27316 + - uid: 27540 components: - rot: 3.141592653589793 rad pos: -36.5,-59.5 parent: 2 type: Transform - - uid: 27317 + - uid: 27541 components: - rot: 3.141592653589793 rad pos: -37.5,-59.5 parent: 2 type: Transform - - uid: 27318 + - uid: 27542 components: - pos: -45.5,-41.5 parent: 2 type: Transform - - uid: 27319 + - uid: 27543 components: - pos: -57.5,-70.5 parent: 2 type: Transform - - uid: 27320 + - uid: 27544 components: - pos: -57.5,-72.5 parent: 2 type: Transform - - uid: 27321 + - uid: 27545 components: - pos: -57.5,-74.5 parent: 2 type: Transform - - uid: 27322 + - uid: 27546 components: - pos: -57.5,-78.5 parent: 2 type: Transform - - uid: 27323 + - uid: 27547 components: - pos: -57.5,-80.5 parent: 2 type: Transform - - uid: 27324 + - uid: 27548 components: - pos: -57.5,-82.5 parent: 2 type: Transform - - uid: 27325 + - uid: 27549 components: - pos: -56.5,-67.5 parent: 2 type: Transform - - uid: 27326 + - uid: 27550 components: - pos: -57.5,-67.5 parent: 2 type: Transform - - uid: 27327 + - uid: 27551 components: - pos: -57.5,-68.5 parent: 2 type: Transform - - uid: 27328 + - uid: 27552 components: - pos: -57.5,-69.5 parent: 2 type: Transform - - uid: 27329 + - uid: 27553 components: - rot: 1.5707963267948966 rad pos: -51.5,-61.5 parent: 2 type: Transform - - uid: 27330 + - uid: 27554 components: - rot: 3.141592653589793 rad pos: -22.5,-50.5 parent: 2 type: Transform - - uid: 27331 + - uid: 27555 components: - pos: -31.5,-57.5 parent: 2 type: Transform - - uid: 27332 + - uid: 27556 components: - pos: -31.5,-58.5 parent: 2 type: Transform - - uid: 27333 + - uid: 27557 components: - pos: -30.5,-58.5 parent: 2 type: Transform - - uid: 27334 + - uid: 27558 components: - pos: -30.5,-59.5 parent: 2 type: Transform - - uid: 27335 + - uid: 27559 components: - pos: -30.5,-60.5 parent: 2 type: Transform - - uid: 27336 + - uid: 27560 components: - pos: -31.5,-60.5 parent: 2 type: Transform - - uid: 27337 + - uid: 27561 components: - pos: -31.5,-61.5 parent: 2 type: Transform - - uid: 27338 + - uid: 27562 components: - pos: -32.5,-61.5 parent: 2 type: Transform - - uid: 27339 + - uid: 27563 components: - pos: -33.5,-61.5 parent: 2 type: Transform - - uid: 27340 + - uid: 27564 components: - pos: -33.5,-62.5 parent: 2 type: Transform - - uid: 27341 + - uid: 27565 components: - pos: -34.5,-62.5 parent: 2 type: Transform - - uid: 27342 + - uid: 27566 components: - pos: -35.5,-62.5 parent: 2 type: Transform - - uid: 27343 + - uid: 27567 components: - pos: -36.5,-62.5 parent: 2 type: Transform - - uid: 27344 + - uid: 27568 components: - pos: -37.5,-62.5 parent: 2 type: Transform - - uid: 27345 + - uid: 27569 components: - pos: -38.5,-62.5 parent: 2 type: Transform - - uid: 27346 + - uid: 27570 components: - pos: -39.5,-62.5 parent: 2 type: Transform - - uid: 27347 + - uid: 27571 components: - pos: -42.5,-62.5 parent: 2 type: Transform - - uid: 27348 + - uid: 27572 components: - pos: -43.5,-62.5 parent: 2 type: Transform - - uid: 27349 + - uid: 27573 components: - pos: -44.5,-62.5 parent: 2 type: Transform - - uid: 27350 + - uid: 27574 components: - pos: -45.5,-62.5 parent: 2 type: Transform - - uid: 27351 + - uid: 27575 components: - pos: -46.5,-62.5 parent: 2 type: Transform - - uid: 27352 + - uid: 27576 components: - pos: -47.5,-62.5 parent: 2 type: Transform - - uid: 27353 + - uid: 27577 components: - pos: -48.5,-62.5 parent: 2 type: Transform - - uid: 27354 + - uid: 27578 components: - pos: -49.5,-62.5 parent: 2 type: Transform - - uid: 27355 + - uid: 27579 components: - pos: -50.5,-61.5 parent: 2 type: Transform - - uid: 27356 + - uid: 27580 components: - pos: -49.5,-61.5 parent: 2 type: Transform - - uid: 27357 + - uid: 27581 components: - pos: -59.5,-78.5 parent: 2 type: Transform - - uid: 27358 + - uid: 27582 components: - pos: -50.5,-77.5 parent: 2 type: Transform - - uid: 27359 + - uid: 27583 components: - pos: -50.5,-78.5 parent: 2 type: Transform - - uid: 27360 + - uid: 27584 components: - pos: -57.5,-83.5 parent: 2 type: Transform - - uid: 27361 + - uid: 27585 components: - pos: -56.5,-83.5 parent: 2 type: Transform - - uid: 27362 + - uid: 27586 components: - pos: -52.5,-83.5 parent: 2 type: Transform - - uid: 27363 + - uid: 27587 components: - pos: -52.5,-82.5 parent: 2 type: Transform - - uid: 27364 + - uid: 27588 components: - pos: -52.5,-81.5 parent: 2 type: Transform - - uid: 27365 + - uid: 27589 components: - pos: -51.5,-81.5 parent: 2 type: Transform - - uid: 27366 + - uid: 27590 components: - pos: -51.5,-80.5 parent: 2 type: Transform - - uid: 27367 + - uid: 27591 components: - pos: -50.5,-80.5 parent: 2 type: Transform - - uid: 27368 + - uid: 27592 components: - pos: -50.5,-79.5 parent: 2 type: Transform - - uid: 27369 + - uid: 27593 components: - pos: -59.5,-80.5 parent: 2 type: Transform - - uid: 27370 + - uid: 27594 components: - pos: -59.5,-82.5 parent: 2 type: Transform - - uid: 27371 + - uid: 27595 components: - pos: -58.5,-82.5 parent: 2 type: Transform - - uid: 27372 + - uid: 27596 components: - pos: -58.5,-78.5 parent: 2 type: Transform - - uid: 27373 + - uid: 27597 components: - pos: -58.5,-74.5 parent: 2 type: Transform - - uid: 27374 + - uid: 27598 components: - pos: -59.5,-74.5 parent: 2 type: Transform - - uid: 27375 + - uid: 27599 components: - pos: -59.5,-72.5 parent: 2 type: Transform - - uid: 27376 + - uid: 27600 components: - pos: -58.5,-70.5 parent: 2 type: Transform - - uid: 27377 + - uid: 27601 components: - pos: -59.5,-70.5 parent: 2 type: Transform - - uid: 27378 + - uid: 27602 components: - rot: 1.5707963267948966 rad pos: -34.5,-73.5 parent: 2 type: Transform - - uid: 27379 + - uid: 27603 components: - rot: 1.5707963267948966 rad pos: -48.5,-80.5 parent: 2 type: Transform - - uid: 27380 + - uid: 27604 components: - rot: 1.5707963267948966 rad pos: -48.5,-79.5 parent: 2 type: Transform - - uid: 27381 + - uid: 27605 components: - rot: 1.5707963267948966 rad pos: -49.5,-77.5 parent: 2 type: Transform - - uid: 27382 + - uid: 27606 components: - rot: 1.5707963267948966 rad pos: -46.5,-85.5 parent: 2 type: Transform - - uid: 27383 + - uid: 27607 components: - rot: 1.5707963267948966 rad pos: -47.5,-84.5 parent: 2 type: Transform - - uid: 27384 + - uid: 27608 components: - rot: 1.5707963267948966 rad pos: -45.5,-86.5 parent: 2 type: Transform - - uid: 27385 + - uid: 27609 components: - rot: 1.5707963267948966 rad pos: -46.5,-86.5 parent: 2 type: Transform - - uid: 27386 + - uid: 27610 components: - rot: 1.5707963267948966 rad pos: -35.5,-73.5 parent: 2 type: Transform - - uid: 27387 + - uid: 27611 components: - rot: 1.5707963267948966 rad pos: -48.5,-77.5 parent: 2 type: Transform - - uid: 27388 + - uid: 27612 components: - rot: 1.5707963267948966 rad pos: -35.5,-80.5 parent: 2 type: Transform - - uid: 27389 + - uid: 27613 components: - rot: 1.5707963267948966 rad pos: -35.5,-75.5 parent: 2 type: Transform - - uid: 27390 + - uid: 27614 components: - rot: 1.5707963267948966 rad pos: -35.5,-74.5 parent: 2 type: Transform - - uid: 27391 + - uid: 27615 components: - rot: 1.5707963267948966 rad pos: -48.5,-78.5 parent: 2 type: Transform - - uid: 27392 + - uid: 27616 components: - rot: 1.5707963267948966 rad pos: -47.5,-85.5 parent: 2 type: Transform - - uid: 27393 + - uid: 27617 components: - rot: 1.5707963267948966 rad pos: -38.5,-86.5 parent: 2 type: Transform - - uid: 27394 + - uid: 27618 components: - rot: 1.5707963267948966 rad pos: -37.5,-85.5 parent: 2 type: Transform - - uid: 27395 + - uid: 27619 components: - rot: 1.5707963267948966 rad pos: -37.5,-86.5 parent: 2 type: Transform - - uid: 27396 + - uid: 27620 components: - rot: 1.5707963267948966 rad pos: -48.5,-84.5 parent: 2 type: Transform - - uid: 27397 + - uid: 27621 components: - rot: 1.5707963267948966 rad pos: -35.5,-79.5 parent: 2 type: Transform - - uid: 27398 + - uid: 27622 components: - rot: 1.5707963267948966 rad pos: -35.5,-84.5 parent: 2 type: Transform - - uid: 27399 + - uid: 27623 components: - rot: 1.5707963267948966 rad pos: -36.5,-84.5 parent: 2 type: Transform - - uid: 27400 + - uid: 27624 components: - rot: 1.5707963267948966 rad pos: -36.5,-85.5 parent: 2 type: Transform - - uid: 27401 + - uid: 27625 components: - rot: 1.5707963267948966 rad pos: -33.5,-73.5 parent: 2 type: Transform - - uid: 27402 + - uid: 27626 components: - rot: 1.5707963267948966 rad pos: -32.5,-74.5 parent: 2 type: Transform - - uid: 27403 + - uid: 27627 components: - rot: 1.5707963267948966 rad pos: -32.5,-75.5 parent: 2 type: Transform - - uid: 27404 + - uid: 27628 components: - rot: 1.5707963267948966 rad pos: -31.5,-75.5 parent: 2 type: Transform - - uid: 27405 + - uid: 27629 components: - pos: -44.5,-86.5 parent: 2 type: Transform - - uid: 27406 + - uid: 27630 components: - pos: -39.5,-86.5 parent: 2 type: Transform - - uid: 27407 + - uid: 27631 components: - rot: 1.5707963267948966 rad pos: 48.5,-70.5 parent: 2 type: Transform - - uid: 27408 + - uid: 27632 components: - pos: -17.5,-50.5 parent: 2 type: Transform - - uid: 27409 + - uid: 27633 components: - rot: 1.5707963267948966 rad pos: -57.5,-62.5 parent: 2 type: Transform - - uid: 27410 + - uid: 27634 components: - rot: 1.5707963267948966 rad pos: -58.5,-61.5 parent: 2 type: Transform - - uid: 27411 + - uid: 27635 components: - rot: 1.5707963267948966 rad pos: -58.5,-62.5 parent: 2 type: Transform - - uid: 27412 + - uid: 27636 components: - pos: -19.5,-50.5 parent: 2 type: Transform - - uid: 27413 + - uid: 27637 components: - pos: 25.5,-30.5 parent: 2 type: Transform - - uid: 27414 + - uid: 27638 components: - pos: 27.5,-30.5 parent: 2 type: Transform - - uid: 27415 + - uid: 27639 components: - rot: -1.5707963267948966 rad pos: 30.5,-31.5 parent: 2 type: Transform - - uid: 27416 + - uid: 27640 components: - rot: -1.5707963267948966 rad pos: 31.5,-31.5 parent: 2 type: Transform - - uid: 27417 + - uid: 27641 components: - pos: 27.5,-31.5 parent: 2 type: Transform - - uid: 27418 + - uid: 27642 components: - pos: 28.5,-31.5 parent: 2 type: Transform - - uid: 27419 + - uid: 27643 components: - rot: -1.5707963267948966 rad pos: 32.5,-31.5 parent: 2 type: Transform - - uid: 27420 + - uid: 27644 components: - rot: -1.5707963267948966 rad pos: 33.5,-31.5 parent: 2 type: Transform - - uid: 27421 + - uid: 27645 components: - pos: -21.5,-50.5 parent: 2 type: Transform - - uid: 27422 + - uid: 27646 components: - pos: -53.5,-50.5 parent: 2 type: Transform - - uid: 27423 + - uid: 27647 components: - pos: -53.5,-47.5 parent: 2 type: Transform - - uid: 27424 + - uid: 27648 components: - pos: -53.5,-48.5 parent: 2 type: Transform - - uid: 27425 + - uid: 27649 components: - pos: -53.5,-49.5 parent: 2 type: Transform - - uid: 27426 + - uid: 27650 components: - pos: -59.5,-53.5 parent: 2 type: Transform - - uid: 27427 + - uid: 27651 components: - pos: -60.5,-53.5 parent: 2 type: Transform - - uid: 27428 + - uid: 27652 components: - pos: -59.5,-55.5 parent: 2 type: Transform - - uid: 27429 + - uid: 27653 components: - pos: -60.5,-55.5 parent: 2 type: Transform - - uid: 27430 + - uid: 27654 components: - pos: 25.5,-27.5 parent: 2 type: Transform - - uid: 27431 + - uid: 27655 components: - pos: 68.5,12.5 parent: 2 type: Transform - - uid: 27432 + - uid: 27656 components: - rot: 1.5707963267948966 rad pos: 8.5,-18.5 parent: 2 type: Transform - - uid: 27433 + - uid: 27657 components: - pos: 5.5,34.5 parent: 2 type: Transform - - uid: 27434 + - uid: 27658 components: - pos: 9.5,35.5 parent: 2 type: Transform - - uid: 27435 + - uid: 27659 components: - pos: 11.5,31.5 parent: 2 type: Transform - - uid: 27436 + - uid: 27660 components: - pos: -3.5,26.5 parent: 2 type: Transform - - uid: 27437 + - uid: 27661 components: - pos: -7.5,33.5 parent: 2 type: Transform - - uid: 27438 + - uid: 27662 components: - pos: -6.5,33.5 parent: 2 type: Transform - - uid: 27439 + - uid: 27663 components: - pos: -5.5,33.5 parent: 2 type: Transform - - uid: 27440 + - uid: 27664 components: - pos: -16.5,53.5 parent: 2 type: Transform - - uid: 27441 + - uid: 27665 components: - pos: -23.5,72.5 parent: 2 type: Transform - - uid: 27442 + - uid: 27666 components: - pos: -7.5,30.5 parent: 2 type: Transform - - uid: 27443 + - uid: 27667 components: - pos: -7.5,29.5 parent: 2 type: Transform - - uid: 27444 + - uid: 27668 components: - pos: -7.5,26.5 parent: 2 type: Transform - - uid: 27445 + - uid: 27669 components: - pos: -7.5,31.5 parent: 2 type: Transform - - uid: 27446 + - uid: 27670 components: - pos: -6.5,31.5 parent: 2 type: Transform - - uid: 27447 + - uid: 27671 components: - pos: -5.5,31.5 parent: 2 type: Transform - - uid: 27448 + - uid: 27672 components: - pos: -4.5,31.5 parent: 2 type: Transform - - uid: 27449 + - uid: 27673 components: - pos: -4.5,30.5 parent: 2 type: Transform - - uid: 27450 + - uid: 27674 components: - pos: -4.5,29.5 parent: 2 type: Transform - - uid: 27451 + - uid: 27675 components: - pos: -3.5,29.5 parent: 2 type: Transform - - uid: 27452 + - uid: 27676 components: - pos: -1.5,29.5 parent: 2 type: Transform - - uid: 27453 + - uid: 27677 components: - pos: -0.5,29.5 parent: 2 type: Transform - - uid: 27454 + - uid: 27678 components: - pos: 0.5,29.5 parent: 2 type: Transform - - uid: 27455 + - uid: 27679 components: - pos: 1.5,29.5 parent: 2 type: Transform - - uid: 27456 + - uid: 27680 components: - pos: 1.5,30.5 parent: 2 type: Transform - - uid: 27457 + - uid: 27681 components: - pos: 1.5,31.5 parent: 2 type: Transform - - uid: 27458 + - uid: 27682 components: - pos: 2.5,31.5 parent: 2 type: Transform - - uid: 27459 + - uid: 27683 components: - pos: 2.5,33.5 parent: 2 type: Transform - - uid: 27460 + - uid: 27684 components: - pos: 1.5,33.5 parent: 2 type: Transform - - uid: 27461 + - uid: 27685 components: - pos: 1.5,34.5 parent: 2 type: Transform - - uid: 27462 + - uid: 27686 components: - pos: 1.5,35.5 parent: 2 type: Transform - - uid: 27463 + - uid: 27687 components: - pos: 0.5,35.5 parent: 2 type: Transform - - uid: 27464 + - uid: 27688 components: - pos: -3.5,35.5 parent: 2 type: Transform - - uid: 27465 + - uid: 27689 components: - pos: -4.5,35.5 parent: 2 type: Transform - - uid: 27466 + - uid: 27690 components: - pos: -4.5,34.5 parent: 2 type: Transform - - uid: 27467 + - uid: 27691 components: - pos: -4.5,33.5 parent: 2 type: Transform - - uid: 27468 + - uid: 27692 components: - pos: -23.5,58.5 parent: 2 type: Transform - - uid: 27469 + - uid: 27693 components: - pos: -20.5,72.5 parent: 2 type: Transform - - uid: 27470 + - uid: 27694 components: - pos: -23.5,57.5 parent: 2 type: Transform - - uid: 27471 + - uid: 27695 components: - pos: 49.5,41.5 parent: 2 type: Transform - - uid: 27472 + - uid: 27696 components: - pos: 12.5,31.5 parent: 2 type: Transform - - uid: 27473 + - uid: 27697 components: - pos: 6.5,29.5 parent: 2 type: Transform - - uid: 27474 + - uid: 27698 components: - pos: 4.5,33.5 parent: 2 type: Transform - - uid: 27475 + - uid: 27699 components: - pos: -4.5,24.5 parent: 2 type: Transform - - uid: 27476 + - uid: 27700 components: - pos: -5.5,24.5 parent: 2 type: Transform - - uid: 27477 + - uid: 27701 components: - pos: -6.5,24.5 parent: 2 type: Transform - - uid: 27478 + - uid: 27702 components: - pos: -7.5,24.5 parent: 2 type: Transform - - uid: 27479 + - uid: 27703 components: - pos: -7.5,25.5 parent: 2 type: Transform - - uid: 27480 + - uid: 27704 components: - pos: -34.5,27.5 parent: 2 type: Transform - - uid: 27481 + - uid: 27705 components: - pos: -35.5,27.5 parent: 2 type: Transform - - uid: 27482 + - uid: 27706 components: - pos: -35.5,28.5 parent: 2 type: Transform - - uid: 27483 + - uid: 27707 components: - pos: -35.5,26.5 parent: 2 type: Transform - - uid: 27484 + - uid: 27708 components: - pos: -49.5,27.5 parent: 2 type: Transform - - uid: 27485 + - uid: 27709 components: - pos: -49.5,24.5 parent: 2 type: Transform - - uid: 27486 + - uid: 27710 components: - rot: -1.5707963267948966 rad pos: -49.5,16.5 parent: 2 type: Transform - - uid: 27487 + - uid: 27711 components: - pos: -49.5,25.5 parent: 2 type: Transform - - uid: 27488 + - uid: 27712 components: - pos: -49.5,26.5 parent: 2 type: Transform - - uid: 27489 + - uid: 27713 components: - pos: -49.5,17.5 parent: 2 type: Transform - - uid: 27490 + - uid: 27714 components: - pos: -49.5,18.5 parent: 2 type: Transform - - uid: 27491 + - uid: 27715 components: - pos: -51.5,18.5 parent: 2 type: Transform - - uid: 27492 + - uid: 27716 components: - pos: -51.5,24.5 parent: 2 type: Transform - - uid: 27493 + - uid: 27717 components: - pos: 4.5,34.5 parent: 2 type: Transform - - uid: 27494 + - uid: 27718 components: - pos: 5.5,29.5 parent: 2 type: Transform - - uid: 27495 + - uid: 27719 components: - pos: 12.5,33.5 parent: 2 type: Transform - - uid: 27496 + - uid: 27720 components: - pos: -3.5,28.5 parent: 2 type: Transform - - uid: 27497 + - uid: 27721 components: - pos: 58.5,41.5 parent: 2 type: Transform - - uid: 27498 + - uid: 27722 components: - rot: -1.5707963267948966 rad pos: 55.5,41.5 parent: 2 type: Transform - - uid: 27499 + - uid: 27723 components: - pos: 54.5,51.5 parent: 2 type: Transform - - uid: 27500 + - uid: 27724 components: - pos: 57.5,60.5 parent: 2 type: Transform - - uid: 27501 + - uid: 27725 components: - rot: -1.5707963267948966 rad pos: 56.5,41.5 parent: 2 type: Transform - - uid: 27502 + - uid: 27726 components: - rot: -1.5707963267948966 rad pos: 42.5,38.5 parent: 2 type: Transform - - uid: 27503 + - uid: 27727 components: - pos: -29.5,27.5 parent: 2 type: Transform - - uid: 27504 + - uid: 27728 components: - pos: -35.5,29.5 parent: 2 type: Transform - - uid: 27505 + - uid: 27729 components: - pos: -29.5,29.5 parent: 2 type: Transform - - uid: 27506 + - uid: 27730 components: - pos: -29.5,30.5 parent: 2 type: Transform - - uid: 27507 + - uid: 27731 components: - pos: -29.5,31.5 parent: 2 type: Transform - - uid: 27508 + - uid: 27732 components: - pos: -29.5,32.5 parent: 2 type: Transform - - uid: 27509 + - uid: 27733 components: - pos: -35.5,30.5 parent: 2 type: Transform - - uid: 27510 + - uid: 27734 components: - pos: -35.5,31.5 parent: 2 type: Transform - - uid: 27511 + - uid: 27735 components: - pos: -35.5,32.5 parent: 2 type: Transform - - uid: 27512 + - uid: 27736 components: - pos: -34.5,32.5 parent: 2 type: Transform - - uid: 27513 + - uid: 27737 components: - pos: -30.5,32.5 parent: 2 type: Transform - - uid: 27514 + - uid: 27738 components: - pos: -49.5,32.5 parent: 2 type: Transform - - uid: 27515 + - uid: 27739 components: - pos: -50.5,32.5 parent: 2 type: Transform - - uid: 27516 + - uid: 27740 components: - pos: -51.5,32.5 parent: 2 type: Transform - - uid: 27517 + - uid: 27741 components: - pos: -52.5,32.5 parent: 2 type: Transform - - uid: 27518 + - uid: 27742 components: - pos: -49.5,28.5 parent: 2 type: Transform - - uid: 27519 + - uid: 27743 components: - pos: -50.5,28.5 parent: 2 type: Transform - - uid: 27520 + - uid: 27744 components: - pos: -51.5,28.5 parent: 2 type: Transform - - uid: 27521 + - uid: 27745 components: - pos: -52.5,28.5 parent: 2 type: Transform - - uid: 27522 + - uid: 27746 components: - pos: -49.5,36.5 parent: 2 type: Transform - - uid: 27523 + - uid: 27747 components: - pos: -50.5,36.5 parent: 2 type: Transform - - uid: 27524 + - uid: 27748 components: - pos: -51.5,36.5 parent: 2 type: Transform - - uid: 27525 + - uid: 27749 components: - pos: -52.5,36.5 parent: 2 type: Transform - - uid: 27526 + - uid: 27750 components: - rot: -1.5707963267948966 rad pos: -53.5,24.5 parent: 2 type: Transform - - uid: 27527 + - uid: 27751 components: - rot: -1.5707963267948966 rad pos: -53.5,18.5 parent: 2 type: Transform - - uid: 27528 + - uid: 27752 components: - pos: -49.5,37.5 parent: 2 type: Transform - - uid: 27529 + - uid: 27753 components: - pos: -48.5,37.5 parent: 2 type: Transform - - uid: 27530 + - uid: 27754 components: - pos: -35.5,34.5 parent: 2 type: Transform - - uid: 27531 + - uid: 27755 components: - pos: -35.5,33.5 parent: 2 type: Transform - - uid: 27532 + - uid: 27756 components: - pos: 49.5,43.5 parent: 2 type: Transform - - uid: 27533 + - uid: 27757 components: - pos: 49.5,48.5 parent: 2 type: Transform - - uid: 27534 + - uid: 27758 components: - pos: 59.5,49.5 parent: 2 type: Transform - - uid: 27535 + - uid: 27759 components: - pos: 49.5,49.5 parent: 2 type: Transform - - uid: 27536 + - uid: 27760 components: - pos: 59.5,44.5 parent: 2 type: Transform - - uid: 27537 + - uid: 27761 components: - rot: 3.141592653589793 rad pos: 61.5,42.5 parent: 2 type: Transform - - uid: 27538 + - uid: 27762 components: - pos: 49.5,42.5 parent: 2 type: Transform - - uid: 27539 + - uid: 27763 components: - pos: 59.5,42.5 parent: 2 type: Transform - - uid: 27540 + - uid: 27764 components: - pos: 66.5,-31.5 parent: 2 type: Transform - - uid: 27541 + - uid: 27765 components: - pos: 66.5,-32.5 parent: 2 type: Transform - - uid: 27542 + - uid: 27766 components: - rot: -1.5707963267948966 rad pos: 59.5,-25.5 parent: 2 type: Transform - - uid: 27543 + - uid: 27767 components: - rot: 3.141592653589793 rad pos: 10.5,-80.5 parent: 2 type: Transform - - uid: 27544 + - uid: 27768 components: - pos: -57.5,-0.5 parent: 2 type: Transform - - uid: 27545 + - uid: 27769 components: - pos: -56.5,-0.5 parent: 2 type: Transform - - uid: 27546 + - uid: 27770 components: - pos: -55.5,-0.5 parent: 2 type: Transform - - uid: 27547 + - uid: 27771 components: - pos: -57.5,-2.5 parent: 2 type: Transform - - uid: 27548 + - uid: 27772 components: - rot: 3.141592653589793 rad pos: -53.5,1.5 parent: 2 type: Transform - - uid: 27549 + - uid: 27773 components: - rot: 3.141592653589793 rad pos: -54.5,1.5 parent: 2 type: Transform - - uid: 27550 + - uid: 27774 components: - pos: -55.5,1.5 parent: 2 type: Transform - - uid: 27551 + - uid: 27775 components: - pos: -55.5,0.5 parent: 2 type: Transform - - uid: 27552 + - uid: 27776 components: - pos: -50.5,16.5 parent: 2 type: Transform - - uid: 27553 + - uid: 27777 components: - pos: 58.5,48.5 parent: 2 type: Transform - - uid: 27554 + - uid: 27778 components: - pos: 56.5,44.5 parent: 2 type: Transform - - uid: 27555 + - uid: 27779 components: - pos: 50.5,48.5 parent: 2 type: Transform - - uid: 27556 + - uid: 27780 components: - pos: 54.5,46.5 parent: 2 type: Transform - - uid: 27557 + - uid: 27781 components: - pos: 54.5,48.5 parent: 2 type: Transform - - uid: 27558 + - uid: 27782 components: - rot: 3.141592653589793 rad pos: -53.5,2.5 parent: 2 type: Transform - - uid: 27559 + - uid: 27783 components: - rot: 3.141592653589793 rad pos: -53.5,3.5 parent: 2 type: Transform - - uid: 27560 + - uid: 27784 components: - rot: 3.141592653589793 rad pos: -53.5,4.5 parent: 2 type: Transform - - uid: 27561 + - uid: 27785 components: - rot: 3.141592653589793 rad pos: -53.5,5.5 parent: 2 type: Transform - - uid: 27562 + - uid: 27786 components: - rot: 3.141592653589793 rad pos: -53.5,6.5 parent: 2 type: Transform - - uid: 27563 + - uid: 27787 components: - rot: 3.141592653589793 rad pos: -53.5,7.5 parent: 2 type: Transform - - uid: 27564 + - uid: 27788 components: - rot: 3.141592653589793 rad pos: -53.5,8.5 parent: 2 type: Transform - - uid: 27565 + - uid: 27789 components: - rot: 3.141592653589793 rad pos: -53.5,9.5 parent: 2 type: Transform - - uid: 27566 + - uid: 27790 components: - rot: 3.141592653589793 rad pos: -53.5,12.5 parent: 2 type: Transform - - uid: 27567 + - uid: 27791 components: - rot: 3.141592653589793 rad pos: -53.5,13.5 parent: 2 type: Transform - - uid: 27568 + - uid: 27792 components: - rot: 3.141592653589793 rad pos: -53.5,15.5 parent: 2 type: Transform - - uid: 27569 + - uid: 27793 components: - rot: 3.141592653589793 rad pos: -53.5,14.5 parent: 2 type: Transform - - uid: 27570 + - uid: 27794 components: - rot: 3.141592653589793 rad pos: -53.5,16.5 parent: 2 type: Transform - - uid: 27571 + - uid: 27795 components: - rot: 3.141592653589793 rad pos: -52.5,16.5 parent: 2 type: Transform - - uid: 27572 + - uid: 27796 components: - rot: 3.141592653589793 rad pos: -51.5,16.5 parent: 2 type: Transform - - uid: 27573 + - uid: 27797 components: - pos: 56.5,46.5 parent: 2 type: Transform - - uid: 27574 + - uid: 27798 components: - rot: -1.5707963267948966 rad pos: 55.5,40.5 parent: 2 type: Transform - - uid: 27575 + - uid: 27799 components: - pos: -20.5,-50.5 parent: 2 type: Transform - - uid: 27576 + - uid: 27800 components: - pos: 58.5,44.5 parent: 2 type: Transform - - uid: 27577 + - uid: 27801 components: - pos: 58.5,46.5 parent: 2 type: Transform - - uid: 27578 + - uid: 27802 components: - pos: 50.5,44.5 parent: 2 type: Transform - - uid: 27579 + - uid: 27803 components: - pos: 52.5,44.5 parent: 2 type: Transform - - uid: 27580 + - uid: 27804 components: - rot: 1.5707963267948966 rad pos: 66.5,0.5 parent: 2 type: Transform - - uid: 27581 + - uid: 27805 components: - pos: 52.5,46.5 parent: 2 type: Transform - - uid: 27582 + - uid: 27806 components: - pos: 50.5,46.5 parent: 2 type: Transform - - uid: 27583 + - uid: 27807 components: - pos: 56.5,48.5 parent: 2 type: Transform - - uid: 27584 + - uid: 27808 components: - pos: 54.5,44.5 parent: 2 type: Transform - - uid: 27585 + - uid: 27809 components: - rot: 1.5707963267948966 rad pos: 67.5,-10.5 parent: 2 type: Transform - - uid: 27586 + - uid: 27810 components: - pos: 68.5,-16.5 parent: 2 type: Transform - - uid: 27587 + - uid: 27811 components: - rot: 1.5707963267948966 rad pos: 67.5,-6.5 parent: 2 type: Transform - - uid: 27588 + - uid: 27812 components: - rot: 1.5707963267948966 rad pos: 67.5,-2.5 parent: 2 type: Transform - - uid: 27589 + - uid: 27813 components: - pos: 52.5,48.5 parent: 2 type: Transform - - uid: 27590 + - uid: 27814 components: - rot: -1.5707963267948966 rad pos: -7.5,37.5 parent: 2 type: Transform - - uid: 27591 + - uid: 27815 components: - rot: -1.5707963267948966 rad pos: -7.5,39.5 parent: 2 type: Transform - - uid: 27592 + - uid: 27816 components: - rot: 3.141592653589793 rad pos: 21.5,-40.5 parent: 2 type: Transform - - uid: 27593 + - uid: 27817 components: - pos: 13.5,-71.5 parent: 2 type: Transform - - uid: 27594 + - uid: 27818 components: - pos: 24.5,-26.5 parent: 2 type: Transform - - uid: 27595 + - uid: 27819 components: - pos: 22.5,-26.5 parent: 2 type: Transform - - uid: 27596 + - uid: 27820 components: - rot: -1.5707963267948966 rad pos: -75.5,-25.5 parent: 2 type: Transform - - uid: 27597 + - uid: 27821 components: - rot: 3.141592653589793 rad pos: 24.5,27.5 parent: 2 type: Transform - - uid: 27598 + - uid: 27822 components: - pos: 64.5,-61.5 parent: 2 type: Transform - - uid: 27599 + - uid: 27823 components: - pos: 27.5,-33.5 parent: 2 type: Transform - - uid: 27600 + - uid: 27824 components: - pos: -47.5,52.5 parent: 2 type: Transform - - uid: 27601 + - uid: 27825 components: - pos: -41.5,52.5 parent: 2 type: Transform - - uid: 27602 + - uid: 27826 components: - pos: 52.5,-25.5 parent: 2 type: Transform - - uid: 27603 + - uid: 27827 components: - pos: 55.5,-25.5 parent: 2 type: Transform - - uid: 27604 + - uid: 27828 components: - rot: -1.5707963267948966 rad pos: 47.5,-63.5 parent: 2 type: Transform - - uid: 27605 + - uid: 27829 components: - rot: 1.5707963267948966 rad pos: 44.5,-83.5 parent: 2 type: Transform - - uid: 27606 + - uid: 27830 components: - rot: 3.141592653589793 rad pos: 24.5,28.5 parent: 2 type: Transform - - uid: 27607 + - uid: 27831 components: - rot: 3.141592653589793 rad pos: 24.5,29.5 parent: 2 type: Transform - - uid: 27608 + - uid: 27832 components: - rot: 3.141592653589793 rad pos: 24.5,30.5 parent: 2 type: Transform - - uid: 27609 + - uid: 27833 components: - rot: 3.141592653589793 rad pos: 24.5,31.5 parent: 2 type: Transform - - uid: 27610 + - uid: 27834 components: - rot: 3.141592653589793 rad pos: 24.5,32.5 parent: 2 type: Transform - - uid: 27611 + - uid: 27835 components: - rot: 3.141592653589793 rad pos: 24.5,33.5 parent: 2 type: Transform - - uid: 27612 + - uid: 27836 components: - rot: 3.141592653589793 rad pos: 24.5,34.5 parent: 2 type: Transform - - uid: 27613 + - uid: 27837 components: - rot: 3.141592653589793 rad pos: 25.5,34.5 parent: 2 type: Transform - - uid: 27614 + - uid: 27838 components: - rot: 3.141592653589793 rad pos: 26.5,34.5 parent: 2 type: Transform - - uid: 27615 + - uid: 27839 components: - rot: 3.141592653589793 rad pos: 27.5,34.5 parent: 2 type: Transform - - uid: 27616 + - uid: 27840 components: - rot: 3.141592653589793 rad pos: 28.5,34.5 parent: 2 type: Transform - - uid: 27617 + - uid: 27841 components: - rot: 3.141592653589793 rad pos: 30.5,34.5 parent: 2 type: Transform - - uid: 27618 + - uid: 27842 components: - rot: 3.141592653589793 rad pos: 31.5,34.5 parent: 2 type: Transform - - uid: 27619 + - uid: 27843 components: - rot: 3.141592653589793 rad pos: 32.5,34.5 parent: 2 type: Transform - - uid: 27620 + - uid: 27844 components: - rot: 3.141592653589793 rad pos: 33.5,34.5 parent: 2 type: Transform - - uid: 27621 + - uid: 27845 components: - rot: 3.141592653589793 rad pos: 34.5,34.5 parent: 2 type: Transform - - uid: 27622 + - uid: 27846 components: - rot: 3.141592653589793 rad pos: 34.5,33.5 parent: 2 type: Transform - - uid: 27623 + - uid: 27847 components: - rot: 3.141592653589793 rad pos: 34.5,32.5 parent: 2 type: Transform - - uid: 27624 + - uid: 27848 components: - rot: 3.141592653589793 rad pos: 34.5,31.5 parent: 2 type: Transform - - uid: 27625 + - uid: 27849 components: - rot: 3.141592653589793 rad pos: 34.5,30.5 parent: 2 type: Transform - - uid: 27626 + - uid: 27850 components: - rot: 3.141592653589793 rad pos: 34.5,29.5 parent: 2 type: Transform - - uid: 27627 + - uid: 27851 components: - rot: 3.141592653589793 rad pos: 34.5,28.5 parent: 2 type: Transform - - uid: 27628 + - uid: 27852 components: - rot: 3.141592653589793 rad pos: 34.5,27.5 parent: 2 type: Transform - - uid: 27629 + - uid: 27853 components: - rot: 3.141592653589793 rad pos: 12.5,-79.5 parent: 2 type: Transform - - uid: 27630 + - uid: 27854 components: - rot: 3.141592653589793 rad pos: 11.5,-79.5 parent: 2 type: Transform - - uid: 27631 + - uid: 27855 components: - rot: -1.5707963267948966 rad pos: 57.5,-25.5 parent: 2 type: Transform - - uid: 27632 + - uid: 27856 components: - rot: 1.5707963267948966 rad pos: 39.5,9.5 parent: 2 type: Transform - - uid: 27633 + - uid: 27857 components: - pos: 34.5,21.5 parent: 2 type: Transform - - uid: 27634 + - uid: 27858 components: - pos: 67.5,-67.5 parent: 2 type: Transform - - uid: 27635 + - uid: 27859 components: - pos: 69.5,-69.5 parent: 2 type: Transform - - uid: 27636 + - uid: 27860 components: - pos: -78.5,-19.5 parent: 2 type: Transform - - uid: 27637 + - uid: 27861 components: - pos: -78.5,-5.5 parent: 2 type: Transform - - uid: 27638 + - uid: 27862 components: - pos: -71.5,-2.5 parent: 2 type: Transform - - uid: 27639 + - uid: 27863 components: - pos: -64.5,-2.5 parent: 2 type: Transform - - uid: 27640 + - uid: 27864 components: - pos: -64.5,-47.5 parent: 2 type: Transform - - uid: 27641 + - uid: 27865 components: - pos: 38.5,31.5 parent: 2 type: Transform - - uid: 27642 + - uid: 27866 components: - pos: 32.5,39.5 parent: 2 type: Transform - - uid: 27643 + - uid: 27867 components: - pos: 24.5,39.5 parent: 2 type: Transform - - uid: 27644 + - uid: 27868 components: - pos: 73.5,-40.5 parent: 2 type: Transform - - uid: 27645 + - uid: 27869 components: - pos: 77.5,-42.5 parent: 2 type: Transform - - uid: 27646 + - uid: 27870 components: - pos: 77.5,-48.5 parent: 2 type: Transform - - uid: 27647 - components: - - pos: 78.5,-48.5 - parent: 2 - type: Transform - - uid: 27648 - components: - - pos: 78.5,-42.5 - parent: 2 - type: Transform - - uid: 27649 - components: - - pos: 78.5,-47.5 - parent: 2 - type: Transform - - uid: 27650 + - uid: 27871 components: - pos: 27.5,-26.5 parent: 2 type: Transform - - uid: 27651 + - uid: 27872 components: - pos: 59.5,50.5 parent: 2 type: Transform - - uid: 27652 + - uid: 27873 components: - pos: -32.5,-73.5 parent: 2 type: Transform - - uid: 27653 + - uid: 27874 components: - rot: -1.5707963267948966 rad pos: 46.5,50.5 parent: 2 type: Transform - - uid: 27654 + - uid: 27875 components: - rot: -1.5707963267948966 rad pos: 45.5,50.5 parent: 2 type: Transform - - uid: 27655 + - uid: 27876 components: - rot: -1.5707963267948966 rad pos: 44.5,50.5 parent: 2 type: Transform - - uid: 27656 + - uid: 27877 components: - pos: 48.5,44.5 parent: 2 type: Transform - - uid: 27657 + - uid: 27878 components: - pos: 47.5,44.5 parent: 2 type: Transform - - uid: 27658 + - uid: 27879 components: - pos: 47.5,43.5 parent: 2 type: Transform - - uid: 27659 + - uid: 27880 components: - pos: 45.5,43.5 parent: 2 type: Transform - - uid: 27660 + - uid: 27881 components: - pos: 44.5,43.5 parent: 2 type: Transform - - uid: 27661 + - uid: 27882 components: - pos: 59.5,51.5 parent: 2 type: Transform - - uid: 27662 + - uid: 27883 components: - pos: 59.5,52.5 parent: 2 type: Transform - - uid: 27663 + - uid: 27884 components: - pos: 59.5,53.5 parent: 2 type: Transform - - uid: 27664 + - uid: 27885 components: - pos: 58.5,53.5 parent: 2 type: Transform - - uid: 27665 + - uid: 27886 components: - pos: 57.5,53.5 parent: 2 type: Transform - - uid: 27666 + - uid: 27887 components: - pos: 51.5,53.5 parent: 2 type: Transform - - uid: 27667 + - uid: 27888 components: - pos: 50.5,53.5 parent: 2 type: Transform - - uid: 27668 + - uid: 27889 components: - pos: 49.5,53.5 parent: 2 type: Transform - - uid: 27669 + - uid: 27890 components: - pos: 49.5,52.5 parent: 2 type: Transform - - uid: 27670 + - uid: 27891 components: - pos: 49.5,51.5 parent: 2 type: Transform - - uid: 27671 + - uid: 27892 components: - rot: -1.5707963267948966 rad pos: 55.5,39.5 parent: 2 type: Transform - - uid: 27672 + - uid: 27893 components: - rot: -1.5707963267948966 rad pos: 55.5,38.5 parent: 2 type: Transform - - uid: 27673 + - uid: 27894 components: - pos: 61.5,30.5 parent: 2 type: Transform - - uid: 27674 + - uid: 27895 components: - pos: 59.5,31.5 parent: 2 type: Transform - - uid: 27675 + - uid: 27896 components: - pos: 59.5,34.5 parent: 2 type: Transform - - uid: 27676 + - uid: 27897 components: - rot: -1.5707963267948966 rad pos: 58.5,35.5 parent: 2 type: Transform - - uid: 27677 + - uid: 27898 components: - rot: -1.5707963267948966 rad pos: 57.5,35.5 parent: 2 type: Transform - - uid: 27678 + - uid: 27899 components: - rot: -1.5707963267948966 rad pos: 43.5,-65.5 parent: 2 type: Transform - - uid: 27679 + - uid: 27900 components: - pos: 10.5,-36.5 parent: 2 type: Transform - - uid: 27680 + - uid: 27901 components: - rot: -1.5707963267948966 rad pos: 57.5,38.5 parent: 2 type: Transform - - uid: 27681 + - uid: 27902 components: - rot: 3.141592653589793 rad pos: 61.5,41.5 parent: 2 type: Transform - - uid: 27682 + - uid: 27903 components: - rot: 3.141592653589793 rad pos: 60.5,41.5 parent: 2 type: Transform - - uid: 27683 + - uid: 27904 components: - rot: -1.5707963267948966 rad pos: 42.5,42.5 parent: 2 type: Transform - - uid: 27684 + - uid: 27905 components: - rot: -1.5707963267948966 rad pos: 43.5,43.5 parent: 2 type: Transform - - uid: 27685 + - uid: 27906 components: - rot: -1.5707963267948966 rad pos: 49.5,46.5 parent: 2 type: Transform - - uid: 27686 + - uid: 27907 components: - rot: -1.5707963267948966 rad pos: -7.5,41.5 parent: 2 type: Transform - - uid: 27687 + - uid: 27908 components: - rot: -1.5707963267948966 rad pos: -7.5,40.5 parent: 2 type: Transform - - uid: 27688 + - uid: 27909 components: - rot: -1.5707963267948966 rad pos: -7.5,34.5 parent: 2 type: Transform - - uid: 27689 + - uid: 27910 components: - rot: -1.5707963267948966 rad pos: -7.5,35.5 parent: 2 type: Transform - - uid: 27690 + - uid: 27911 components: - rot: -1.5707963267948966 rad pos: -7.5,36.5 parent: 2 type: Transform - - uid: 27691 + - uid: 27912 components: - rot: 3.141592653589793 rad pos: 3.5,60.5 parent: 2 type: Transform - - uid: 27692 + - uid: 27913 components: - rot: -1.5707963267948966 rad pos: -7.5,42.5 parent: 2 type: Transform - - uid: 27693 + - uid: 27914 components: - pos: -18.5,68.5 parent: 2 type: Transform - - uid: 27694 + - uid: 27915 components: - pos: -16.5,59.5 parent: 2 type: Transform - - uid: 27695 + - uid: 27916 components: - pos: -16.5,58.5 parent: 2 type: Transform - - uid: 27696 + - uid: 27917 components: - pos: -23.5,59.5 parent: 2 type: Transform - - uid: 27697 + - uid: 27918 components: - pos: -23.5,64.5 parent: 2 type: Transform - - uid: 27698 + - uid: 27919 components: - pos: -23.5,65.5 parent: 2 type: Transform - - uid: 27699 + - uid: 27920 components: - pos: -16.5,54.5 parent: 2 type: Transform - - uid: 27700 + - uid: 27921 components: - pos: -14.5,52.5 parent: 2 type: Transform - - uid: 27701 + - uid: 27922 components: - pos: -14.5,53.5 parent: 2 type: Transform - - uid: 27702 + - uid: 27923 components: - pos: -16.5,52.5 parent: 2 type: Transform - - uid: 27703 + - uid: 27924 components: - pos: -15.5,52.5 parent: 2 type: Transform - - uid: 27704 + - uid: 27925 components: - pos: -23.5,71.5 parent: 2 type: Transform - - uid: 27705 + - uid: 27926 components: - pos: -23.5,70.5 parent: 2 type: Transform - - uid: 27706 + - uid: 27927 components: - pos: -23.5,69.5 parent: 2 type: Transform - - uid: 27707 + - uid: 27928 components: - pos: -20.5,71.5 parent: 2 type: Transform - - uid: 27708 + - uid: 27929 components: - pos: -20.5,70.5 parent: 2 type: Transform - - uid: 27709 + - uid: 27930 components: - pos: -16.5,69.5 parent: 2 type: Transform - - uid: 27710 + - uid: 27931 components: - pos: -23.5,60.5 parent: 2 type: Transform - - uid: 27711 + - uid: 27932 components: - pos: -23.5,74.5 parent: 2 type: Transform - - uid: 27712 + - uid: 27933 components: - pos: -23.5,75.5 parent: 2 type: Transform - - uid: 27713 + - uid: 27934 components: - pos: -20.5,75.5 parent: 2 type: Transform - - uid: 27714 + - uid: 27935 components: - pos: -20.5,74.5 parent: 2 type: Transform - - uid: 27715 + - uid: 27936 components: - pos: -15.5,59.5 parent: 2 type: Transform - - uid: 27716 + - uid: 27937 components: - pos: -14.5,59.5 parent: 2 type: Transform - - uid: 27717 + - uid: 27938 components: - pos: -11.5,74.5 parent: 2 type: Transform - - uid: 27718 + - uid: 27939 components: - pos: -11.5,75.5 parent: 2 type: Transform - - uid: 27719 + - uid: 27940 components: - pos: -14.5,75.5 parent: 2 type: Transform - - uid: 27720 + - uid: 27941 components: - pos: -14.5,74.5 parent: 2 type: Transform - - uid: 27721 + - uid: 27942 components: - pos: -14.5,57.5 parent: 2 type: Transform - - uid: 27722 + - uid: 27943 components: - pos: -16.5,57.5 parent: 2 type: Transform - - uid: 27723 + - uid: 27944 components: - pos: -14.5,54.5 parent: 2 type: Transform - - uid: 27724 + - uid: 27945 components: - pos: -23.5,67.5 parent: 2 type: Transform - - uid: 27725 + - uid: 27946 components: - pos: -23.5,68.5 parent: 2 type: Transform - - uid: 27726 + - uid: 27947 components: - pos: -16.5,70.5 parent: 2 type: Transform - - uid: 27727 + - uid: 27948 components: - pos: -11.5,66.5 parent: 2 type: Transform - - uid: 27728 + - uid: 27949 components: - pos: -23.5,66.5 parent: 2 type: Transform - - uid: 27729 + - uid: 27950 components: - pos: -18.5,69.5 parent: 2 type: Transform - - uid: 27730 + - uid: 27951 components: - pos: -11.5,65.5 parent: 2 type: Transform - - uid: 27731 + - uid: 27952 components: - pos: -11.5,64.5 parent: 2 type: Transform - - uid: 27732 + - uid: 27953 components: - pos: -10.5,63.5 parent: 2 type: Transform - - uid: 27733 + - uid: 27954 components: - pos: -14.5,70.5 parent: 2 type: Transform - - uid: 27734 + - uid: 27955 components: - pos: -14.5,72.5 parent: 2 type: Transform - - uid: 27735 + - uid: 27956 components: - pos: -11.5,72.5 parent: 2 type: Transform - - uid: 27736 + - uid: 27957 components: - pos: -11.5,71.5 parent: 2 type: Transform - - uid: 27737 + - uid: 27958 components: - pos: -11.5,70.5 parent: 2 type: Transform - - uid: 27738 + - uid: 27959 components: - pos: -14.5,69.5 parent: 2 type: Transform - - uid: 27739 + - uid: 27960 components: - rot: -1.5707963267948966 rad pos: -14.5,58.5 parent: 2 type: Transform - - uid: 27740 + - uid: 27961 components: - pos: -14.5,71.5 parent: 2 type: Transform - - uid: 27741 + - uid: 27962 components: - pos: -18.5,70.5 parent: 2 type: Transform - - uid: 27742 + - uid: 27963 components: - pos: -20.5,69.5 parent: 2 type: Transform - - uid: 27743 + - uid: 27964 components: - pos: -20.5,68.5 parent: 2 type: Transform - - uid: 27744 + - uid: 27965 components: - pos: -19.5,68.5 parent: 2 type: Transform - - uid: 27745 + - uid: 27966 components: - pos: -14.5,68.5 parent: 2 type: Transform - - uid: 27746 + - uid: 27967 components: - pos: -15.5,68.5 parent: 2 type: Transform - - uid: 27747 + - uid: 27968 components: - pos: -16.5,68.5 parent: 2 type: Transform - - uid: 27748 + - uid: 27969 components: - rot: -1.5707963267948966 rad pos: -28.5,33.5 parent: 2 type: Transform - - uid: 27749 + - uid: 27970 components: - rot: -1.5707963267948966 rad pos: -28.5,34.5 parent: 2 type: Transform - - uid: 27750 + - uid: 27971 components: - rot: -1.5707963267948966 rad pos: -29.5,35.5 parent: 2 type: Transform - - uid: 27751 + - uid: 27972 components: - rot: -1.5707963267948966 rad pos: -28.5,35.5 parent: 2 type: Transform - - uid: 27752 + - uid: 27973 components: - rot: -1.5707963267948966 rad pos: -30.5,35.5 parent: 2 type: Transform - - uid: 27753 + - uid: 27974 components: - rot: -1.5707963267948966 rad pos: -34.5,35.5 parent: 2 type: Transform - - uid: 27754 + - uid: 27975 components: - rot: -1.5707963267948966 rad pos: -35.5,35.5 parent: 2 type: Transform - - uid: 27755 + - uid: 27976 components: - rot: -1.5707963267948966 rad pos: -28.5,32.5 parent: 2 type: Transform - - uid: 27756 + - uid: 27977 components: - pos: 60.5,30.5 parent: 2 type: Transform - - uid: 27757 + - uid: 27978 components: - pos: 9.5,-35.5 parent: 2 type: Transform - - uid: 27758 + - uid: 27979 components: - pos: 3.5,58.5 parent: 2 type: Transform - - uid: 27759 + - uid: 27980 components: - pos: 2.5,45.5 parent: 2 type: Transform - - uid: 27760 + - uid: 27981 components: - pos: 2.5,44.5 parent: 2 type: Transform - - uid: 27761 + - uid: 27982 components: - pos: 2.5,52.5 parent: 2 type: Transform - - uid: 27762 + - uid: 27983 components: - pos: 2.5,53.5 parent: 2 type: Transform - - uid: 27763 + - uid: 27984 components: - pos: 2.5,54.5 parent: 2 type: Transform - - uid: 27764 + - uid: 27985 components: - pos: 2.5,55.5 parent: 2 type: Transform - - uid: 27765 + - uid: 27986 components: - pos: 3.5,56.5 parent: 2 type: Transform - - uid: 27766 + - uid: 27987 components: - pos: -7.5,43.5 parent: 2 type: Transform - - uid: 27767 + - uid: 27988 components: - pos: 3.5,59.5 parent: 2 type: Transform - - uid: 27768 + - uid: 27989 components: - pos: 2.5,56.5 parent: 2 type: Transform - - uid: 27769 + - uid: 27990 components: - pos: -4.5,42.5 parent: 2 type: Transform - - uid: 27770 + - uid: 27991 components: - pos: -5.5,42.5 parent: 2 type: Transform - - uid: 27771 + - uid: 27992 components: - pos: -0.5,42.5 parent: 2 type: Transform - - uid: 27772 + - uid: 27993 components: - pos: 0.5,42.5 parent: 2 type: Transform - - uid: 27773 + - uid: 27994 components: - pos: 2.5,60.5 parent: 2 type: Transform - - uid: 27774 + - uid: 27995 components: - pos: 5.5,49.5 parent: 2 type: Transform - - uid: 27775 + - uid: 27996 components: - pos: 10.5,50.5 parent: 2 type: Transform - - uid: 27776 + - uid: 27997 components: - pos: 10.5,46.5 parent: 2 type: Transform - - uid: 27777 + - uid: 27998 components: - pos: 34.5,49.5 parent: 2 type: Transform - - uid: 27778 + - uid: 27999 components: - pos: 35.5,49.5 parent: 2 type: Transform - - uid: 27779 + - uid: 28000 components: - rot: -1.5707963267948966 rad pos: 21.5,44.5 parent: 2 type: Transform - - uid: 27780 + - uid: 28001 components: - rot: -1.5707963267948966 rad pos: 21.5,46.5 parent: 2 type: Transform - - uid: 27781 + - uid: 28002 components: - pos: 59.5,35.5 parent: 2 type: Transform - - uid: 27782 + - uid: 28003 components: - rot: -1.5707963267948966 rad pos: 42.5,37.5 parent: 2 type: Transform - - uid: 27783 + - uid: 28004 components: - rot: -1.5707963267948966 rad pos: 44.5,34.5 parent: 2 type: Transform - - uid: 27784 + - uid: 28005 components: - rot: -1.5707963267948966 rad pos: 44.5,36.5 parent: 2 type: Transform - - uid: 27785 + - uid: 28006 components: - rot: -1.5707963267948966 rad pos: 44.5,35.5 parent: 2 type: Transform - - uid: 27786 + - uid: 28007 components: - rot: -1.5707963267948966 rad pos: 43.5,38.5 parent: 2 type: Transform - - uid: 27787 + - uid: 28008 components: - rot: 1.5707963267948966 rad pos: 44.5,40.5 parent: 2 type: Transform - - uid: 27788 + - uid: 28009 components: - rot: 1.5707963267948966 rad pos: 44.5,39.5 parent: 2 type: Transform - - uid: 27789 + - uid: 28010 components: - rot: 1.5707963267948966 rad pos: 44.5,38.5 parent: 2 type: Transform - - uid: 27790 + - uid: 28011 components: - rot: -1.5707963267948966 rad pos: 42.5,36.5 parent: 2 type: Transform - - uid: 27791 + - uid: 28012 components: - rot: 1.5707963267948966 rad pos: 46.5,40.5 parent: 2 type: Transform - - uid: 27792 + - uid: 28013 components: - rot: 1.5707963267948966 rad pos: 48.5,40.5 parent: 2 type: Transform - - uid: 27793 + - uid: 28014 components: - rot: 1.5707963267948966 rad pos: 48.5,41.5 parent: 2 type: Transform - - uid: 27794 + - uid: 28015 components: - rot: -1.5707963267948966 rad pos: 43.5,36.5 parent: 2 type: Transform - - uid: 27795 + - uid: 28016 components: - rot: 3.141592653589793 rad pos: 42.5,34.5 parent: 2 type: Transform - - uid: 27796 + - uid: 28017 components: - rot: 3.141592653589793 rad pos: 41.5,34.5 parent: 2 type: Transform - - uid: 27797 + - uid: 28018 components: - rot: 3.141592653589793 rad pos: 41.5,33.5 parent: 2 type: Transform - - uid: 27798 + - uid: 28019 components: - rot: 3.141592653589793 rad pos: 41.5,29.5 parent: 2 type: Transform - - uid: 27799 + - uid: 28020 components: - rot: 3.141592653589793 rad pos: 42.5,28.5 parent: 2 type: Transform - - uid: 27800 + - uid: 28021 components: - rot: 3.141592653589793 rad pos: 42.5,29.5 parent: 2 type: Transform - - uid: 27801 + - uid: 28022 components: - rot: 3.141592653589793 rad pos: 43.5,28.5 parent: 2 type: Transform - - uid: 27802 + - uid: 28023 components: - rot: -1.5707963267948966 rad pos: 57.5,36.5 parent: 2 type: Transform - - uid: 27803 + - uid: 28024 components: - rot: -1.5707963267948966 rad pos: 56.5,38.5 parent: 2 type: Transform - - uid: 27804 + - uid: 28025 components: - pos: 71.5,-65.5 parent: 2 type: Transform - - uid: 27805 + - uid: 28026 components: - rot: 1.5707963267948966 rad pos: 43.5,34.5 parent: 2 type: Transform - - uid: 27806 + - uid: 28027 components: - rot: -1.5707963267948966 rad pos: 62.5,30.5 parent: 2 type: Transform - - uid: 27807 + - uid: 28028 components: - rot: -1.5707963267948966 rad pos: 64.5,30.5 parent: 2 type: Transform - - uid: 27808 + - uid: 28029 components: - rot: -1.5707963267948966 rad pos: 65.5,30.5 parent: 2 type: Transform - - uid: 27809 + - uid: 28030 components: - rot: -1.5707963267948966 rad pos: 65.5,28.5 parent: 2 type: Transform - - uid: 27810 + - uid: 28031 components: - rot: -1.5707963267948966 rad pos: 65.5,29.5 parent: 2 type: Transform - - uid: 27811 + - uid: 28032 components: - pos: 30.5,48.5 parent: 2 type: Transform - - uid: 27812 + - uid: 28033 components: - rot: -1.5707963267948966 rad pos: 27.5,47.5 parent: 2 type: Transform - - uid: 27813 + - uid: 28034 components: - rot: -1.5707963267948966 rad pos: 27.5,43.5 parent: 2 type: Transform - - uid: 27814 + - uid: 28035 components: - rot: -1.5707963267948966 rad pos: 28.5,43.5 parent: 2 type: Transform - - uid: 27815 + - uid: 28036 components: - rot: -1.5707963267948966 rad pos: 30.5,43.5 parent: 2 type: Transform - - uid: 27816 + - uid: 28037 components: - rot: -1.5707963267948966 rad pos: 31.5,43.5 parent: 2 type: Transform - - uid: 27817 + - uid: 28038 components: - pos: 2.5,46.5 parent: 2 type: Transform - - uid: 27818 + - uid: 28039 components: - pos: -6.5,43.5 parent: 2 type: Transform - - uid: 27819 + - uid: 28040 components: - pos: -5.5,43.5 parent: 2 type: Transform - - uid: 27820 + - uid: 28041 components: - pos: 2.5,43.5 parent: 2 type: Transform - - uid: 27821 + - uid: 28042 components: - pos: 1.5,43.5 parent: 2 type: Transform - - uid: 27822 + - uid: 28043 components: - pos: 0.5,43.5 parent: 2 type: Transform - - uid: 27823 + - uid: 28044 components: - pos: -8.5,60.5 parent: 2 type: Transform - - uid: 27824 + - uid: 28045 components: - pos: -3.5,60.5 parent: 2 type: Transform - - uid: 27825 + - uid: 28046 components: - pos: -4.5,60.5 parent: 2 type: Transform - - uid: 27826 + - uid: 28047 components: - pos: -5.5,60.5 parent: 2 type: Transform - - uid: 27827 + - uid: 28048 components: - pos: -6.5,60.5 parent: 2 type: Transform - - uid: 27828 + - uid: 28049 components: - pos: -7.5,60.5 parent: 2 type: Transform - - uid: 27829 + - uid: 28050 components: - pos: 1.5,60.5 parent: 2 type: Transform - - uid: 27830 + - uid: 28051 components: - pos: 0.5,60.5 parent: 2 type: Transform - - uid: 27831 + - uid: 28052 components: - rot: -1.5707963267948966 rad pos: -7.5,38.5 parent: 2 type: Transform - - uid: 27832 + - uid: 28053 components: - pos: 18.5,35.5 parent: 2 type: Transform - - uid: 27833 + - uid: 28054 components: - pos: 19.5,35.5 parent: 2 type: Transform - - uid: 27834 + - uid: 28055 components: - pos: 19.5,36.5 parent: 2 type: Transform - - uid: 27835 + - uid: 28056 components: - pos: 19.5,37.5 parent: 2 type: Transform - - uid: 27836 + - uid: 28057 components: - pos: 19.5,38.5 parent: 2 type: Transform - - uid: 27837 + - uid: 28058 components: - pos: 19.5,39.5 parent: 2 type: Transform - - uid: 27838 + - uid: 28059 components: - pos: 19.5,40.5 parent: 2 type: Transform - - uid: 27839 + - uid: 28060 components: - pos: 18.5,40.5 parent: 2 type: Transform - - uid: 27840 + - uid: 28061 components: - pos: 17.5,40.5 parent: 2 type: Transform - - uid: 27841 + - uid: 28062 components: - pos: 17.5,41.5 parent: 2 type: Transform - - uid: 27842 + - uid: 28063 components: - pos: 15.5,41.5 parent: 2 type: Transform - - uid: 27843 + - uid: 28064 components: - pos: 15.5,40.5 parent: 2 type: Transform - - uid: 27844 + - uid: 28065 components: - pos: 14.5,40.5 parent: 2 type: Transform - - uid: 27845 + - uid: 28066 components: - pos: 13.5,40.5 parent: 2 type: Transform - - uid: 27846 + - uid: 28067 components: - pos: 13.5,39.5 parent: 2 type: Transform - - uid: 27847 + - uid: 28068 components: - pos: 13.5,38.5 parent: 2 type: Transform - - uid: 27848 + - uid: 28069 components: - pos: 13.5,37.5 parent: 2 type: Transform - - uid: 27849 + - uid: 28070 components: - pos: 13.5,36.5 parent: 2 type: Transform - - uid: 27850 + - uid: 28071 components: - pos: 13.5,35.5 parent: 2 type: Transform - - uid: 27851 + - uid: 28072 components: - pos: 14.5,35.5 parent: 2 type: Transform - - uid: 27852 + - uid: 28073 components: - pos: 0.5,61.5 parent: 2 type: Transform - - uid: 27853 + - uid: 28074 components: - pos: 0.5,63.5 parent: 2 type: Transform - - uid: 27854 + - uid: 28075 components: - pos: 0.5,62.5 parent: 2 type: Transform - - uid: 27855 + - uid: 28076 components: - pos: -3.5,63.5 parent: 2 type: Transform - - uid: 27856 + - uid: 28077 components: - pos: -3.5,62.5 parent: 2 type: Transform - - uid: 27857 + - uid: 28078 components: - pos: -3.5,61.5 parent: 2 type: Transform - - uid: 27858 + - uid: 28079 components: - pos: 0.5,64.5 parent: 2 type: Transform - - uid: 27859 + - uid: 28080 components: - pos: -0.5,64.5 parent: 2 type: Transform - - uid: 27860 + - uid: 28081 components: - pos: -2.5,64.5 parent: 2 type: Transform - - uid: 27861 + - uid: 28082 components: - pos: -3.5,64.5 parent: 2 type: Transform - - uid: 27862 + - uid: 28083 components: - pos: -4.5,64.5 parent: 2 type: Transform - - uid: 27863 + - uid: 28084 components: - pos: -5.5,64.5 parent: 2 type: Transform - - uid: 27864 + - uid: 28085 components: - pos: -5.5,65.5 parent: 2 type: Transform - - uid: 27865 + - uid: 28086 components: - pos: -5.5,65.5 parent: 2 type: Transform - - uid: 27866 + - uid: 28087 components: - pos: -6.5,65.5 parent: 2 type: Transform - - uid: 27867 + - uid: 28088 components: - pos: -7.5,65.5 parent: 2 type: Transform - - uid: 27868 + - uid: 28089 components: - pos: -7.5,66.5 parent: 2 type: Transform - - uid: 27869 + - uid: 28090 components: - pos: -8.5,66.5 parent: 2 type: Transform - - uid: 27870 + - uid: 28091 components: - pos: -8.5,67.5 parent: 2 type: Transform - - uid: 27871 + - uid: 28092 components: - pos: -8.5,68.5 parent: 2 type: Transform - - uid: 27872 + - uid: 28093 components: - pos: -8.5,70.5 parent: 2 type: Transform - - uid: 27873 + - uid: 28094 components: - pos: -8.5,71.5 parent: 2 type: Transform - - uid: 27874 + - uid: 28095 components: - pos: -8.5,72.5 parent: 2 type: Transform - - uid: 27875 + - uid: 28096 components: - pos: -7.5,72.5 parent: 2 type: Transform - - uid: 27876 + - uid: 28097 components: - pos: -7.5,73.5 parent: 2 type: Transform - - uid: 27877 + - uid: 28098 components: - pos: -6.5,73.5 parent: 2 type: Transform - - uid: 27878 + - uid: 28099 components: - pos: -6.5,74.5 parent: 2 type: Transform - - uid: 27879 + - uid: 28100 components: - pos: -5.5,74.5 parent: 2 type: Transform - - uid: 27880 + - uid: 28101 components: - pos: -4.5,74.5 parent: 2 type: Transform - - uid: 27881 + - uid: 28102 components: - pos: -3.5,74.5 parent: 2 type: Transform - - uid: 27882 + - uid: 28103 components: - pos: -2.5,74.5 parent: 2 type: Transform - - uid: 27883 + - uid: 28104 components: - pos: -1.5,74.5 parent: 2 type: Transform - - uid: 27884 + - uid: 28105 components: - pos: -0.5,74.5 parent: 2 type: Transform - - uid: 27885 + - uid: 28106 components: - pos: 0.5,74.5 parent: 2 type: Transform - - uid: 27886 + - uid: 28107 components: - pos: 1.5,74.5 parent: 2 type: Transform - - uid: 27887 + - uid: 28108 components: - pos: 2.5,74.5 parent: 2 type: Transform - - uid: 27888 + - uid: 28109 components: - pos: 3.5,74.5 parent: 2 type: Transform - - uid: 27889 + - uid: 28110 components: - pos: 3.5,73.5 parent: 2 type: Transform - - uid: 27890 + - uid: 28111 components: - pos: 4.5,73.5 parent: 2 type: Transform - - uid: 27891 + - uid: 28112 components: - pos: 4.5,72.5 parent: 2 type: Transform - - uid: 27892 + - uid: 28113 components: - pos: 5.5,72.5 parent: 2 type: Transform - - uid: 27893 + - uid: 28114 components: - pos: 5.5,71.5 parent: 2 type: Transform - - uid: 27894 + - uid: 28115 components: - pos: 5.5,70.5 parent: 2 type: Transform - - uid: 27895 + - uid: 28116 components: - pos: 5.5,68.5 parent: 2 type: Transform - - uid: 27896 + - uid: 28117 components: - pos: 5.5,67.5 parent: 2 type: Transform - - uid: 27897 + - uid: 28118 components: - pos: 5.5,66.5 parent: 2 type: Transform - - uid: 27898 + - uid: 28119 components: - pos: 4.5,66.5 parent: 2 type: Transform - - uid: 27899 + - uid: 28120 components: - pos: 4.5,65.5 parent: 2 type: Transform - - uid: 27900 + - uid: 28121 components: - pos: 3.5,65.5 parent: 2 type: Transform - - uid: 27901 + - uid: 28122 components: - pos: 2.5,64.5 parent: 2 type: Transform - - uid: 27902 + - uid: 28123 components: - pos: 2.5,65.5 parent: 2 type: Transform - - uid: 27903 + - uid: 28124 components: - pos: 1.5,64.5 parent: 2 type: Transform - - uid: 27904 + - uid: 28125 components: - rot: 3.141592653589793 rad pos: 69.5,39.5 parent: 2 type: Transform - - uid: 27905 + - uid: 28126 components: - rot: 3.141592653589793 rad pos: 69.5,38.5 parent: 2 type: Transform - - uid: 27906 + - uid: 28127 components: - rot: 3.141592653589793 rad pos: 69.5,37.5 parent: 2 type: Transform - - uid: 27907 + - uid: 28128 components: - rot: 3.141592653589793 rad pos: 75.5,39.5 parent: 2 type: Transform - - uid: 27908 + - uid: 28129 components: - rot: 3.141592653589793 rad pos: 75.5,38.5 parent: 2 type: Transform - - uid: 27909 + - uid: 28130 components: - rot: 3.141592653589793 rad pos: 75.5,37.5 parent: 2 type: Transform - - uid: 27910 + - uid: 28131 components: - rot: 3.141592653589793 rad pos: 74.5,39.5 parent: 2 type: Transform - - uid: 27911 + - uid: 28132 components: - rot: 3.141592653589793 rad pos: 72.5,39.5 parent: 2 type: Transform - - uid: 27912 + - uid: 28133 components: - rot: 3.141592653589793 rad pos: 70.5,39.5 parent: 2 type: Transform - - uid: 27913 + - uid: 28134 components: - rot: 3.141592653589793 rad pos: 69.5,35.5 parent: 2 type: Transform - - uid: 27914 + - uid: 28135 components: - rot: 3.141592653589793 rad pos: 69.5,34.5 parent: 2 type: Transform - - uid: 27915 + - uid: 28136 components: - rot: 3.141592653589793 rad pos: 69.5,33.5 parent: 2 type: Transform - - uid: 27916 + - uid: 28137 components: - rot: 3.141592653589793 rad pos: 70.5,33.5 parent: 2 type: Transform - - uid: 27917 + - uid: 28138 components: - rot: 3.141592653589793 rad pos: 72.5,33.5 parent: 2 type: Transform - - uid: 27918 + - uid: 28139 components: - rot: 3.141592653589793 rad pos: 74.5,33.5 parent: 2 type: Transform - - uid: 27919 + - uid: 28140 components: - rot: 3.141592653589793 rad pos: 75.5,33.5 parent: 2 type: Transform - - uid: 27920 + - uid: 28141 components: - rot: 3.141592653589793 rad pos: 75.5,34.5 parent: 2 type: Transform - - uid: 27921 + - uid: 28142 components: - rot: 3.141592653589793 rad pos: 75.5,35.5 parent: 2 type: Transform - - uid: 27922 + - uid: 28143 components: - pos: 76.5,37.5 parent: 2 type: Transform - - uid: 27923 + - uid: 28144 components: - pos: 77.5,37.5 parent: 2 type: Transform - - uid: 27924 + - uid: 28145 components: - pos: 76.5,35.5 parent: 2 type: Transform - - uid: 27925 + - uid: 28146 components: - pos: 77.5,35.5 parent: 2 type: Transform - - uid: 27926 + - uid: 28147 components: - pos: 68.5,37.5 parent: 2 type: Transform - - uid: 27927 + - uid: 28148 components: - pos: 67.5,37.5 parent: 2 type: Transform - - uid: 27928 + - uid: 28149 components: - pos: 67.5,35.5 parent: 2 type: Transform - - uid: 27929 + - uid: 28150 components: - pos: 68.5,35.5 parent: 2 type: Transform - - uid: 27930 + - uid: 28151 components: - pos: 64.5,32.5 parent: 2 type: Transform - - uid: 27931 + - uid: 28152 components: - pos: 64.5,31.5 parent: 2 type: Transform - - uid: 27932 + - uid: 28153 components: - pos: 62.5,32.5 parent: 2 type: Transform - - uid: 27933 + - uid: 28154 components: - pos: 62.5,31.5 parent: 2 type: Transform - - uid: 27934 + - uid: 28155 components: - pos: -38.5,43.5 parent: 2 type: Transform - - uid: 27935 + - uid: 28156 components: - pos: -38.5,42.5 parent: 2 type: Transform - - uid: 27936 + - uid: 28157 components: - pos: -38.5,41.5 parent: 2 type: Transform - - uid: 27937 + - uid: 28158 components: - pos: -36.5,43.5 parent: 2 type: Transform - - uid: 27938 + - uid: 28159 components: - pos: -36.5,42.5 parent: 2 type: Transform - - uid: 27939 + - uid: 28160 components: - pos: -36.5,41.5 parent: 2 type: Transform - - uid: 27940 + - uid: 28161 components: - pos: -38.5,40.5 parent: 2 type: Transform - - uid: 27941 + - uid: 28162 components: - pos: -39.5,40.5 parent: 2 type: Transform - - uid: 27942 + - uid: 28163 components: - pos: -40.5,40.5 parent: 2 type: Transform - - uid: 27943 + - uid: 28164 components: - pos: -41.5,40.5 parent: 2 type: Transform - - uid: 27944 + - uid: 28165 components: - pos: -42.5,40.5 parent: 2 type: Transform - - uid: 27945 + - uid: 28166 components: - rot: -1.5707963267948966 rad pos: -48.5,46.5 parent: 2 type: Transform - - uid: 27946 + - uid: 28167 components: - rot: -1.5707963267948966 rad pos: -48.5,47.5 parent: 2 type: Transform - - uid: 27947 + - uid: 28168 components: - rot: -1.5707963267948966 rad pos: -50.5,47.5 parent: 2 type: Transform - - uid: 27948 + - uid: 28169 components: - pos: -48.5,40.5 parent: 2 type: Transform - - uid: 27949 + - uid: 28170 components: - pos: -48.5,39.5 parent: 2 type: Transform - - uid: 27950 + - uid: 28171 components: - pos: -48.5,38.5 parent: 2 type: Transform - - uid: 27951 + - uid: 28172 components: - pos: -36.5,40.5 parent: 2 type: Transform - - uid: 27952 + - uid: 28173 components: - pos: -35.5,40.5 parent: 2 type: Transform - - uid: 27953 + - uid: 28174 components: - pos: -34.5,40.5 parent: 2 type: Transform - - uid: 27954 + - uid: 28175 components: - pos: -31.5,40.5 parent: 2 type: Transform - - uid: 27955 + - uid: 28176 components: - pos: -30.5,40.5 parent: 2 type: Transform - - uid: 27956 + - uid: 28177 components: - pos: -30.5,41.5 parent: 2 type: Transform - - uid: 27957 + - uid: 28178 components: - pos: -30.5,42.5 parent: 2 type: Transform - - uid: 27958 + - uid: 28179 components: - pos: -29.5,42.5 parent: 2 type: Transform - - uid: 27959 + - uid: 28180 components: - pos: -26.5,47.5 parent: 2 type: Transform - - uid: 27960 + - uid: 28181 components: - pos: -27.5,47.5 parent: 2 type: Transform - - uid: 27961 + - uid: 28182 components: - pos: -28.5,47.5 parent: 2 type: Transform - - uid: 27962 + - uid: 28183 components: - pos: -29.5,47.5 parent: 2 type: Transform - - uid: 27963 + - uid: 28184 components: - pos: -29.5,46.5 parent: 2 type: Transform - - uid: 27964 + - uid: 28185 components: - pos: -25.5,47.5 parent: 2 type: Transform - - uid: 27965 + - uid: 28186 components: - pos: -25.5,48.5 parent: 2 type: Transform - - uid: 27966 + - uid: 28187 components: - pos: 32.5,48.5 parent: 2 type: Transform - - uid: 27967 + - uid: 28188 components: - pos: 31.5,48.5 parent: 2 type: Transform - - uid: 27968 + - uid: 28189 components: - pos: 31.5,47.5 parent: 2 type: Transform - - uid: 27969 + - uid: 28190 components: - pos: 31.5,46.5 parent: 2 type: Transform - - uid: 27970 + - uid: 28191 components: - pos: 31.5,44.5 parent: 2 type: Transform - - uid: 27971 + - uid: 28192 components: - pos: 27.5,46.5 parent: 2 type: Transform - - uid: 27972 + - uid: 28193 components: - pos: 27.5,44.5 parent: 2 type: Transform - - uid: 27973 + - uid: 28194 components: - pos: 28.5,48.5 parent: 2 type: Transform - - uid: 27974 + - uid: 28195 components: - rot: -1.5707963267948966 rad pos: -1.5,73.5 parent: 2 type: Transform - - uid: 27975 + - uid: 28196 components: - pos: 46.5,51.5 parent: 2 type: Transform - - uid: 27976 + - uid: 28197 components: - pos: 47.5,51.5 parent: 2 type: Transform - - uid: 27977 + - uid: 28198 components: - pos: 48.5,51.5 parent: 2 type: Transform - - uid: 27978 + - uid: 28199 components: - pos: 30.5,42.5 parent: 2 type: Transform - - uid: 27979 + - uid: 28200 components: - pos: 30.5,41.5 parent: 2 type: Transform - - uid: 27980 + - uid: 28201 components: - pos: 28.5,42.5 parent: 2 type: Transform - - uid: 27981 + - uid: 28202 components: - pos: 28.5,41.5 parent: 2 type: Transform - - uid: 27982 + - uid: 28203 components: - pos: 27.5,48.5 parent: 2 type: Transform - - uid: 27983 + - uid: 28204 components: - pos: -8.5,63.5 parent: 2 type: Transform - - uid: 27984 + - uid: 28205 components: - pos: -9.5,63.5 parent: 2 type: Transform - - uid: 27985 + - uid: 28206 components: - pos: -11.5,63.5 parent: 2 type: Transform - - uid: 27986 + - uid: 28207 components: - pos: -8.5,62.5 parent: 2 type: Transform - - uid: 27987 + - uid: 28208 components: - pos: -8.5,61.5 parent: 2 type: Transform - - uid: 27988 + - uid: 28209 components: - pos: 10.5,-35.5 parent: 2 type: Transform - - uid: 27989 + - uid: 28210 components: - pos: 9.5,-30.5 parent: 2 type: Transform - - uid: 27990 + - uid: 28211 components: - pos: 10.5,-37.5 parent: 2 type: Transform - - uid: 27991 + - uid: 28212 components: - pos: -25.5,49.5 parent: 2 type: Transform - - uid: 27992 + - uid: 28213 components: - pos: -25.5,50.5 parent: 2 type: Transform - - uid: 27993 + - uid: 28214 components: - pos: -26.5,50.5 parent: 2 type: Transform - - uid: 27994 + - uid: 28215 components: - pos: -26.5,51.5 parent: 2 type: Transform - - uid: 27995 + - uid: 28216 components: - pos: -26.5,52.5 parent: 2 type: Transform - - uid: 27996 + - uid: 28217 components: - pos: -26.5,55.5 parent: 2 type: Transform - - uid: 27997 + - uid: 28218 components: - pos: -26.5,56.5 parent: 2 type: Transform - - uid: 27998 + - uid: 28219 components: - pos: -25.5,56.5 parent: 2 type: Transform - - uid: 27999 + - uid: 28220 components: - pos: -25.5,57.5 parent: 2 type: Transform - - uid: 28000 + - uid: 28221 components: - pos: -24.5,57.5 parent: 2 type: Transform - - uid: 28001 + - uid: 28222 components: - pos: 3.5,57.5 parent: 2 type: Transform - - uid: 28002 + - uid: 28223 components: - pos: 10.5,-30.5 parent: 2 type: Transform - - uid: 28003 + - uid: 28224 components: - pos: 9.5,-33.5 parent: 2 type: Transform - - uid: 28004 + - uid: 28225 components: - rot: 3.141592653589793 rad pos: -16.5,-81.5 parent: 2 type: Transform - - uid: 28005 + - uid: 28226 components: - rot: 3.141592653589793 rad pos: -16.5,-82.5 parent: 2 type: Transform - - uid: 28006 + - uid: 28227 components: - rot: 3.141592653589793 rad pos: -16.5,-83.5 parent: 2 type: Transform - - uid: 28007 + - uid: 28228 components: - rot: 3.141592653589793 rad pos: -16.5,-84.5 parent: 2 type: Transform - - uid: 28008 + - uid: 28229 components: - rot: 3.141592653589793 rad pos: -16.5,-85.5 parent: 2 type: Transform - - uid: 28009 + - uid: 28230 components: - rot: 3.141592653589793 rad pos: -16.5,-86.5 parent: 2 type: Transform - - uid: 28010 + - uid: 28231 components: - rot: 3.141592653589793 rad pos: -16.5,-87.5 parent: 2 type: Transform - - uid: 28011 + - uid: 28232 components: - rot: 3.141592653589793 rad pos: -16.5,-89.5 parent: 2 type: Transform - - uid: 28012 + - uid: 28233 components: - rot: 3.141592653589793 rad pos: -15.5,-89.5 parent: 2 type: Transform - - uid: 28013 + - uid: 28234 components: - rot: 3.141592653589793 rad pos: -14.5,-89.5 parent: 2 type: Transform - - uid: 28014 + - uid: 28235 components: - rot: 3.141592653589793 rad pos: -13.5,-89.5 parent: 2 type: Transform - - uid: 28015 + - uid: 28236 components: - rot: 3.141592653589793 rad pos: -12.5,-89.5 parent: 2 type: Transform - - uid: 28016 + - uid: 28237 components: - rot: 3.141592653589793 rad pos: -11.5,-89.5 parent: 2 type: Transform - - uid: 28017 + - uid: 28238 components: - rot: 3.141592653589793 rad pos: -10.5,-89.5 parent: 2 type: Transform - - uid: 28018 + - uid: 28239 components: - rot: 3.141592653589793 rad pos: -9.5,-89.5 parent: 2 type: Transform - - uid: 28019 + - uid: 28240 components: - rot: 3.141592653589793 rad pos: -8.5,-89.5 parent: 2 type: Transform - - uid: 28020 + - uid: 28241 components: - rot: 3.141592653589793 rad pos: -9.5,-94.5 parent: 2 type: Transform - - uid: 28021 + - uid: 28242 components: - pos: -5.5,-94.5 parent: 2 type: Transform - - uid: 28022 + - uid: 28243 components: - rot: 3.141592653589793 rad pos: -6.5,-89.5 parent: 2 type: Transform - - uid: 28023 + - uid: 28244 components: - rot: 3.141592653589793 rad pos: -5.5,-89.5 parent: 2 type: Transform - - uid: 28024 + - uid: 28245 components: - rot: 3.141592653589793 rad pos: -4.5,-89.5 parent: 2 type: Transform - - uid: 28025 + - uid: 28246 components: - rot: 3.141592653589793 rad pos: -3.5,-89.5 parent: 2 type: Transform - - uid: 28026 + - uid: 28247 components: - rot: 3.141592653589793 rad pos: -3.5,-85.5 parent: 2 type: Transform - - uid: 28027 + - uid: 28248 components: - rot: 3.141592653589793 rad pos: -3.5,-86.5 parent: 2 type: Transform - - uid: 28028 + - uid: 28249 components: - rot: 3.141592653589793 rad pos: -3.5,-87.5 parent: 2 type: Transform - - uid: 28029 + - uid: 28250 components: - rot: 3.141592653589793 rad pos: -3.5,-88.5 parent: 2 type: Transform - - uid: 28030 + - uid: 28251 components: - rot: 3.141592653589793 rad pos: -3.5,-84.5 parent: 2 type: Transform - - uid: 28031 + - uid: 28252 components: - rot: -1.5707963267948966 rad pos: 29.5,48.5 parent: 2 type: Transform - - uid: 28032 + - uid: 28253 components: - pos: -18.5,-95.5 parent: 2 type: Transform - - uid: 28033 + - uid: 28254 components: - pos: -18.5,-99.5 parent: 2 type: Transform - - uid: 28034 + - uid: 28255 components: - pos: -26.5,-95.5 parent: 2 type: Transform - - uid: 28035 + - uid: 28256 components: - pos: -26.5,-99.5 parent: 2 type: Transform - - uid: 28036 + - uid: 28257 components: - pos: -18.5,-94.5 parent: 2 type: Transform - - uid: 28037 + - uid: 28258 components: - pos: -19.5,-94.5 parent: 2 type: Transform - - uid: 28038 + - uid: 28259 components: - pos: -20.5,-94.5 parent: 2 type: Transform - - uid: 28039 + - uid: 28260 components: - pos: -24.5,-94.5 parent: 2 type: Transform - - uid: 28040 + - uid: 28261 components: - pos: -25.5,-94.5 parent: 2 type: Transform - - uid: 28041 + - uid: 28262 components: - pos: -26.5,-94.5 parent: 2 type: Transform - - uid: 28042 + - uid: 28263 components: - pos: -18.5,-100.5 parent: 2 type: Transform - - uid: 28043 + - uid: 28264 components: - pos: -19.5,-100.5 parent: 2 type: Transform - - uid: 28044 + - uid: 28265 components: - pos: -20.5,-100.5 parent: 2 type: Transform - - uid: 28045 + - uid: 28266 components: - pos: -26.5,-100.5 parent: 2 type: Transform - - uid: 28046 + - uid: 28267 components: - pos: -25.5,-100.5 parent: 2 type: Transform - - uid: 28047 + - uid: 28268 components: - pos: -24.5,-100.5 parent: 2 type: Transform - - uid: 28048 + - uid: 28269 components: - pos: -17.5,-95.5 parent: 2 type: Transform - - uid: 28049 + - uid: 28270 components: - pos: -16.5,-95.5 parent: 2 type: Transform - - uid: 28050 + - uid: 28271 components: - pos: -15.5,-95.5 parent: 2 type: Transform - - uid: 28051 + - uid: 28272 components: - pos: -14.5,-95.5 parent: 2 type: Transform - - uid: 28052 + - uid: 28273 components: - pos: -17.5,-99.5 parent: 2 type: Transform - - uid: 28053 + - uid: 28274 components: - pos: -16.5,-99.5 parent: 2 type: Transform - - uid: 28054 + - uid: 28275 components: - pos: -15.5,-99.5 parent: 2 type: Transform - - uid: 28055 + - uid: 28276 components: - pos: -14.5,-99.5 parent: 2 type: Transform - - uid: 28056 + - uid: 28277 components: - pos: -27.5,-95.5 parent: 2 type: Transform - - uid: 28057 + - uid: 28278 components: - pos: -28.5,-95.5 parent: 2 type: Transform - - uid: 28058 + - uid: 28279 components: - pos: -29.5,-95.5 parent: 2 type: Transform - - uid: 28059 + - uid: 28280 components: - pos: -30.5,-95.5 parent: 2 type: Transform - - uid: 28060 + - uid: 28281 components: - pos: -27.5,-99.5 parent: 2 type: Transform - - uid: 28061 + - uid: 28282 components: - pos: -28.5,-99.5 parent: 2 type: Transform - - uid: 28062 + - uid: 28283 components: - pos: -29.5,-99.5 parent: 2 type: Transform - - uid: 28063 + - uid: 28284 components: - pos: -30.5,-99.5 parent: 2 type: Transform - - uid: 28064 + - uid: 28285 components: - pos: -13.5,-95.5 parent: 2 type: Transform - - uid: 28065 + - uid: 28286 components: - pos: -13.5,-99.5 parent: 2 type: Transform - - uid: 28066 + - uid: 28287 components: - pos: -31.5,-95.5 parent: 2 type: Transform - - uid: 28067 + - uid: 28288 components: - pos: -31.5,-99.5 parent: 2 type: Transform - - uid: 28068 + - uid: 28289 components: - pos: -10.5,-94.5 parent: 2 type: Transform - - uid: 28069 + - uid: 28290 components: - pos: -11.5,-94.5 parent: 2 type: Transform - - uid: 28070 + - uid: 28291 components: - pos: -11.5,-95.5 parent: 2 type: Transform - - uid: 28071 + - uid: 28292 components: - pos: -12.5,-95.5 parent: 2 type: Transform - - uid: 28072 + - uid: 28293 components: - pos: -4.5,-94.5 parent: 2 type: Transform - - uid: 28073 + - uid: 28294 components: - pos: -4.5,-95.5 parent: 2 type: Transform - - uid: 28074 + - uid: 28295 components: - pos: -3.5,-95.5 parent: 2 type: Transform - - uid: 28075 + - uid: 28296 components: - pos: -7.5,-101.5 parent: 2 type: Transform - - uid: 28076 + - uid: 28297 components: - pos: -4.5,-101.5 parent: 2 type: Transform - - uid: 28077 + - uid: 28298 components: - pos: -4.5,-100.5 parent: 2 type: Transform - - uid: 28078 + - uid: 28299 components: - pos: -3.5,-100.5 parent: 2 type: Transform - - uid: 28079 + - uid: 28300 components: - pos: -10.5,-101.5 parent: 2 type: Transform - - uid: 28080 + - uid: 28301 components: - pos: -10.5,-100.5 parent: 2 type: Transform - - uid: 28081 + - uid: 28302 components: - pos: -11.5,-100.5 parent: 2 type: Transform - - uid: 28082 + - uid: 28303 components: - pos: -11.5,-99.5 parent: 2 type: Transform - - uid: 28083 + - uid: 28304 components: - pos: -12.5,-99.5 parent: 2 type: Transform - - uid: 28084 + - uid: 28305 components: - pos: -3.5,-96.5 parent: 2 type: Transform - - uid: 28085 + - uid: 28306 components: - pos: -3.5,-99.5 parent: 2 type: Transform - - uid: 28086 + - uid: 28307 components: - pos: -39.5,-87.5 parent: 2 type: Transform - - uid: 28087 + - uid: 28308 components: - pos: -39.5,-88.5 parent: 2 type: Transform - - uid: 28088 + - uid: 28309 components: - pos: -44.5,-87.5 parent: 2 type: Transform - - uid: 28089 + - uid: 28310 components: - pos: -44.5,-88.5 parent: 2 type: Transform - - uid: 28090 + - uid: 28311 components: - pos: -32.5,-99.5 parent: 2 type: Transform - - uid: 28091 + - uid: 28312 components: - pos: -33.5,-99.5 parent: 2 type: Transform - - uid: 28092 + - uid: 28313 components: - pos: -34.5,-99.5 parent: 2 type: Transform - - uid: 28093 + - uid: 28314 components: - pos: -36.5,-99.5 parent: 2 type: Transform - - uid: 28094 + - uid: 28315 components: - pos: -38.5,-99.5 parent: 2 type: Transform - - uid: 28095 + - uid: 28316 components: - pos: -39.5,-99.5 parent: 2 type: Transform - - uid: 28096 + - uid: 28317 components: - pos: -34.5,-101.5 parent: 2 type: Transform - - uid: 28097 + - uid: 28318 components: - pos: -36.5,-101.5 parent: 2 type: Transform - - uid: 28098 + - uid: 28319 components: - pos: -6.5,-94.5 parent: 2 type: Transform - - uid: 28099 + - uid: 28320 components: - pos: -8.5,-94.5 parent: 2 type: Transform - - uid: 28100 + - uid: 28321 components: - pos: 66.5,-15.5 parent: 2 type: Transform - - uid: 28101 + - uid: 28322 components: - pos: 66.5,-16.5 parent: 2 type: Transform - - uid: 28102 + - uid: 28323 components: - pos: -39.5,-91.5 parent: 2 type: Transform - - uid: 28103 + - uid: 28324 components: - pos: -44.5,-91.5 parent: 2 type: Transform - - uid: 28104 + - uid: 28325 components: - rot: 1.5707963267948966 rad pos: -32.5,-95.5 parent: 2 type: Transform - - uid: 28105 + - uid: 28326 components: - rot: 1.5707963267948966 rad pos: -33.5,-95.5 parent: 2 type: Transform - - uid: 28106 + - uid: 28327 components: - rot: 1.5707963267948966 rad pos: -34.5,-95.5 parent: 2 type: Transform - - uid: 28107 + - uid: 28328 components: - rot: 1.5707963267948966 rad pos: -34.5,-94.5 parent: 2 type: Transform - - uid: 28108 + - uid: 28329 components: - rot: 1.5707963267948966 rad pos: -34.5,-93.5 parent: 2 type: Transform - - uid: 28109 + - uid: 28330 components: - rot: 1.5707963267948966 rad pos: -34.5,-92.5 parent: 2 type: Transform - - uid: 28110 + - uid: 28331 components: - rot: 1.5707963267948966 rad pos: -35.5,-92.5 parent: 2 type: Transform - - uid: 28111 + - uid: 28332 components: - rot: 1.5707963267948966 rad pos: -36.5,-92.5 parent: 2 type: Transform - - uid: 28112 + - uid: 28333 components: - rot: 1.5707963267948966 rad pos: -37.5,-92.5 parent: 2 type: Transform - - uid: 28113 + - uid: 28334 components: - rot: 1.5707963267948966 rad pos: -38.5,-92.5 parent: 2 type: Transform - - uid: 28114 + - uid: 28335 components: - rot: 1.5707963267948966 rad pos: -39.5,-92.5 parent: 2 type: Transform - - uid: 28115 + - uid: 28336 components: - rot: 1.5707963267948966 rad pos: -39.5,-98.5 parent: 2 type: Transform - - uid: 28116 + - uid: 28337 components: - rot: 1.5707963267948966 rad pos: -40.5,-98.5 parent: 2 type: Transform - - uid: 28117 + - uid: 28338 components: - rot: 1.5707963267948966 rad pos: -43.5,-98.5 parent: 2 type: Transform - - uid: 28118 + - uid: 28339 components: - rot: 1.5707963267948966 rad pos: -44.5,-97.5 parent: 2 type: Transform - - uid: 28119 + - uid: 28340 components: - rot: 1.5707963267948966 rad pos: -44.5,-98.5 parent: 2 type: Transform - - uid: 28120 + - uid: 28341 components: - rot: 1.5707963267948966 rad pos: -44.5,-94.5 parent: 2 type: Transform - - uid: 28121 + - uid: 28342 components: - rot: 1.5707963267948966 rad pos: -44.5,-93.5 parent: 2 type: Transform - - uid: 28122 + - uid: 28343 components: - rot: 1.5707963267948966 rad pos: -44.5,-92.5 parent: 2 type: Transform - - uid: 28123 + - uid: 28344 components: - pos: -20.5,-101.5 parent: 2 type: Transform - - uid: 28124 + - uid: 28345 components: - pos: -24.5,-101.5 parent: 2 type: Transform - - uid: 28125 + - uid: 28346 components: - pos: -75.5,-28.5 parent: 2 type: Transform - - uid: 28126 + - uid: 28347 components: - pos: -75.5,-29.5 parent: 2 type: Transform - - uid: 28127 + - uid: 28348 components: - pos: -75.5,-30.5 parent: 2 type: Transform - - uid: 28128 + - uid: 28349 components: - pos: -75.5,-32.5 parent: 2 type: Transform - - uid: 28129 + - uid: 28350 components: - pos: -77.5,-32.5 parent: 2 type: Transform - - uid: 28130 + - uid: 28351 components: - pos: -69.5,-33.5 parent: 2 type: Transform - - uid: 28131 + - uid: 28352 components: - pos: -70.5,-33.5 parent: 2 type: Transform - - uid: 28132 + - uid: 28353 components: - pos: -71.5,-33.5 parent: 2 type: Transform - - uid: 28133 + - uid: 28354 components: - pos: -74.5,-33.5 parent: 2 type: Transform - - uid: 28134 + - uid: 28355 components: - pos: -75.5,-33.5 parent: 2 type: Transform - - uid: 28135 + - uid: 28356 components: - pos: 70.5,-39.5 parent: 2 type: Transform - - uid: 28136 + - uid: 28357 components: - pos: 71.5,-39.5 parent: 2 type: Transform - - uid: 28137 + - uid: 28358 components: - rot: -1.5707963267948966 rad pos: 65.5,-39.5 parent: 2 type: Transform - - uid: 28138 + - uid: 28359 components: - rot: -1.5707963267948966 rad pos: 74.5,-29.5 parent: 2 type: Transform - - uid: 28139 + - uid: 28360 components: - rot: -1.5707963267948966 rad pos: 69.5,-39.5 parent: 2 type: Transform - - uid: 28140 + - uid: 28361 components: - pos: 29.5,34.5 parent: 2 type: Transform - - uid: 28141 + - uid: 28362 components: - rot: -1.5707963267948966 rad pos: 77.5,-50.5 parent: 2 type: Transform - - uid: 28142 + - uid: 28363 components: - rot: -1.5707963267948966 rad pos: 53.5,-68.5 parent: 2 type: Transform - - uid: 28143 + - uid: 28364 components: - rot: -1.5707963267948966 rad pos: 46.5,-66.5 parent: 2 type: Transform - - uid: 28144 + - uid: 28365 components: - rot: -1.5707963267948966 rad pos: 49.5,-64.5 parent: 2 type: Transform - - uid: 28145 + - uid: 28366 components: - rot: -1.5707963267948966 rad pos: 52.5,-64.5 parent: 2 type: Transform - - uid: 28146 + - uid: 28367 components: - rot: -1.5707963267948966 rad pos: 47.5,-64.5 parent: 2 type: Transform - - uid: 28147 + - uid: 28368 components: - rot: -1.5707963267948966 rad pos: 45.5,-66.5 parent: 2 type: Transform - - uid: 28148 + - uid: 28369 components: - pos: 66.5,-67.5 parent: 2 type: Transform - - uid: 28149 + - uid: 28370 components: - pos: 65.5,-67.5 parent: 2 type: Transform - - uid: 28150 + - uid: 28371 components: - pos: 65.5,-68.5 parent: 2 type: Transform - - uid: 28151 + - uid: 28372 components: - pos: 64.5,-68.5 parent: 2 type: Transform - - uid: 28152 + - uid: 28373 components: - pos: 63.5,-69.5 parent: 2 type: Transform - - uid: 28153 + - uid: 28374 components: - pos: 69.5,-50.5 parent: 2 type: Transform - - uid: 28154 + - uid: 28375 components: - rot: -1.5707963267948966 rad pos: 70.5,-27.5 parent: 2 type: Transform - - uid: 28155 + - uid: 28376 components: - rot: -1.5707963267948966 rad pos: 52.5,-68.5 parent: 2 type: Transform - - uid: 28156 + - uid: 28377 components: - rot: -1.5707963267948966 rad pos: 47.5,-66.5 parent: 2 type: Transform - - uid: 28157 + - uid: 28378 components: - rot: -1.5707963267948966 rad pos: 49.5,-68.5 parent: 2 type: Transform - - uid: 28158 + - uid: 28379 components: - rot: -1.5707963267948966 rad pos: 76.5,-50.5 parent: 2 type: Transform - - uid: 28159 + - uid: 28380 components: - rot: -1.5707963267948966 rad pos: 48.5,-67.5 parent: 2 type: Transform - - uid: 28160 + - uid: 28381 components: - rot: -1.5707963267948966 rad pos: 48.5,-64.5 parent: 2 type: Transform - - uid: 28161 + - uid: 28382 components: - rot: -1.5707963267948966 rad pos: 49.5,-67.5 parent: 2 type: Transform - - uid: 28162 + - uid: 28383 components: - rot: -1.5707963267948966 rad pos: 51.5,-64.5 parent: 2 type: Transform - - uid: 28163 + - uid: 28384 components: - pos: 7.5,-38.5 parent: 2 type: Transform - - uid: 28164 + - uid: 28385 components: - rot: 3.141592653589793 rad pos: 74.5,-28.5 parent: 2 type: Transform - - uid: 28165 + - uid: 28386 components: - rot: 3.141592653589793 rad pos: 70.5,-28.5 parent: 2 type: Transform - - uid: 28166 + - uid: 28387 components: - pos: 5.5,-36.5 parent: 2 type: Transform - - uid: 28167 + - uid: 28388 components: - pos: 1.5,-36.5 parent: 2 type: Transform - - uid: 28168 + - uid: 28389 components: - pos: 5.5,-37.5 parent: 2 type: Transform - - uid: 28169 + - uid: 28390 components: - pos: 4.5,-36.5 parent: 2 type: Transform - - uid: 28170 + - uid: 28391 components: - pos: 6.5,-37.5 parent: 2 type: Transform - - uid: 28171 + - uid: 28392 components: - pos: 63.5,-70.5 parent: 2 type: Transform - - uid: 28172 + - uid: 28393 components: - pos: 1.5,-35.5 parent: 2 type: Transform - - uid: 28173 + - uid: 28394 components: - pos: 66.5,-60.5 parent: 2 type: Transform - - uid: 28174 + - uid: 28395 components: - pos: 76.5,-52.5 parent: 2 type: Transform - - uid: 28175 + - uid: 28396 components: - pos: 76.5,-51.5 parent: 2 type: Transform - - uid: 28176 + - uid: 28397 components: - pos: 73.5,-51.5 parent: 2 type: Transform - - uid: 28177 + - uid: 28398 components: - pos: 73.5,-53.5 parent: 2 type: Transform - - uid: 28178 + - uid: 28399 components: - pos: 75.5,-57.5 parent: 2 type: Transform - - uid: 28179 + - uid: 28400 components: - pos: 76.5,-57.5 parent: 2 type: Transform - - uid: 28180 + - uid: 28401 components: - pos: 68.5,-55.5 parent: 2 type: Transform - - uid: 28181 + - uid: 28402 components: - rot: 1.5707963267948966 rad pos: -53.5,-57.5 parent: 2 type: Transform - - uid: 28182 + - uid: 28403 components: - rot: 1.5707963267948966 rad pos: -52.5,-57.5 parent: 2 type: Transform - - uid: 28183 + - uid: 28404 components: - rot: 1.5707963267948966 rad pos: -51.5,-57.5 parent: 2 type: Transform - - uid: 28184 + - uid: 28405 components: - rot: 1.5707963267948966 rad pos: -50.5,-57.5 parent: 2 type: Transform - - uid: 28185 + - uid: 28406 components: - rot: 1.5707963267948966 rad pos: -50.5,-59.5 parent: 2 type: Transform - - uid: 28186 + - uid: 28407 components: - rot: 1.5707963267948966 rad pos: -51.5,-59.5 parent: 2 type: Transform - - uid: 28187 + - uid: 28408 components: - rot: 1.5707963267948966 rad pos: -52.5,-59.5 parent: 2 type: Transform - - uid: 28188 + - uid: 28409 components: - rot: 1.5707963267948966 rad pos: -52.5,-61.5 parent: 2 type: Transform - - uid: 28189 + - uid: 28410 components: - rot: 1.5707963267948966 rad pos: -57.5,-63.5 parent: 2 type: Transform - - uid: 28190 + - uid: 28411 components: - rot: 1.5707963267948966 rad pos: -56.5,-63.5 parent: 2 type: Transform - - uid: 28191 + - uid: 28412 components: - pos: 13.5,-37.5 parent: 2 type: Transform - - uid: 28192 + - uid: 28413 components: - pos: 59.5,-69.5 parent: 2 type: Transform - - uid: 28193 + - uid: 28414 components: - pos: 9.5,-32.5 parent: 2 type: Transform - - uid: 28194 + - uid: 28415 components: - rot: 1.5707963267948966 rad pos: 65.5,-42.5 parent: 2 type: Transform - - uid: 28195 + - uid: 28416 components: - pos: 10.5,-39.5 parent: 2 type: Transform - - uid: 28196 + - uid: 28417 components: - rot: -1.5707963267948966 rad pos: 7.5,-40.5 parent: 2 type: Transform - - uid: 28197 + - uid: 28418 components: - pos: 47.5,-32.5 parent: 2 type: Transform - - uid: 28198 + - uid: 28419 components: - pos: 69.5,-68.5 parent: 2 type: Transform - - uid: 28199 + - uid: 28420 components: - pos: 64.5,-69.5 parent: 2 type: Transform - - uid: 28200 + - uid: 28421 components: - pos: 59.5,-70.5 parent: 2 type: Transform - - uid: 28201 + - uid: 28422 components: - pos: 58.5,-69.5 parent: 2 type: Transform - - uid: 28202 + - uid: 28423 components: - pos: 67.5,-68.5 parent: 2 type: Transform - - uid: 28203 + - uid: 28424 components: - pos: 67.5,-69.5 parent: 2 type: Transform - - uid: 28204 + - uid: 28425 components: - pos: 76.5,-56.5 parent: 2 type: Transform - - uid: 28205 + - uid: 28426 components: - pos: 76.5,-55.5 parent: 2 type: Transform - - uid: 28206 + - uid: 28427 components: - pos: 76.5,-54.5 parent: 2 type: Transform - - uid: 28207 + - uid: 28428 components: - pos: 76.5,-53.5 parent: 2 type: Transform - - uid: 28208 + - uid: 28429 components: - rot: 3.141592653589793 rad pos: 48.5,3.5 parent: 2 type: Transform - - uid: 28209 + - uid: 28430 components: - pos: -45.5,-37.5 parent: 2 type: Transform - - uid: 28210 + - uid: 28431 components: - rot: 1.5707963267948966 rad pos: 32.5,20.5 parent: 2 type: Transform - - uid: 28211 + - uid: 28432 components: - rot: 1.5707963267948966 rad pos: 46.5,-88.5 parent: 2 type: Transform - - uid: 28212 + - uid: 28433 components: - pos: 35.5,-75.5 parent: 2 type: Transform - - uid: 28213 + - uid: 28434 components: - pos: 8.5,-84.5 parent: 2 type: Transform - - uid: 28214 + - uid: 28435 components: - pos: 7.5,-84.5 parent: 2 type: Transform - - uid: 28215 + - uid: 28436 components: - pos: 7.5,-85.5 parent: 2 type: Transform - - uid: 28216 + - uid: 28437 components: - pos: 9.5,-84.5 parent: 2 type: Transform - - uid: 28217 + - uid: 28438 components: - pos: 7.5,-86.5 parent: 2 type: Transform - - uid: 28218 + - uid: 28439 components: - pos: 5.5,-84.5 parent: 2 type: Transform - - uid: 28219 + - uid: 28440 components: - pos: 5.5,-85.5 parent: 2 type: Transform - - uid: 28220 + - uid: 28441 components: - pos: 5.5,-86.5 parent: 2 type: Transform - - uid: 28221 + - uid: 28442 components: - pos: 5.5,-81.5 parent: 2 type: Transform - - uid: 28222 + - uid: 28443 components: - pos: 5.5,-83.5 parent: 2 type: Transform - - uid: 28223 + - uid: 28444 components: - rot: 1.5707963267948966 rad pos: 47.5,-70.5 parent: 2 type: Transform - - uid: 28224 + - uid: 28445 components: - rot: 1.5707963267948966 rad pos: 28.5,-77.5 parent: 2 type: Transform - - uid: 28225 + - uid: 28446 components: - pos: 27.5,-75.5 parent: 2 type: Transform - - uid: 28226 + - uid: 28447 components: - rot: -1.5707963267948966 rad pos: 43.5,-75.5 parent: 2 type: Transform - - uid: 28227 + - uid: 28448 components: - pos: 64.5,-41.5 parent: 2 type: Transform - - uid: 28228 + - uid: 28449 components: - pos: -47.5,-37.5 parent: 2 type: Transform - - uid: 28229 + - uid: 28450 components: - pos: -47.5,-36.5 parent: 2 type: Transform - - uid: 28230 + - uid: 28451 components: - pos: -51.5,-34.5 parent: 2 type: Transform - - uid: 28231 + - uid: 28452 components: - pos: -51.5,-35.5 parent: 2 type: Transform - - uid: 28232 + - uid: 28453 components: - pos: -51.5,-38.5 parent: 2 type: Transform - - uid: 28233 + - uid: 28454 components: - pos: -51.5,-39.5 parent: 2 type: Transform - - uid: 28234 + - uid: 28455 components: - pos: -51.5,-40.5 parent: 2 type: Transform - - uid: 28235 + - uid: 28456 components: - rot: -1.5707963267948966 rad pos: -75.5,-12.5 parent: 2 type: Transform - - uid: 28236 + - uid: 28457 components: - rot: 1.5707963267948966 rad pos: 26.5,-86.5 parent: 2 type: Transform - - uid: 28237 + - uid: 28458 components: - rot: -1.5707963267948966 rad pos: 31.5,-93.5 parent: 2 type: Transform - - uid: 28238 + - uid: 28459 components: - rot: -1.5707963267948966 rad pos: 28.5,-91.5 parent: 2 type: Transform - - uid: 28239 + - uid: 28460 components: - rot: -1.5707963267948966 rad pos: 32.5,-92.5 parent: 2 type: Transform - - uid: 28240 + - uid: 28461 components: - rot: -1.5707963267948966 rad pos: 32.5,-91.5 parent: 2 type: Transform - - uid: 28241 + - uid: 28462 components: - rot: 1.5707963267948966 rad pos: 50.5,-70.5 parent: 2 type: Transform - - uid: 28242 + - uid: 28463 components: - rot: -1.5707963267948966 rad pos: 46.5,-75.5 parent: 2 type: Transform - - uid: 28243 + - uid: 28464 components: - rot: 1.5707963267948966 rad pos: 24.5,-75.5 parent: 2 type: Transform - - uid: 28244 + - uid: 28465 components: - rot: 1.5707963267948966 rad pos: 50.5,-76.5 parent: 2 type: Transform - - uid: 28245 + - uid: 28466 components: - rot: 1.5707963267948966 rad pos: 50.5,-78.5 parent: 2 type: Transform - - uid: 28246 + - uid: 28467 components: - rot: 1.5707963267948966 rad pos: 50.5,-79.5 parent: 2 type: Transform - - uid: 28247 + - uid: 28468 components: - pos: 49.5,-94.5 parent: 2 type: Transform - - uid: 28248 + - uid: 28469 components: - pos: 46.5,-91.5 parent: 2 type: Transform - - uid: 28249 + - uid: 28470 components: - pos: 47.5,-93.5 parent: 2 type: Transform - - uid: 28250 + - uid: 28471 components: - pos: 46.5,-93.5 parent: 2 type: Transform - - uid: 28251 + - uid: 28472 components: - pos: 50.5,-91.5 parent: 2 type: Transform - - uid: 28252 + - uid: 28473 components: - rot: -1.5707963267948966 rad pos: 23.5,-80.5 parent: 2 type: Transform - - uid: 28253 + - uid: 28474 components: - rot: 1.5707963267948966 rad pos: 50.5,-77.5 parent: 2 type: Transform - - uid: 28254 + - uid: 28475 components: - rot: 1.5707963267948966 rad pos: 50.5,-84.5 parent: 2 type: Transform - - uid: 28255 + - uid: 28476 components: - pos: 49.5,-95.5 parent: 2 type: Transform - - uid: 28256 + - uid: 28477 components: - pos: 47.5,-95.5 parent: 2 type: Transform - - uid: 28257 + - uid: 28478 components: - pos: 46.5,-92.5 parent: 2 type: Transform - - uid: 28258 + - uid: 28479 components: - pos: 50.5,-93.5 parent: 2 type: Transform - - uid: 28259 + - uid: 28480 components: - pos: 49.5,-93.5 parent: 2 type: Transform - - uid: 28260 + - uid: 28481 components: - rot: -1.5707963267948966 rad pos: 26.5,-80.5 parent: 2 type: Transform - - uid: 28261 + - uid: 28482 components: - rot: -1.5707963267948966 rad pos: 26.5,-79.5 parent: 2 type: Transform - - uid: 28262 + - uid: 28483 components: - rot: 1.5707963267948966 rad pos: 51.5,-74.5 parent: 2 type: Transform - - uid: 28263 + - uid: 28484 components: - rot: 1.5707963267948966 rad pos: 51.5,-70.5 parent: 2 type: Transform - - uid: 28264 + - uid: 28485 components: - pos: 47.5,-94.5 parent: 2 type: Transform - - uid: 28265 + - uid: 28486 components: - rot: -1.5707963267948966 rad pos: 28.5,-92.5 parent: 2 type: Transform - - uid: 28266 + - uid: 28487 components: - rot: -1.5707963267948966 rad pos: 2.5,-76.5 parent: 2 type: Transform - - uid: 28267 + - uid: 28488 components: - pos: 5.5,-76.5 parent: 2 type: Transform - - uid: 28268 + - uid: 28489 components: - rot: -1.5707963267948966 rad pos: 34.5,-74.5 parent: 2 type: Transform - - uid: 28269 + - uid: 28490 components: - rot: -1.5707963267948966 rad pos: 34.5,-81.5 parent: 2 type: Transform - - uid: 28270 + - uid: 28491 components: - rot: 1.5707963267948966 rad pos: 44.5,-90.5 parent: 2 type: Transform - - uid: 28271 + - uid: 28492 components: - rot: 1.5707963267948966 rad pos: 44.5,-88.5 parent: 2 type: Transform - - uid: 28272 + - uid: 28493 components: - pos: 8.5,-79.5 parent: 2 type: Transform - - uid: 28273 + - uid: 28494 components: - pos: 8.5,-80.5 parent: 2 type: Transform - - uid: 28274 + - uid: 28495 components: - pos: 50.5,-92.5 parent: 2 type: Transform - - uid: 28275 + - uid: 28496 components: - rot: 3.141592653589793 rad pos: 27.5,-67.5 parent: 2 type: Transform - - uid: 28276 + - uid: 28497 components: - rot: 3.141592653589793 rad pos: 24.5,-67.5 parent: 2 type: Transform - - uid: 28277 + - uid: 28498 components: - rot: 3.141592653589793 rad pos: 24.5,-68.5 parent: 2 type: Transform - - uid: 28278 + - uid: 28499 components: - rot: 3.141592653589793 rad pos: 27.5,-68.5 parent: 2 type: Transform - - uid: 28279 + - uid: 28500 components: - rot: -1.5707963267948966 rad pos: 32.5,-74.5 parent: 2 type: Transform - - uid: 28280 + - uid: 28501 components: - rot: -1.5707963267948966 rad pos: 28.5,-79.5 parent: 2 type: Transform - - uid: 28281 + - uid: 28502 components: - rot: -1.5707963267948966 rad pos: 33.5,-74.5 parent: 2 type: Transform - - uid: 28282 + - uid: 28503 components: - rot: 1.5707963267948966 rad pos: 50.5,-74.5 parent: 2 type: Transform - - uid: 28283 + - uid: 28504 components: - rot: 1.5707963267948966 rad pos: 45.5,-88.5 parent: 2 type: Transform - - uid: 28284 + - uid: 28505 components: - pos: 7.5,-74.5 parent: 2 type: Transform - - uid: 28285 + - uid: 28506 components: - pos: 7.5,-76.5 parent: 2 type: Transform - - uid: 28286 + - uid: 28507 components: - pos: 7.5,-72.5 parent: 2 type: Transform - - uid: 28287 + - uid: 28508 components: - pos: 10.5,-81.5 parent: 2 type: Transform - - uid: 28288 + - uid: 28509 components: - pos: 10.5,-82.5 parent: 2 type: Transform - - uid: 28289 + - uid: 28510 components: - pos: 10.5,-84.5 parent: 2 type: Transform - - uid: 28290 + - uid: 28511 components: - pos: 10.5,-85.5 parent: 2 type: Transform - - uid: 28291 + - uid: 28512 components: - pos: 5.5,-77.5 parent: 2 type: Transform - - uid: 28292 + - uid: 28513 components: - pos: 8.5,-78.5 parent: 2 type: Transform - - uid: 28293 + - uid: 28514 components: - rot: 1.5707963267948966 rad pos: 50.5,-87.5 parent: 2 type: Transform - - uid: 28294 + - uid: 28515 components: - rot: 1.5707963267948966 rad pos: 50.5,-80.5 parent: 2 type: Transform - - uid: 28295 + - uid: 28516 components: - rot: -1.5707963267948966 rad pos: 32.5,-81.5 parent: 2 type: Transform - - uid: 28296 + - uid: 28517 components: - rot: -1.5707963267948966 rad pos: 32.5,-76.5 parent: 2 type: Transform - - uid: 28297 + - uid: 28518 components: - rot: -1.5707963267948966 rad pos: 32.5,-83.5 parent: 2 type: Transform - - uid: 28298 + - uid: 28519 components: - rot: 3.141592653589793 rad pos: 3.5,-20.5 parent: 2 type: Transform - - uid: 28299 + - uid: 28520 components: - rot: 3.141592653589793 rad pos: 3.5,-22.5 parent: 2 type: Transform - - uid: 28300 + - uid: 28521 components: - rot: 3.141592653589793 rad pos: 3.5,-23.5 parent: 2 type: Transform - - uid: 28301 + - uid: 28522 components: - rot: 3.141592653589793 rad pos: 3.5,-21.5 parent: 2 type: Transform - - uid: 28302 + - uid: 28523 components: - rot: 3.141592653589793 rad pos: 3.5,-19.5 parent: 2 type: Transform - - uid: 28303 + - uid: 28524 components: - rot: 3.141592653589793 rad pos: 39.5,13.5 parent: 2 type: Transform - - uid: 28304 + - uid: 28525 components: - rot: 3.141592653589793 rad pos: 37.5,13.5 parent: 2 type: Transform - - uid: 28305 + - uid: 28526 components: - rot: 3.141592653589793 rad pos: 38.5,13.5 parent: 2 type: Transform - - uid: 28306 + - uid: 28527 components: - rot: 3.141592653589793 rad pos: 47.5,8.5 parent: 2 type: Transform - - uid: 28307 + - uid: 28528 components: - pos: 8.5,-81.5 parent: 2 type: Transform - - uid: 28308 + - uid: 28529 components: - pos: 8.5,-82.5 parent: 2 type: Transform - - uid: 28309 + - uid: 28530 components: - pos: 9.5,-82.5 parent: 2 type: Transform - - uid: 28310 + - uid: 28531 components: - rot: -1.5707963267948966 rad pos: 3.5,-76.5 parent: 2 type: Transform - - uid: 28311 + - uid: 28532 components: - rot: -1.5707963267948966 rad pos: 4.5,-76.5 parent: 2 type: Transform - - uid: 28312 + - uid: 28533 components: - rot: -1.5707963267948966 rad pos: -44.5,45.5 parent: 2 type: Transform - - uid: 28313 + - uid: 28534 components: - rot: -1.5707963267948966 rad pos: -51.5,45.5 parent: 2 type: Transform - - uid: 28314 + - uid: 28535 components: - rot: -1.5707963267948966 rad pos: -44.5,44.5 parent: 2 type: Transform - - uid: 28315 + - uid: 28536 components: - rot: -1.5707963267948966 rad pos: -44.5,43.5 parent: 2 type: Transform - - uid: 28316 + - uid: 28537 components: - rot: -1.5707963267948966 rad pos: -44.5,42.5 parent: 2 type: Transform - - uid: 28317 + - uid: 28538 components: - rot: -1.5707963267948966 rad pos: -44.5,41.5 parent: 2 type: Transform - - uid: 28318 + - uid: 28539 components: - pos: 65.5,-26.5 parent: 2 type: Transform - - uid: 28319 + - uid: 28540 components: - pos: 68.5,-26.5 parent: 2 type: Transform - - uid: 28320 + - uid: 28541 components: - pos: 69.5,-26.5 parent: 2 type: Transform - - uid: 28321 + - uid: 28542 components: - pos: -17.5,-83.5 parent: 2 type: Transform - - uid: 28322 + - uid: 28543 components: - rot: -1.5707963267948966 rad pos: -1.5,16.5 parent: 2 type: Transform - - uid: 28323 + - uid: 28544 components: - pos: -65.5,-47.5 parent: 2 type: Transform - - uid: 28324 + - uid: 28545 components: - pos: -66.5,-47.5 parent: 2 type: Transform - - uid: 28325 + - uid: 28546 components: - pos: -67.5,-47.5 parent: 2 type: Transform - - uid: 28326 + - uid: 28547 components: - pos: -71.5,-47.5 parent: 2 type: Transform - - uid: 28327 + - uid: 28548 components: - pos: -72.5,-47.5 parent: 2 type: Transform - - uid: 28328 + - uid: 28549 components: - pos: -73.5,-47.5 parent: 2 type: Transform - - uid: 28329 + - uid: 28550 components: - pos: -74.5,-47.5 parent: 2 type: Transform - - uid: 28330 + - uid: 28551 components: - rot: -1.5707963267948966 rad pos: -68.5,-33.5 parent: 2 type: Transform - - uid: 28331 + - uid: 28552 components: - rot: -1.5707963267948966 rad pos: -63.5,-46.5 parent: 2 type: Transform - - uid: 28332 + - uid: 28553 components: - rot: -1.5707963267948966 rad pos: -62.5,-46.5 parent: 2 type: Transform - - uid: 28333 + - uid: 28554 components: - rot: -1.5707963267948966 rad pos: -62.5,-44.5 parent: 2 type: Transform - - uid: 28334 + - uid: 28555 components: - pos: -78.5,-46.5 parent: 2 type: Transform - - uid: 28335 + - uid: 28556 components: - pos: -78.5,-47.5 parent: 2 type: Transform - - uid: 28336 + - uid: 28557 components: - pos: -77.5,-47.5 parent: 2 type: Transform - - uid: 28337 + - uid: 28558 components: - pos: -76.5,-47.5 parent: 2 type: Transform - - uid: 28338 + - uid: 28559 components: - pos: -75.5,-47.5 parent: 2 type: Transform - - uid: 28339 + - uid: 28560 components: - pos: -49.5,-26.5 parent: 2 type: Transform - - uid: 28340 + - uid: 28561 components: - pos: -50.5,-26.5 parent: 2 type: Transform - - uid: 28341 + - uid: 28562 components: - rot: -1.5707963267948966 rad pos: -63.5,-34.5 parent: 2 type: Transform - - uid: 28342 + - uid: 28563 components: - rot: 1.5707963267948966 rad pos: -63.5,-35.5 parent: 2 type: Transform - - uid: 28343 + - uid: 28564 components: - rot: 3.141592653589793 rad pos: -60.5,-44.5 parent: 2 type: Transform - - uid: 28344 + - uid: 28565 components: - pos: 6.5,-3.5 parent: 2 type: Transform - - uid: 28345 + - uid: 28566 components: - pos: 19.5,-27.5 parent: 2 type: Transform - - uid: 28346 + - uid: 28567 components: - pos: 5.5,-3.5 parent: 2 type: Transform - - uid: 28347 + - uid: 28568 components: - rot: 1.5707963267948966 rad pos: 21.5,-38.5 parent: 2 type: Transform - - uid: 28348 + - uid: 28569 components: - pos: 6.5,-8.5 parent: 2 type: Transform - - uid: 28349 + - uid: 28570 components: - pos: 19.5,-28.5 parent: 2 type: Transform - proto: WallShuttle entities: - - uid: 28350 + - uid: 28571 components: - rot: -1.5707963267948966 rad pos: -74.5,-57.5 parent: 2 type: Transform - - uid: 28351 + - uid: 28572 components: - rot: -1.5707963267948966 rad pos: -64.5,-56.5 parent: 2 type: Transform - - uid: 28352 + - uid: 28573 components: - rot: -1.5707963267948966 rad pos: -64.5,-57.5 parent: 2 type: Transform - - uid: 28353 + - uid: 28574 components: - rot: 1.5707963267948966 rad pos: -76.5,-51.5 parent: 2 type: Transform - - uid: 28354 + - uid: 28575 components: - rot: -1.5707963267948966 rad pos: -65.5,-57.5 parent: 2 type: Transform - - uid: 28355 + - uid: 28576 components: - rot: -1.5707963267948966 rad pos: -63.5,-57.5 parent: 2 type: Transform - - uid: 28356 + - uid: 28577 components: - rot: -1.5707963267948966 rad pos: -70.5,-57.5 parent: 2 type: Transform - - uid: 28357 + - uid: 28578 components: - rot: 1.5707963267948966 rad pos: -75.5,-55.5 parent: 2 type: Transform - - uid: 28358 - components: - - rot: -1.5707963267948966 rad - pos: -64.5,-54.5 - parent: 2 - type: Transform - - uid: 28359 + - uid: 28579 components: - rot: -1.5707963267948966 rad pos: -64.5,-51.5 parent: 2 type: Transform - - uid: 28360 - components: - - rot: -1.5707963267948966 rad - pos: -64.5,-53.5 - parent: 2 - type: Transform - - uid: 28361 + - uid: 28580 components: - rot: 1.5707963267948966 rad pos: -75.5,-51.5 parent: 2 type: Transform - - uid: 28362 + - uid: 28581 components: - rot: -1.5707963267948966 rad pos: -63.5,-50.5 parent: 2 type: Transform - - uid: 28363 + - uid: 28582 components: - rot: 1.5707963267948966 rad pos: -65.5,-50.5 parent: 2 type: Transform - - uid: 28364 + - uid: 28583 components: - rot: 1.5707963267948966 rad pos: -64.5,-50.5 parent: 2 type: Transform - - uid: 28365 + - uid: 28584 components: - rot: 1.5707963267948966 rad pos: -74.5,-50.5 parent: 2 type: Transform - - uid: 28366 - components: - - rot: -1.5707963267948966 rad - pos: -64.5,-55.5 - parent: 2 - type: Transform - - uid: 28367 + - uid: 28585 components: - rot: -1.5707963267948966 rad pos: -67.5,-55.5 parent: 2 type: Transform - - uid: 28368 + - uid: 28586 components: - rot: 1.5707963267948966 rad pos: -70.5,-50.5 parent: 2 type: Transform - - uid: 28369 + - uid: 28587 components: - rot: 1.5707963267948966 rad pos: -68.5,-51.5 parent: 2 type: Transform - - uid: 28370 + - uid: 28588 components: - rot: 1.5707963267948966 rad pos: -67.5,-51.5 parent: 2 type: Transform - - uid: 28371 - components: - - rot: -1.5707963267948966 rad - pos: -64.5,-52.5 - parent: 2 - type: Transform - - uid: 28372 + - uid: 28589 components: - rot: 1.5707963267948966 rad pos: -75.5,-56.5 parent: 2 type: Transform - - uid: 28373 + - uid: 28590 components: - rot: 1.5707963267948966 rad pos: -75.5,-52.5 parent: 2 type: Transform - - uid: 28374 + - uid: 28591 components: - rot: 1.5707963267948966 rad pos: -76.5,-56.5 parent: 2 type: Transform - - uid: 28375 + - uid: 28592 components: - rot: 1.5707963267948966 rad pos: -67.5,-52.5 parent: 2 type: Transform - - uid: 28376 + - uid: 28593 components: - rot: -1.5707963267948966 rad pos: -68.5,-56.5 parent: 2 type: Transform - - uid: 28377 + - uid: 28594 components: - rot: -1.5707963267948966 rad pos: -67.5,-56.5 @@ -183615,11856 +184820,11807 @@ entities: type: Transform - proto: WallShuttleDiagonal entities: - - uid: 28378 - components: - - rot: 3.141592653589793 rad - pos: -79.5,-52.5 - parent: 2 - type: Transform - - uid: 28379 - components: - - pos: -80.5,-52.5 - parent: 2 - type: Transform - - uid: 28380 + - uid: 28595 components: - rot: 1.5707963267948966 rad pos: -75.5,-57.5 parent: 2 type: Transform - - uid: 28381 + - uid: 28596 components: - rot: 1.5707963267948966 rad pos: -66.5,-57.5 parent: 2 type: Transform - - uid: 28382 - components: - - rot: 1.5707963267948966 rad - pos: -80.5,-55.5 - parent: 2 - type: Transform - - uid: 28383 + - uid: 28597 components: - rot: 3.141592653589793 rad pos: -69.5,-57.5 parent: 2 type: Transform - - uid: 28384 - components: - - rot: -1.5707963267948966 rad - pos: -79.5,-55.5 - parent: 2 - type: Transform - - uid: 28385 + - uid: 28598 components: - pos: -75.5,-50.5 parent: 2 type: Transform - - uid: 28386 + - uid: 28599 components: - rot: -1.5707963267948966 rad pos: -69.5,-50.5 parent: 2 type: Transform - - uid: 28387 + - uid: 28600 components: - pos: -66.5,-50.5 parent: 2 type: Transform - - uid: 28388 - components: - - rot: 1.5707963267948966 rad - pos: -79.5,-56.5 - parent: 2 - type: Transform - - uid: 28389 + - uid: 28601 components: - rot: 1.5707963267948966 rad pos: -69.5,-51.5 parent: 2 type: Transform - - uid: 28390 + - uid: 28602 components: - rot: -1.5707963267948966 rad pos: -66.5,-56.5 parent: 2 type: Transform - - uid: 28391 + - uid: 28603 components: - rot: 3.141592653589793 rad pos: -66.5,-51.5 parent: 2 type: Transform - - uid: 28392 - components: - - pos: -79.5,-51.5 - parent: 2 - type: Transform - - uid: 28393 + - uid: 28604 components: - pos: -69.5,-56.5 parent: 2 type: Transform - proto: WallSolid entities: - - uid: 28394 + - uid: 28605 components: - pos: 55.5,-39.5 parent: 2 type: Transform - - uid: 28395 + - uid: 28606 components: - rot: -1.5707963267948966 rad pos: 2.5,-10.5 parent: 2 type: Transform - - uid: 28396 + - uid: 28607 components: - rot: -1.5707963267948966 rad pos: 2.5,-12.5 parent: 2 type: Transform - - uid: 28397 + - uid: 28608 components: - rot: -1.5707963267948966 rad pos: 2.5,-11.5 parent: 2 type: Transform - - uid: 28398 + - uid: 28609 components: - rot: -1.5707963267948966 rad pos: 8.5,-15.5 parent: 2 type: Transform - - uid: 28399 + - uid: 28610 components: - rot: -1.5707963267948966 rad pos: 1.5,-11.5 parent: 2 type: Transform - - uid: 28400 + - uid: 28611 components: - rot: -1.5707963267948966 rad pos: 6.5,-12.5 parent: 2 type: Transform - - uid: 28401 + - uid: 28612 components: - pos: 0.5,-24.5 parent: 2 type: Transform - - uid: 28402 + - uid: 28613 components: - pos: 1.5,-24.5 parent: 2 type: Transform - - uid: 28403 + - uid: 28614 components: - pos: -1.5,-18.5 parent: 2 type: Transform - - uid: 28404 + - uid: 28615 components: - pos: -0.5,-24.5 parent: 2 type: Transform - - uid: 28405 + - uid: 28616 components: - pos: 2.5,-18.5 parent: 2 type: Transform - - uid: 28406 + - uid: 28617 components: - pos: 1.5,-18.5 parent: 2 type: Transform - - uid: 28407 + - uid: 28618 components: - pos: -2.5,-20.5 parent: 2 type: Transform - - uid: 28408 + - uid: 28619 components: - pos: -0.5,-18.5 parent: 2 type: Transform - - uid: 28409 + - uid: 28620 components: - pos: -2.5,-24.5 parent: 2 type: Transform - - uid: 28410 + - uid: 28621 components: - pos: -2.5,-23.5 parent: 2 type: Transform - - uid: 28411 + - uid: 28622 components: - pos: -2.5,-21.5 parent: 2 type: Transform - - uid: 28412 + - uid: 28623 components: - pos: -2.5,-22.5 parent: 2 type: Transform - - uid: 28413 + - uid: 28624 components: - rot: -1.5707963267948966 rad pos: -1.5,-10.5 parent: 2 type: Transform - - uid: 28414 + - uid: 28625 components: - pos: -34.5,-19.5 parent: 2 type: Transform - - uid: 28415 + - uid: 28626 components: - pos: 0.5,-12.5 parent: 2 type: Transform - - uid: 28416 + - uid: 28627 components: - pos: 0.5,-11.5 parent: 2 type: Transform - - uid: 28417 + - uid: 28628 components: - pos: -37.5,-19.5 parent: 2 type: Transform - - uid: 28418 + - uid: 28629 components: - pos: -35.5,-19.5 parent: 2 type: Transform - - uid: 28419 + - uid: 28630 components: - pos: -2.5,-8.5 parent: 2 type: Transform - - uid: 28420 + - uid: 28631 components: - pos: 0.5,-13.5 parent: 2 type: Transform - - uid: 28422 + - uid: 28632 components: - rot: -1.5707963267948966 rad pos: -42.5,-30.5 parent: 2 type: Transform - - uid: 28423 + - uid: 28633 components: - rot: -1.5707963267948966 rad pos: -37.5,-30.5 parent: 2 type: Transform - - uid: 28424 + - uid: 28634 components: - rot: 1.5707963267948966 rad pos: -17.5,10.5 parent: 2 type: Transform - - uid: 28425 + - uid: 28635 components: - rot: -1.5707963267948966 rad pos: -69.5,-32.5 parent: 2 type: Transform - - uid: 28426 + - uid: 28636 components: - rot: 3.141592653589793 rad pos: -41.5,-32.5 parent: 2 type: Transform - - uid: 28427 + - uid: 28637 components: - rot: 3.141592653589793 rad pos: -41.5,-31.5 parent: 2 type: Transform - - uid: 28428 + - uid: 28638 components: - pos: -42.5,-31.5 parent: 2 type: Transform - - uid: 28429 + - uid: 28639 components: - rot: -1.5707963267948966 rad pos: -53.5,-33.5 parent: 2 type: Transform - - uid: 28430 + - uid: 28640 components: - rot: -1.5707963267948966 rad pos: -53.5,-34.5 parent: 2 type: Transform - - uid: 28431 + - uid: 28641 components: - pos: -10.5,13.5 parent: 2 type: Transform - - uid: 28432 + - uid: 28642 components: - pos: -9.5,16.5 parent: 2 type: Transform - - uid: 28433 + - uid: 28643 components: - rot: 1.5707963267948966 rad pos: -8.5,20.5 parent: 2 type: Transform - - uid: 28434 + - uid: 28644 components: - pos: -11.5,12.5 parent: 2 type: Transform - - uid: 28435 + - uid: 28645 components: - pos: -9.5,18.5 parent: 2 type: Transform - - uid: 28436 + - uid: 28646 components: - rot: 3.141592653589793 rad pos: -16.5,-32.5 parent: 2 type: Transform - - uid: 28437 + - uid: 28647 components: - rot: 1.5707963267948966 rad pos: -16.5,-28.5 parent: 2 type: Transform - - uid: 28438 + - uid: 28648 components: - pos: 37.5,-56.5 parent: 2 type: Transform - - uid: 28439 + - uid: 28649 components: - pos: 17.5,-31.5 parent: 2 type: Transform - - uid: 28440 + - uid: 28650 components: - pos: -11.5,-3.5 parent: 2 type: Transform - - uid: 28441 + - uid: 28651 components: - rot: 3.141592653589793 rad pos: 15.5,8.5 parent: 2 type: Transform - - uid: 28442 + - uid: 28652 components: - pos: 40.5,-0.5 parent: 2 type: Transform - - uid: 28443 + - uid: 28653 components: - rot: 3.141592653589793 rad pos: 23.5,9.5 parent: 2 type: Transform - - uid: 28444 + - uid: 28654 components: - pos: -17.5,-34.5 parent: 2 type: Transform - - uid: 28445 + - uid: 28655 components: - rot: 1.5707963267948966 rad pos: -11.5,8.5 parent: 2 type: Transform - - uid: 28446 + - uid: 28656 components: - rot: 1.5707963267948966 rad pos: 28.5,-57.5 parent: 2 type: Transform - - uid: 28447 + - uid: 28657 components: - pos: 37.5,-53.5 parent: 2 type: Transform - - uid: 28448 + - uid: 28658 components: - rot: 1.5707963267948966 rad pos: 19.5,-23.5 parent: 2 type: Transform - - uid: 28449 + - uid: 28659 components: - rot: -1.5707963267948966 rad pos: 31.5,-2.5 parent: 2 type: Transform - - uid: 28450 + - uid: 28660 components: - rot: 3.141592653589793 rad pos: 15.5,-51.5 parent: 2 type: Transform - - uid: 28451 + - uid: 28661 components: - rot: -1.5707963267948966 rad pos: -14.5,-11.5 parent: 2 type: Transform - - uid: 28452 + - uid: 28662 components: - pos: -11.5,-72.5 parent: 2 type: Transform - - uid: 28453 + - uid: 28663 components: - rot: -1.5707963267948966 rad pos: -14.5,-20.5 parent: 2 type: Transform - - uid: 28454 + - uid: 28664 components: - pos: 11.5,-61.5 parent: 2 type: Transform - - uid: 28455 + - uid: 28665 components: - pos: 11.5,-63.5 parent: 2 type: Transform - - uid: 28456 + - uid: 28666 components: - pos: 9.5,-63.5 parent: 2 type: Transform - - uid: 28457 + - uid: 28667 components: - pos: 7.5,-63.5 parent: 2 type: Transform - - uid: 28458 + - uid: 28668 components: - rot: -1.5707963267948966 rad pos: -10.5,-70.5 parent: 2 type: Transform - - uid: 28459 + - uid: 28669 components: - rot: -1.5707963267948966 rad pos: -10.5,-69.5 parent: 2 type: Transform - - uid: 28460 + - uid: 28670 components: - rot: -1.5707963267948966 rad pos: -7.5,-70.5 parent: 2 type: Transform - - uid: 28461 + - uid: 28671 components: - rot: -1.5707963267948966 rad pos: -15.5,-68.5 parent: 2 type: Transform - - uid: 28462 + - uid: 28672 components: - rot: -1.5707963267948966 rad pos: -17.5,-68.5 parent: 2 type: Transform - - uid: 28463 + - uid: 28673 components: - rot: -1.5707963267948966 rad pos: -10.5,-68.5 parent: 2 type: Transform - - uid: 28464 + - uid: 28674 components: - rot: -1.5707963267948966 rad pos: -7.5,-67.5 parent: 2 type: Transform - - uid: 28465 + - uid: 28675 components: - rot: -1.5707963267948966 rad pos: -5.5,-67.5 parent: 2 type: Transform - - uid: 28466 + - uid: 28676 components: - pos: 1.5,-64.5 parent: 2 type: Transform - - uid: 28467 + - uid: 28677 components: - pos: 1.5,-63.5 parent: 2 type: Transform - - uid: 28468 + - uid: 28678 components: - pos: -17.5,-63.5 parent: 2 type: Transform - - uid: 28469 + - uid: 28679 components: - pos: 4.5,-51.5 parent: 2 type: Transform - - uid: 28470 + - uid: 28680 components: - pos: -12.5,-72.5 parent: 2 type: Transform - - uid: 28471 + - uid: 28681 components: - pos: -14.5,-70.5 parent: 2 type: Transform - - uid: 28472 + - uid: 28682 components: - pos: -3.5,-74.5 parent: 2 type: Transform - - uid: 28473 + - uid: 28683 components: - pos: 9.5,-68.5 parent: 2 type: Transform - - uid: 28474 + - uid: 28684 components: - rot: 3.141592653589793 rad pos: -1.5,9.5 parent: 2 type: Transform - - uid: 28475 + - uid: 28685 components: - rot: 1.5707963267948966 rad pos: -6.5,-21.5 parent: 2 type: Transform - - uid: 28476 + - uid: 28686 components: - rot: -1.5707963267948966 rad pos: 12.5,-44.5 parent: 2 type: Transform - - uid: 28477 + - uid: 28687 components: - rot: 1.5707963267948966 rad pos: 34.5,-44.5 parent: 2 type: Transform - - uid: 28478 + - uid: 28688 components: - pos: 1.5,-67.5 parent: 2 type: Transform - - uid: 28479 + - uid: 28689 components: - pos: 5.5,-63.5 parent: 2 type: Transform - - uid: 28480 + - uid: 28690 components: - pos: 13.5,-59.5 parent: 2 type: Transform - - uid: 28481 + - uid: 28691 components: - rot: 1.5707963267948966 rad pos: 18.5,-23.5 parent: 2 type: Transform - - uid: 28482 + - uid: 28692 components: - pos: -21.5,-64.5 parent: 2 type: Transform - - uid: 28483 + - uid: 28693 components: - pos: -21.5,-66.5 parent: 2 type: Transform - - uid: 28484 + - uid: 28694 components: - pos: -21.5,-67.5 parent: 2 type: Transform - - uid: 28485 + - uid: 28695 components: - pos: -21.5,-68.5 parent: 2 type: Transform - - uid: 28486 + - uid: 28696 components: - pos: -22.5,-68.5 parent: 2 type: Transform - - uid: 28487 + - uid: 28697 components: - pos: -25.5,-68.5 parent: 2 type: Transform - - uid: 28488 + - uid: 28698 components: - pos: -26.5,-69.5 parent: 2 type: Transform - - uid: 28489 + - uid: 28699 components: - pos: -23.5,-74.5 parent: 2 type: Transform - - uid: 28490 + - uid: 28700 components: - pos: -22.5,-74.5 parent: 2 type: Transform - - uid: 28491 + - uid: 28701 components: - pos: -16.5,-71.5 parent: 2 type: Transform - - uid: 28492 + - uid: 28702 components: - pos: -21.5,-75.5 parent: 2 type: Transform - - uid: 28493 + - uid: 28703 components: - pos: -10.5,-74.5 parent: 2 type: Transform - - uid: 28494 + - uid: 28704 components: - pos: -8.5,-73.5 parent: 2 type: Transform - - uid: 28495 + - uid: 28705 components: - pos: 3.5,-69.5 parent: 2 type: Transform - - uid: 28496 + - uid: 28706 components: - pos: 7.5,-68.5 parent: 2 type: Transform - - uid: 28497 + - uid: 28707 components: - pos: 7.5,-66.5 parent: 2 type: Transform - - uid: 28498 + - uid: 28708 components: - pos: 9.5,-66.5 parent: 2 type: Transform - - uid: 28499 + - uid: 28709 components: - pos: -19.5,-74.5 parent: 2 type: Transform - - uid: 28500 + - uid: 28710 components: - rot: 3.141592653589793 rad pos: 14.5,-15.5 parent: 2 type: Transform - - uid: 28501 + - uid: 28711 components: - pos: 9.5,-13.5 parent: 2 type: Transform - - uid: 28502 + - uid: 28712 components: - rot: -1.5707963267948966 rad pos: -16.5,-44.5 parent: 2 type: Transform - - uid: 28503 + - uid: 28713 components: - rot: 1.5707963267948966 rad pos: 31.5,-23.5 parent: 2 type: Transform - - uid: 28504 + - uid: 28714 components: - rot: -1.5707963267948966 rad pos: 31.5,3.5 parent: 2 type: Transform - - uid: 28505 + - uid: 28715 components: - pos: 7.5,6.5 parent: 2 type: Transform - - uid: 28506 + - uid: 28716 components: - rot: 3.141592653589793 rad pos: 62.5,14.5 parent: 2 type: Transform - - uid: 28507 + - uid: 28717 components: - rot: 3.141592653589793 rad pos: -1.5,8.5 parent: 2 type: Transform - - uid: 28508 + - uid: 28718 components: - pos: 6.5,-68.5 parent: 2 type: Transform - - uid: 28509 + - uid: 28719 components: - pos: 15.5,4.5 parent: 2 type: Transform - - uid: 28510 + - uid: 28720 components: - rot: 3.141592653589793 rad pos: 61.5,17.5 parent: 2 type: Transform - - uid: 28511 + - uid: 28721 components: - pos: -8.5,-34.5 parent: 2 type: Transform - - uid: 28512 + - uid: 28722 components: - rot: -1.5707963267948966 rad pos: 13.5,-4.5 parent: 2 type: Transform - - uid: 28513 + - uid: 28723 components: - pos: 2.5,-9.5 parent: 2 type: Transform - - uid: 28514 + - uid: 28724 components: - rot: -1.5707963267948966 rad pos: -13.5,36.5 parent: 2 type: Transform - - uid: 28515 + - uid: 28725 components: - pos: 7.5,-62.5 parent: 2 type: Transform - - uid: 28516 + - uid: 28726 components: - pos: 13.5,-54.5 parent: 2 type: Transform - - uid: 28517 + - uid: 28727 components: - pos: -17.5,-64.5 parent: 2 type: Transform - - uid: 28518 + - uid: 28728 components: - pos: 7.5,-55.5 parent: 2 type: Transform - - uid: 28519 + - uid: 28729 components: - pos: -10.5,-2.5 parent: 2 type: Transform - - uid: 28520 + - uid: 28730 components: - rot: 3.141592653589793 rad pos: 22.5,15.5 parent: 2 type: Transform - - uid: 28521 + - uid: 28731 components: - rot: 3.141592653589793 rad pos: 21.5,15.5 parent: 2 type: Transform - - uid: 28522 + - uid: 28732 components: - rot: -1.5707963267948966 rad pos: 13.5,-3.5 parent: 2 type: Transform - - uid: 28523 + - uid: 28733 components: - rot: 1.5707963267948966 rad pos: 66.5,-4.5 parent: 2 type: Transform - - uid: 28524 + - uid: 28734 components: - pos: 37.5,-39.5 parent: 2 type: Transform - - uid: 28525 + - uid: 28735 components: - pos: -6.5,-5.5 parent: 2 type: Transform - - uid: 28526 + - uid: 28736 components: - rot: 3.141592653589793 rad pos: 6.5,-16.5 parent: 2 type: Transform - - uid: 28527 + - uid: 28737 components: - pos: 43.5,-57.5 parent: 2 type: Transform - - uid: 28528 + - uid: 28738 components: - pos: 37.5,-27.5 parent: 2 type: Transform - - uid: 28529 + - uid: 28739 components: - pos: 13.5,-50.5 parent: 2 type: Transform - - uid: 28530 + - uid: 28740 components: - pos: -17.5,-28.5 parent: 2 type: Transform - - uid: 28531 + - uid: 28741 components: - rot: -1.5707963267948966 rad pos: -3.5,-78.5 parent: 2 type: Transform - - uid: 28532 + - uid: 28742 components: - rot: -1.5707963267948966 rad pos: -2.5,-83.5 parent: 2 type: Transform - - uid: 28533 + - uid: 28743 components: - rot: -1.5707963267948966 rad pos: -5.5,-76.5 parent: 2 type: Transform - - uid: 28534 + - uid: 28744 components: - pos: -9.5,-7.5 parent: 2 type: Transform - - uid: 28535 + - uid: 28745 components: - rot: -1.5707963267948966 rad pos: 29.5,-1.5 parent: 2 type: Transform - - uid: 28536 + - uid: 28746 components: - pos: -6.5,-16.5 parent: 2 type: Transform - - uid: 28537 + - uid: 28747 components: - rot: -1.5707963267948966 rad pos: -2.5,-10.5 parent: 2 type: Transform - - uid: 28538 + - uid: 28748 components: - pos: 13.5,-48.5 parent: 2 type: Transform - - uid: 28539 + - uid: 28749 components: - pos: -2.5,-18.5 parent: 2 type: Transform - - uid: 28540 + - uid: 28750 components: - pos: -0.5,-15.5 parent: 2 type: Transform - - uid: 28541 + - uid: 28751 components: - pos: -2.5,-14.5 parent: 2 type: Transform - - uid: 28542 + - uid: 28752 components: - pos: -2.5,-13.5 parent: 2 type: Transform - - uid: 28543 + - uid: 28753 components: - pos: -2.5,-19.5 parent: 2 type: Transform - - uid: 28544 + - uid: 28754 components: - rot: 1.5707963267948966 rad pos: 7.5,-10.5 parent: 2 type: Transform - - uid: 28545 + - uid: 28755 components: - rot: 3.141592653589793 rad pos: -10.5,-49.5 parent: 2 type: Transform - - uid: 28546 + - uid: 28756 components: - rot: 3.141592653589793 rad pos: -11.5,-44.5 parent: 2 type: Transform - - uid: 28547 + - uid: 28757 components: - rot: 3.141592653589793 rad pos: -10.5,-50.5 parent: 2 type: Transform - - uid: 28548 + - uid: 28758 components: - rot: 3.141592653589793 rad pos: 23.5,15.5 parent: 2 type: Transform - - uid: 28549 + - uid: 28759 components: - rot: 3.141592653589793 rad pos: 19.5,10.5 parent: 2 type: Transform - - uid: 28550 + - uid: 28760 components: - pos: 16.5,-13.5 parent: 2 type: Transform - - uid: 28551 + - uid: 28761 components: - pos: 7.5,-12.5 parent: 2 type: Transform - - uid: 28552 + - uid: 28762 components: - pos: -32.5,-69.5 parent: 2 type: Transform - - uid: 28553 + - uid: 28763 components: - pos: -32.5,-72.5 parent: 2 type: Transform - - uid: 28554 + - uid: 28764 components: - pos: 18.5,-44.5 parent: 2 type: Transform - - uid: 28555 + - uid: 28765 components: - pos: 42.5,-52.5 parent: 2 type: Transform - - uid: 28556 + - uid: 28766 components: - rot: -1.5707963267948966 rad pos: -9.5,57.5 parent: 2 type: Transform - - uid: 28557 + - uid: 28767 components: - pos: 38.5,-27.5 parent: 2 type: Transform - - uid: 28558 + - uid: 28768 components: - pos: 37.5,-28.5 parent: 2 type: Transform - - uid: 28559 + - uid: 28769 components: - pos: 0.5,-72.5 parent: 2 type: Transform - - uid: 28560 + - uid: 28770 components: - pos: -9.5,-17.5 parent: 2 type: Transform - - uid: 28561 + - uid: 28771 components: - rot: 3.141592653589793 rad pos: 16.5,-51.5 parent: 2 type: Transform - - uid: 28562 + - uid: 28772 components: - pos: -9.5,-18.5 parent: 2 type: Transform - - uid: 28563 + - uid: 28773 components: - rot: -1.5707963267948966 rad pos: -10.5,-76.5 parent: 2 type: Transform - - uid: 28564 + - uid: 28774 components: - rot: -1.5707963267948966 rad pos: 19.5,19.5 parent: 2 type: Transform - - uid: 28565 + - uid: 28775 components: - pos: 42.5,-56.5 parent: 2 type: Transform - - uid: 28566 + - uid: 28776 components: - pos: -17.5,-38.5 parent: 2 type: Transform - - uid: 28567 + - uid: 28777 components: - rot: -1.5707963267948966 rad pos: 20.5,19.5 parent: 2 type: Transform - - uid: 28568 + - uid: 28778 components: - pos: 1.5,-75.5 parent: 2 type: Transform - - uid: 28569 + - uid: 28779 components: - pos: 1.5,-73.5 parent: 2 type: Transform - - uid: 28570 + - uid: 28780 components: - pos: 7.5,-28.5 parent: 2 type: Transform - - uid: 28571 + - uid: 28781 components: - pos: -11.5,9.5 parent: 2 type: Transform - - uid: 28572 + - uid: 28782 components: - pos: -30.5,-76.5 parent: 2 type: Transform - - uid: 28573 + - uid: 28783 components: - rot: -1.5707963267948966 rad pos: -13.5,-20.5 parent: 2 type: Transform - - uid: 28574 + - uid: 28784 components: - pos: 11.5,-65.5 parent: 2 type: Transform - - uid: 28575 + - uid: 28785 components: - pos: 13.5,-63.5 parent: 2 type: Transform - - uid: 28576 + - uid: 28786 components: - pos: 15.5,-56.5 parent: 2 type: Transform - - uid: 28577 + - uid: 28787 components: - pos: 8.5,-63.5 parent: 2 type: Transform - - uid: 28578 + - uid: 28788 components: - pos: 11.5,-62.5 parent: 2 type: Transform - - uid: 28579 + - uid: 28789 components: - pos: 8.5,-57.5 parent: 2 type: Transform - - uid: 28580 + - uid: 28790 components: - pos: 11.5,-60.5 parent: 2 type: Transform - - uid: 28581 + - uid: 28791 components: - pos: 11.5,-59.5 parent: 2 type: Transform - - uid: 28582 + - uid: 28792 components: - pos: 11.5,-58.5 parent: 2 type: Transform - - uid: 28583 + - uid: 28793 components: - pos: 11.5,-57.5 parent: 2 type: Transform - - uid: 28584 + - uid: 28794 components: - pos: 10.5,-57.5 parent: 2 type: Transform - - uid: 28585 + - uid: 28795 components: - pos: 9.5,-57.5 parent: 2 type: Transform - - uid: 28586 + - uid: 28796 components: - rot: -1.5707963267948966 rad pos: -7.5,-69.5 parent: 2 type: Transform - - uid: 28587 + - uid: 28797 components: - rot: -1.5707963267948966 rad pos: -9.5,-70.5 parent: 2 type: Transform - - uid: 28588 + - uid: 28798 components: - rot: -1.5707963267948966 rad pos: -12.5,-68.5 parent: 2 type: Transform - - uid: 28589 + - uid: 28799 components: - rot: -1.5707963267948966 rad pos: -13.5,-68.5 parent: 2 type: Transform - - uid: 28590 + - uid: 28800 components: - rot: -1.5707963267948966 rad pos: -16.5,-68.5 parent: 2 type: Transform - - uid: 28591 + - uid: 28801 components: - rot: -1.5707963267948966 rad pos: -17.5,-67.5 parent: 2 type: Transform - - uid: 28592 + - uid: 28802 components: - rot: -1.5707963267948966 rad pos: -10.5,-67.5 parent: 2 type: Transform - - uid: 28593 + - uid: 28803 components: - rot: -1.5707963267948966 rad pos: -9.5,-67.5 parent: 2 type: Transform - - uid: 28594 + - uid: 28804 components: - rot: -1.5707963267948966 rad pos: -6.5,-67.5 parent: 2 type: Transform - - uid: 28595 + - uid: 28805 components: - pos: 1.5,-62.5 parent: 2 type: Transform - - uid: 28596 + - uid: 28806 components: - pos: 1.5,-65.5 parent: 2 type: Transform - - uid: 28597 + - uid: 28807 components: - pos: -1.5,-62.5 parent: 2 type: Transform - - uid: 28598 + - uid: 28808 components: - pos: -17.5,-65.5 parent: 2 type: Transform - - uid: 28599 + - uid: 28809 components: - pos: -7.5,-62.5 parent: 2 type: Transform - - uid: 28600 + - uid: 28810 components: - pos: 12.5,-50.5 parent: 2 type: Transform - - uid: 28601 + - uid: 28811 components: - rot: 1.5707963267948966 rad pos: -13.5,-55.5 parent: 2 type: Transform - - uid: 28602 + - uid: 28812 components: - rot: 1.5707963267948966 rad pos: 30.5,-44.5 parent: 2 type: Transform - - uid: 28603 + - uid: 28813 components: - pos: -23.5,-7.5 parent: 2 type: Transform - - uid: 28604 + - uid: 28814 components: - pos: -21.5,-7.5 parent: 2 type: Transform - - uid: 28605 + - uid: 28815 components: - pos: -26.5,-7.5 parent: 2 type: Transform - - uid: 28606 + - uid: 28816 components: - pos: -16.5,-7.5 parent: 2 type: Transform - - uid: 28607 + - uid: 28817 components: - pos: -14.5,-7.5 parent: 2 type: Transform - - uid: 28608 + - uid: 28818 components: - pos: -12.5,-7.5 parent: 2 type: Transform - - uid: 28609 + - uid: 28819 components: - pos: -11.5,-5.5 parent: 2 type: Transform - - uid: 28610 + - uid: 28820 components: - pos: -11.5,-7.5 parent: 2 type: Transform - - uid: 28611 + - uid: 28821 components: - rot: 3.141592653589793 rad pos: -17.5,9.5 parent: 2 type: Transform - - uid: 28612 + - uid: 28822 components: - rot: 3.141592653589793 rad pos: 23.5,-14.5 parent: 2 type: Transform - - uid: 28613 + - uid: 28823 components: - rot: 3.141592653589793 rad pos: 23.5,-13.5 parent: 2 type: Transform - - uid: 28614 + - uid: 28824 components: - rot: 3.141592653589793 rad pos: 17.5,-15.5 parent: 2 type: Transform - - uid: 28615 + - uid: 28825 components: - rot: 3.141592653589793 rad pos: 16.5,-15.5 parent: 2 type: Transform - - uid: 28616 + - uid: 28826 components: - rot: 3.141592653589793 rad pos: 22.5,-7.5 parent: 2 type: Transform - - uid: 28617 + - uid: 28827 components: - rot: 3.141592653589793 rad pos: 23.5,-9.5 parent: 2 type: Transform - - uid: 28618 + - uid: 28828 components: - rot: -1.5707963267948966 rad pos: 19.5,22.5 parent: 2 type: Transform - - uid: 28619 + - uid: 28829 components: - pos: 37.5,-31.5 parent: 2 type: Transform - - uid: 28620 + - uid: 28830 components: - pos: 28.5,-3.5 parent: 2 type: Transform - - uid: 28621 + - uid: 28831 components: - pos: -7.5,-34.5 parent: 2 type: Transform - - uid: 28622 + - uid: 28832 components: - pos: -20.5,-74.5 parent: 2 type: Transform - - uid: 28623 + - uid: 28833 components: - rot: -1.5707963267948966 rad pos: -17.5,-51.5 parent: 2 type: Transform - - uid: 28624 + - uid: 28834 components: - pos: 41.5,-52.5 parent: 2 type: Transform - - uid: 28625 + - uid: 28835 components: - pos: 13.5,-52.5 parent: 2 type: Transform - - uid: 28626 + - uid: 28836 components: - rot: -1.5707963267948966 rad pos: 37.5,-37.5 parent: 2 type: Transform - - uid: 28627 + - uid: 28837 components: - pos: 17.5,-28.5 parent: 2 type: Transform - - uid: 28628 + - uid: 28838 components: - pos: -12.5,-70.5 parent: 2 type: Transform - - uid: 28629 + - uid: 28839 components: - pos: -26.5,-70.5 parent: 2 type: Transform - - uid: 28630 + - uid: 28840 components: - pos: -24.5,-68.5 parent: 2 type: Transform - - uid: 28631 + - uid: 28841 components: - pos: 7.5,-44.5 parent: 2 type: Transform - - uid: 28632 + - uid: 28842 components: - rot: -1.5707963267948966 rad pos: 37.5,-34.5 parent: 2 type: Transform - - uid: 28633 + - uid: 28843 components: - pos: -6.5,-14.5 parent: 2 type: Transform - - uid: 28634 + - uid: 28844 components: - pos: -6.5,-28.5 parent: 2 type: Transform - - uid: 28635 + - uid: 28845 components: - pos: -22.5,-19.5 parent: 2 type: Transform - - uid: 28636 + - uid: 28846 components: - pos: -21.5,-19.5 parent: 2 type: Transform - - uid: 28637 + - uid: 28847 components: - pos: 37.5,-57.5 parent: 2 type: Transform - - uid: 28638 + - uid: 28848 components: - rot: -1.5707963267948966 rad pos: 8.5,-45.5 parent: 2 type: Transform - - uid: 28639 + - uid: 28849 components: - pos: 5.5,-12.5 parent: 2 type: Transform - - uid: 28640 + - uid: 28850 components: - pos: -1.5,5.5 parent: 2 type: Transform - - uid: 28641 + - uid: 28851 components: - rot: 1.5707963267948966 rad pos: -15.5,-28.5 parent: 2 type: Transform - - uid: 28642 + - uid: 28852 components: - rot: -1.5707963267948966 rad pos: 9.5,-3.5 parent: 2 type: Transform - - uid: 28643 + - uid: 28853 components: - rot: 1.5707963267948966 rad pos: -12.5,-20.5 parent: 2 type: Transform - - uid: 28644 + - uid: 28854 components: - rot: -1.5707963267948966 rad pos: 8.5,-47.5 parent: 2 type: Transform - - uid: 28645 + - uid: 28855 components: - pos: -3.5,-72.5 parent: 2 type: Transform - - uid: 28646 + - uid: 28856 components: - pos: -0.5,-72.5 parent: 2 type: Transform - - uid: 28647 + - uid: 28857 components: - pos: -13.5,-28.5 parent: 2 type: Transform - - uid: 28648 + - uid: 28858 components: - pos: -11.5,-6.5 parent: 2 type: Transform - - uid: 28649 + - uid: 28859 components: - rot: -1.5707963267948966 rad pos: -13.5,35.5 parent: 2 type: Transform - - uid: 28650 + - uid: 28860 components: - pos: 7.5,-13.5 parent: 2 type: Transform - - uid: 28651 + - uid: 28861 components: - rot: -1.5707963267948966 rad pos: 19.5,21.5 parent: 2 type: Transform - - uid: 28652 + - uid: 28862 components: - pos: 11.5,-48.5 parent: 2 type: Transform - - uid: 28653 + - uid: 28863 components: - rot: 3.141592653589793 rad pos: -2.5,9.5 parent: 2 type: Transform - - uid: 28654 + - uid: 28864 components: - pos: 10.5,-48.5 parent: 2 type: Transform - - uid: 28655 + - uid: 28865 components: - pos: 7.5,-56.5 parent: 2 type: Transform - - uid: 28656 + - uid: 28866 components: - pos: 7.5,-57.5 parent: 2 type: Transform - - uid: 28657 + - uid: 28867 components: - rot: -1.5707963267948966 rad pos: 13.5,-7.5 parent: 2 type: Transform - - uid: 28658 + - uid: 28868 components: - rot: -1.5707963267948966 rad pos: -9.5,14.5 parent: 2 type: Transform - - uid: 28659 + - uid: 28869 components: - pos: -6.5,-3.5 parent: 2 type: Transform - - uid: 28660 + - uid: 28870 components: - pos: -7.5,-3.5 parent: 2 type: Transform - - uid: 28661 + - uid: 28871 components: - pos: -8.5,-3.5 parent: 2 type: Transform - - uid: 28662 + - uid: 28872 components: - pos: -6.5,-2.5 parent: 2 type: Transform - - uid: 28663 + - uid: 28873 components: - rot: 3.141592653589793 rad pos: 2.5,-51.5 parent: 2 type: Transform - - uid: 28664 + - uid: 28874 components: - pos: 13.5,-2.5 parent: 2 type: Transform - - uid: 28665 + - uid: 28875 components: - pos: 12.5,-47.5 parent: 2 type: Transform - - uid: 28666 + - uid: 28876 components: - rot: 3.141592653589793 rad pos: 60.5,14.5 parent: 2 type: Transform - - uid: 28667 + - uid: 28877 components: - rot: 3.141592653589793 rad pos: 62.5,17.5 parent: 2 type: Transform - - uid: 28668 + - uid: 28878 components: - pos: 15.5,-3.5 parent: 2 type: Transform - - uid: 28669 + - uid: 28879 components: - pos: 12.5,-2.5 parent: 2 type: Transform - - uid: 28670 + - uid: 28880 components: - pos: -11.5,1.5 parent: 2 type: Transform - - uid: 28671 + - uid: 28881 components: - pos: 2.5,-28.5 parent: 2 type: Transform - - uid: 28672 + - uid: 28882 components: - pos: 11.5,-15.5 parent: 2 type: Transform - - uid: 28673 + - uid: 28883 components: - pos: 42.5,-57.5 parent: 2 type: Transform - - uid: 28674 + - uid: 28884 components: - rot: 1.5707963267948966 rad pos: -4.5,-62.5 parent: 2 type: Transform - - uid: 28675 + - uid: 28885 components: - rot: 3.141592653589793 rad pos: -12.5,-51.5 parent: 2 type: Transform - - uid: 28676 + - uid: 28886 components: - pos: 40.5,-27.5 parent: 2 type: Transform - - uid: 28677 + - uid: 28887 components: - pos: 13.5,-28.5 parent: 2 type: Transform - - uid: 28678 + - uid: 28888 components: - pos: -21.5,-81.5 parent: 2 type: Transform - - uid: 28679 + - uid: 28889 components: - pos: -4.5,13.5 parent: 2 type: Transform - - uid: 28680 + - uid: 28890 components: - rot: 3.141592653589793 rad pos: 23.5,10.5 parent: 2 type: Transform - - uid: 28681 + - uid: 28891 components: - rot: 3.141592653589793 rad pos: 22.5,9.5 parent: 2 type: Transform - - uid: 28682 + - uid: 28892 components: - rot: 3.141592653589793 rad pos: 60.5,17.5 parent: 2 type: Transform - - uid: 28683 + - uid: 28893 components: - pos: -6.5,-6.5 parent: 2 type: Transform - - uid: 28684 + - uid: 28894 components: - pos: 15.5,-6.5 parent: 2 type: Transform - - uid: 28685 + - uid: 28895 components: - pos: 15.5,-2.5 parent: 2 type: Transform - - uid: 28686 + - uid: 28896 components: - rot: 1.5707963267948966 rad pos: 27.5,-53.5 parent: 2 type: Transform - - uid: 28687 + - uid: 28897 components: - pos: 27.5,-56.5 parent: 2 type: Transform - - uid: 28688 + - uid: 28898 components: - pos: 27.5,-50.5 parent: 2 type: Transform - - uid: 28689 + - uid: 28899 components: - pos: 23.5,-50.5 parent: 2 type: Transform - - uid: 28690 + - uid: 28900 components: - pos: 23.5,-54.5 parent: 2 type: Transform - - uid: 28691 + - uid: 28901 components: - pos: 23.5,-52.5 parent: 2 type: Transform - - uid: 28692 + - uid: 28902 components: - pos: 23.5,-51.5 parent: 2 type: Transform - - uid: 28693 + - uid: 28903 components: - pos: 23.5,-49.5 parent: 2 type: Transform - - uid: 28694 + - uid: 28904 components: - rot: 3.141592653589793 rad pos: 22.5,-51.5 parent: 2 type: Transform - - uid: 28695 + - uid: 28905 components: - pos: -17.5,-31.5 parent: 2 type: Transform - - uid: 28696 + - uid: 28906 components: - rot: -1.5707963267948966 rad pos: 8.5,-3.5 parent: 2 type: Transform - - uid: 28697 + - uid: 28907 components: - pos: 19.5,-2.5 parent: 2 type: Transform - - uid: 28698 + - uid: 28908 components: - pos: 24.5,5.5 parent: 2 type: Transform - - uid: 28699 + - uid: 28909 components: - pos: 16.5,-7.5 parent: 2 type: Transform - - uid: 28700 + - uid: 28910 components: - pos: -9.5,-16.5 parent: 2 type: Transform - - uid: 28701 + - uid: 28911 components: - pos: 2.5,10.5 parent: 2 type: Transform - - uid: 28702 + - uid: 28912 components: - pos: 14.5,-44.5 parent: 2 type: Transform - - uid: 28703 + - uid: 28913 components: - rot: 3.141592653589793 rad pos: 33.5,-7.5 parent: 2 type: Transform - - uid: 28704 + - uid: 28914 components: - rot: 3.141592653589793 rad pos: 35.5,-7.5 parent: 2 type: Transform - - uid: 28705 + - uid: 28915 components: - rot: 3.141592653589793 rad pos: 31.5,-7.5 parent: 2 type: Transform - - uid: 28706 + - uid: 28916 components: - rot: 3.141592653589793 rad pos: 20.5,-7.5 parent: 2 type: Transform - - uid: 28707 + - uid: 28917 components: - rot: 3.141592653589793 rad pos: 22.5,-15.5 parent: 2 type: Transform - - uid: 28708 + - uid: 28918 components: - rot: 3.141592653589793 rad pos: 37.5,-16.5 parent: 2 type: Transform - - uid: 28709 + - uid: 28919 components: - rot: 3.141592653589793 rad pos: 37.5,-15.5 parent: 2 type: Transform - - uid: 28710 + - uid: 28920 components: - rot: 3.141592653589793 rad pos: 36.5,-15.5 parent: 2 type: Transform - - uid: 28711 + - uid: 28921 components: - pos: 59.5,0.5 parent: 2 type: Transform - - uid: 28712 + - uid: 28922 components: - rot: 3.141592653589793 rad pos: -12.5,9.5 parent: 2 type: Transform - - uid: 28713 + - uid: 28923 components: - pos: -27.5,10.5 parent: 2 type: Transform - - uid: 28714 + - uid: 28924 components: - pos: -21.5,9.5 parent: 2 type: Transform - - uid: 28715 + - uid: 28925 components: - pos: -14.5,-32.5 parent: 2 type: Transform - - uid: 28716 + - uid: 28926 components: - pos: -21.5,14.5 parent: 2 type: Transform - - uid: 28717 + - uid: 28927 components: - pos: -10.5,-7.5 parent: 2 type: Transform - - uid: 28718 + - uid: 28928 components: - pos: -11.5,-4.5 parent: 2 type: Transform - - uid: 28719 + - uid: 28929 components: - pos: -15.5,-7.5 parent: 2 type: Transform - - uid: 28720 + - uid: 28930 components: - pos: -17.5,-7.5 parent: 2 type: Transform - - uid: 28721 + - uid: 28931 components: - pos: -21.5,-8.5 parent: 2 type: Transform - - uid: 28722 + - uid: 28932 components: - pos: -22.5,-7.5 parent: 2 type: Transform - - uid: 28723 + - uid: 28933 components: - pos: -24.5,-7.5 parent: 2 type: Transform - - uid: 28724 + - uid: 28934 components: - pos: -17.5,-8.5 parent: 2 type: Transform - - uid: 28725 + - uid: 28935 components: - rot: -1.5707963267948966 rad pos: -23.5,-18.5 parent: 2 type: Transform - - uid: 28726 + - uid: 28936 components: - rot: 3.141592653589793 rad pos: 23.5,-15.5 parent: 2 type: Transform - - uid: 28727 + - uid: 28937 components: - rot: 3.141592653589793 rad pos: 23.5,-10.5 parent: 2 type: Transform - - uid: 28728 + - uid: 28938 components: - pos: 19.5,-3.5 parent: 2 type: Transform - - uid: 28729 + - uid: 28939 components: - rot: -1.5707963267948966 rad pos: 13.5,-9.5 parent: 2 type: Transform - - uid: 28730 + - uid: 28940 components: - pos: 1.5,10.5 parent: 2 type: Transform - - uid: 28731 + - uid: 28941 components: - pos: -11.5,-2.5 parent: 2 type: Transform - - uid: 28732 + - uid: 28942 components: - pos: -6.5,-7.5 parent: 2 type: Transform - - uid: 28733 + - uid: 28943 components: - pos: -8.5,-2.5 parent: 2 type: Transform - - uid: 28734 + - uid: 28944 components: - pos: -17.5,-9.5 parent: 2 type: Transform - - uid: 28735 + - uid: 28945 components: - pos: -17.5,-10.5 parent: 2 type: Transform - - uid: 28736 + - uid: 28946 components: - pos: -6.5,-17.5 parent: 2 type: Transform - - uid: 28737 + - uid: 28947 components: - rot: 1.5707963267948966 rad pos: -6.5,-20.5 parent: 2 type: Transform - - uid: 28738 + - uid: 28948 components: - pos: 35.5,-6.5 parent: 2 type: Transform - - uid: 28739 + - uid: 28949 components: - pos: 45.5,-0.5 parent: 2 type: Transform - - uid: 28740 + - uid: 28950 components: - pos: -2.5,-15.5 parent: 2 type: Transform - - uid: 28741 + - uid: 28951 components: - pos: -1.5,-15.5 parent: 2 type: Transform - - uid: 28742 + - uid: 28952 components: - pos: -6.5,-4.5 parent: 2 type: Transform - - uid: 28743 + - uid: 28953 components: - rot: 1.5707963267948966 rad pos: -6.5,-23.5 parent: 2 type: Transform - - uid: 28744 + - uid: 28954 components: - rot: 1.5707963267948966 rad pos: -6.5,-24.5 parent: 2 type: Transform - - uid: 28745 + - uid: 28955 components: - rot: 1.5707963267948966 rad pos: -10.5,-24.5 parent: 2 type: Transform - - uid: 28746 + - uid: 28956 components: - rot: 3.141592653589793 rad pos: 1.5,-44.5 parent: 2 type: Transform - - uid: 28747 + - uid: 28957 components: - rot: 3.141592653589793 rad pos: -10.5,-45.5 parent: 2 type: Transform - - uid: 28748 + - uid: 28958 components: - rot: 1.5707963267948966 rad pos: 29.5,-44.5 parent: 2 type: Transform - - uid: 28749 + - uid: 28959 components: - pos: -26.5,-8.5 parent: 2 type: Transform - - uid: 28750 + - uid: 28960 components: - rot: -1.5707963267948966 rad pos: 8.5,-44.5 parent: 2 type: Transform - - uid: 28751 + - uid: 28961 components: - pos: -8.5,-28.5 parent: 2 type: Transform - - uid: 28752 + - uid: 28962 components: - rot: 3.141592653589793 rad pos: 18.5,8.5 parent: 2 type: Transform - - uid: 28753 + - uid: 28963 components: - pos: 16.5,-44.5 parent: 2 type: Transform - - uid: 28754 + - uid: 28964 components: - pos: 16.5,-46.5 parent: 2 type: Transform - - uid: 28755 + - uid: 28965 components: - pos: 12.5,-28.5 parent: 2 type: Transform - - uid: 28756 + - uid: 28966 components: - pos: 11.5,-28.5 parent: 2 type: Transform - - uid: 28757 + - uid: 28967 components: - pos: 6.5,-28.5 parent: 2 type: Transform - - uid: 28758 + - uid: 28968 components: - pos: 12.5,-46.5 parent: 2 type: Transform - - uid: 28759 + - uid: 28969 components: - pos: 12.5,-45.5 parent: 2 type: Transform - - uid: 28760 + - uid: 28970 components: - pos: -9.5,-28.5 parent: 2 type: Transform - - uid: 28761 + - uid: 28971 components: - pos: 3.5,-12.5 parent: 2 type: Transform - - uid: 28762 + - uid: 28972 components: - pos: 9.5,-48.5 parent: 2 type: Transform - - uid: 28763 + - uid: 28973 components: - pos: 2.5,-44.5 parent: 2 type: Transform - - uid: 28764 + - uid: 28974 components: - pos: 8.5,-48.5 parent: 2 type: Transform - - uid: 28765 + - uid: 28975 components: - rot: 1.5707963267948966 rad pos: -13.5,-24.5 parent: 2 type: Transform - - uid: 28766 + - uid: 28976 components: - pos: -10.5,-34.5 parent: 2 type: Transform - - uid: 28767 + - uid: 28977 components: - pos: 35.5,-44.5 parent: 2 type: Transform - - uid: 28768 + - uid: 28978 components: - pos: 41.5,-49.5 parent: 2 type: Transform - - uid: 28769 + - uid: 28979 components: - pos: 39.5,-47.5 parent: 2 type: Transform - - uid: 28770 + - uid: 28980 components: - pos: 39.5,-44.5 parent: 2 type: Transform - - uid: 28771 + - uid: 28981 components: - pos: 41.5,-48.5 parent: 2 type: Transform - - uid: 28772 + - uid: 28982 components: - pos: -3.5,-51.5 parent: 2 type: Transform - - uid: 28773 + - uid: 28983 components: - pos: -5.5,-51.5 parent: 2 type: Transform - - uid: 28774 + - uid: 28984 components: - pos: -6.5,-51.5 parent: 2 type: Transform - - uid: 28775 + - uid: 28985 components: - pos: -2.5,-50.5 parent: 2 type: Transform - - uid: 28776 + - uid: 28986 components: - rot: 3.141592653589793 rad pos: 1.5,-45.5 parent: 2 type: Transform - - uid: 28777 + - uid: 28987 components: - pos: 7.5,-54.5 parent: 2 type: Transform - - uid: 28778 + - uid: 28988 components: - rot: -1.5707963267948966 rad pos: -14.5,-40.5 parent: 2 type: Transform - - uid: 28779 + - uid: 28989 components: - rot: -1.5707963267948966 rad pos: -12.5,-40.5 parent: 2 type: Transform - - uid: 28780 + - uid: 28990 components: - rot: 1.5707963267948966 rad pos: -4.5,-58.5 parent: 2 type: Transform - - uid: 28781 + - uid: 28991 components: - rot: 1.5707963267948966 rad pos: -1.5,-58.5 parent: 2 type: Transform - - uid: 28782 + - uid: 28992 components: - rot: 1.5707963267948966 rad pos: -7.5,-58.5 parent: 2 type: Transform - - uid: 28783 + - uid: 28993 components: - rot: 1.5707963267948966 rad pos: 4.5,-55.5 parent: 2 type: Transform - - uid: 28784 + - uid: 28994 components: - rot: 1.5707963267948966 rad pos: -10.5,-55.5 parent: 2 type: Transform - - uid: 28785 + - uid: 28995 components: - rot: 1.5707963267948966 rad pos: -13.5,-58.5 parent: 2 type: Transform - - uid: 28786 + - uid: 28996 components: - rot: 1.5707963267948966 rad pos: 4.5,-58.5 parent: 2 type: Transform - - uid: 28787 + - uid: 28997 components: - rot: 1.5707963267948966 rad pos: -1.5,-55.5 parent: 2 type: Transform - - uid: 28788 + - uid: 28998 components: - rot: 1.5707963267948966 rad pos: -4.5,-55.5 parent: 2 type: Transform - - uid: 28789 + - uid: 28999 components: - rot: 1.5707963267948966 rad pos: 1.5,-58.5 parent: 2 type: Transform - - uid: 28790 + - uid: 29000 components: - rot: 1.5707963267948966 rad pos: -7.5,-55.5 parent: 2 type: Transform - - uid: 28791 + - uid: 29001 components: - rot: 3.141592653589793 rad pos: -11.5,-51.5 parent: 2 type: Transform - - uid: 28792 + - uid: 29002 components: - rot: 3.141592653589793 rad pos: -14.5,-51.5 parent: 2 type: Transform - - uid: 28793 + - uid: 29003 components: - rot: 3.141592653589793 rad pos: -15.5,-51.5 parent: 2 type: Transform - - uid: 28794 + - uid: 29004 components: - pos: 9.5,-51.5 parent: 2 type: Transform - - uid: 28795 + - uid: 29005 components: - pos: 7.5,-52.5 parent: 2 type: Transform - - uid: 28796 + - uid: 29006 components: - pos: 9.5,-53.5 parent: 2 type: Transform - - uid: 28797 + - uid: 29007 components: - pos: 11.5,-50.5 parent: 2 type: Transform - - uid: 28798 + - uid: 29008 components: - pos: -17.5,-66.5 parent: 2 type: Transform - - uid: 28799 + - uid: 29009 components: - pos: -17.5,-62.5 parent: 2 type: Transform - - uid: 28800 + - uid: 29010 components: - pos: -16.5,-62.5 parent: 2 type: Transform - - uid: 28801 + - uid: 29011 components: - pos: -15.5,-62.5 parent: 2 type: Transform - - uid: 28802 + - uid: 29012 components: - pos: -14.5,-62.5 parent: 2 type: Transform - - uid: 28803 + - uid: 29013 components: - pos: -12.5,-62.5 parent: 2 type: Transform - - uid: 28804 + - uid: 29014 components: - pos: -11.5,-62.5 parent: 2 type: Transform - - uid: 28805 + - uid: 29015 components: - pos: 1.5,-66.5 parent: 2 type: Transform - - uid: 28806 + - uid: 29016 components: - pos: 1.5,-68.5 parent: 2 type: Transform - - uid: 28807 + - uid: 29017 components: - pos: 0.5,-68.5 parent: 2 type: Transform - - uid: 28808 + - uid: 29018 components: - pos: -0.5,-68.5 parent: 2 type: Transform - - uid: 28809 + - uid: 29019 components: - pos: -2.5,-68.5 parent: 2 type: Transform - - uid: 28810 + - uid: 29020 components: - pos: -3.5,-68.5 parent: 2 type: Transform - - uid: 28811 + - uid: 29021 components: - pos: -4.5,-68.5 parent: 2 type: Transform - - uid: 28812 + - uid: 29022 components: - pos: -4.5,-67.5 parent: 2 type: Transform - - uid: 28813 + - uid: 29023 components: - pos: 5.5,-62.5 parent: 2 type: Transform - - uid: 28814 + - uid: 29024 components: - pos: 5.5,-64.5 parent: 2 type: Transform - - uid: 28815 + - uid: 29025 components: - pos: 5.5,-65.5 parent: 2 type: Transform - - uid: 28816 + - uid: 29026 components: - pos: 5.5,-66.5 parent: 2 type: Transform - - uid: 28817 + - uid: 29027 components: - pos: 4.5,-66.5 parent: 2 type: Transform - - uid: 28818 + - uid: 29028 components: - pos: 3.5,-66.5 parent: 2 type: Transform - - uid: 28819 + - uid: 29029 components: - pos: 2.5,-66.5 parent: 2 type: Transform - - uid: 28820 + - uid: 29030 components: - rot: -1.5707963267948966 rad pos: -11.5,-68.5 parent: 2 type: Transform - - uid: 28821 + - uid: 29031 components: - rot: -1.5707963267948966 rad pos: -7.5,-68.5 parent: 2 type: Transform - - uid: 28822 + - uid: 29032 components: - pos: 56.5,-32.5 parent: 2 type: Transform - - uid: 28823 + - uid: 29033 components: - pos: 11.5,-54.5 parent: 2 type: Transform - - uid: 28824 + - uid: 29034 components: - pos: 10.5,-54.5 parent: 2 type: Transform - - uid: 28825 + - uid: 29035 components: - pos: -21.5,-62.5 parent: 2 type: Transform - - uid: 28826 + - uid: 29036 components: - pos: -20.5,-62.5 parent: 2 type: Transform - - uid: 28827 + - uid: 29037 components: - pos: -18.5,-62.5 parent: 2 type: Transform - - uid: 28828 + - uid: 29038 components: - pos: 12.5,-54.5 parent: 2 type: Transform - - uid: 28829 + - uid: 29039 components: - pos: 14.5,-56.5 parent: 2 type: Transform - - uid: 28830 + - uid: 29040 components: - pos: 14.5,-54.5 parent: 2 type: Transform - - uid: 28831 + - uid: 29041 components: - pos: 13.5,-60.5 parent: 2 type: Transform - - uid: 28832 + - uid: 29042 components: - pos: 13.5,-61.5 parent: 2 type: Transform - - uid: 28833 + - uid: 29043 components: - pos: 13.5,-62.5 parent: 2 type: Transform - - uid: 28834 + - uid: 29044 components: - pos: 13.5,-64.5 parent: 2 type: Transform - - uid: 28835 + - uid: 29045 components: - pos: 12.5,-65.5 parent: 2 type: Transform - - uid: 28836 + - uid: 29046 components: - pos: 10.5,-65.5 parent: 2 type: Transform - - uid: 28837 + - uid: 29047 components: - pos: 10.5,-66.5 parent: 2 type: Transform - - uid: 28838 + - uid: 29048 components: - pos: -8.5,-20.5 parent: 2 type: Transform - - uid: 28839 + - uid: 29049 components: - rot: -1.5707963267948966 rad pos: -10.5,-20.5 parent: 2 type: Transform - - uid: 28840 + - uid: 29050 components: - rot: -1.5707963267948966 rad pos: -9.5,-20.5 parent: 2 type: Transform - - uid: 28841 + - uid: 29051 components: - rot: -1.5707963267948966 rad pos: -7.5,-20.5 parent: 2 type: Transform - - uid: 28842 + - uid: 29052 components: - rot: -1.5707963267948966 rad pos: -14.5,-21.5 parent: 2 type: Transform - - uid: 28843 + - uid: 29053 components: - rot: -1.5707963267948966 rad pos: -14.5,-23.5 parent: 2 type: Transform - - uid: 28844 + - uid: 29054 components: - rot: -1.5707963267948966 rad pos: -14.5,-24.5 parent: 2 type: Transform - - uid: 28845 + - uid: 29055 components: - pos: 38.5,-52.5 parent: 2 type: Transform - - uid: 28846 + - uid: 29056 components: - pos: 37.5,-52.5 parent: 2 type: Transform - - uid: 28847 + - uid: 29057 components: - pos: -7.5,-16.5 parent: 2 type: Transform - - uid: 28849 + - uid: 29058 components: - rot: -1.5707963267948966 rad pos: -14.5,-13.5 parent: 2 type: Transform - - uid: 28850 + - uid: 29059 components: - rot: -1.5707963267948966 rad pos: -15.5,-44.5 parent: 2 type: Transform - - uid: 28851 + - uid: 29060 components: - pos: 17.5,-30.5 parent: 2 type: Transform - - uid: 28852 + - uid: 29061 components: - pos: -21.5,-63.5 parent: 2 type: Transform - - uid: 28853 + - uid: 29062 components: - pos: -21.5,-65.5 parent: 2 type: Transform - - uid: 28854 + - uid: 29063 components: - pos: -26.5,-68.5 parent: 2 type: Transform - - uid: 28855 + - uid: 29064 components: - pos: -26.5,-74.5 parent: 2 type: Transform - - uid: 28856 + - uid: 29065 components: - pos: -25.5,-74.5 parent: 2 type: Transform - - uid: 28857 + - uid: 29066 components: - pos: -15.5,-70.5 parent: 2 type: Transform - - uid: 28858 + - uid: 29067 components: - pos: -16.5,-70.5 parent: 2 type: Transform - - uid: 28859 + - uid: 29068 components: - pos: -16.5,-73.5 parent: 2 type: Transform - - uid: 28860 + - uid: 29069 components: - pos: -21.5,-76.5 parent: 2 type: Transform - - uid: 28861 + - uid: 29070 components: - pos: -6.5,-72.5 parent: 2 type: Transform - - uid: 28862 + - uid: 29071 components: - pos: 36.5,-49.5 parent: 2 type: Transform - - uid: 28863 + - uid: 29072 components: - pos: -7.5,-72.5 parent: 2 type: Transform - - uid: 28864 + - uid: 29073 components: - pos: -10.5,-72.5 parent: 2 type: Transform - - uid: 28865 + - uid: 29074 components: - pos: -10.5,-73.5 parent: 2 type: Transform - - uid: 28866 + - uid: 29075 components: - pos: -9.5,-73.5 parent: 2 type: Transform - - uid: 28867 + - uid: 29076 components: - pos: -7.5,-73.5 parent: 2 type: Transform - - uid: 28868 + - uid: 29077 components: - pos: 3.5,-70.5 parent: 2 type: Transform - - uid: 28869 + - uid: 29078 components: - pos: 3.5,-68.5 parent: 2 type: Transform - - uid: 28870 + - uid: 29079 components: - pos: 4.5,-68.5 parent: 2 type: Transform - - uid: 28871 + - uid: 29080 components: - pos: 5.5,-68.5 parent: 2 type: Transform - - uid: 28872 + - uid: 29081 components: - pos: 7.5,-67.5 parent: 2 type: Transform - - uid: 28873 + - uid: 29082 components: - pos: 8.5,-66.5 parent: 2 type: Transform - - uid: 28874 + - uid: 29083 components: - pos: -21.5,-74.5 parent: 2 type: Transform - - uid: 28875 + - uid: 29084 components: - pos: -13.5,-69.5 parent: 2 type: Transform - - uid: 28876 + - uid: 29085 components: - pos: -21.5,-82.5 parent: 2 type: Transform - - uid: 28877 + - uid: 29086 components: - pos: -21.5,-83.5 parent: 2 type: Transform - - uid: 28878 + - uid: 29087 components: - pos: 10.5,-13.5 parent: 2 type: Transform - - uid: 28879 + - uid: 29088 components: - pos: -10.5,-63.5 parent: 2 type: Transform - - uid: 28880 + - uid: 29089 components: - pos: -10.5,-65.5 parent: 2 type: Transform - - uid: 28881 + - uid: 29090 components: - rot: 1.5707963267948966 rad pos: -4.5,-65.5 parent: 2 type: Transform - - uid: 28882 + - uid: 29091 components: - rot: 1.5707963267948966 rad pos: -4.5,-66.5 parent: 2 type: Transform - - uid: 28883 + - uid: 29092 components: - pos: 40.5,-52.5 parent: 2 type: Transform - - uid: 28884 + - uid: 29093 components: - rot: 1.5707963267948966 rad pos: -4.5,-64.5 parent: 2 type: Transform - - uid: 28885 + - uid: 29094 components: - rot: 1.5707963267948966 rad pos: -4.5,-63.5 parent: 2 type: Transform - - uid: 28886 + - uid: 29095 components: - pos: -6.5,-35.5 parent: 2 type: Transform - - uid: 28887 + - uid: 29096 components: - pos: -13.5,-32.5 parent: 2 type: Transform - - uid: 28888 + - uid: 29097 components: - pos: -25.5,-7.5 parent: 2 type: Transform - - uid: 28889 + - uid: 29098 components: - rot: 3.141592653589793 rad pos: 21.5,-9.5 parent: 2 type: Transform - - uid: 28890 + - uid: 29099 components: - pos: 12.5,-13.5 parent: 2 type: Transform - - uid: 28891 + - uid: 29100 components: - pos: 3.5,-72.5 parent: 2 type: Transform - - uid: 28892 + - uid: 29101 components: - pos: 10.5,-68.5 parent: 2 type: Transform - - uid: 28893 + - uid: 29102 components: - pos: 7.5,-51.5 parent: 2 type: Transform - - uid: 28894 + - uid: 29103 components: - rot: 3.141592653589793 rad pos: 16.5,-14.5 parent: 2 type: Transform - - uid: 28895 + - uid: 29104 components: - rot: 1.5707963267948966 rad pos: 1.5,-55.5 parent: 2 type: Transform - - uid: 28896 + - uid: 29105 components: - rot: 1.5707963267948966 rad pos: -10.5,-58.5 parent: 2 type: Transform - - uid: 28897 + - uid: 29106 components: - pos: -5.5,9.5 parent: 2 type: Transform - - uid: 28898 + - uid: 29107 components: - rot: -1.5707963267948966 rad pos: 13.5,-6.5 parent: 2 type: Transform - - uid: 28899 + - uid: 29108 components: - pos: 9.5,-28.5 parent: 2 type: Transform - - uid: 28900 + - uid: 29109 components: - pos: 5.5,-2.5 parent: 2 type: Transform - - uid: 28901 + - uid: 29110 components: - rot: 3.141592653589793 rad pos: -1.5,13.5 parent: 2 type: Transform - - uid: 28902 + - uid: 29111 components: - pos: -5.5,11.5 parent: 2 type: Transform - - uid: 28903 + - uid: 29112 components: - pos: 17.5,-7.5 parent: 2 type: Transform - - uid: 28904 + - uid: 29113 components: - pos: -9.5,13.5 parent: 2 type: Transform - - uid: 28905 + - uid: 29114 components: - pos: -5.5,12.5 parent: 2 type: Transform - - uid: 28906 + - uid: 29115 components: - pos: -11.5,5.5 parent: 2 type: Transform - - uid: 28907 + - uid: 29116 components: - pos: 13.5,-51.5 parent: 2 type: Transform - - uid: 28908 + - uid: 29117 components: - pos: 24.5,-3.5 parent: 2 type: Transform - - uid: 28909 + - uid: 29118 components: - pos: 15.5,-7.5 parent: 2 type: Transform - - uid: 28910 + - uid: 29119 components: - rot: -1.5707963267948966 rad pos: 31.5,-0.5 parent: 2 type: Transform - - uid: 28911 + - uid: 29120 components: - pos: 20.5,5.5 parent: 2 type: Transform - - uid: 28912 + - uid: 29121 components: - rot: -1.5707963267948966 rad pos: 31.5,2.5 parent: 2 type: Transform - - uid: 28913 + - uid: 29122 components: - pos: -1.5,0.5 parent: 2 type: Transform - - uid: 28914 + - uid: 29123 components: - pos: -1.5,1.5 parent: 2 type: Transform - - uid: 28915 + - uid: 29124 components: - pos: 15.5,5.5 parent: 2 type: Transform - - uid: 28916 + - uid: 29125 components: - pos: 30.5,-1.5 parent: 2 type: Transform - - uid: 28917 + - uid: 29126 components: - rot: 3.141592653589793 rad pos: 23.5,11.5 parent: 2 type: Transform - - uid: 28918 + - uid: 29127 components: - pos: 19.5,4.5 parent: 2 type: Transform - - uid: 28919 + - uid: 29128 components: - pos: -1.5,4.5 parent: 2 type: Transform - - uid: 28920 + - uid: 29129 components: - pos: 14.5,4.5 parent: 2 type: Transform - - uid: 28921 + - uid: 29130 components: - pos: -5.5,4.5 parent: 2 type: Transform - - uid: 28922 + - uid: 29131 components: - pos: 13.5,4.5 parent: 2 type: Transform - - uid: 28923 + - uid: 29132 components: - pos: 7.5,-3.5 parent: 2 type: Transform - - uid: 28924 + - uid: 29133 components: - pos: -13.5,-72.5 parent: 2 type: Transform - - uid: 28925 + - uid: 29134 components: - pos: 19.5,5.5 parent: 2 type: Transform - - uid: 28926 + - uid: 29135 components: - rot: 3.141592653589793 rad pos: 23.5,14.5 parent: 2 type: Transform - - uid: 28927 + - uid: 29136 components: - pos: -12.5,-28.5 parent: 2 type: Transform - - uid: 28928 + - uid: 29137 components: - pos: 15.5,-4.5 parent: 2 type: Transform - - uid: 28929 + - uid: 29138 components: - pos: 15.5,0.5 parent: 2 type: Transform - - uid: 28930 + - uid: 29139 components: - rot: 3.141592653589793 rad pos: -1.5,12.5 parent: 2 type: Transform - - uid: 28931 + - uid: 29140 components: - pos: 37.5,-38.5 parent: 2 type: Transform - - uid: 28932 + - uid: 29141 components: - rot: -1.5707963267948966 rad pos: -12.5,-76.5 parent: 2 type: Transform - - uid: 28933 + - uid: 29142 components: - rot: -1.5707963267948966 rad pos: -4.5,-76.5 parent: 2 type: Transform - - uid: 28934 + - uid: 29143 components: - rot: -1.5707963267948966 rad pos: -3.5,-79.5 parent: 2 type: Transform - - uid: 28935 + - uid: 29144 components: - rot: -1.5707963267948966 rad pos: -2.5,-76.5 parent: 2 type: Transform - - uid: 28936 + - uid: 29145 components: - rot: 1.5707963267948966 rad pos: 27.5,-52.5 parent: 2 type: Transform - - uid: 28937 + - uid: 29146 components: - pos: 8.5,4.5 parent: 2 type: Transform - - uid: 28938 + - uid: 29147 components: - pos: 37.5,-32.5 parent: 2 type: Transform - - uid: 28939 + - uid: 29148 components: - pos: 39.5,-27.5 parent: 2 type: Transform - - uid: 28940 + - uid: 29149 components: - pos: 39.5,-31.5 parent: 2 type: Transform - - uid: 28941 + - uid: 29150 components: - rot: -1.5707963267948966 rad pos: -17.5,-40.5 parent: 2 type: Transform - - uid: 28942 + - uid: 29151 components: - pos: -17.5,-39.5 parent: 2 type: Transform - - uid: 28943 + - uid: 29152 components: - rot: -1.5707963267948966 rad pos: -3.5,-77.5 parent: 2 type: Transform - - uid: 28944 + - uid: 29153 components: - rot: -1.5707963267948966 rad pos: -2.5,-81.5 parent: 2 type: Transform - - uid: 28945 + - uid: 29154 components: - rot: -1.5707963267948966 rad pos: -2.5,-80.5 parent: 2 type: Transform - - uid: 28946 + - uid: 29155 components: - rot: -1.5707963267948966 rad pos: -3.5,-80.5 parent: 2 type: Transform - - uid: 28947 + - uid: 29156 components: - rot: -1.5707963267948966 rad pos: -6.5,-76.5 parent: 2 type: Transform - - uid: 28948 + - uid: 29157 components: - pos: 7.5,4.5 parent: 2 type: Transform - - uid: 28949 + - uid: 29158 components: - rot: 1.5707963267948966 rad pos: -6.5,-22.5 parent: 2 type: Transform - - uid: 28950 + - uid: 29159 components: - pos: 38.5,-31.5 parent: 2 type: Transform - - uid: 28951 + - uid: 29160 components: - pos: -6.5,-18.5 parent: 2 type: Transform - - uid: 28952 + - uid: 29161 components: - pos: -6.5,-15.5 parent: 2 type: Transform - - uid: 28953 + - uid: 29162 components: - rot: 3.141592653589793 rad pos: -10.5,-47.5 parent: 2 type: Transform - - uid: 28954 + - uid: 29163 components: - rot: 1.5707963267948966 rad pos: -7.5,-24.5 parent: 2 type: Transform - - uid: 28955 + - uid: 29164 components: - pos: -4.5,9.5 parent: 2 type: Transform - - uid: 28956 + - uid: 29165 components: - rot: 1.5707963267948966 rad pos: 28.5,-44.5 parent: 2 type: Transform - - uid: 28957 + - uid: 29166 components: - pos: -21.5,-15.5 parent: 2 type: Transform - - uid: 28958 + - uid: 29167 components: - rot: -1.5707963267948966 rad pos: -27.5,-18.5 parent: 2 type: Transform - - uid: 28959 + - uid: 29168 components: - pos: -26.5,-15.5 parent: 2 type: Transform - - uid: 28960 + - uid: 29169 components: - pos: 19.5,23.5 parent: 2 type: Transform - - uid: 28961 + - uid: 29170 components: - pos: 27.5,-44.5 parent: 2 type: Transform - - uid: 28962 + - uid: 29171 components: - pos: -6.5,-30.5 parent: 2 type: Transform - - uid: 28963 + - uid: 29172 components: - pos: -6.5,-31.5 parent: 2 type: Transform - - uid: 28964 + - uid: 29173 components: - rot: -1.5707963267948966 rad pos: 10.5,-44.5 parent: 2 type: Transform - - uid: 28965 + - uid: 29174 components: - rot: -1.5707963267948966 rad pos: 11.5,-44.5 parent: 2 type: Transform - - uid: 28966 + - uid: 29175 components: - pos: 12.5,-48.5 parent: 2 type: Transform - - uid: 28967 + - uid: 29176 components: - pos: 9.5,-15.5 parent: 2 type: Transform - - uid: 28968 + - uid: 29177 components: - pos: 7.5,-15.5 parent: 2 type: Transform - - uid: 28969 + - uid: 29178 components: - pos: 6.5,-15.5 parent: 2 type: Transform - - uid: 28970 + - uid: 29179 components: - pos: 5.5,-15.5 parent: 2 type: Transform - - uid: 28971 + - uid: 29180 components: - pos: -10.5,-28.5 parent: 2 type: Transform - - uid: 28972 + - uid: 29181 components: - rot: 1.5707963267948966 rad pos: 7.5,-9.5 parent: 2 type: Transform - - uid: 28973 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-8.5 - parent: 2 - type: Transform - - uid: 28974 + - uid: 29182 components: - pos: 8.5,-40.5 parent: 2 type: Transform - - uid: 28975 + - uid: 29183 components: - rot: 3.141592653589793 rad pos: -10.5,-48.5 parent: 2 type: Transform - - uid: 28976 + - uid: 29184 components: - rot: 3.141592653589793 rad pos: 1.5,-49.5 parent: 2 type: Transform - - uid: 28977 + - uid: 29185 components: - rot: 3.141592653589793 rad pos: 1.5,-50.5 parent: 2 type: Transform - - uid: 28978 + - uid: 29186 components: - pos: -2.5,-51.5 parent: 2 type: Transform - - uid: 28979 + - uid: 29187 components: - rot: -1.5707963267948966 rad pos: -15.5,-40.5 parent: 2 type: Transform - - uid: 28980 + - uid: 29188 components: - rot: -1.5707963267948966 rad pos: -13.5,-40.5 parent: 2 type: Transform - - uid: 28981 + - uid: 29189 components: - rot: -1.5707963267948966 rad pos: 30.5,5.5 parent: 2 type: Transform - - uid: 28982 + - uid: 29190 components: - pos: 3.5,-15.5 parent: 2 type: Transform - - uid: 28983 + - uid: 29191 components: - pos: 14.5,-11.5 parent: 2 type: Transform - - uid: 28984 + - uid: 29192 components: - pos: 8.5,-13.5 parent: 2 type: Transform - - uid: 28985 + - uid: 29193 components: - rot: -1.5707963267948966 rad pos: 13.5,-5.5 parent: 2 type: Transform - - uid: 28986 + - uid: 29194 components: - pos: 8.5,-28.5 parent: 2 type: Transform - - uid: 28987 + - uid: 29195 components: - pos: 16.5,-12.5 parent: 2 type: Transform - - uid: 28988 + - uid: 29196 components: - pos: 16.5,-11.5 parent: 2 type: Transform - - uid: 28989 + - uid: 29197 components: - pos: 16.5,-10.5 parent: 2 type: Transform - - uid: 28990 + - uid: 29198 components: - pos: 16.5,-9.5 parent: 2 type: Transform - - uid: 28991 + - uid: 29199 components: - pos: 17.5,-9.5 parent: 2 type: Transform - - uid: 28992 + - uid: 29200 components: - pos: 0.5,-15.5 parent: 2 type: Transform - - uid: 28993 + - uid: 29201 components: - pos: 1.5,-15.5 parent: 2 type: Transform - - uid: 28994 + - uid: 29202 components: - pos: 11.5,-13.5 parent: 2 type: Transform - - uid: 28995 + - uid: 29203 components: - pos: 2.5,-15.5 parent: 2 type: Transform - - uid: 28996 + - uid: 29204 components: - pos: 14.5,-10.5 parent: 2 type: Transform - - uid: 28997 + - uid: 29205 components: - pos: 14.5,-9.5 parent: 2 type: Transform - - uid: 28998 + - uid: 29206 components: - pos: 19.5,-9.5 parent: 2 type: Transform - - uid: 28999 + - uid: 29207 components: - rot: 3.141592653589793 rad pos: 19.5,9.5 parent: 2 type: Transform - - uid: 29000 + - uid: 29208 components: - rot: 3.141592653589793 rad pos: 19.5,11.5 parent: 2 type: Transform - - uid: 29001 + - uid: 29209 components: - rot: 3.141592653589793 rad pos: 19.5,13.5 parent: 2 type: Transform - - uid: 29002 + - uid: 29210 components: - pos: -42.5,-29.5 parent: 2 type: Transform - - uid: 29003 + - uid: 29211 components: - pos: -37.5,-29.5 parent: 2 type: Transform - - uid: 29004 + - uid: 29212 components: - pos: 13.5,-13.5 parent: 2 type: Transform - - uid: 29005 + - uid: 29213 components: - pos: 14.5,-13.5 parent: 2 type: Transform - - uid: 29006 + - uid: 29214 components: - rot: 3.141592653589793 rad pos: 47.5,37.5 parent: 2 type: Transform - - uid: 29007 + - uid: 29215 components: - rot: 3.141592653589793 rad pos: 19.5,12.5 parent: 2 type: Transform - - uid: 29008 + - uid: 29216 components: - rot: 3.141592653589793 rad pos: 20.5,9.5 parent: 2 type: Transform - - uid: 29009 + - uid: 29217 components: - pos: 18.5,-9.5 parent: 2 type: Transform - - uid: 29010 + - uid: 29218 components: - rot: -1.5707963267948966 rad pos: 13.5,-8.5 parent: 2 type: Transform - - uid: 29011 + - uid: 29219 components: - pos: -5.5,10.5 parent: 2 type: Transform - - uid: 29012 + - uid: 29220 components: - rot: 3.141592653589793 rad pos: -1.5,11.5 parent: 2 type: Transform - - uid: 29013 + - uid: 29221 components: - pos: 4.5,4.5 parent: 2 type: Transform - - uid: 29014 + - uid: 29222 components: - pos: -1.5,6.5 parent: 2 type: Transform - - uid: 29015 + - uid: 29223 components: - rot: 3.141592653589793 rad pos: -1.5,10.5 parent: 2 type: Transform - - uid: 29016 + - uid: 29224 components: - pos: 7.5,5.5 parent: 2 type: Transform - - uid: 29017 + - uid: 29225 components: - rot: -1.5707963267948966 rad pos: -8.5,57.5 parent: 2 type: Transform - - uid: 29018 + - uid: 29226 components: - rot: 3.141592653589793 rad pos: 28.5,-7.5 parent: 2 type: Transform - - uid: 29019 + - uid: 29227 components: - pos: -3.5,-70.5 parent: 2 type: Transform - - uid: 29020 + - uid: 29228 components: - pos: 8.5,-50.5 parent: 2 type: Transform - - uid: 29021 + - uid: 29229 components: - pos: -17.5,-37.5 parent: 2 type: Transform - - uid: 29022 + - uid: 29230 components: - pos: -26.5,34.5 parent: 2 type: Transform - - uid: 29023 + - uid: 29231 components: - pos: -28.5,37.5 parent: 2 type: Transform - - uid: 29024 + - uid: 29232 components: - pos: 3.5,4.5 parent: 2 type: Transform - - uid: 29025 + - uid: 29233 components: - rot: 3.141592653589793 rad pos: 22.5,-9.5 parent: 2 type: Transform - - uid: 29026 + - uid: 29234 components: - pos: -9.5,4.5 parent: 2 type: Transform - - uid: 29027 + - uid: 29235 components: - pos: -9.5,-34.5 parent: 2 type: Transform - - uid: 29028 + - uid: 29236 components: - rot: -1.5707963267948966 rad pos: -16.5,-40.5 parent: 2 type: Transform - - uid: 29029 + - uid: 29237 components: - rot: -1.5707963267948966 rad pos: -7.5,-40.5 parent: 2 type: Transform - - uid: 29030 + - uid: 29238 components: - pos: -7.5,-28.5 parent: 2 type: Transform - - uid: 29031 + - uid: 29239 components: - pos: 15.5,1.5 parent: 2 type: Transform - - uid: 29032 + - uid: 29240 components: - rot: 1.5707963267948966 rad pos: -15.5,-24.5 parent: 2 type: Transform - - uid: 29033 + - uid: 29241 components: - pos: -17.5,-16.5 parent: 2 type: Transform - - uid: 29034 + - uid: 29242 components: - pos: 42.5,-6.5 parent: 2 type: Transform - - uid: 29035 + - uid: 29243 components: - pos: -17.5,-32.5 parent: 2 type: Transform - - uid: 29036 + - uid: 29244 components: - pos: -25.5,42.5 parent: 2 type: Transform - - uid: 29037 + - uid: 29245 components: - pos: -28.5,36.5 parent: 2 type: Transform - - uid: 29038 + - uid: 29246 components: - pos: -4.5,-70.5 parent: 2 type: Transform - - uid: 29039 + - uid: 29247 components: - pos: -4.5,-71.5 parent: 2 type: Transform - - uid: 29040 + - uid: 29248 components: - pos: 39.5,-52.5 parent: 2 type: Transform - - uid: 29041 + - uid: 29249 components: - pos: -0.5,4.5 parent: 2 type: Transform - - uid: 29042 + - uid: 29250 components: - pos: -4.5,-72.5 parent: 2 type: Transform - - uid: 29043 + - uid: 29251 components: - pos: 16.5,-49.5 parent: 2 type: Transform - - uid: 29044 + - uid: 29252 components: - pos: 16.5,-50.5 parent: 2 type: Transform - - uid: 29045 + - uid: 29253 components: - pos: 14.5,-55.5 parent: 2 type: Transform - - uid: 29046 + - uid: 29254 components: - pos: -17.5,-17.5 parent: 2 type: Transform - - uid: 29047 + - uid: 29255 components: - rot: 3.141592653589793 rad pos: 32.5,-7.5 parent: 2 type: Transform - - uid: 29048 + - uid: 29256 components: - pos: -21.5,-24.5 parent: 2 type: Transform - - uid: 29049 + - uid: 29257 components: - pos: 41.5,-57.5 parent: 2 type: Transform - - uid: 29050 + - uid: 29258 components: - rot: 1.5707963267948966 rad pos: -12.5,-24.5 parent: 2 type: Transform - - uid: 29051 + - uid: 29259 components: - pos: 36.5,-0.5 parent: 2 type: Transform - - uid: 29052 + - uid: 29260 components: - pos: 9.5,-54.5 parent: 2 type: Transform - - uid: 29053 + - uid: 29261 components: - pos: -17.5,-15.5 parent: 2 type: Transform - - uid: 29054 + - uid: 29262 components: - pos: 37.5,-40.5 parent: 2 type: Transform - - uid: 29055 + - uid: 29263 components: - pos: 38.5,-40.5 parent: 2 type: Transform - - uid: 29056 + - uid: 29264 components: - pos: 40.5,-40.5 parent: 2 type: Transform - - uid: 29057 + - uid: 29265 components: - pos: 27.5,-46.5 parent: 2 type: Transform - - uid: 29058 + - uid: 29266 components: - rot: 1.5707963267948966 rad pos: 27.5,-49.5 parent: 2 type: Transform - - uid: 29059 + - uid: 29267 components: - pos: 39.5,-40.5 parent: 2 type: Transform - - uid: 29060 + - uid: 29268 components: - pos: -11.5,4.5 parent: 2 type: Transform - - uid: 29061 + - uid: 29269 components: - pos: -2.5,13.5 parent: 2 type: Transform - - uid: 29062 + - uid: 29270 components: - rot: 3.141592653589793 rad pos: 23.5,12.5 parent: 2 type: Transform - - uid: 29063 + - uid: 29271 components: - rot: 3.141592653589793 rad pos: 23.5,13.5 parent: 2 type: Transform - - uid: 29064 + - uid: 29272 components: - pos: 28.5,5.5 parent: 2 type: Transform - - uid: 29065 + - uid: 29273 components: - rot: 3.141592653589793 rad pos: 3.5,10.5 parent: 2 type: Transform - - uid: 29066 + - uid: 29274 components: - rot: -1.5707963267948966 rad pos: 31.5,4.5 parent: 2 type: Transform - - uid: 29067 + - uid: 29275 components: - rot: -1.5707963267948966 rad pos: 31.5,-1.5 parent: 2 type: Transform - - uid: 29068 + - uid: 29276 components: - pos: -29.5,-76.5 parent: 2 type: Transform - - uid: 29069 + - uid: 29277 components: - pos: -11.5,11.5 parent: 2 type: Transform - - uid: 29070 + - uid: 29278 components: - pos: -2.5,4.5 parent: 2 type: Transform - - uid: 29071 + - uid: 29279 components: - rot: 3.141592653589793 rad pos: 61.5,14.5 parent: 2 type: Transform - - uid: 29072 + - uid: 29280 components: - rot: -1.5707963267948966 rad pos: 19.5,20.5 parent: 2 type: Transform - - uid: 29073 + - uid: 29281 components: - pos: 6.5,4.5 parent: 2 type: Transform - - uid: 29074 + - uid: 29282 components: - rot: -1.5707963267948966 rad pos: -18.5,38.5 parent: 2 type: Transform - - uid: 29075 + - uid: 29283 components: - pos: -17.5,-35.5 parent: 2 type: Transform - - uid: 29076 + - uid: 29284 components: - rot: 1.5707963267948966 rad pos: -14.5,-28.5 parent: 2 type: Transform - - uid: 29077 + - uid: 29285 components: - pos: -10.5,-62.5 parent: 2 type: Transform - - uid: 29078 + - uid: 29286 components: - pos: -10.5,-64.5 parent: 2 type: Transform - - uid: 29079 + - uid: 29287 components: - pos: -2.5,-70.5 parent: 2 type: Transform - - uid: 29080 + - uid: 29288 components: - pos: -1.5,-70.5 parent: 2 type: Transform - - uid: 29081 + - uid: 29289 components: - rot: 3.141592653589793 rad pos: 29.5,-7.5 parent: 2 type: Transform - - uid: 29082 + - uid: 29290 components: - pos: 13.5,-53.5 parent: 2 type: Transform - - uid: 29083 + - uid: 29291 components: - rot: -1.5707963267948966 rad pos: -10.5,57.5 parent: 2 type: Transform - - uid: 29084 + - uid: 29292 components: - pos: -5.5,-72.5 parent: 2 type: Transform - - uid: 29085 + - uid: 29293 components: - pos: 0.5,-70.5 parent: 2 type: Transform - - uid: 29086 + - uid: 29294 components: - pos: 1.5,-70.5 parent: 2 type: Transform - - uid: 29087 + - uid: 29295 components: - pos: 13.5,-46.5 parent: 2 type: Transform - - uid: 29088 + - uid: 29296 components: - pos: 42.5,-54.5 parent: 2 type: Transform - - uid: 29089 + - uid: 29297 components: - pos: -1.5,-11.5 parent: 2 type: Transform - - uid: 29090 + - uid: 29298 components: - pos: 13.5,-44.5 parent: 2 type: Transform - - uid: 29091 + - uid: 29299 components: - pos: 17.5,-44.5 parent: 2 type: Transform - - uid: 29092 + - uid: 29300 components: - pos: -28.5,-76.5 parent: 2 type: Transform - - uid: 29093 + - uid: 29301 components: - pos: -21.5,-80.5 parent: 2 type: Transform - - uid: 29094 + - uid: 29302 components: - pos: -11.5,10.5 parent: 2 type: Transform - - uid: 29095 + - uid: 29303 components: - pos: -0.5,-70.5 parent: 2 type: Transform - - uid: 29096 + - uid: 29304 components: - pos: -27.5,-76.5 parent: 2 type: Transform - - uid: 29097 + - uid: 29305 components: - pos: -20.5,-65.5 parent: 2 type: Transform - - uid: 29098 + - uid: 29306 components: - pos: -14.5,-72.5 parent: 2 type: Transform - - uid: 29099 + - uid: 29307 components: - pos: -17.5,-74.5 parent: 2 type: Transform - - uid: 29100 + - uid: 29308 components: - pos: -21.5,-79.5 parent: 2 type: Transform - - uid: 29101 + - uid: 29309 components: - pos: -21.5,-78.5 parent: 2 type: Transform - - uid: 29102 + - uid: 29310 components: - pos: -21.5,-77.5 parent: 2 type: Transform - - uid: 29103 + - uid: 29311 components: - pos: -26.5,-76.5 parent: 2 type: Transform - - uid: 29104 + - uid: 29312 components: - pos: -26.5,-75.5 parent: 2 type: Transform - - uid: 29105 + - uid: 29313 components: - rot: 3.141592653589793 rad pos: -10.5,-51.5 parent: 2 type: Transform - - uid: 29106 + - uid: 29314 components: - rot: 3.141592653589793 rad pos: -16.5,-51.5 parent: 2 type: Transform - - uid: 29107 + - uid: 29315 components: - pos: 16.5,-48.5 parent: 2 type: Transform - - uid: 29108 + - uid: 29316 components: - pos: -17.5,-67.5 parent: 2 type: Transform - - uid: 29109 + - uid: 29317 components: - pos: 10.5,-15.5 parent: 2 type: Transform - - uid: 29110 + - uid: 29318 components: - pos: 12.5,4.5 parent: 2 type: Transform - - uid: 29111 + - uid: 29319 components: - rot: 3.141592653589793 rad pos: 23.5,-7.5 parent: 2 type: Transform - - uid: 29112 + - uid: 29320 components: - pos: -32.5,-70.5 parent: 2 type: Transform - - uid: 29113 + - uid: 29321 components: - rot: 3.141592653589793 rad pos: 30.5,-7.5 parent: 2 type: Transform - - uid: 29114 + - uid: 29322 components: - pos: -27.5,-72.5 parent: 2 type: Transform - - uid: 29115 + - uid: 29323 components: - pos: 13.5,-65.5 parent: 2 type: Transform - - uid: 29116 + - uid: 29324 components: - pos: 10.5,-63.5 parent: 2 type: Transform - - uid: 29117 + - uid: 29325 components: - rot: 3.141592653589793 rad pos: 23.5,-8.5 parent: 2 type: Transform - - uid: 29118 + - uid: 29326 components: - pos: -6.5,-50.5 parent: 2 type: Transform - - uid: 29119 + - uid: 29327 components: - pos: -13.5,-70.5 parent: 2 type: Transform - - uid: 29120 + - uid: 29328 components: - pos: 14.5,-12.5 parent: 2 type: Transform - - uid: 29121 + - uid: 29329 components: - pos: 29.5,5.5 parent: 2 type: Transform - - uid: 29122 + - uid: 29330 components: - rot: -1.5707963267948966 rad pos: 31.5,5.5 parent: 2 type: Transform - - uid: 29123 + - uid: 29331 components: - rot: 1.5707963267948966 rad pos: 27.5,-48.5 parent: 2 type: Transform - - uid: 29124 + - uid: 29332 components: - pos: 27.5,-45.5 parent: 2 type: Transform - - uid: 29125 + - uid: 29333 components: - rot: 3.141592653589793 rad pos: 20.5,15.5 parent: 2 type: Transform - - uid: 29126 + - uid: 29334 components: - pos: -17.5,-13.5 parent: 2 type: Transform - - uid: 29127 + - uid: 29335 components: - pos: 43.5,-6.5 parent: 2 type: Transform - - uid: 29128 + - uid: 29336 components: - pos: 37.5,-54.5 parent: 2 type: Transform - - uid: 29129 + - uid: 29337 components: - pos: 17.5,-27.5 parent: 2 type: Transform - - uid: 29130 + - uid: 29338 components: - pos: -25.5,43.5 parent: 2 type: Transform - - uid: 29131 + - uid: 29339 components: - pos: -25.5,44.5 parent: 2 type: Transform - - uid: 29132 + - uid: 29340 components: - pos: -25.5,46.5 parent: 2 type: Transform - - uid: 29133 + - uid: 29341 components: - pos: -27.5,36.5 parent: 2 type: Transform - - uid: 29134 + - uid: 29342 components: - rot: 3.141592653589793 rad pos: 27.5,-7.5 parent: 2 type: Transform - - uid: 29135 + - uid: 29343 components: - rot: 3.141592653589793 rad pos: 21.5,-51.5 parent: 2 type: Transform - - uid: 29136 + - uid: 29344 components: - pos: -6.5,-39.5 parent: 2 type: Transform - - uid: 29137 + - uid: 29345 components: - rot: 1.5707963267948966 rad pos: -16.5,-24.5 parent: 2 type: Transform - - uid: 29138 + - uid: 29346 components: - pos: -17.5,-24.5 parent: 2 type: Transform - - uid: 29139 + - uid: 29347 components: - pos: 42.5,-55.5 parent: 2 type: Transform - - uid: 29140 + - uid: 29348 components: - pos: -26.5,32.5 parent: 2 type: Transform - - uid: 29141 + - uid: 29349 components: - pos: 37.5,-55.5 parent: 2 type: Transform - - uid: 29142 + - uid: 29350 components: - rot: 3.141592653589793 rad pos: 20.5,-51.5 parent: 2 type: Transform - - uid: 29143 + - uid: 29351 components: - pos: 15.5,-5.5 parent: 2 type: Transform - - uid: 29144 + - uid: 29352 components: - rot: 3.141592653589793 rad pos: 27.5,-9.5 parent: 2 type: Transform - - uid: 29145 + - uid: 29353 components: - rot: 3.141592653589793 rad pos: 21.5,-7.5 parent: 2 type: Transform - - uid: 29146 + - uid: 29354 components: - rot: -1.5707963267948966 rad pos: 6.5,-44.5 parent: 2 type: Transform - - uid: 29147 + - uid: 29355 components: - pos: 1.5,-72.5 parent: 2 type: Transform - - uid: 29148 + - uid: 29356 components: - rot: -1.5707963267948966 rad pos: 29.5,-2.5 parent: 2 type: Transform - - uid: 29149 + - uid: 29357 components: - rot: 3.141592653589793 rad pos: 34.5,-7.5 parent: 2 type: Transform - - uid: 29150 + - uid: 29358 components: - pos: 42.5,-53.5 parent: 2 type: Transform - - uid: 29151 + - uid: 29359 components: - rot: 3.141592653589793 rad pos: -10.5,-44.5 parent: 2 type: Transform - - uid: 29152 + - uid: 29360 components: - rot: 3.141592653589793 rad pos: 7.5,10.5 parent: 2 type: Transform - - uid: 29153 + - uid: 29361 components: - rot: -1.5707963267948966 rad pos: -11.5,-76.5 parent: 2 type: Transform - - uid: 29154 + - uid: 29362 components: - rot: 3.141592653589793 rad pos: 60.5,12.5 parent: 2 type: Transform - - uid: 29155 + - uid: 29363 components: - pos: 20.5,-3.5 parent: 2 type: Transform - - uid: 29156 + - uid: 29364 components: - pos: 2.5,-72.5 parent: 2 type: Transform - - uid: 29157 + - uid: 29365 components: - pos: 11.5,-68.5 parent: 2 type: Transform - - uid: 29158 + - uid: 29366 components: - pos: -18.5,-65.5 parent: 2 type: Transform - - uid: 29159 + - uid: 29367 components: - pos: 7.5,-58.5 parent: 2 type: Transform - - uid: 29160 + - uid: 29368 components: - rot: 1.5707963267948966 rad pos: 32.5,-44.5 parent: 2 type: Transform - - uid: 29161 + - uid: 29369 components: - rot: 1.5707963267948966 rad pos: 33.5,-44.5 parent: 2 type: Transform - - uid: 29162 + - uid: 29370 components: - pos: -2.5,-16.5 parent: 2 type: Transform - - uid: 29163 + - uid: 29371 components: - pos: -11.5,-28.5 parent: 2 type: Transform - - uid: 29164 + - uid: 29372 components: - pos: -7.5,-35.5 parent: 2 type: Transform - - uid: 29165 + - uid: 29373 components: - rot: 3.141592653589793 rad pos: 19.5,-7.5 parent: 2 type: Transform - - uid: 29166 + - uid: 29374 components: - pos: 29.5,-3.5 parent: 2 type: Transform - - uid: 29167 + - uid: 29375 components: - rot: -1.5707963267948966 rad pos: 31.5,-3.5 parent: 2 type: Transform - - uid: 29168 + - uid: 29376 components: - rot: 1.5707963267948966 rad pos: 27.5,-57.5 parent: 2 type: Transform - - uid: 29169 + - uid: 29377 components: - pos: -17.5,-33.5 parent: 2 type: Transform - - uid: 29170 + - uid: 29378 components: - pos: 35.5,-0.5 parent: 2 type: Transform - - uid: 29171 + - uid: 29379 components: - rot: -1.5707963267948966 rad pos: -11.5,14.5 parent: 2 type: Transform - - uid: 29172 + - uid: 29380 components: - pos: -23.5,36.5 parent: 2 type: Transform - - uid: 29173 + - uid: 29381 components: - pos: -23.5,37.5 parent: 2 type: Transform - - uid: 29174 + - uid: 29382 components: - pos: -23.5,39.5 parent: 2 type: Transform - - uid: 29175 + - uid: 29383 components: - pos: -5.5,13.5 parent: 2 type: Transform - - uid: 29176 + - uid: 29384 components: - pos: -10.5,-66.5 parent: 2 type: Transform - - uid: 29177 + - uid: 29385 components: - rot: -1.5707963267948966 rad pos: 21.5,19.5 parent: 2 type: Transform - - uid: 29178 + - uid: 29386 components: - pos: 20.5,-48.5 parent: 2 type: Transform - - uid: 29179 + - uid: 29387 components: - rot: -1.5707963267948966 rad pos: -3.5,-76.5 parent: 2 type: Transform - - uid: 29180 + - uid: 29388 components: - pos: -3.5,-73.5 parent: 2 type: Transform - - uid: 29181 + - uid: 29389 components: - pos: -2.5,-72.5 parent: 2 type: Transform - - uid: 29182 + - uid: 29390 components: - rot: 1.5707963267948966 rad pos: 32.5,-23.5 parent: 2 type: Transform - - uid: 29183 + - uid: 29391 components: - pos: 57.5,-64.5 parent: 2 type: Transform - - uid: 29184 + - uid: 29392 components: - pos: -14.5,-16.5 parent: 2 type: Transform - - uid: 29185 + - uid: 29393 components: - pos: -14.5,-19.5 parent: 2 type: Transform - - uid: 29186 + - uid: 29394 components: - pos: -17.5,-19.5 parent: 2 type: Transform - - uid: 29187 + - uid: 29395 components: - pos: -17.5,-18.5 parent: 2 type: Transform - - uid: 29188 + - uid: 29396 components: - pos: -17.5,-36.5 parent: 2 type: Transform - - uid: 29189 + - uid: 29397 components: - rot: -1.5707963267948966 rad pos: -7.5,-39.5 parent: 2 type: Transform - - uid: 29190 + - uid: 29398 components: - pos: 13.5,-30.5 parent: 2 type: Transform - - uid: 29191 + - uid: 29399 components: - pos: 16.5,-47.5 parent: 2 type: Transform - - uid: 29192 + - uid: 29400 components: - rot: 3.141592653589793 rad pos: 17.5,-51.5 parent: 2 type: Transform - - uid: 29193 + - uid: 29401 components: - pos: -14.5,-17.5 parent: 2 type: Transform - - uid: 29194 + - uid: 29402 components: - pos: 9.5,4.5 parent: 2 type: Transform - - uid: 29195 + - uid: 29403 components: - pos: 37.5,-29.5 parent: 2 type: Transform - - uid: 29196 + - uid: 29404 components: - pos: -23.5,-68.5 parent: 2 type: Transform - - uid: 29197 + - uid: 29405 components: - pos: 11.5,-56.5 parent: 2 type: Transform - - uid: 29198 + - uid: 29406 components: - pos: -7.5,-33.5 parent: 2 type: Transform - - uid: 29199 + - uid: 29407 components: - rot: 3.141592653589793 rad pos: -12.5,-32.5 parent: 2 type: Transform - - uid: 29200 + - uid: 29408 components: - pos: -12.5,-31.5 parent: 2 type: Transform - - uid: 29201 + - uid: 29409 components: - pos: -13.5,-34.5 parent: 2 type: Transform - - uid: 29202 + - uid: 29410 components: - pos: -13.5,-35.5 parent: 2 type: Transform - - uid: 29203 + - uid: 29411 components: - pos: -13.5,-36.5 parent: 2 type: Transform - - uid: 29204 + - uid: 29412 components: - pos: -13.5,-37.5 parent: 2 type: Transform - - uid: 29205 + - uid: 29413 components: - pos: -13.5,-39.5 parent: 2 type: Transform - - uid: 29206 + - uid: 29414 components: - pos: -16.5,-36.5 parent: 2 type: Transform - - uid: 29207 + - uid: 29415 components: - pos: -15.5,-36.5 parent: 2 type: Transform - - uid: 29208 + - uid: 29416 components: - pos: -14.5,-36.5 parent: 2 type: Transform - - uid: 29209 + - uid: 29417 components: - pos: -7.5,-32.5 parent: 2 type: Transform - - uid: 29210 + - uid: 29418 components: - pos: -7.5,-31.5 parent: 2 type: Transform - - uid: 29211 + - uid: 29419 components: - pos: -10.5,-31.5 parent: 2 type: Transform - - uid: 29212 + - uid: 29420 components: - pos: -9.5,-31.5 parent: 2 type: Transform - - uid: 29213 + - uid: 29421 components: - pos: -8.5,-31.5 parent: 2 type: Transform - - uid: 29214 + - uid: 29422 components: - pos: 10.5,-28.5 parent: 2 type: Transform - - uid: 29215 + - uid: 29423 components: - rot: 3.141592653589793 rad pos: 17.5,8.5 parent: 2 type: Transform - - uid: 29216 + - uid: 29424 components: - pos: 23.5,-47.5 parent: 2 type: Transform - - uid: 29217 + - uid: 29425 components: - rot: -1.5707963267948966 rad pos: 49.5,-36.5 parent: 2 type: Transform - - uid: 29218 + - uid: 29426 components: - rot: -1.5707963267948966 rad pos: 43.5,-34.5 parent: 2 type: Transform - - uid: 29219 + - uid: 29427 components: - rot: 1.5707963267948966 rad pos: 36.5,-9.5 parent: 2 type: Transform - - uid: 29220 + - uid: 29428 components: - rot: 1.5707963267948966 rad pos: 36.5,-10.5 parent: 2 type: Transform - - uid: 29221 + - uid: 29429 components: - rot: 1.5707963267948966 rad pos: 36.5,-11.5 parent: 2 type: Transform - - uid: 29222 + - uid: 29430 components: - rot: 1.5707963267948966 rad pos: 36.5,-7.5 parent: 2 type: Transform - - uid: 29223 + - uid: 29431 components: - pos: -6.5,-8.5 parent: 2 type: Transform - - uid: 29224 + - uid: 29432 components: - pos: -6.5,-10.5 parent: 2 type: Transform - - uid: 29225 + - uid: 29433 components: - pos: -17.5,-11.5 parent: 2 type: Transform - - uid: 29226 + - uid: 29434 components: - pos: -17.5,-12.5 parent: 2 type: Transform - - uid: 29227 + - uid: 29435 components: - pos: -11.5,0.5 parent: 2 type: Transform - - uid: 29228 + - uid: 29436 components: - pos: -13.5,14.5 parent: 2 type: Transform - - uid: 29229 + - uid: 29437 components: - pos: -15.5,14.5 parent: 2 type: Transform - - uid: 29230 + - uid: 29438 components: - pos: -21.5,13.5 parent: 2 type: Transform - - uid: 29231 + - uid: 29439 components: - pos: -21.5,10.5 parent: 2 type: Transform - - uid: 29232 + - uid: 29440 components: - pos: -17.5,13.5 parent: 2 type: Transform - - uid: 29233 + - uid: 29441 components: - pos: -17.5,12.5 parent: 2 type: Transform - - uid: 29234 + - uid: 29442 components: - pos: -17.5,14.5 parent: 2 type: Transform - - uid: 29235 + - uid: 29443 components: - pos: -16.5,14.5 parent: 2 type: Transform - - uid: 29236 + - uid: 29444 components: - pos: -15.5,-32.5 parent: 2 type: Transform - - uid: 29237 + - uid: 29445 components: - pos: -9.5,-30.5 parent: 2 type: Transform - - uid: 29238 + - uid: 29446 components: - pos: -15.5,-30.5 parent: 2 type: Transform - - uid: 29239 + - uid: 29447 components: - pos: -14.5,-30.5 parent: 2 type: Transform - - uid: 29240 + - uid: 29448 components: - pos: -14.5,-29.5 parent: 2 type: Transform - - uid: 29241 + - uid: 29449 components: - rot: -1.5707963267948966 rad pos: -15.5,16.5 parent: 2 type: Transform - - uid: 29242 + - uid: 29450 components: - rot: -1.5707963267948966 rad pos: -14.5,16.5 parent: 2 type: Transform - - uid: 29243 + - uid: 29451 components: - rot: -1.5707963267948966 rad pos: -13.5,16.5 parent: 2 type: Transform - - uid: 29244 + - uid: 29452 components: - rot: -1.5707963267948966 rad pos: -12.5,16.5 parent: 2 type: Transform - - uid: 29245 + - uid: 29453 components: - rot: -1.5707963267948966 rad pos: -11.5,16.5 parent: 2 type: Transform - - uid: 29246 + - uid: 29454 components: - rot: -1.5707963267948966 rad pos: -11.5,17.5 parent: 2 type: Transform - - uid: 29247 + - uid: 29455 components: - rot: -1.5707963267948966 rad pos: -9.5,17.5 parent: 2 type: Transform - - uid: 29248 + - uid: 29456 components: - pos: -15.5,-11.5 parent: 2 type: Transform - - uid: 29249 + - uid: 29457 components: - pos: -8.5,-16.5 parent: 2 type: Transform - - uid: 29250 + - uid: 29458 components: - pos: 23.5,-45.5 parent: 2 type: Transform - - uid: 29251 + - uid: 29459 components: - pos: 23.5,-44.5 parent: 2 type: Transform - - uid: 29252 + - uid: 29460 components: - pos: 23.5,-48.5 parent: 2 type: Transform - - uid: 29253 + - uid: 29461 components: - pos: 15.5,-46.5 parent: 2 type: Transform - - uid: 29254 + - uid: 29462 components: - pos: 18.5,-45.5 parent: 2 type: Transform - - uid: 29255 + - uid: 29463 components: - pos: 18.5,-46.5 parent: 2 type: Transform - - uid: 29256 + - uid: 29464 components: - pos: 18.5,-47.5 parent: 2 type: Transform - - uid: 29257 + - uid: 29465 components: - rot: -1.5707963267948966 rad pos: 31.5,0.5 parent: 2 type: Transform - - uid: 29258 + - uid: 29466 components: - pos: 61.5,7.5 parent: 2 type: Transform - - uid: 29259 + - uid: 29467 components: - pos: 61.5,5.5 parent: 2 type: Transform - - uid: 29260 + - uid: 29468 components: - pos: 64.5,1.5 parent: 2 type: Transform - - uid: 29261 + - uid: 29469 components: - pos: 65.5,0.5 parent: 2 type: Transform - - uid: 29262 + - uid: 29470 components: - pos: 60.5,0.5 parent: 2 type: Transform - - uid: 29263 + - uid: 29471 components: - pos: 17.5,30.5 parent: 2 type: Transform - - uid: 29264 + - uid: 29472 components: - rot: 1.5707963267948966 rad pos: 55.5,54.5 parent: 2 type: Transform - - uid: 29265 + - uid: 29473 components: - rot: 1.5707963267948966 rad pos: 56.5,54.5 parent: 2 type: Transform - - uid: 29266 + - uid: 29474 components: - rot: -1.5707963267948966 rad pos: -13.5,47.5 parent: 2 type: Transform - - uid: 29267 + - uid: 29475 components: - rot: -1.5707963267948966 rad pos: -13.5,48.5 parent: 2 type: Transform - - uid: 29268 + - uid: 29476 components: - pos: 47.5,34.5 parent: 2 type: Transform - - uid: 29269 + - uid: 29477 components: - pos: 47.5,33.5 parent: 2 type: Transform - - uid: 29270 + - uid: 29478 components: - pos: 47.5,31.5 parent: 2 type: Transform - - uid: 29271 + - uid: 29479 components: - pos: -9.5,47.5 parent: 2 type: Transform - - uid: 29272 + - uid: 29480 components: - pos: -10.5,47.5 parent: 2 type: Transform - - uid: 29273 + - uid: 29481 components: - rot: -1.5707963267948966 rad pos: -10.5,48.5 parent: 2 type: Transform - - uid: 29274 + - uid: 29482 components: - pos: -3.5,20.5 parent: 2 type: Transform - - uid: 29275 + - uid: 29483 components: - pos: -6.5,20.5 parent: 2 type: Transform - - uid: 29276 + - uid: 29484 components: - pos: -7.5,20.5 parent: 2 type: Transform - - uid: 29277 + - uid: 29485 components: - pos: -9.5,19.5 parent: 2 type: Transform - - uid: 29278 + - uid: 29486 components: - pos: -9.5,20.5 parent: 2 type: Transform - - uid: 29279 + - uid: 29487 components: - pos: -11.5,20.5 parent: 2 type: Transform - - uid: 29280 + - uid: 29488 components: - pos: -11.5,19.5 parent: 2 type: Transform - - uid: 29281 + - uid: 29489 components: - pos: 33.5,23.5 parent: 2 type: Transform - - uid: 29282 + - uid: 29490 components: - pos: 34.5,23.5 parent: 2 type: Transform - - uid: 29283 + - uid: 29491 components: - pos: 33.5,17.5 parent: 2 type: Transform - - uid: 29284 + - uid: 29492 components: - rot: 3.141592653589793 rad pos: 51.5,14.5 parent: 2 type: Transform - - uid: 29285 + - uid: 29493 components: - rot: 3.141592653589793 rad pos: 55.5,14.5 parent: 2 type: Transform - - uid: 29286 + - uid: 29494 components: - rot: 3.141592653589793 rad pos: 55.5,10.5 parent: 2 type: Transform - - uid: 29287 + - uid: 29495 components: - rot: 3.141592653589793 rad pos: 51.5,10.5 parent: 2 type: Transform - - uid: 29288 + - uid: 29496 components: - pos: 61.5,6.5 parent: 2 type: Transform - - uid: 29289 + - uid: 29497 components: - pos: 43.5,18.5 parent: 2 type: Transform - - uid: 29290 + - uid: 29498 components: - pos: 43.5,21.5 parent: 2 type: Transform - - uid: 29291 + - uid: 29499 components: - pos: 44.5,-0.5 parent: 2 type: Transform - - uid: 29292 + - uid: 29500 components: - pos: 47.5,-0.5 parent: 2 type: Transform - - uid: 29293 + - uid: 29501 components: - pos: 48.5,24.5 parent: 2 type: Transform - - uid: 29294 + - uid: 29502 components: - pos: 48.5,23.5 parent: 2 type: Transform - - uid: 29295 + - uid: 29503 components: - pos: 48.5,22.5 parent: 2 type: Transform - - uid: 29296 + - uid: 29504 components: - pos: 51.5,24.5 parent: 2 type: Transform - - uid: 29297 + - uid: 29505 components: - pos: 51.5,23.5 parent: 2 type: Transform - - uid: 29298 + - uid: 29506 components: - pos: 51.5,22.5 parent: 2 type: Transform - - uid: 29299 + - uid: 29507 components: - pos: 54.5,24.5 parent: 2 type: Transform - - uid: 29300 + - uid: 29508 components: - pos: 54.5,23.5 parent: 2 type: Transform - - uid: 29301 + - uid: 29509 components: - pos: 54.5,22.5 parent: 2 type: Transform - - uid: 29302 + - uid: 29510 components: - pos: 57.5,24.5 parent: 2 type: Transform - - uid: 29303 + - uid: 29511 components: - pos: 57.5,23.5 parent: 2 type: Transform - - uid: 29304 + - uid: 29512 components: - pos: 57.5,22.5 parent: 2 type: Transform - - uid: 29305 + - uid: 29513 components: - pos: 60.5,24.5 parent: 2 type: Transform - - uid: 29306 + - uid: 29514 components: - pos: 60.5,23.5 parent: 2 type: Transform - - uid: 29307 + - uid: 29515 components: - pos: 60.5,22.5 parent: 2 type: Transform - - uid: 29308 + - uid: 29516 components: - pos: 62.5,20.5 parent: 2 type: Transform - - uid: 29309 + - uid: 29517 components: - pos: 61.5,20.5 parent: 2 type: Transform - - uid: 29310 + - uid: 29518 components: - pos: 60.5,20.5 parent: 2 type: Transform - - uid: 29311 + - uid: 29519 components: - rot: 1.5707963267948966 rad pos: 46.5,27.5 parent: 2 type: Transform - - uid: 29312 + - uid: 29520 components: - rot: 1.5707963267948966 rad pos: 45.5,27.5 parent: 2 type: Transform - - uid: 29313 + - uid: 29521 components: - rot: 1.5707963267948966 rad pos: 44.5,27.5 parent: 2 type: Transform - - uid: 29314 + - uid: 29522 components: - rot: 1.5707963267948966 rad pos: 53.5,54.5 parent: 2 type: Transform - - uid: 29315 + - uid: 29523 components: - pos: 62.5,24.5 parent: 2 type: Transform - - uid: 29316 + - uid: 29524 components: - pos: 62.5,23.5 parent: 2 type: Transform - - uid: 29317 + - uid: 29525 components: - rot: 1.5707963267948966 rad pos: 48.5,11.5 parent: 2 type: Transform - - uid: 29318 + - uid: 29526 components: - rot: 1.5707963267948966 rad pos: 48.5,17.5 parent: 2 type: Transform - - uid: 29319 + - uid: 29527 components: - rot: 1.5707963267948966 rad pos: 58.5,17.5 parent: 2 type: Transform - - uid: 29320 + - uid: 29528 components: - rot: 1.5707963267948966 rad pos: 58.5,11.5 parent: 2 type: Transform - - uid: 29321 + - uid: 29529 components: - rot: 3.141592653589793 rad pos: 61.5,12.5 parent: 2 type: Transform - - uid: 29322 + - uid: 29530 components: - rot: 3.141592653589793 rad pos: 61.5,11.5 parent: 2 type: Transform - - uid: 29323 + - uid: 29531 components: - rot: 3.141592653589793 rad pos: 61.5,10.5 parent: 2 type: Transform - - uid: 29324 + - uid: 29532 components: - rot: 3.141592653589793 rad pos: 61.5,9.5 parent: 2 type: Transform - - uid: 29325 + - uid: 29533 components: - rot: 3.141592653589793 rad pos: 61.5,8.5 parent: 2 type: Transform - - uid: 29326 + - uid: 29534 components: - rot: 3.141592653589793 rad pos: 62.5,8.5 parent: 2 type: Transform - - uid: 29327 + - uid: 29535 components: - rot: 3.141592653589793 rad pos: 63.5,8.5 parent: 2 type: Transform - - uid: 29328 + - uid: 29536 components: - rot: 3.141592653589793 rad pos: 63.5,12.5 parent: 2 type: Transform - - uid: 29329 + - uid: 29537 components: - rot: 3.141592653589793 rad pos: 63.5,10.5 parent: 2 type: Transform - - uid: 29330 + - uid: 29538 components: - rot: -1.5707963267948966 rad pos: 51.5,12.5 parent: 2 type: Transform - - uid: 29331 + - uid: 29539 components: - pos: 58.5,-0.5 parent: 2 type: Transform - - uid: 29332 + - uid: 29540 components: - pos: 61.5,0.5 parent: 2 type: Transform - - uid: 29333 + - uid: 29541 components: - pos: 62.5,0.5 parent: 2 type: Transform - - uid: 29334 + - uid: 29542 components: - rot: 1.5707963267948966 rad pos: 55.5,2.5 parent: 2 type: Transform - - uid: 29335 + - uid: 29543 components: - rot: 1.5707963267948966 rad pos: 55.5,1.5 parent: 2 type: Transform - - uid: 29336 + - uid: 29544 components: - rot: 1.5707963267948966 rad pos: 55.5,0.5 parent: 2 type: Transform - - uid: 29337 + - uid: 29545 components: - rot: 1.5707963267948966 rad pos: 55.5,-1.5 parent: 2 type: Transform - - uid: 29338 + - uid: 29546 components: - rot: 1.5707963267948966 rad pos: 49.5,-0.5 parent: 2 type: Transform - - uid: 29339 + - uid: 29547 components: - rot: 1.5707963267948966 rad pos: 49.5,-2.5 parent: 2 type: Transform - - uid: 29340 + - uid: 29548 components: - rot: 1.5707963267948966 rad pos: 49.5,-1.5 parent: 2 type: Transform - - uid: 29341 + - uid: 29549 components: - rot: 1.5707963267948966 rad pos: 50.5,-2.5 parent: 2 type: Transform - - uid: 29342 + - uid: 29550 components: - rot: 1.5707963267948966 rad pos: 50.5,-3.5 parent: 2 type: Transform - - uid: 29343 + - uid: 29551 components: - rot: 1.5707963267948966 rad pos: 55.5,-2.5 parent: 2 type: Transform - - uid: 29344 + - uid: 29552 components: - rot: 1.5707963267948966 rad pos: 54.5,-2.5 parent: 2 type: Transform - - uid: 29345 + - uid: 29553 components: - rot: 1.5707963267948966 rad pos: 54.5,-3.5 parent: 2 type: Transform - - uid: 29346 + - uid: 29554 components: - rot: 1.5707963267948966 rad pos: 50.5,-4.5 parent: 2 type: Transform - - uid: 29347 + - uid: 29555 components: - rot: 1.5707963267948966 rad pos: 49.5,-4.5 parent: 2 type: Transform - - uid: 29348 + - uid: 29556 components: - rot: 1.5707963267948966 rad pos: 48.5,-4.5 parent: 2 type: Transform - - uid: 29349 + - uid: 29557 components: - rot: 1.5707963267948966 rad pos: 47.5,-4.5 parent: 2 type: Transform - - uid: 29350 + - uid: 29558 components: - rot: 1.5707963267948966 rad pos: 46.5,-4.5 parent: 2 type: Transform - - uid: 29351 + - uid: 29559 components: - rot: -1.5707963267948966 rad pos: 45.5,-2.5 parent: 2 type: Transform - - uid: 29352 + - uid: 29560 components: - pos: 49.5,-5.5 parent: 2 type: Transform - - uid: 29353 + - uid: 29561 components: - pos: 49.5,-6.5 parent: 2 type: Transform - - uid: 29354 + - uid: 29562 components: - pos: 49.5,-10.5 parent: 2 type: Transform - - uid: 29355 + - uid: 29563 components: - pos: 48.5,-10.5 parent: 2 type: Transform - - uid: 29356 + - uid: 29564 components: - rot: 1.5707963267948966 rad pos: 54.5,-4.5 parent: 2 type: Transform - - uid: 29357 + - uid: 29565 components: - rot: 1.5707963267948966 rad pos: 55.5,-4.5 parent: 2 type: Transform - - uid: 29358 + - uid: 29566 components: - rot: 1.5707963267948966 rad pos: 56.5,-4.5 parent: 2 type: Transform - - uid: 29359 + - uid: 29567 components: - rot: 1.5707963267948966 rad pos: 58.5,-4.5 parent: 2 type: Transform - - uid: 29360 + - uid: 29568 components: - pos: 19.5,-48.5 parent: 2 type: Transform - - uid: 29361 + - uid: 29569 components: - pos: 18.5,-48.5 parent: 2 type: Transform - - uid: 29362 + - uid: 29570 components: - rot: -1.5707963267948966 rad pos: 45.5,-4.5 parent: 2 type: Transform - - uid: 29363 + - uid: 29571 components: - rot: -1.5707963267948966 rad pos: 40.5,-2.5 parent: 2 type: Transform - - uid: 29364 + - uid: 29572 components: - rot: -1.5707963267948966 rad pos: 40.5,-3.5 parent: 2 type: Transform - - uid: 29365 + - uid: 29573 components: - rot: -1.5707963267948966 rad pos: 45.5,-1.5 parent: 2 type: Transform - - uid: 29366 + - uid: 29574 components: - rot: -1.5707963267948966 rad pos: 40.5,-5.5 parent: 2 type: Transform - - uid: 29367 + - uid: 29575 components: - rot: -1.5707963267948966 rad pos: 39.5,-6.5 parent: 2 type: Transform - - uid: 29368 + - uid: 29576 components: - rot: -1.5707963267948966 rad pos: 45.5,-5.5 parent: 2 type: Transform - - uid: 29369 + - uid: 29577 components: - rot: -1.5707963267948966 rad pos: 37.5,-6.5 parent: 2 type: Transform - - uid: 29370 + - uid: 29578 components: - rot: -1.5707963267948966 rad pos: 37.5,-7.5 parent: 2 type: Transform - - uid: 29371 + - uid: 29579 components: - rot: -1.5707963267948966 rad pos: 45.5,-3.5 parent: 2 type: Transform - - uid: 29372 + - uid: 29580 components: - pos: 40.5,-6.5 parent: 2 type: Transform - - uid: 29373 + - uid: 29581 components: - pos: -14.5,-18.5 parent: 2 type: Transform - - uid: 29374 + - uid: 29582 components: - pos: 24.5,-54.5 parent: 2 type: Transform - - uid: 29375 + - uid: 29583 components: - pos: -17.5,-21.5 parent: 2 type: Transform - - uid: 29376 + - uid: 29584 components: - pos: 55.5,-7.5 parent: 2 type: Transform - - uid: 29377 + - uid: 29585 components: - pos: 49.5,-3.5 parent: 2 type: Transform - - uid: 29378 + - uid: 29586 components: - pos: 58.5,0.5 parent: 2 type: Transform - - uid: 29379 + - uid: 29587 components: - pos: 58.5,-1.5 parent: 2 type: Transform - - uid: 29380 + - uid: 29588 components: - pos: 58.5,-2.5 parent: 2 type: Transform - - uid: 29381 + - uid: 29589 components: - pos: 57.5,-2.5 parent: 2 type: Transform - - uid: 29382 + - uid: 29590 components: - pos: 59.5,-4.5 parent: 2 type: Transform - - uid: 29383 + - uid: 29591 components: - pos: 48.5,-9.5 parent: 2 type: Transform - - uid: 29384 + - uid: 29592 components: - pos: 48.5,-6.5 parent: 2 type: Transform - - uid: 29385 + - uid: 29593 components: - pos: 48.5,-7.5 parent: 2 type: Transform - - uid: 29386 + - uid: 29594 components: - pos: 6.5,-17.5 parent: 2 type: Transform - - uid: 29387 + - uid: 29595 components: - rot: 1.5707963267948966 rad pos: 66.5,-6.5 parent: 2 type: Transform - - uid: 29388 + - uid: 29596 components: - rot: 1.5707963267948966 rad pos: 66.5,-12.5 parent: 2 type: Transform - - uid: 29389 + - uid: 29597 components: - rot: 1.5707963267948966 rad pos: 66.5,-10.5 parent: 2 type: Transform - - uid: 29390 + - uid: 29598 components: - pos: 65.5,-4.5 parent: 2 type: Transform - - uid: 29391 + - uid: 29599 components: - pos: 63.5,-4.5 parent: 2 type: Transform - - uid: 29392 + - uid: 29600 components: - pos: 61.5,-4.5 parent: 2 type: Transform - - uid: 29393 + - uid: 29601 components: - rot: -1.5707963267948966 rad pos: 62.5,-4.5 parent: 2 type: Transform - - uid: 29394 + - uid: 29602 components: - pos: 53.5,-14.5 parent: 2 type: Transform - - uid: 29395 + - uid: 29603 components: - pos: 61.5,-14.5 parent: 2 type: Transform - - uid: 29396 + - uid: 29604 components: - pos: 60.5,-14.5 parent: 2 type: Transform - - uid: 29397 + - uid: 29605 components: - pos: 59.5,-7.5 parent: 2 type: Transform - - uid: 29398 + - uid: 29606 components: - pos: 58.5,-7.5 parent: 2 type: Transform - - uid: 29399 + - uid: 29607 components: - pos: 57.5,-7.5 parent: 2 type: Transform - - uid: 29400 + - uid: 29608 components: - pos: 56.5,-7.5 parent: 2 type: Transform - - uid: 29401 + - uid: 29609 components: - pos: 59.5,-9.5 parent: 2 type: Transform - - uid: 29402 + - uid: 29610 components: - pos: 58.5,-9.5 parent: 2 type: Transform - - uid: 29403 + - uid: 29611 components: - pos: 57.5,-9.5 parent: 2 type: Transform - - uid: 29404 + - uid: 29612 components: - pos: 56.5,-9.5 parent: 2 type: Transform - - uid: 29405 + - uid: 29613 components: - pos: 55.5,-9.5 parent: 2 type: Transform - - uid: 29406 + - uid: 29614 components: - pos: 55.5,-8.5 parent: 2 type: Transform - - uid: 29407 + - uid: 29615 components: - rot: 3.141592653589793 rad pos: 58.5,-3.5 parent: 2 type: Transform - - uid: 29408 + - uid: 29616 components: - pos: 60.5,-29.5 parent: 2 type: Transform - - uid: 29409 + - uid: 29617 components: - pos: 60.5,-30.5 parent: 2 type: Transform - - uid: 29410 + - uid: 29618 components: - pos: 49.5,-11.5 parent: 2 type: Transform - - uid: 29411 + - uid: 29619 components: - pos: 49.5,-12.5 parent: 2 type: Transform - - uid: 29412 + - uid: 29620 components: - pos: 50.5,-12.5 parent: 2 type: Transform - - uid: 29413 + - uid: 29621 components: - pos: 35.5,-11.5 parent: 2 type: Transform - - uid: 29414 + - uid: 29622 components: - pos: 37.5,-9.5 parent: 2 type: Transform - - uid: 29415 + - uid: 29623 components: - pos: 38.5,-9.5 parent: 2 type: Transform - - uid: 29416 + - uid: 29624 components: - pos: 39.5,-9.5 parent: 2 type: Transform - - uid: 29417 + - uid: 29625 components: - pos: 39.5,-8.5 parent: 2 type: Transform - - uid: 29418 + - uid: 29626 components: - pos: 41.5,-6.5 parent: 2 type: Transform - - uid: 29419 + - uid: 29627 components: - pos: 41.5,-7.5 parent: 2 type: Transform - - uid: 29420 + - uid: 29628 components: - pos: 41.5,-8.5 parent: 2 type: Transform - - uid: 29421 + - uid: 29629 components: - pos: 41.5,-9.5 parent: 2 type: Transform - - uid: 29422 + - uid: 29630 components: - pos: 41.5,-10.5 parent: 2 type: Transform - - uid: 29423 + - uid: 29631 components: - pos: 39.5,-10.5 parent: 2 type: Transform - - uid: 29424 + - uid: 29632 components: - pos: 39.5,-11.5 parent: 2 type: Transform - - uid: 29425 + - uid: 29633 components: - pos: 37.5,-11.5 parent: 2 type: Transform - - uid: 29426 + - uid: 29634 components: - pos: 37.5,-12.5 parent: 2 type: Transform - - uid: 29427 + - uid: 29635 components: - pos: 37.5,-14.5 parent: 2 type: Transform - - uid: 29428 + - uid: 29636 components: - pos: 45.5,-6.5 parent: 2 type: Transform - - uid: 29429 + - uid: 29637 components: - pos: 45.5,-7.5 parent: 2 type: Transform - - uid: 29430 + - uid: 29638 components: - pos: 45.5,-8.5 parent: 2 type: Transform - - uid: 29431 + - uid: 29639 components: - pos: 45.5,-9.5 parent: 2 type: Transform - - uid: 29432 + - uid: 29640 components: - pos: 43.5,-9.5 parent: 2 type: Transform - - uid: 29433 + - uid: 29641 components: - pos: 45.5,-10.5 parent: 2 type: Transform - - uid: 29434 + - uid: 29642 components: - pos: 45.5,-12.5 parent: 2 type: Transform - - uid: 29435 + - uid: 29643 components: - pos: 44.5,-12.5 parent: 2 type: Transform - - uid: 29436 + - uid: 29644 components: - pos: 42.5,-12.5 parent: 2 type: Transform - - uid: 29437 + - uid: 29645 components: - pos: 41.5,-12.5 parent: 2 type: Transform - - uid: 29438 + - uid: 29646 components: - pos: 41.5,-13.5 parent: 2 type: Transform - - uid: 29439 + - uid: 29647 components: - pos: 40.5,-13.5 parent: 2 type: Transform - - uid: 29440 + - uid: 29648 components: - pos: 39.5,-13.5 parent: 2 type: Transform - - uid: 29441 + - uid: 29649 components: - pos: 46.5,-12.5 parent: 2 type: Transform - - uid: 29442 + - uid: 29650 components: - pos: 47.5,-12.5 parent: 2 type: Transform - - uid: 29443 + - uid: 29651 components: - pos: 47.5,-11.5 parent: 2 type: Transform - - uid: 29444 + - uid: 29652 components: - pos: 47.5,-10.5 parent: 2 type: Transform - - uid: 29445 + - uid: 29653 components: - pos: 46.5,-6.5 parent: 2 type: Transform - - uid: 29446 + - uid: 29654 components: - pos: 69.5,-35.5 parent: 2 type: Transform - - uid: 29447 + - uid: 29655 components: - pos: 66.5,-36.5 parent: 2 type: Transform - - uid: 29448 + - uid: 29656 components: - pos: 58.5,-40.5 parent: 2 type: Transform - - uid: 29449 + - uid: 29657 components: - pos: 58.5,-41.5 parent: 2 type: Transform - - uid: 29450 + - uid: 29658 components: - pos: 58.5,-42.5 parent: 2 type: Transform - - uid: 29451 + - uid: 29659 components: - pos: 65.5,-36.5 parent: 2 type: Transform - - uid: 29452 + - uid: 29660 components: - rot: 1.5707963267948966 rad pos: 60.5,-38.5 parent: 2 type: Transform - - uid: 29453 + - uid: 29661 components: - rot: 1.5707963267948966 rad pos: 60.5,-39.5 parent: 2 type: Transform - - uid: 29454 + - uid: 29662 components: - pos: 60.5,-41.5 parent: 2 type: Transform - - uid: 29455 + - uid: 29663 components: - pos: 41.5,-40.5 parent: 2 type: Transform - - uid: 29456 + - uid: 29664 components: - rot: -1.5707963267948966 rad pos: 44.5,-34.5 parent: 2 type: Transform - - uid: 29457 + - uid: 29665 components: - rot: -1.5707963267948966 rad pos: 47.5,-34.5 parent: 2 type: Transform - - uid: 29458 + - uid: 29666 components: - rot: -1.5707963267948966 rad pos: 42.5,-34.5 parent: 2 type: Transform - - uid: 29459 + - uid: 29667 components: - rot: -1.5707963267948966 rad pos: 51.5,-36.5 parent: 2 type: Transform - - uid: 29460 + - uid: 29668 components: - rot: 3.141592653589793 rad pos: 44.5,-40.5 parent: 2 type: Transform - - uid: 29461 + - uid: 29669 components: - pos: 47.5,-40.5 parent: 2 type: Transform - - uid: 29462 + - uid: 29670 components: - pos: 47.5,-44.5 parent: 2 type: Transform - - uid: 29463 + - uid: 29671 components: - pos: 46.5,-44.5 parent: 2 type: Transform - - uid: 29464 + - uid: 29672 components: - pos: 45.5,-44.5 parent: 2 type: Transform - - uid: 29465 + - uid: 29673 components: - pos: 41.5,-44.5 parent: 2 type: Transform - - uid: 29466 + - uid: 29674 components: - rot: -1.5707963267948966 rad pos: 40.5,-34.5 parent: 2 type: Transform - - uid: 29467 + - uid: 29675 components: - rot: -1.5707963267948966 rad pos: 52.5,-36.5 parent: 2 type: Transform - - uid: 29468 + - uid: 29676 components: - pos: 53.5,-38.5 parent: 2 type: Transform - - uid: 29469 + - uid: 29677 components: - rot: -1.5707963267948966 rad pos: 41.5,-34.5 parent: 2 type: Transform - - uid: 29470 + - uid: 29678 components: - pos: 47.5,-39.5 parent: 2 type: Transform - - uid: 29471 + - uid: 29679 components: - pos: 47.5,-38.5 parent: 2 type: Transform - - uid: 29472 + - uid: 29680 components: - pos: 54.5,-39.5 parent: 2 type: Transform - - uid: 29473 + - uid: 29681 components: - pos: 52.5,-38.5 parent: 2 type: Transform - - uid: 29474 + - uid: 29682 components: - pos: 54.5,-38.5 parent: 2 type: Transform - - uid: 29475 + - uid: 29683 components: - pos: 56.5,-33.5 parent: 2 type: Transform - - uid: 29476 + - uid: 29684 components: - pos: 59.5,-37.5 parent: 2 type: Transform - - uid: 29477 + - uid: 29685 components: - pos: 59.5,-36.5 parent: 2 type: Transform - - uid: 29478 + - uid: 29686 components: - pos: 58.5,-36.5 parent: 2 type: Transform - - uid: 29479 + - uid: 29687 components: - pos: 47.5,-47.5 parent: 2 type: Transform - - uid: 29480 + - uid: 29688 components: - pos: 54.5,-43.5 parent: 2 type: Transform - - uid: 29481 + - uid: 29689 components: - pos: 51.5,-48.5 parent: 2 type: Transform - - uid: 29482 + - uid: 29690 components: - pos: 48.5,-48.5 parent: 2 type: Transform - - uid: 29483 + - uid: 29691 components: - pos: 47.5,-48.5 parent: 2 type: Transform - - uid: 29484 + - uid: 29692 components: - pos: 56.5,-39.5 parent: 2 type: Transform - - uid: 29485 + - uid: 29693 components: - pos: 57.5,-39.5 parent: 2 type: Transform - - uid: 29486 + - uid: 29694 components: - rot: -1.5707963267948966 rad pos: 48.5,-36.5 parent: 2 type: Transform - - uid: 29487 + - uid: 29695 components: - pos: 58.5,-43.5 parent: 2 type: Transform - - uid: 29488 + - uid: 29696 components: - pos: 55.5,-43.5 parent: 2 type: Transform - - uid: 29489 + - uid: 29697 components: - pos: 56.5,-43.5 parent: 2 type: Transform - - uid: 29490 + - uid: 29698 components: - pos: 47.5,-49.5 parent: 2 type: Transform - - uid: 29491 + - uid: 29699 components: - pos: 47.5,-50.5 parent: 2 type: Transform - - uid: 29492 + - uid: 29700 components: - pos: 46.5,-50.5 parent: 2 type: Transform - - uid: 29493 + - uid: 29701 components: - pos: 45.5,-50.5 parent: 2 type: Transform - - uid: 29494 + - uid: 29702 components: - pos: 44.5,-50.5 parent: 2 type: Transform - - uid: 29495 + - uid: 29703 components: - pos: 43.5,-50.5 parent: 2 type: Transform - - uid: 29496 + - uid: 29704 components: - pos: 42.5,-50.5 parent: 2 type: Transform - - uid: 29497 + - uid: 29705 components: - pos: 41.5,-50.5 parent: 2 type: Transform - - uid: 29498 + - uid: 29706 components: - pos: 57.5,-31.5 parent: 2 type: Transform - - uid: 29499 + - uid: 29707 components: - pos: 47.5,-35.5 parent: 2 type: Transform - - uid: 29500 + - uid: 29708 components: - rot: -1.5707963267948966 rad pos: 46.5,-34.5 parent: 2 type: Transform - - uid: 29501 + - uid: 29709 components: - pos: 66.5,-49.5 parent: 2 type: Transform - - uid: 29502 + - uid: 29710 components: - pos: 66.5,-44.5 parent: 2 type: Transform - - uid: 29503 + - uid: 29711 components: - pos: 66.5,-43.5 parent: 2 type: Transform - - uid: 29504 + - uid: 29712 components: - pos: 37.5,-44.5 parent: 2 type: Transform - - uid: 29505 + - uid: 29713 components: - pos: 40.5,-45.5 parent: 2 type: Transform - - uid: 29506 + - uid: 29714 components: - pos: 40.5,-47.5 parent: 2 type: Transform - - uid: 29507 + - uid: 29715 components: - pos: 40.5,-44.5 parent: 2 type: Transform - - uid: 29508 + - uid: 29716 components: - pos: 40.5,-48.5 parent: 2 type: Transform - - uid: 29509 + - uid: 29717 components: - rot: -1.5707963267948966 rad pos: -17.5,23.5 parent: 2 type: Transform - - uid: 29510 + - uid: 29718 components: - pos: 46.5,-40.5 parent: 2 type: Transform - - uid: 29511 + - uid: 29719 components: - pos: 52.5,-59.5 parent: 2 type: Transform - - uid: 29512 + - uid: 29720 components: - pos: 52.5,-60.5 parent: 2 type: Transform - - uid: 29513 + - uid: 29721 components: - pos: 66.5,-35.5 parent: 2 type: Transform - - uid: 29514 + - uid: 29722 components: - pos: 67.5,-35.5 parent: 2 type: Transform - - uid: 29515 + - uid: 29723 components: - pos: 68.5,-35.5 parent: 2 type: Transform - - uid: 29516 + - uid: 29724 components: - rot: -1.5707963267948966 rad pos: 66.5,-47.5 parent: 2 type: Transform - - uid: 29517 + - uid: 29725 components: - rot: 3.141592653589793 rad pos: 40.5,-46.5 parent: 2 type: Transform - - uid: 29518 + - uid: 29726 components: - pos: 8.5,-51.5 parent: 2 type: Transform - - uid: 29519 + - uid: 29727 components: - pos: 38.5,-47.5 parent: 2 type: Transform - - uid: 29520 + - uid: 29728 components: - pos: 37.5,-47.5 parent: 2 type: Transform - - uid: 29521 + - uid: 29729 components: - pos: 37.5,-46.5 parent: 2 type: Transform - - uid: 29522 + - uid: 29730 components: - pos: 37.5,-45.5 parent: 2 type: Transform - - uid: 29523 + - uid: 29731 components: - pos: 57.5,-63.5 parent: 2 type: Transform - - uid: 29524 + - uid: 29732 components: - pos: 57.5,-36.5 parent: 2 type: Transform - - uid: 29525 + - uid: 29733 components: - pos: 74.5,-50.5 parent: 2 type: Transform - - uid: 29526 + - uid: 29734 components: - pos: 59.5,-30.5 parent: 2 type: Transform - - uid: 29527 + - uid: 29735 components: - pos: 56.5,-31.5 parent: 2 type: Transform - - uid: 29528 + - uid: 29736 components: - pos: 58.5,-31.5 parent: 2 type: Transform - - uid: 29529 + - uid: 29737 components: - rot: -1.5707963267948966 rad pos: 47.5,-36.5 parent: 2 type: Transform - - uid: 29530 + - uid: 29738 components: - rot: 1.5707963267948966 rad pos: 29.5,-46.5 parent: 2 type: Transform - - uid: 29531 + - uid: 29739 components: - rot: 1.5707963267948966 rad pos: 30.5,-46.5 parent: 2 type: Transform - - uid: 29532 + - uid: 29740 components: - rot: 1.5707963267948966 rad pos: 32.5,-46.5 parent: 2 type: Transform - - uid: 29533 + - uid: 29741 components: - rot: 1.5707963267948966 rad pos: 34.5,-46.5 parent: 2 type: Transform - - uid: 29534 + - uid: 29742 components: - rot: 1.5707963267948966 rad pos: 35.5,-46.5 parent: 2 type: Transform - - uid: 29535 + - uid: 29743 components: - rot: 1.5707963267948966 rad pos: 35.5,-45.5 parent: 2 type: Transform - - uid: 29536 + - uid: 29744 components: - rot: 1.5707963267948966 rad pos: 35.5,-47.5 parent: 2 type: Transform - - uid: 29537 + - uid: 29745 components: - rot: 1.5707963267948966 rad pos: 35.5,-48.5 parent: 2 type: Transform - - uid: 29538 + - uid: 29746 components: - rot: 1.5707963267948966 rad pos: 35.5,-49.5 parent: 2 type: Transform - - uid: 29539 + - uid: 29747 components: - rot: 1.5707963267948966 rad pos: 35.5,-50.5 parent: 2 type: Transform - - uid: 29540 + - uid: 29748 components: - rot: 1.5707963267948966 rad pos: 35.5,-51.5 parent: 2 type: Transform - - uid: 29541 + - uid: 29749 components: - rot: 1.5707963267948966 rad pos: 35.5,-53.5 parent: 2 type: Transform - - uid: 29542 + - uid: 29750 components: - pos: 35.5,-52.5 parent: 2 type: Transform - - uid: 29543 + - uid: 29751 components: - rot: 1.5707963267948966 rad pos: 35.5,-55.5 parent: 2 type: Transform - - uid: 29544 + - uid: 29752 components: - rot: 1.5707963267948966 rad pos: 35.5,-56.5 parent: 2 type: Transform - - uid: 29545 + - uid: 29753 components: - rot: 1.5707963267948966 rad pos: 35.5,-57.5 parent: 2 type: Transform - - uid: 29546 + - uid: 29754 components: - rot: 1.5707963267948966 rad pos: 34.5,-57.5 parent: 2 type: Transform - - uid: 29547 + - uid: 29755 components: - pos: 60.5,-37.5 parent: 2 type: Transform - - uid: 29548 + - uid: 29756 components: - pos: 44.5,-55.5 parent: 2 type: Transform - - uid: 29549 + - uid: 29757 components: - pos: 44.5,-54.5 parent: 2 type: Transform - - uid: 29550 + - uid: 29758 components: - pos: 44.5,-53.5 parent: 2 type: Transform - - uid: 29551 + - uid: 29759 components: - pos: 44.5,-52.5 parent: 2 type: Transform - - uid: 29552 + - uid: 29760 components: - pos: 44.5,-51.5 parent: 2 type: Transform - - uid: 29553 + - uid: 29761 components: - pos: 45.5,-55.5 parent: 2 type: Transform - - uid: 29554 + - uid: 29762 components: - rot: 3.141592653589793 rad pos: 46.5,-55.5 parent: 2 type: Transform - - uid: 29555 + - uid: 29763 components: - pos: 47.5,-55.5 parent: 2 type: Transform - - uid: 29556 + - uid: 29764 components: - rot: 3.141592653589793 rad pos: 44.5,-57.5 parent: 2 type: Transform - - uid: 29557 + - uid: 29765 components: - rot: 3.141592653589793 rad pos: 44.5,-58.5 parent: 2 type: Transform - - uid: 29558 + - uid: 29766 components: - rot: 3.141592653589793 rad pos: 44.5,-59.5 parent: 2 type: Transform - - uid: 29559 + - uid: 29767 components: - rot: 3.141592653589793 rad pos: 44.5,-60.5 parent: 2 type: Transform - - uid: 29560 + - uid: 29768 components: - pos: 41.5,-63.5 parent: 2 type: Transform - - uid: 29561 + - uid: 29769 components: - pos: 41.5,-62.5 parent: 2 type: Transform - - uid: 29562 + - uid: 29770 components: - pos: 46.5,-61.5 parent: 2 type: Transform - - uid: 29563 + - uid: 29771 components: - pos: 52.5,-56.5 parent: 2 type: Transform - - uid: 29564 + - uid: 29772 components: - pos: 48.5,-59.5 parent: 2 type: Transform - - uid: 29565 + - uid: 29773 components: - pos: 47.5,-59.5 parent: 2 type: Transform - - uid: 29566 + - uid: 29774 components: - pos: 47.5,-60.5 parent: 2 type: Transform - - uid: 29567 + - uid: 29775 components: - pos: 47.5,-61.5 parent: 2 type: Transform - - uid: 29568 + - uid: 29776 components: - pos: 45.5,-61.5 parent: 2 type: Transform - - uid: 29569 + - uid: 29777 components: - pos: 44.5,-61.5 parent: 2 type: Transform - - uid: 29570 + - uid: 29778 components: - pos: 43.5,-61.5 parent: 2 type: Transform - - uid: 29571 + - uid: 29779 components: - pos: 42.5,-61.5 parent: 2 type: Transform - - uid: 29572 + - uid: 29780 components: - pos: 41.5,-61.5 parent: 2 type: Transform - - uid: 29573 + - uid: 29781 components: - pos: -18.5,0.5 parent: 2 type: Transform - - uid: 29574 + - uid: 29782 components: - pos: -20.5,0.5 parent: 2 type: Transform - - uid: 29575 + - uid: 29783 components: - rot: -1.5707963267948966 rad pos: -22.5,-16.5 parent: 2 type: Transform - - uid: 29576 + - uid: 29784 components: - pos: -30.5,-9.5 parent: 2 type: Transform - - uid: 29577 + - uid: 29785 components: - pos: -27.5,-15.5 parent: 2 type: Transform - - uid: 29578 + - uid: 29786 components: - pos: -28.5,-15.5 parent: 2 type: Transform - - uid: 29579 + - uid: 29787 components: - pos: -29.5,-15.5 parent: 2 type: Transform - - uid: 29580 + - uid: 29788 components: - pos: -30.5,-15.5 parent: 2 type: Transform - - uid: 29581 + - uid: 29789 components: - pos: -30.5,-11.5 parent: 2 type: Transform - - uid: 29582 + - uid: 29790 components: - pos: -30.5,-14.5 parent: 2 type: Transform - - uid: 29583 + - uid: 29791 components: - pos: -33.5,-13.5 parent: 2 type: Transform - - uid: 29584 + - uid: 29792 components: - pos: -27.5,-19.5 parent: 2 type: Transform - - uid: 29585 + - uid: 29793 components: - rot: -1.5707963267948966 rad pos: -22.5,-18.5 parent: 2 type: Transform - - uid: 29586 + - uid: 29794 components: - pos: -30.5,-19.5 parent: 2 type: Transform - - uid: 29587 + - uid: 29795 components: - rot: -1.5707963267948966 rad pos: -27.5,-6.5 parent: 2 type: Transform - - uid: 29588 + - uid: 29796 components: - rot: -1.5707963267948966 rad pos: -27.5,-5.5 parent: 2 type: Transform - - uid: 29589 + - uid: 29797 components: - rot: -1.5707963267948966 rad pos: -27.5,-4.5 parent: 2 type: Transform - - uid: 29590 + - uid: 29798 components: - rot: -1.5707963267948966 rad pos: -27.5,-3.5 parent: 2 type: Transform - - uid: 29591 + - uid: 29799 components: - rot: -1.5707963267948966 rad pos: -27.5,-2.5 parent: 2 type: Transform - - uid: 29592 + - uid: 29800 components: - rot: -1.5707963267948966 rad pos: -27.5,-1.5 parent: 2 type: Transform - - uid: 29593 + - uid: 29801 components: - pos: -28.5,2.5 parent: 2 type: Transform - - uid: 29594 + - uid: 29802 components: - pos: -28.5,-1.5 parent: 2 type: Transform - - uid: 29595 + - uid: 29803 components: - rot: 3.141592653589793 rad pos: -27.5,-7.5 parent: 2 type: Transform - - uid: 29596 + - uid: 29804 components: - rot: -1.5707963267948966 rad pos: -27.5,2.5 parent: 2 type: Transform - - uid: 29597 + - uid: 29805 components: - rot: -1.5707963267948966 rad pos: -27.5,3.5 parent: 2 type: Transform - - uid: 29598 + - uid: 29806 components: - rot: -1.5707963267948966 rad pos: -27.5,4.5 parent: 2 type: Transform - - uid: 29599 + - uid: 29807 components: - rot: -1.5707963267948966 rad pos: -27.5,5.5 parent: 2 type: Transform - - uid: 29600 + - uid: 29808 components: - rot: -1.5707963267948966 rad pos: -27.5,7.5 parent: 2 type: Transform - - uid: 29601 + - uid: 29809 components: - rot: -1.5707963267948966 rad pos: -27.5,8.5 parent: 2 type: Transform - - uid: 29602 + - uid: 29810 components: - rot: -1.5707963267948966 rad pos: -27.5,9.5 parent: 2 type: Transform - - uid: 29603 + - uid: 29811 components: - pos: -28.5,12.5 parent: 2 type: Transform - - uid: 29604 + - uid: 29812 components: - rot: -1.5707963267948966 rad pos: -29.5,-18.5 parent: 2 type: Transform - - uid: 29605 + - uid: 29813 components: - rot: -1.5707963267948966 rad pos: -28.5,-18.5 parent: 2 type: Transform - - uid: 29606 + - uid: 29814 components: - pos: -22.5,-25.5 parent: 2 type: Transform - - uid: 29607 + - uid: 29815 components: - pos: -23.5,-25.5 parent: 2 type: Transform - - uid: 29608 + - uid: 29816 components: - pos: -24.5,-25.5 parent: 2 type: Transform - - uid: 29609 + - uid: 29817 components: - pos: -25.5,-25.5 parent: 2 type: Transform - - uid: 29610 + - uid: 29818 components: - pos: -26.5,-25.5 parent: 2 type: Transform - - uid: 29611 + - uid: 29819 components: - pos: -27.5,-25.5 parent: 2 type: Transform - - uid: 29612 + - uid: 29820 components: - pos: -27.5,-23.5 parent: 2 type: Transform - - uid: 29613 + - uid: 29821 components: - pos: -27.5,-24.5 parent: 2 type: Transform - - uid: 29614 + - uid: 29822 components: - pos: -27.5,-21.5 parent: 2 type: Transform - - uid: 29615 + - uid: 29823 components: - pos: -27.5,-20.5 parent: 2 type: Transform - - uid: 29616 + - uid: 29824 components: - rot: -1.5707963267948966 rad pos: -21.5,-23.5 parent: 2 type: Transform - - uid: 29617 + - uid: 29825 components: - rot: -1.5707963267948966 rad pos: -26.5,-18.5 parent: 2 type: Transform - - uid: 29618 + - uid: 29826 components: - rot: -1.5707963267948966 rad pos: -28.5,-24.5 parent: 2 type: Transform - - uid: 29619 + - uid: 29827 components: - rot: -1.5707963267948966 rad pos: -29.5,-24.5 parent: 2 type: Transform - - uid: 29620 + - uid: 29828 components: - rot: -1.5707963267948966 rad pos: -30.5,-24.5 parent: 2 type: Transform - - uid: 29621 + - uid: 29829 components: - rot: -1.5707963267948966 rad pos: -30.5,-20.5 parent: 2 type: Transform - - uid: 29622 + - uid: 29830 components: - pos: -30.5,-21.5 parent: 2 type: Transform - - uid: 29623 + - uid: 29831 components: - pos: -30.5,-22.5 parent: 2 type: Transform - - uid: 29624 + - uid: 29832 components: - pos: 50.5,41.5 parent: 2 type: Transform - - uid: 29625 + - uid: 29833 components: - pos: -21.5,-25.5 parent: 2 type: Transform - - uid: 29626 + - uid: 29834 components: - pos: -21.5,-27.5 parent: 2 type: Transform - - uid: 29627 + - uid: 29835 components: - pos: -21.5,-28.5 parent: 2 type: Transform - - uid: 29628 + - uid: 29836 components: - pos: -21.5,-29.5 parent: 2 type: Transform - - uid: 29629 + - uid: 29837 components: - pos: -21.5,-30.5 parent: 2 type: Transform - - uid: 29630 + - uid: 29838 components: - pos: -21.5,-31.5 parent: 2 type: Transform - - uid: 29631 + - uid: 29839 components: - pos: -21.5,-33.5 parent: 2 type: Transform - - uid: 29632 + - uid: 29840 components: - pos: -21.5,-36.5 parent: 2 type: Transform - - uid: 29633 + - uid: 29841 components: - pos: -21.5,-37.5 parent: 2 type: Transform - - uid: 29634 + - uid: 29842 components: - pos: -21.5,-38.5 parent: 2 type: Transform - - uid: 29635 + - uid: 29843 components: - pos: -21.5,-39.5 parent: 2 type: Transform - - uid: 29636 + - uid: 29844 components: - pos: -21.5,-40.5 parent: 2 type: Transform - - uid: 29637 + - uid: 29845 components: - pos: -21.5,-41.5 parent: 2 type: Transform - - uid: 29638 + - uid: 29846 components: - pos: -21.5,-43.5 parent: 2 type: Transform - - uid: 29639 + - uid: 29847 components: - pos: 37.5,-49.5 parent: 2 type: Transform - - uid: 29640 + - uid: 29848 components: - pos: 38.5,-49.5 parent: 2 type: Transform - - uid: 29641 + - uid: 29849 components: - pos: 39.5,-50.5 parent: 2 type: Transform - - uid: 29642 + - uid: 29850 components: - pos: 38.5,-50.5 parent: 2 type: Transform - - uid: 29643 + - uid: 29851 components: - pos: -1.5,-12.5 parent: 2 type: Transform - - uid: 29644 + - uid: 29852 components: - pos: -1.5,-13.5 parent: 2 type: Transform - - uid: 29645 + - uid: 29853 components: - pos: 57.5,-61.5 parent: 2 type: Transform - - uid: 29646 + - uid: 29854 components: - pos: 6.5,-58.5 parent: 2 type: Transform - - uid: 29647 + - uid: 29855 components: - pos: -22.5,-27.5 parent: 2 type: Transform - - uid: 29648 + - uid: 29856 components: - pos: -17.5,-30.5 parent: 2 type: Transform - - uid: 29649 + - uid: 29857 components: - rot: 3.141592653589793 rad pos: 42.5,-58.5 parent: 2 type: Transform - - uid: 29650 + - uid: 29858 components: - rot: 3.141592653589793 rad pos: 42.5,-60.5 parent: 2 type: Transform - - uid: 29651 + - uid: 29859 components: - pos: 9.5,-69.5 parent: 2 type: Transform - - uid: 29652 + - uid: 29860 components: - pos: 5.5,-72.5 parent: 2 type: Transform - - uid: 29653 + - uid: 29861 components: - pos: -40.5,-13.5 parent: 2 type: Transform - - uid: 29654 + - uid: 29862 components: - pos: -40.5,-8.5 parent: 2 type: Transform - - uid: 29655 + - uid: 29863 components: - pos: -40.5,-7.5 parent: 2 type: Transform - - uid: 29656 + - uid: 29864 components: - pos: -33.5,-8.5 parent: 2 type: Transform - - uid: 29657 + - uid: 29865 components: - pos: -30.5,-8.5 parent: 2 type: Transform - - uid: 29658 + - uid: 29866 components: - pos: -30.5,-25.5 parent: 2 type: Transform - - uid: 29659 + - uid: 29867 components: - pos: -33.5,-25.5 parent: 2 type: Transform - - uid: 29660 + - uid: 29868 components: - pos: -23.5,-27.5 parent: 2 type: Transform - - uid: 29661 + - uid: 29869 components: - pos: -24.5,-27.5 parent: 2 type: Transform - - uid: 29662 + - uid: 29870 components: - rot: 1.5707963267948966 rad pos: -26.5,-28.5 parent: 2 type: Transform - - uid: 29663 + - uid: 29871 components: - pos: -26.5,-27.5 parent: 2 type: Transform - - uid: 29664 + - uid: 29872 components: - pos: -27.5,-27.5 parent: 2 type: Transform - - uid: 29665 + - uid: 29873 components: - pos: -28.5,-27.5 parent: 2 type: Transform - - uid: 29666 + - uid: 29874 components: - pos: -29.5,-27.5 parent: 2 type: Transform - - uid: 29667 + - uid: 29875 components: - pos: -30.5,-27.5 parent: 2 type: Transform - - uid: 29668 + - uid: 29876 components: - pos: -33.5,-27.5 parent: 2 type: Transform - - uid: 29669 + - uid: 29877 components: - pos: -34.5,-27.5 parent: 2 type: Transform - - uid: 29670 + - uid: 29878 components: - pos: -35.5,-27.5 parent: 2 type: Transform - - uid: 29671 + - uid: 29879 components: - pos: -36.5,-27.5 parent: 2 type: Transform - - uid: 29672 + - uid: 29880 components: - pos: -33.5,-28.5 parent: 2 type: Transform - - uid: 29673 + - uid: 29881 components: - pos: -33.5,-29.5 parent: 2 type: Transform - - uid: 29674 + - uid: 29882 components: - pos: -33.5,-30.5 parent: 2 type: Transform - - uid: 29675 + - uid: 29883 components: - pos: -30.5,-28.5 parent: 2 type: Transform - - uid: 29676 + - uid: 29884 components: - pos: -30.5,-29.5 parent: 2 type: Transform - - uid: 29677 + - uid: 29885 components: - pos: -30.5,-30.5 parent: 2 type: Transform - - uid: 29678 + - uid: 29886 components: - pos: -45.5,-26.5 parent: 2 type: Transform - - uid: 29679 + - uid: 29887 components: - pos: -36.5,-26.5 parent: 2 type: Transform - - uid: 29680 + - uid: 29888 components: - pos: -36.5,-25.5 parent: 2 type: Transform - - uid: 29681 + - uid: 29889 components: - pos: -37.5,-25.5 parent: 2 type: Transform - - uid: 29682 + - uid: 29890 components: - pos: -38.5,-25.5 parent: 2 type: Transform - - uid: 29683 + - uid: 29891 components: - pos: -36.5,-22.5 parent: 2 type: Transform - - uid: 29684 + - uid: 29892 components: - pos: -36.5,-23.5 parent: 2 type: Transform - - uid: 29685 + - uid: 29893 components: - pos: -38.5,-23.5 parent: 2 type: Transform - - uid: 29686 + - uid: 29894 components: - pos: -38.5,-24.5 parent: 2 type: Transform - - uid: 29687 + - uid: 29895 components: - pos: 52.5,-35.5 parent: 2 type: Transform - - uid: 29688 + - uid: 29896 components: - pos: 53.5,-33.5 parent: 2 type: Transform - - uid: 29689 + - uid: 29897 components: - pos: 54.5,-62.5 parent: 2 type: Transform - - uid: 29690 + - uid: 29898 components: - pos: 44.5,-6.5 parent: 2 type: Transform - - uid: 29691 + - uid: 29899 components: - rot: 1.5707963267948966 rad pos: -28.5,7.5 parent: 2 type: Transform - - uid: 29692 + - uid: 29900 components: - rot: 1.5707963267948966 rad pos: -28.5,6.5 parent: 2 type: Transform - - uid: 29693 + - uid: 29901 components: - rot: 1.5707963267948966 rad pos: -28.5,5.5 parent: 2 type: Transform - - uid: 29694 + - uid: 29902 components: - pos: -49.5,-29.5 parent: 2 type: Transform - - uid: 29695 + - uid: 29903 components: - pos: -50.5,-30.5 parent: 2 type: Transform - - uid: 29696 + - uid: 29904 components: - pos: -43.5,-21.5 parent: 2 type: Transform - - uid: 29697 + - uid: 29905 components: - pos: -43.5,-20.5 parent: 2 type: Transform - - uid: 29698 + - uid: 29906 components: - rot: 1.5707963267948966 rad pos: -42.5,-25.5 parent: 2 type: Transform - - uid: 29699 + - uid: 29907 components: - rot: 1.5707963267948966 rad pos: -40.5,-25.5 parent: 2 type: Transform - - uid: 29700 + - uid: 29908 components: - rot: 1.5707963267948966 rad pos: -39.5,-25.5 parent: 2 type: Transform - - uid: 29701 + - uid: 29909 components: - rot: 1.5707963267948966 rad pos: -40.5,-27.5 parent: 2 type: Transform - - uid: 29702 + - uid: 29910 components: - rot: 1.5707963267948966 rad pos: -41.5,-27.5 parent: 2 type: Transform - - uid: 29703 + - uid: 29911 components: - rot: 1.5707963267948966 rad pos: -42.5,-27.5 parent: 2 type: Transform - - uid: 29704 + - uid: 29912 components: - rot: 1.5707963267948966 rad pos: -39.5,-27.5 parent: 2 type: Transform - - uid: 29705 + - uid: 29913 components: - rot: 1.5707963267948966 rad pos: -23.5,-30.5 parent: 2 type: Transform - - uid: 29706 + - uid: 29914 components: - rot: 1.5707963267948966 rad pos: -25.5,-30.5 parent: 2 type: Transform - - uid: 29707 + - uid: 29915 components: - rot: 1.5707963267948966 rad pos: -26.5,-30.5 parent: 2 type: Transform - - uid: 29708 + - uid: 29916 components: - rot: 1.5707963267948966 rad pos: -26.5,-31.5 parent: 2 type: Transform - - uid: 29709 + - uid: 29917 components: - rot: 1.5707963267948966 rad pos: -26.5,-32.5 parent: 2 type: Transform - - uid: 29710 + - uid: 29918 components: - rot: 1.5707963267948966 rad pos: -27.5,-32.5 parent: 2 type: Transform - - uid: 29711 + - uid: 29919 components: - rot: 1.5707963267948966 rad pos: -28.5,-32.5 parent: 2 type: Transform - - uid: 29712 + - uid: 29920 components: - rot: 1.5707963267948966 rad pos: -29.5,-32.5 parent: 2 type: Transform - - uid: 29713 + - uid: 29921 components: - rot: 1.5707963267948966 rad pos: -29.5,-31.5 parent: 2 type: Transform - - uid: 29714 + - uid: 29922 components: - rot: 1.5707963267948966 rad pos: -30.5,-31.5 parent: 2 type: Transform - - uid: 29715 + - uid: 29923 components: - rot: 1.5707963267948966 rad pos: -26.5,-35.5 parent: 2 type: Transform - - uid: 29716 + - uid: 29924 components: - rot: 1.5707963267948966 rad pos: -26.5,-36.5 parent: 2 type: Transform - - uid: 29717 + - uid: 29925 components: - pos: -29.5,-37.5 parent: 2 type: Transform - - uid: 29718 + - uid: 29926 components: - rot: 1.5707963267948966 rad pos: -28.5,-35.5 parent: 2 type: Transform - - uid: 29719 + - uid: 29927 components: - rot: 1.5707963267948966 rad pos: -29.5,-36.5 parent: 2 type: Transform - - uid: 29720 + - uid: 29928 components: - rot: 1.5707963267948966 rad pos: -30.5,-36.5 parent: 2 type: Transform - - uid: 29721 + - uid: 29929 components: - rot: 1.5707963267948966 rad pos: -33.5,-36.5 parent: 2 type: Transform - - uid: 29722 + - uid: 29930 components: - rot: 1.5707963267948966 rad pos: -34.5,-36.5 parent: 2 type: Transform - - uid: 29723 + - uid: 29931 components: - rot: 1.5707963267948966 rad pos: -34.5,-31.5 parent: 2 type: Transform - - uid: 29724 + - uid: 29932 components: - rot: 1.5707963267948966 rad pos: -34.5,-32.5 parent: 2 type: Transform - - uid: 29725 + - uid: 29933 components: - pos: -34.5,-37.5 parent: 2 type: Transform - - uid: 29726 + - uid: 29934 components: - rot: 1.5707963267948966 rad pos: -34.5,-35.5 parent: 2 type: Transform - - uid: 29727 + - uid: 29935 components: - rot: 1.5707963267948966 rad pos: -33.5,-31.5 parent: 2 type: Transform - - uid: 29728 + - uid: 29936 components: - rot: 1.5707963267948966 rad pos: -29.5,-35.5 parent: 2 type: Transform - - uid: 29729 + - uid: 29937 components: - rot: 1.5707963267948966 rad pos: -22.5,-30.5 parent: 2 type: Transform - - uid: 29730 + - uid: 29938 components: - rot: 1.5707963267948966 rad pos: -24.5,-28.5 parent: 2 type: Transform - - uid: 29731 + - uid: 29939 components: - rot: 3.141592653589793 rad pos: -28.5,-6.5 parent: 2 type: Transform - - uid: 29732 + - uid: 29940 components: - pos: -31.5,-4.5 parent: 2 type: Transform - - uid: 29733 + - uid: 29941 components: - pos: -32.5,-4.5 parent: 2 type: Transform - - uid: 29734 + - uid: 29942 components: - pos: -33.5,-4.5 parent: 2 type: Transform - - uid: 29735 + - uid: 29943 components: - pos: -34.5,-4.5 parent: 2 type: Transform - - uid: 29736 + - uid: 29944 components: - pos: -35.5,-4.5 parent: 2 type: Transform - - uid: 29737 + - uid: 29945 components: - pos: -38.5,-3.5 parent: 2 type: Transform - - uid: 29738 + - uid: 29946 components: - pos: -39.5,-3.5 parent: 2 type: Transform - - uid: 29739 + - uid: 29947 components: - pos: -35.5,-3.5 parent: 2 type: Transform - - uid: 29740 + - uid: 29948 components: - pos: -39.5,-4.5 parent: 2 type: Transform - - uid: 29741 + - uid: 29949 components: - pos: -40.5,-4.5 parent: 2 type: Transform - - uid: 29742 + - uid: 29950 components: - pos: -42.5,-4.5 parent: 2 type: Transform - - uid: 29743 + - uid: 29951 components: - pos: -43.5,-4.5 parent: 2 type: Transform - - uid: 29744 + - uid: 29952 components: - pos: -22.5,-40.5 parent: 2 type: Transform - - uid: 29745 + - uid: 29953 components: - pos: -23.5,-40.5 parent: 2 type: Transform - - uid: 29746 + - uid: 29954 components: - pos: -24.5,-40.5 parent: 2 type: Transform - - uid: 29747 + - uid: 29955 components: - pos: -24.5,-41.5 parent: 2 type: Transform - - uid: 29748 + - uid: 29956 components: - pos: -24.5,-42.5 parent: 2 type: Transform - - uid: 29749 + - uid: 29957 components: - pos: -24.5,-43.5 parent: 2 type: Transform - - uid: 29750 + - uid: 29958 components: - pos: -24.5,-44.5 parent: 2 type: Transform - - uid: 29751 + - uid: 29959 components: - pos: -24.5,-45.5 parent: 2 type: Transform - - uid: 29752 + - uid: 29960 components: - pos: -24.5,-46.5 parent: 2 type: Transform - - uid: 29753 + - uid: 29961 components: - pos: -24.5,-47.5 parent: 2 type: Transform - - uid: 29754 + - uid: 29962 components: - pos: -22.5,-37.5 parent: 2 type: Transform - - uid: 29755 + - uid: 29963 components: - pos: -23.5,-37.5 parent: 2 type: Transform - - uid: 29756 + - uid: 29964 components: - pos: -24.5,-37.5 parent: 2 type: Transform - - uid: 29757 + - uid: 29965 components: - pos: -25.5,-37.5 parent: 2 type: Transform - - uid: 29758 + - uid: 29966 components: - pos: -26.5,-37.5 parent: 2 type: Transform - - uid: 29759 + - uid: 29967 components: - pos: -35.5,-31.5 parent: 2 type: Transform - - uid: 29760 + - uid: 29968 components: - pos: -36.5,-31.5 parent: 2 type: Transform - - uid: 29761 + - uid: 29969 components: - pos: -37.5,-31.5 parent: 2 type: Transform - - uid: 29762 + - uid: 29970 components: - pos: -38.5,-31.5 parent: 2 type: Transform - - uid: 29763 + - uid: 29971 components: - pos: -39.5,-31.5 parent: 2 type: Transform - - uid: 29764 + - uid: 29972 components: - pos: -30.5,-38.5 parent: 2 type: Transform - - uid: 29765 + - uid: 29973 components: - pos: -30.5,-39.5 parent: 2 type: Transform - - uid: 29766 + - uid: 29974 components: - pos: -30.5,-41.5 parent: 2 type: Transform - - uid: 29767 + - uid: 29975 components: - pos: -30.5,-42.5 parent: 2 type: Transform - - uid: 29768 + - uid: 29976 components: - pos: -31.5,-42.5 parent: 2 type: Transform - - uid: 29769 + - uid: 29977 components: - pos: -48.5,-4.5 parent: 2 type: Transform - - uid: 29770 + - uid: 29978 components: - pos: -47.5,-4.5 parent: 2 type: Transform - - uid: 29771 + - uid: 29979 components: - pos: -46.5,-4.5 parent: 2 type: Transform - - uid: 29772 + - uid: 29980 components: - pos: -45.5,-4.5 parent: 2 type: Transform - - uid: 29773 + - uid: 29981 components: - pos: -44.5,-4.5 parent: 2 type: Transform - - uid: 29774 + - uid: 29982 components: - pos: -55.5,-19.5 parent: 2 type: Transform - - uid: 29775 + - uid: 29983 components: - pos: -55.5,-20.5 parent: 2 type: Transform - - uid: 29776 + - uid: 29984 components: - pos: -47.5,-26.5 parent: 2 type: Transform - - uid: 29777 + - uid: 29985 components: - rot: 3.141592653589793 rad pos: -41.5,15.5 parent: 2 type: Transform - - uid: 29778 + - uid: 29986 components: - pos: -31.5,-6.5 parent: 2 type: Transform - - uid: 29779 + - uid: 29987 components: - pos: -32.5,-6.5 parent: 2 type: Transform - - uid: 29780 + - uid: 29988 components: - pos: -32.5,-8.5 parent: 2 type: Transform - - uid: 29781 + - uid: 29989 components: - pos: -31.5,-8.5 parent: 2 type: Transform - - uid: 29782 + - uid: 29990 components: - pos: -33.5,-6.5 parent: 2 type: Transform - - uid: 29783 + - uid: 29991 components: - pos: -33.5,-5.5 parent: 2 type: Transform - - uid: 29784 + - uid: 29992 components: - pos: -37.5,-3.5 parent: 2 type: Transform - - uid: 29785 + - uid: 29993 components: - pos: -36.5,-3.5 parent: 2 type: Transform - - uid: 29786 + - uid: 29994 components: - pos: -65.5,-29.5 parent: 2 type: Transform - - uid: 29787 + - uid: 29995 components: - pos: -70.5,-27.5 parent: 2 type: Transform - - uid: 29788 + - uid: 29996 components: - pos: -74.5,-27.5 parent: 2 type: Transform - - uid: 29789 + - uid: 29997 components: - pos: -69.5,-28.5 parent: 2 type: Transform - - uid: 29790 + - uid: 29998 components: - pos: -69.5,-29.5 parent: 2 type: Transform - - uid: 29791 + - uid: 29999 components: - pos: -69.5,-30.5 parent: 2 type: Transform - - uid: 29792 + - uid: 30000 components: - pos: -57.5,-29.5 parent: 2 type: Transform - - uid: 29793 + - uid: 30001 components: - pos: -53.5,-29.5 parent: 2 type: Transform - - uid: 29794 + - uid: 30002 components: - pos: -49.5,-27.5 parent: 2 type: Transform - - uid: 29795 + - uid: 30003 components: - pos: -49.5,-28.5 parent: 2 type: Transform - - uid: 29796 + - uid: 30004 components: - pos: -56.5,-31.5 parent: 2 type: Transform - - uid: 29797 + - uid: 30005 components: - pos: -57.5,-31.5 parent: 2 type: Transform - - uid: 29798 + - uid: 30006 components: - pos: -63.5,-25.5 parent: 2 type: Transform - - uid: 29799 + - uid: 30007 components: - pos: -57.5,-22.5 parent: 2 type: Transform - - uid: 29800 + - uid: 30008 components: - pos: -55.5,-21.5 parent: 2 type: Transform - - uid: 29801 + - uid: 30009 components: - pos: -55.5,-22.5 parent: 2 type: Transform - - uid: 29802 + - uid: 30010 components: - pos: -49.5,-30.5 parent: 2 type: Transform - - uid: 29803 + - uid: 30011 components: - pos: -67.5,-29.5 parent: 2 type: Transform - - uid: 29804 + - uid: 30012 components: - pos: -54.5,-29.5 parent: 2 type: Transform - - uid: 29805 + - uid: 30013 components: - pos: -56.5,-29.5 parent: 2 type: Transform - - uid: 29806 + - uid: 30014 components: - pos: -36.5,-49.5 parent: 2 type: Transform - - uid: 29807 + - uid: 30015 components: - pos: -36.5,-50.5 parent: 2 type: Transform - - uid: 29808 + - uid: 30016 components: - pos: -36.5,-51.5 parent: 2 type: Transform - - uid: 29809 + - uid: 30017 components: - pos: -36.5,-52.5 parent: 2 type: Transform - - uid: 29810 + - uid: 30018 components: - pos: -36.5,-48.5 parent: 2 type: Transform - - uid: 29811 + - uid: 30019 components: - pos: -36.5,-47.5 parent: 2 type: Transform - - uid: 29812 + - uid: 30020 components: - pos: 69.5,-60.5 parent: 2 type: Transform - - uid: 29813 + - uid: 30021 components: - rot: -1.5707963267948966 rad pos: -30.5,-18.5 parent: 2 type: Transform - - uid: 29814 + - uid: 30022 components: - pos: -29.5,-38.5 parent: 2 type: Transform - - uid: 29815 + - uid: 30023 components: - pos: -28.5,-38.5 parent: 2 type: Transform - - uid: 29816 + - uid: 30024 components: - pos: -27.5,-38.5 parent: 2 type: Transform - - uid: 29817 + - uid: 30025 components: - pos: -26.5,-38.5 parent: 2 type: Transform - - uid: 29818 + - uid: 30026 components: - rot: -1.5707963267948966 rad pos: -21.5,-16.5 parent: 2 type: Transform - - uid: 29819 + - uid: 30027 components: - pos: -33.5,-7.5 parent: 2 type: Transform - - uid: 29820 + - uid: 30028 components: - pos: -57.5,-3.5 parent: 2 type: Transform - - uid: 29821 + - uid: 30029 components: - pos: -69.5,-25.5 parent: 2 type: Transform - - uid: 29822 + - uid: 30030 components: - pos: -69.5,-26.5 parent: 2 type: Transform - - uid: 29823 + - uid: 30031 components: - pos: -69.5,-27.5 parent: 2 type: Transform - - uid: 29824 + - uid: 30032 components: - rot: -1.5707963267948966 rad pos: -43.5,-25.5 parent: 2 type: Transform - - uid: 29825 + - uid: 30033 components: - rot: -1.5707963267948966 rad pos: -45.5,-29.5 parent: 2 type: Transform - - uid: 29826 + - uid: 30034 components: - rot: -1.5707963267948966 rad pos: -45.5,-30.5 parent: 2 type: Transform - - uid: 29827 + - uid: 30035 components: - pos: -46.5,-29.5 parent: 2 type: Transform - - uid: 29828 + - uid: 30036 components: - rot: -1.5707963267948966 rad pos: -47.5,-29.5 parent: 2 type: Transform - - uid: 29829 + - uid: 30037 components: - rot: -1.5707963267948966 rad pos: -47.5,-28.5 parent: 2 type: Transform - - uid: 29830 + - uid: 30038 components: - rot: -1.5707963267948966 rad pos: -57.5,-34.5 parent: 2 type: Transform - - uid: 29831 + - uid: 30039 components: - rot: -1.5707963267948966 rad pos: -56.5,-34.5 parent: 2 type: Transform - - uid: 29832 + - uid: 30040 components: - rot: -1.5707963267948966 rad pos: -54.5,-34.5 parent: 2 type: Transform - - uid: 29833 + - uid: 30041 components: - rot: -1.5707963267948966 rad pos: -57.5,-40.5 parent: 2 type: Transform - - uid: 29834 + - uid: 30042 components: - rot: -1.5707963267948966 rad pos: -34.5,-29.5 parent: 2 type: Transform - - uid: 29835 + - uid: 30043 components: - pos: -55.5,-65.5 parent: 2 type: Transform - - uid: 29836 + - uid: 30044 components: - pos: -54.5,-65.5 parent: 2 type: Transform - - uid: 29837 + - uid: 30045 components: - pos: -53.5,-65.5 parent: 2 type: Transform - - uid: 29838 + - uid: 30046 components: - pos: -51.5,-65.5 parent: 2 type: Transform - - uid: 29839 + - uid: 30047 components: - pos: -51.5,-64.5 parent: 2 type: Transform - - uid: 29840 + - uid: 30048 components: - pos: -51.5,-62.5 parent: 2 type: Transform - - uid: 29841 + - uid: 30049 components: - pos: -56.5,-69.5 parent: 2 type: Transform - - uid: 29842 + - uid: 30050 components: - pos: -23.5,-50.5 parent: 2 type: Transform - - uid: 29843 + - uid: 30051 components: - pos: -24.5,-50.5 parent: 2 type: Transform - - uid: 29844 + - uid: 30052 components: - pos: -25.5,-50.5 parent: 2 type: Transform - - uid: 29845 + - uid: 30053 components: - pos: -24.5,-48.5 parent: 2 type: Transform - - uid: 29846 + - uid: 30054 components: - pos: -26.5,-48.5 parent: 2 type: Transform - - uid: 29847 + - uid: 30055 components: - pos: -25.5,-48.5 parent: 2 type: Transform - - uid: 29848 + - uid: 30056 components: - pos: -26.5,-50.5 parent: 2 type: Transform - - uid: 29849 + - uid: 30057 components: - pos: -27.5,-50.5 parent: 2 type: Transform - - uid: 29850 + - uid: 30058 components: - pos: -28.5,-50.5 parent: 2 type: Transform - - uid: 29851 + - uid: 30059 components: - pos: -28.5,-49.5 parent: 2 type: Transform - - uid: 29852 + - uid: 30060 components: - pos: -28.5,-48.5 parent: 2 type: Transform - - uid: 29853 + - uid: 30061 components: - pos: -28.5,-46.5 parent: 2 type: Transform - - uid: 29854 + - uid: 30062 components: - pos: -28.5,-45.5 parent: 2 type: Transform - - uid: 29855 + - uid: 30063 components: - pos: -29.5,-45.5 parent: 2 type: Transform - - uid: 29856 + - uid: 30064 components: - pos: -29.5,-42.5 parent: 2 type: Transform - - uid: 29857 + - uid: 30065 components: - pos: -28.5,-42.5 parent: 2 type: Transform - - uid: 29858 + - uid: 30066 components: - pos: -27.5,-42.5 parent: 2 type: Transform - - uid: 29859 + - uid: 30067 components: - pos: -26.5,-42.5 parent: 2 type: Transform - - uid: 29860 + - uid: 30068 components: - pos: -26.5,-43.5 parent: 2 type: Transform - - uid: 29861 + - uid: 30069 components: - pos: -26.5,-44.5 parent: 2 type: Transform - - uid: 29862 + - uid: 30070 components: - pos: -26.5,-45.5 parent: 2 type: Transform - - uid: 29863 + - uid: 30071 components: - pos: -30.5,-45.5 parent: 2 type: Transform - - uid: 29864 + - uid: 30072 components: - pos: -29.5,-49.5 parent: 2 type: Transform - - uid: 29865 + - uid: 30073 components: - pos: -31.5,-49.5 parent: 2 type: Transform - - uid: 29866 + - uid: 30074 components: - pos: -27.5,-39.5 parent: 2 type: Transform - - uid: 29867 + - uid: 30075 components: - pos: -27.5,-40.5 parent: 2 type: Transform - - uid: 29868 + - uid: 30076 components: - pos: -23.5,-52.5 parent: 2 type: Transform - - uid: 29869 + - uid: 30077 components: - pos: -24.5,-56.5 parent: 2 type: Transform - - uid: 29870 + - uid: 30078 components: - pos: -25.5,-56.5 parent: 2 type: Transform - - uid: 29871 + - uid: 30079 components: - pos: -26.5,-56.5 parent: 2 type: Transform - - uid: 29872 + - uid: 30080 components: - pos: -27.5,-56.5 parent: 2 type: Transform - - uid: 29873 + - uid: 30081 components: - pos: -29.5,-56.5 parent: 2 type: Transform - - uid: 29874 + - uid: 30082 components: - pos: -30.5,-56.5 parent: 2 type: Transform - - uid: 29875 + - uid: 30083 components: - pos: -30.5,-57.5 parent: 2 type: Transform - - uid: 29876 + - uid: 30084 components: - pos: -52.5,-11.5 parent: 2 type: Transform - - uid: 29877 + - uid: 30085 components: - pos: -52.5,-10.5 parent: 2 type: Transform - - uid: 29878 + - uid: 30086 components: - pos: -52.5,-9.5 parent: 2 type: Transform - - uid: 29879 + - uid: 30087 components: - pos: -52.5,-7.5 parent: 2 type: Transform - - uid: 29880 + - uid: 30088 components: - pos: -51.5,-7.5 parent: 2 type: Transform - - uid: 29881 + - uid: 30089 components: - pos: -50.5,-7.5 parent: 2 type: Transform - - uid: 29882 + - uid: 30090 components: - pos: -27.5,-62.5 parent: 2 type: Transform - - uid: 29883 + - uid: 30091 components: - pos: -29.5,-60.5 parent: 2 type: Transform - - uid: 29884 + - uid: 30092 components: - pos: -29.5,-61.5 parent: 2 type: Transform - - uid: 29885 + - uid: 30093 components: - pos: -27.5,-61.5 parent: 2 type: Transform - - uid: 29886 + - uid: 30094 components: - pos: -29.5,-62.5 parent: 2 type: Transform - - uid: 29887 + - uid: 30095 components: - pos: -29.5,-64.5 parent: 2 type: Transform - - uid: 29888 + - uid: 30096 components: - pos: -28.5,-64.5 parent: 2 type: Transform - - uid: 29889 + - uid: 30097 components: - pos: -28.5,-65.5 parent: 2 type: Transform - - uid: 29890 + - uid: 30098 components: - pos: -27.5,-65.5 parent: 2 type: Transform - - uid: 29891 + - uid: 30099 components: - pos: -25.5,-63.5 parent: 2 type: Transform - - uid: 29892 + - uid: 30100 components: - pos: -24.5,-63.5 parent: 2 type: Transform - - uid: 29893 + - uid: 30101 components: - pos: -24.5,-65.5 parent: 2 type: Transform - - uid: 29894 + - uid: 30102 components: - pos: -27.5,-68.5 parent: 2 type: Transform - - uid: 29895 + - uid: 30103 components: - pos: -28.5,-68.5 parent: 2 type: Transform - - uid: 29896 + - uid: 30104 components: - pos: -29.5,-68.5 parent: 2 type: Transform - - uid: 29897 + - uid: 30105 components: - pos: -29.5,-67.5 parent: 2 type: Transform - - uid: 29898 + - uid: 30106 components: - pos: -31.5,-67.5 parent: 2 type: Transform - - uid: 29899 + - uid: 30107 components: - pos: -30.5,-64.5 parent: 2 type: Transform - - uid: 29900 + - uid: 30108 components: - pos: -30.5,-65.5 parent: 2 type: Transform - - uid: 29901 + - uid: 30109 components: - pos: -32.5,-65.5 parent: 2 type: Transform - - uid: 29902 + - uid: 30110 components: - pos: -32.5,-64.5 parent: 2 type: Transform - - uid: 29903 + - uid: 30111 components: - pos: -33.5,-64.5 parent: 2 type: Transform - - uid: 29904 + - uid: 30112 components: - pos: -55.5,-69.5 parent: 2 type: Transform - - uid: 29905 + - uid: 30113 components: - pos: -54.5,-69.5 parent: 2 type: Transform - - uid: 29906 + - uid: 30114 components: - pos: -52.5,-69.5 parent: 2 type: Transform - - uid: 29907 + - uid: 30115 components: - pos: -52.5,-70.5 parent: 2 type: Transform - - uid: 29908 + - uid: 30116 components: - pos: -52.5,-71.5 parent: 2 type: Transform - - uid: 29909 + - uid: 30117 components: - pos: -51.5,-71.5 parent: 2 type: Transform - - uid: 29910 + - uid: 30118 components: - pos: -51.5,-72.5 parent: 2 type: Transform - - uid: 29911 + - uid: 30119 components: - pos: -50.5,-72.5 parent: 2 type: Transform - - uid: 29912 + - uid: 30120 components: - pos: -50.5,-73.5 parent: 2 type: Transform - - uid: 29913 + - uid: 30121 components: - pos: -50.5,-74.5 parent: 2 type: Transform - - uid: 29914 + - uid: 30122 components: - pos: -50.5,-75.5 parent: 2 type: Transform - - uid: 29915 + - uid: 30123 components: - pos: -58.5,-80.5 parent: 2 type: Transform - - uid: 29916 + - uid: 30124 components: - pos: -58.5,-72.5 parent: 2 type: Transform - - uid: 29917 + - uid: 30125 components: - pos: -49.5,-75.5 parent: 2 type: Transform - - uid: 29918 + - uid: 30126 components: - pos: -48.5,-75.5 parent: 2 type: Transform - - uid: 29919 + - uid: 30127 components: - pos: -48.5,-72.5 parent: 2 type: Transform - - uid: 29920 + - uid: 30128 components: - pos: -48.5,-71.5 parent: 2 type: Transform - - uid: 29921 + - uid: 30129 components: - pos: -47.5,-71.5 parent: 2 type: Transform - - uid: 29922 + - uid: 30130 components: - pos: -46.5,-71.5 parent: 2 type: Transform - - uid: 29923 + - uid: 30131 components: - pos: -46.5,-70.5 parent: 2 type: Transform - - uid: 29924 + - uid: 30132 components: - pos: -45.5,-70.5 parent: 2 type: Transform - - uid: 29925 + - uid: 30133 components: - pos: -45.5,-69.5 parent: 2 type: Transform - - uid: 29926 + - uid: 30134 components: - pos: -44.5,-69.5 parent: 2 type: Transform - - uid: 29927 + - uid: 30135 components: - pos: -43.5,-69.5 parent: 2 type: Transform - - uid: 29928 + - uid: 30136 components: - pos: -40.5,-68.5 parent: 2 type: Transform - - uid: 29929 + - uid: 30137 components: - pos: -40.5,-67.5 parent: 2 type: Transform - - uid: 29930 + - uid: 30138 components: - pos: -40.5,-69.5 parent: 2 type: Transform - - uid: 29931 + - uid: 30139 components: - pos: -39.5,-69.5 parent: 2 type: Transform - - uid: 29932 + - uid: 30140 components: - pos: -38.5,-69.5 parent: 2 type: Transform - - uid: 29933 + - uid: 30141 components: - pos: -38.5,-70.5 parent: 2 type: Transform - - uid: 29934 + - uid: 30142 components: - pos: -37.5,-70.5 parent: 2 type: Transform - - uid: 29935 + - uid: 30143 components: - pos: -37.5,-71.5 parent: 2 type: Transform - - uid: 29936 + - uid: 30144 components: - pos: -36.5,-71.5 parent: 2 type: Transform - - uid: 29937 + - uid: 30145 components: - pos: -35.5,-71.5 parent: 2 type: Transform - - uid: 29938 + - uid: 30146 components: - pos: -35.5,-72.5 parent: 2 type: Transform - - uid: 29939 + - uid: 30147 components: - pos: -43.5,-68.5 parent: 2 type: Transform - - uid: 29940 + - uid: 30148 components: - pos: -40.5,-65.5 parent: 2 type: Transform - - uid: 29941 + - uid: 30149 components: - pos: -41.5,-65.5 parent: 2 type: Transform - - uid: 29942 + - uid: 30150 components: - pos: -42.5,-65.5 parent: 2 type: Transform - - uid: 29943 + - uid: 30151 components: - pos: -43.5,-65.5 parent: 2 type: Transform - - uid: 29944 + - uid: 30152 components: - pos: -44.5,-65.5 parent: 2 type: Transform - - uid: 29945 + - uid: 30153 components: - pos: -45.5,-65.5 parent: 2 type: Transform - - uid: 29946 + - uid: 30154 components: - pos: -46.5,-65.5 parent: 2 type: Transform - - uid: 29947 + - uid: 30155 components: - pos: -47.5,-65.5 parent: 2 type: Transform - - uid: 29948 + - uid: 30156 components: - pos: -48.5,-67.5 parent: 2 type: Transform - - uid: 29949 + - uid: 30157 components: - pos: -48.5,-68.5 parent: 2 type: Transform - - uid: 29950 + - uid: 30158 components: - pos: -48.5,-69.5 parent: 2 type: Transform - - uid: 29951 + - uid: 30159 components: - pos: -48.5,-70.5 parent: 2 type: Transform - - uid: 29952 + - uid: 30160 components: - pos: -48.5,-65.5 parent: 2 type: Transform - - uid: 29953 + - uid: 30161 components: - pos: -51.5,-69.5 parent: 2 type: Transform - - uid: 29954 + - uid: 30162 components: - pos: -51.5,-68.5 parent: 2 type: Transform - - uid: 29955 + - uid: 30163 components: - pos: -35.5,-63.5 parent: 2 type: Transform - - uid: 29956 + - uid: 30164 components: - pos: -35.5,-64.5 parent: 2 type: Transform - - uid: 29957 + - uid: 30165 components: - pos: -36.5,-66.5 parent: 2 type: Transform - - uid: 29958 + - uid: 30166 components: - pos: -36.5,-67.5 parent: 2 type: Transform - - uid: 29959 + - uid: 30167 components: - pos: -35.5,-67.5 parent: 2 type: Transform - - uid: 29960 + - uid: 30168 components: - pos: -35.5,-68.5 parent: 2 type: Transform - - uid: 29961 + - uid: 30169 components: - pos: -34.5,-68.5 parent: 2 type: Transform - - uid: 29962 + - uid: 30170 components: - pos: -38.5,-66.5 parent: 2 type: Transform - - uid: 29963 + - uid: 30171 components: - pos: -35.5,-69.5 parent: 2 type: Transform - - uid: 29964 + - uid: 30172 components: - pos: -33.5,-68.5 parent: 2 type: Transform - - uid: 29965 + - uid: 30173 components: - pos: -32.5,-68.5 parent: 2 type: Transform - - uid: 29966 + - uid: 30174 components: - pos: -31.5,-68.5 parent: 2 type: Transform - - uid: 29967 + - uid: 30175 components: - pos: -42.5,-63.5 parent: 2 type: Transform - - uid: 29968 + - uid: 30176 components: - pos: -46.5,-64.5 parent: 2 type: Transform - - uid: 29969 + - uid: 30177 components: - pos: -40.5,-73.5 parent: 2 type: Transform - - uid: 29970 + - uid: 30178 components: - pos: -44.5,-73.5 parent: 2 type: Transform - - uid: 29971 + - uid: 30179 components: - pos: -39.5,-74.5 parent: 2 type: Transform - - uid: 29972 + - uid: 30180 components: - pos: -42.5,-73.5 parent: 2 type: Transform - - uid: 29973 + - uid: 30181 components: - pos: -41.5,-73.5 parent: 2 type: Transform - - uid: 29974 + - uid: 30182 components: - pos: -43.5,-73.5 parent: 2 type: Transform - - uid: 29975 + - uid: 30183 components: - pos: -44.5,-74.5 parent: 2 type: Transform - - uid: 29976 + - uid: 30184 components: - pos: -39.5,-73.5 parent: 2 type: Transform - - uid: 29977 + - uid: 30185 components: - pos: -23.5,-63.5 parent: 2 type: Transform - - uid: 29978 + - uid: 30186 components: - rot: 3.141592653589793 rad pos: -30.5,-53.5 parent: 2 type: Transform - - uid: 29979 + - uid: 30187 components: - rot: 1.5707963267948966 rad pos: -29.5,-52.5 parent: 2 type: Transform - - uid: 29980 + - uid: 30188 components: - rot: 1.5707963267948966 rad pos: -29.5,-53.5 parent: 2 type: Transform - - uid: 29981 + - uid: 30189 components: - rot: 1.5707963267948966 rad pos: -29.5,-54.5 parent: 2 type: Transform - - uid: 29982 + - uid: 30190 components: - pos: -26.5,-62.5 parent: 2 type: Transform - - uid: 29983 + - uid: 30191 components: - pos: -45.5,-68.5 parent: 2 type: Transform - - uid: 29984 + - uid: 30192 components: - pos: -27.5,-59.5 parent: 2 type: Transform - - uid: 29985 + - uid: 30193 components: - pos: -37.5,-47.5 parent: 2 type: Transform - - uid: 29986 + - uid: 30194 components: - pos: -17.5,31.5 parent: 2 type: Transform - - uid: 29987 + - uid: 30195 components: - pos: -26.5,-63.5 parent: 2 type: Transform - - uid: 29988 + - uid: 30196 components: - pos: -22.5,-63.5 parent: 2 type: Transform - - uid: 29989 + - uid: 30197 components: - pos: 58.5,2.5 parent: 2 type: Transform - - uid: 29990 + - uid: 30198 components: - rot: 3.141592653589793 rad pos: -27.5,-57.5 parent: 2 type: Transform - - uid: 29991 + - uid: 30199 components: - pos: -33.5,-24.5 parent: 2 type: Transform - - uid: 29992 + - uid: 30200 components: - pos: -34.5,-24.5 parent: 2 type: Transform - - uid: 29993 + - uid: 30201 components: - pos: -34.5,-22.5 parent: 2 type: Transform - - uid: 29994 + - uid: 30202 components: - pos: -34.5,-23.5 parent: 2 type: Transform - - uid: 29995 + - uid: 30203 components: - rot: 1.5707963267948966 rad pos: 52.5,54.5 parent: 2 type: Transform - - uid: 29996 + - uid: 30204 components: - rot: -1.5707963267948966 rad pos: -9.5,33.5 parent: 2 type: Transform - - uid: 29997 + - uid: 30205 components: - rot: -1.5707963267948966 rad pos: -10.5,33.5 parent: 2 type: Transform - - uid: 29998 + - uid: 30206 components: - rot: -1.5707963267948966 rad pos: -9.5,30.5 parent: 2 type: Transform - - uid: 29999 + - uid: 30207 components: - rot: -1.5707963267948966 rad pos: -10.5,30.5 parent: 2 type: Transform - - uid: 30000 + - uid: 30208 components: - rot: -1.5707963267948966 rad pos: -11.5,30.5 parent: 2 type: Transform - - uid: 30001 + - uid: 30209 components: - rot: -1.5707963267948966 rad pos: -12.5,30.5 parent: 2 type: Transform - - uid: 30002 + - uid: 30210 components: - pos: -11.5,25.5 parent: 2 type: Transform - - uid: 30003 + - uid: 30211 components: - pos: -12.5,25.5 parent: 2 type: Transform - - uid: 30004 + - uid: 30212 components: - rot: -1.5707963267948966 rad pos: -10.5,34.5 parent: 2 type: Transform - - uid: 30005 + - uid: 30213 components: - pos: -21.5,16.5 parent: 2 type: Transform - - uid: 30006 + - uid: 30214 components: - pos: -21.5,17.5 parent: 2 type: Transform - - uid: 30007 + - uid: 30215 components: - pos: -21.5,18.5 parent: 2 type: Transform - - uid: 30008 + - uid: 30216 components: - pos: -21.5,19.5 parent: 2 type: Transform - - uid: 30009 + - uid: 30217 components: - pos: -17.5,15.5 parent: 2 type: Transform - - uid: 30010 + - uid: 30218 components: - pos: -17.5,16.5 parent: 2 type: Transform - - uid: 30011 + - uid: 30219 components: - pos: -17.5,17.5 parent: 2 type: Transform - - uid: 30012 + - uid: 30220 components: - pos: -17.5,18.5 parent: 2 type: Transform - - uid: 30013 + - uid: 30221 components: - pos: -21.5,22.5 parent: 2 type: Transform - - uid: 30014 + - uid: 30222 components: - pos: -21.5,25.5 parent: 2 type: Transform - - uid: 30015 + - uid: 30223 components: - rot: -1.5707963267948966 rad pos: -13.5,22.5 parent: 2 type: Transform - - uid: 30016 + - uid: 30224 components: - rot: -1.5707963267948966 rad pos: -17.5,27.5 parent: 2 type: Transform - - uid: 30017 + - uid: 30225 components: - pos: -17.5,22.5 parent: 2 type: Transform - - uid: 30018 + - uid: 30226 components: - pos: -17.5,21.5 parent: 2 type: Transform - - uid: 30019 + - uid: 30227 components: - pos: -17.5,20.5 parent: 2 type: Transform - - uid: 30020 + - uid: 30228 components: - pos: -23.5,16.5 parent: 2 type: Transform - - uid: 30021 + - uid: 30229 components: - pos: -26.5,17.5 parent: 2 type: Transform - - uid: 30022 + - uid: 30230 components: - pos: -26.5,26.5 parent: 2 type: Transform - - uid: 30023 + - uid: 30231 components: - pos: -25.5,26.5 parent: 2 type: Transform - - uid: 30024 + - uid: 30232 components: - pos: -26.5,20.5 parent: 2 type: Transform - - uid: 30025 + - uid: 30233 components: - pos: -27.5,26.5 parent: 2 type: Transform - - uid: 30026 + - uid: 30234 components: - pos: -28.5,26.5 parent: 2 type: Transform - - uid: 30027 + - uid: 30235 components: - pos: -26.5,24.5 parent: 2 type: Transform - - uid: 30028 + - uid: 30236 components: - rot: 3.141592653589793 rad pos: -27.5,20.5 parent: 2 type: Transform - - uid: 30029 + - uid: 30237 components: - rot: 3.141592653589793 rad pos: -28.5,20.5 parent: 2 type: Transform - - uid: 30030 + - uid: 30238 components: - rot: 3.141592653589793 rad pos: -29.5,20.5 parent: 2 type: Transform - - uid: 30031 + - uid: 30239 components: - rot: 3.141592653589793 rad pos: -29.5,24.5 parent: 2 type: Transform - - uid: 30032 + - uid: 30240 components: - pos: -26.5,16.5 parent: 2 type: Transform - - uid: 30033 + - uid: 30241 components: - pos: -27.5,16.5 parent: 2 type: Transform - - uid: 30034 + - uid: 30242 components: - pos: -28.5,16.5 parent: 2 type: Transform - - uid: 30035 + - uid: 30243 components: - pos: -29.5,16.5 parent: 2 type: Transform - - uid: 30036 + - uid: 30244 components: - pos: -22.5,14.5 parent: 2 type: Transform - - uid: 30037 + - uid: 30245 components: - pos: -23.5,14.5 parent: 2 type: Transform - - uid: 30038 + - uid: 30246 components: - pos: -24.5,16.5 parent: 2 type: Transform - - uid: 30039 + - uid: 30247 components: - pos: -23.5,26.5 parent: 2 type: Transform - - uid: 30040 + - uid: 30248 components: - pos: -36.5,34.5 parent: 2 type: Transform - - uid: 30041 + - uid: 30249 components: - pos: -24.5,15.5 parent: 2 type: Transform - - uid: 30042 + - uid: 30250 components: - pos: -34.5,16.5 parent: 2 type: Transform - - uid: 30043 - components: - - pos: -35.5,16.5 - parent: 2 - type: Transform - - uid: 30044 + - uid: 30251 components: - pos: -35.5,17.5 parent: 2 type: Transform - - uid: 30045 + - uid: 30252 components: - pos: -35.5,23.5 parent: 2 type: Transform - - uid: 30046 + - uid: 30253 components: - pos: -35.5,24.5 parent: 2 type: Transform - - uid: 30047 + - uid: 30254 components: - pos: -33.5,16.5 parent: 2 type: Transform - - uid: 30048 + - uid: 30255 components: - pos: -32.5,16.5 parent: 2 type: Transform - - uid: 30049 + - uid: 30256 components: - pos: -31.5,16.5 parent: 2 type: Transform - - uid: 30050 + - uid: 30257 components: - pos: -30.5,16.5 parent: 2 type: Transform - - uid: 30051 + - uid: 30258 components: - rot: 1.5707963267948966 rad pos: -36.5,17.5 parent: 2 type: Transform - - uid: 30052 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,17.5 - parent: 2 - type: Transform - - uid: 30053 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,17.5 - parent: 2 - type: Transform - - uid: 30054 + - uid: 30259 components: - rot: 1.5707963267948966 rad pos: -39.5,17.5 parent: 2 type: Transform - - uid: 30055 + - uid: 30260 components: - rot: 1.5707963267948966 rad pos: -40.5,17.5 parent: 2 type: Transform - - uid: 30056 + - uid: 30261 components: - pos: -38.5,34.5 parent: 2 type: Transform - - uid: 30057 + - uid: 30262 components: - pos: -39.5,32.5 parent: 2 type: Transform - - uid: 30058 + - uid: 30263 components: - pos: -39.5,33.5 parent: 2 type: Transform - - uid: 30059 + - uid: 30264 components: - rot: 1.5707963267948966 rad pos: -40.5,26.5 parent: 2 type: Transform - - uid: 30060 + - uid: 30265 components: - rot: 1.5707963267948966 rad pos: -42.5,26.5 parent: 2 type: Transform - - uid: 30061 + - uid: 30266 components: - rot: 1.5707963267948966 rad pos: -43.5,17.5 parent: 2 type: Transform - - uid: 30062 + - uid: 30267 components: - rot: 1.5707963267948966 rad pos: -43.5,16.5 parent: 2 type: Transform - - uid: 30063 + - uid: 30268 components: - pos: -51.5,21.5 parent: 2 type: Transform - - uid: 30064 + - uid: 30269 components: - rot: 1.5707963267948966 rad pos: -47.5,27.5 parent: 2 type: Transform - - uid: 30065 + - uid: 30270 components: - rot: 1.5707963267948966 rad pos: -48.5,27.5 parent: 2 type: Transform - - uid: 30066 + - uid: 30271 components: - rot: 1.5707963267948966 rad pos: -44.5,27.5 parent: 2 type: Transform - - uid: 30067 + - uid: 30272 components: - rot: 1.5707963267948966 rad pos: -43.5,27.5 parent: 2 type: Transform - - uid: 30068 + - uid: 30273 components: - rot: 1.5707963267948966 rad pos: -43.5,26.5 parent: 2 type: Transform - - uid: 30069 + - uid: 30274 components: - pos: -17.5,35.5 parent: 2 type: Transform - - uid: 30070 + - uid: 30275 components: - rot: -1.5707963267948966 rad pos: -18.5,36.5 parent: 2 type: Transform - - uid: 30071 + - uid: 30276 components: - pos: -17.5,33.5 parent: 2 type: Transform - - uid: 30072 + - uid: 30277 components: - pos: -13.5,30.5 parent: 2 type: Transform - - uid: 30073 + - uid: 30278 components: - pos: -13.5,29.5 parent: 2 type: Transform - - uid: 30074 + - uid: 30279 components: - pos: -13.5,28.5 parent: 2 type: Transform - - uid: 30075 + - uid: 30280 components: - pos: -14.5,28.5 parent: 2 type: Transform - - uid: 30076 + - uid: 30281 components: - pos: -16.5,28.5 parent: 2 type: Transform - - uid: 30077 + - uid: 30282 components: - pos: 51.5,41.5 parent: 2 type: Transform - - uid: 30078 + - uid: 30283 components: - pos: -22.5,26.5 parent: 2 type: Transform - - uid: 30079 + - uid: 30284 components: - pos: -24.5,14.5 parent: 2 type: Transform - - uid: 30080 + - uid: 30285 components: - pos: -27.5,11.5 parent: 2 type: Transform - - uid: 30081 + - uid: 30286 components: - pos: -28.5,11.5 parent: 2 type: Transform - - uid: 30082 + - uid: 30287 components: - pos: -29.5,26.5 parent: 2 type: Transform - - uid: 30083 + - uid: 30288 components: - rot: 3.141592653589793 rad pos: -41.5,13.5 parent: 2 type: Transform - - uid: 30084 + - uid: 30289 components: - pos: -28.5,14.5 parent: 2 type: Transform - - uid: 30085 + - uid: 30290 components: - pos: -28.5,13.5 parent: 2 type: Transform - - uid: 30086 + - uid: 30291 components: - pos: -28.5,15.5 parent: 2 type: Transform - - uid: 30087 + - uid: 30292 components: - rot: 1.5707963267948966 rad pos: -40.5,36.5 parent: 2 type: Transform - - uid: 30088 + - uid: 30293 components: - rot: 1.5707963267948966 rad pos: -41.5,36.5 parent: 2 type: Transform - - uid: 30089 + - uid: 30294 components: - rot: 1.5707963267948966 rad pos: -42.5,36.5 parent: 2 type: Transform - - uid: 30090 + - uid: 30295 components: - rot: 1.5707963267948966 rad pos: -43.5,36.5 parent: 2 type: Transform - - uid: 30091 + - uid: 30296 components: - rot: 1.5707963267948966 rad pos: -44.5,36.5 parent: 2 type: Transform - - uid: 30092 + - uid: 30297 components: - rot: 1.5707963267948966 rad pos: -44.5,37.5 parent: 2 type: Transform - - uid: 30093 + - uid: 30298 components: - rot: 1.5707963267948966 rad pos: -47.5,37.5 parent: 2 type: Transform - - uid: 30094 + - uid: 30299 components: - rot: 1.5707963267948966 rad pos: -39.5,35.5 parent: 2 type: Transform - - uid: 30095 + - uid: 30300 components: - rot: 1.5707963267948966 rad pos: -39.5,36.5 parent: 2 type: Transform - - uid: 30096 + - uid: 30301 components: - pos: -37.5,26.5 parent: 2 type: Transform - - uid: 30097 + - uid: 30302 components: - pos: -36.5,26.5 parent: 2 type: Transform - - uid: 30098 + - uid: 30303 components: - pos: -25.5,38.5 parent: 2 type: Transform - - uid: 30099 + - uid: 30304 components: - pos: -38.5,26.5 parent: 2 type: Transform - - uid: 30100 + - uid: 30305 components: - pos: -39.5,26.5 parent: 2 type: Transform - - uid: 30101 + - uid: 30306 components: - pos: -39.5,27.5 parent: 2 type: Transform - - uid: 30102 + - uid: 30307 components: - pos: -39.5,28.5 parent: 2 type: Transform - - uid: 30103 + - uid: 30308 components: - pos: -39.5,30.5 parent: 2 type: Transform - - uid: 30104 + - uid: 30309 components: - pos: -39.5,34.5 parent: 2 type: Transform - - uid: 30105 + - uid: 30310 components: - pos: -30.5,-1.5 parent: 2 type: Transform - - uid: 30106 + - uid: 30311 components: - pos: -31.5,-1.5 parent: 2 type: Transform - - uid: 30107 + - uid: 30312 components: - pos: -32.5,-1.5 parent: 2 type: Transform - - uid: 30108 + - uid: 30313 components: - pos: -32.5,-2.5 parent: 2 type: Transform - - uid: 30109 + - uid: 30314 components: - pos: -29.5,2.5 parent: 2 type: Transform - - uid: 30110 + - uid: 30315 components: - pos: -30.5,2.5 parent: 2 type: Transform - - uid: 30111 + - uid: 30316 components: - pos: -31.5,2.5 parent: 2 type: Transform - - uid: 30112 + - uid: 30317 components: - pos: -32.5,2.5 parent: 2 type: Transform - - uid: 30113 + - uid: 30318 components: - pos: -33.5,2.5 parent: 2 type: Transform - - uid: 30114 + - uid: 30319 components: - pos: -34.5,-1.5 parent: 2 type: Transform - - uid: 30115 + - uid: 30320 components: - rot: 3.141592653589793 rad pos: -25.5,16.5 parent: 2 type: Transform - - uid: 30116 + - uid: 30321 components: - pos: -22.5,16.5 parent: 2 type: Transform - - uid: 30117 + - uid: 30322 components: - pos: -16.5,22.5 parent: 2 type: Transform - - uid: 30118 + - uid: 30323 components: - pos: -15.5,22.5 parent: 2 type: Transform - - uid: 30119 + - uid: 30324 components: - pos: -14.5,22.5 parent: 2 type: Transform - - uid: 30120 + - uid: 30325 components: - rot: -1.5707963267948966 rad pos: -13.5,24.5 parent: 2 type: Transform - - uid: 30121 + - uid: 30326 components: - pos: -13.5,25.5 parent: 2 type: Transform - - uid: 30122 + - uid: 30327 components: - rot: -1.5707963267948966 rad pos: -13.5,24.5 parent: 2 type: Transform - - uid: 30123 + - uid: 30328 components: - rot: 3.141592653589793 rad pos: -48.5,17.5 parent: 2 type: Transform - - uid: 30124 + - uid: 30329 components: - rot: 3.141592653589793 rad pos: -47.5,17.5 parent: 2 type: Transform - - uid: 30125 + - uid: 30330 components: - rot: 3.141592653589793 rad pos: -29.5,-4.5 parent: 2 type: Transform - - uid: 30126 + - uid: 30331 components: - rot: 3.141592653589793 rad pos: -29.5,-6.5 parent: 2 type: Transform - - uid: 30127 + - uid: 30332 components: - rot: 3.141592653589793 rad pos: -29.5,-8.5 parent: 2 type: Transform - - uid: 30128 + - uid: 30333 components: - rot: 3.141592653589793 rad pos: -28.5,-8.5 parent: 2 type: Transform - - uid: 30129 + - uid: 30334 components: - rot: 3.141592653589793 rad pos: -27.5,-8.5 parent: 2 type: Transform - - uid: 30130 + - uid: 30335 components: - rot: 3.141592653589793 rad pos: -28.5,-4.5 parent: 2 type: Transform - - uid: 30131 + - uid: 30336 components: - rot: -1.5707963267948966 rad pos: -35.5,-1.5 parent: 2 type: Transform - - uid: 30132 + - uid: 30337 components: - rot: -1.5707963267948966 rad pos: -36.5,-1.5 parent: 2 type: Transform - - uid: 30133 + - uid: 30338 components: - rot: -1.5707963267948966 rad pos: -38.5,-1.5 parent: 2 type: Transform - - uid: 30134 + - uid: 30339 components: - rot: -1.5707963267948966 rad pos: -39.5,-1.5 parent: 2 type: Transform - - uid: 30135 + - uid: 30340 components: - rot: -1.5707963267948966 rad pos: -40.5,-1.5 parent: 2 type: Transform - - uid: 30136 + - uid: 30341 components: - rot: -1.5707963267948966 rad pos: -41.5,-1.5 parent: 2 type: Transform - - uid: 30137 + - uid: 30342 components: - rot: -1.5707963267948966 rad pos: -42.5,-1.5 parent: 2 type: Transform - - uid: 30138 + - uid: 30343 components: - pos: -42.5,2.5 parent: 2 type: Transform - - uid: 30139 + - uid: 30344 components: - pos: -43.5,2.5 parent: 2 type: Transform - - uid: 30140 + - uid: 30345 components: - pos: -42.5,3.5 parent: 2 type: Transform - - uid: 30141 + - uid: 30346 components: - pos: -42.5,4.5 parent: 2 type: Transform - - uid: 30142 + - uid: 30347 components: - pos: -42.5,5.5 parent: 2 type: Transform - - uid: 30143 + - uid: 30348 components: - pos: -42.5,6.5 parent: 2 type: Transform - - uid: 30144 + - uid: 30349 components: - pos: -42.5,7.5 parent: 2 type: Transform - - uid: 30145 + - uid: 30350 components: - pos: -41.5,11.5 parent: 2 type: Transform - - uid: 30146 + - uid: 30351 components: - pos: -41.5,10.5 parent: 2 type: Transform - - uid: 30147 + - uid: 30352 components: - pos: -41.5,9.5 parent: 2 type: Transform - - uid: 30148 + - uid: 30353 components: - pos: -41.5,8.5 parent: 2 type: Transform - - uid: 30149 + - uid: 30354 components: - pos: -34.5,12.5 parent: 2 type: Transform - - uid: 30150 + - uid: 30355 components: - pos: -34.5,11.5 parent: 2 type: Transform - - uid: 30151 + - uid: 30356 components: - pos: -34.5,10.5 parent: 2 type: Transform - - uid: 30152 + - uid: 30357 components: - pos: -33.5,3.5 parent: 2 type: Transform - - uid: 30153 + - uid: 30358 components: - pos: -33.5,4.5 parent: 2 type: Transform - - uid: 30154 + - uid: 30359 components: - pos: -33.5,5.5 parent: 2 type: Transform - - uid: 30155 + - uid: 30360 components: - pos: -33.5,6.5 parent: 2 type: Transform - - uid: 30156 + - uid: 30361 components: - pos: -33.5,7.5 parent: 2 type: Transform - - uid: 30157 + - uid: 30362 components: - pos: -43.5,15.5 parent: 2 type: Transform - - uid: 30158 + - uid: 30363 components: - pos: -33.5,12.5 parent: 2 type: Transform - - uid: 30159 + - uid: 30364 components: - pos: -42.5,12.5 parent: 2 type: Transform - - uid: 30160 + - uid: 30365 components: - pos: -32.5,12.5 parent: 2 type: Transform - - uid: 30161 + - uid: 30366 components: - pos: -41.5,7.5 parent: 2 type: Transform - - uid: 30162 + - uid: 30367 components: - pos: -40.5,7.5 parent: 2 type: Transform - - uid: 30163 + - uid: 30368 components: - pos: -35.5,7.5 parent: 2 type: Transform - - uid: 30164 + - uid: 30369 components: - pos: -34.5,7.5 parent: 2 type: Transform - - uid: 30165 + - uid: 30370 components: - rot: 3.141592653589793 rad pos: -41.5,14.5 parent: 2 type: Transform - - uid: 30166 + - uid: 30371 components: - pos: -43.5,12.5 parent: 2 type: Transform - - uid: 30167 + - uid: 30372 components: - pos: -43.5,13.5 parent: 2 type: Transform - - uid: 30168 + - uid: 30373 components: - pos: -32.5,15.5 parent: 2 type: Transform - - uid: 30169 + - uid: 30374 components: - pos: -41.5,12.5 parent: 2 type: Transform - - uid: 30170 + - uid: 30375 components: - pos: -29.5,11.5 parent: 2 type: Transform - - uid: 30171 + - uid: 30376 components: - pos: -34.5,8.5 parent: 2 type: Transform - - uid: 30172 + - uid: 30377 components: - pos: -33.5,-1.5 parent: 2 type: Transform - - uid: 30173 + - uid: 30378 components: - pos: -34.5,9.5 parent: 2 type: Transform - - uid: 30174 + - uid: 30379 components: - rot: 3.141592653589793 rad pos: -32.5,13.5 parent: 2 type: Transform - - uid: 30175 + - uid: 30380 components: - rot: 3.141592653589793 rad pos: -41.5,13.5 parent: 2 type: Transform - - uid: 30176 + - uid: 30381 components: - rot: 3.141592653589793 rad pos: -41.5,16.5 parent: 2 type: Transform - - uid: 30177 + - uid: 30382 components: - rot: 3.141592653589793 rad pos: -41.5,14.5 parent: 2 type: Transform - - uid: 30178 + - uid: 30383 components: - pos: -43.5,-1.5 parent: 2 type: Transform - - uid: 30179 + - uid: 30384 components: - pos: -44.5,2.5 parent: 2 type: Transform - - uid: 30180 + - uid: 30385 components: - pos: -44.5,-1.5 parent: 2 type: Transform - - uid: 30181 + - uid: 30386 components: - pos: -32.5,11.5 parent: 2 type: Transform - - uid: 30182 + - uid: 30387 components: - pos: -31.5,11.5 parent: 2 type: Transform - - uid: 30183 - components: - - rot: -1.5707963267948966 rad - pos: -40.5,16.5 - parent: 2 - type: Transform - - uid: 30184 - components: - - rot: 3.141592653589793 rad - pos: -40.5,16.5 - parent: 2 - type: Transform - - uid: 30185 + - uid: 30388 components: - rot: -1.5707963267948966 rad pos: -41.5,16.5 parent: 2 type: Transform - - uid: 30186 + - uid: 30389 components: - rot: 3.141592653589793 rad pos: -40.5,17.5 parent: 2 type: Transform - - uid: 30187 + - uid: 30390 components: - pos: -9.5,-19.5 parent: 2 type: Transform - - uid: 30188 + - uid: 30391 components: - pos: -32.5,7.5 parent: 2 type: Transform - - uid: 30189 + - uid: 30392 components: - pos: -31.5,7.5 parent: 2 type: Transform - - uid: 30190 + - uid: 30393 components: - pos: -29.5,7.5 parent: 2 type: Transform - - uid: 30191 + - uid: 30394 components: - rot: 3.141592653589793 rad pos: -41.5,15.5 parent: 2 type: Transform - - uid: 30192 + - uid: 30395 components: - rot: 1.5707963267948966 rad pos: -48.5,2.5 parent: 2 type: Transform - - uid: 30193 + - uid: 30396 components: - rot: 1.5707963267948966 rad pos: -48.5,1.5 parent: 2 type: Transform - - uid: 30194 + - uid: 30397 components: - rot: 1.5707963267948966 rad pos: -48.5,-0.5 parent: 2 type: Transform - - uid: 30195 + - uid: 30398 components: - rot: 1.5707963267948966 rad pos: -48.5,-1.5 parent: 2 type: Transform - - uid: 30196 + - uid: 30399 components: - rot: 1.5707963267948966 rad pos: -46.5,-1.5 parent: 2 type: Transform - - uid: 30197 + - uid: 30400 components: - rot: 1.5707963267948966 rad pos: -45.5,-1.5 parent: 2 type: Transform - - uid: 30198 + - uid: 30401 components: - rot: 1.5707963267948966 rad pos: -47.5,-1.5 parent: 2 type: Transform - - uid: 30199 + - uid: 30402 components: - rot: 1.5707963267948966 rad pos: -49.5,2.5 parent: 2 type: Transform - - uid: 30200 + - uid: 30403 components: - rot: 1.5707963267948966 rad pos: -50.5,2.5 parent: 2 type: Transform - - uid: 30201 + - uid: 30404 components: - rot: 1.5707963267948966 rad pos: -50.5,3.5 parent: 2 type: Transform - - uid: 30202 + - uid: 30405 components: - rot: 1.5707963267948966 rad pos: -50.5,4.5 parent: 2 type: Transform - - uid: 30203 + - uid: 30406 components: - rot: 1.5707963267948966 rad pos: -50.5,5.5 parent: 2 type: Transform - - uid: 30204 + - uid: 30407 components: - rot: 1.5707963267948966 rad pos: -50.5,6.5 parent: 2 type: Transform - - uid: 30205 + - uid: 30408 components: - rot: 1.5707963267948966 rad pos: -50.5,7.5 parent: 2 type: Transform - - uid: 30206 + - uid: 30409 components: - rot: 1.5707963267948966 rad pos: -50.5,8.5 parent: 2 type: Transform - - uid: 30207 + - uid: 30410 components: - rot: 1.5707963267948966 rad pos: -50.5,9.5 parent: 2 type: Transform - - uid: 30208 + - uid: 30411 components: - rot: 1.5707963267948966 rad pos: -49.5,9.5 parent: 2 type: Transform - - uid: 30209 + - uid: 30412 components: - rot: 1.5707963267948966 rad pos: -48.5,9.5 parent: 2 type: Transform - - uid: 30210 + - uid: 30413 components: - rot: 1.5707963267948966 rad pos: -47.5,9.5 parent: 2 type: Transform - - uid: 30211 + - uid: 30414 components: - rot: 1.5707963267948966 rad pos: -44.5,9.5 parent: 2 type: Transform - - uid: 30212 + - uid: 30415 components: - rot: 1.5707963267948966 rad pos: -43.5,9.5 parent: 2 type: Transform - - uid: 30213 + - uid: 30416 components: - rot: 1.5707963267948966 rad pos: -43.5,8.5 parent: 2 type: Transform - - uid: 30214 + - uid: 30417 components: - rot: 1.5707963267948966 rad pos: -43.5,7.5 parent: 2 type: Transform - - uid: 30215 + - uid: 30418 components: - rot: 1.5707963267948966 rad pos: -44.5,10.5 parent: 2 type: Transform - - uid: 30216 + - uid: 30419 components: - rot: 1.5707963267948966 rad pos: -44.5,12.5 parent: 2 type: Transform - - uid: 30217 + - uid: 30420 components: - pos: -50.5,1.5 parent: 2 type: Transform - - uid: 30218 + - uid: 30421 components: - pos: -50.5,0.5 parent: 2 type: Transform - - uid: 30219 + - uid: 30422 components: - pos: -50.5,-0.5 parent: 2 type: Transform - - uid: 30220 + - uid: 30423 components: - pos: -50.5,-1.5 parent: 2 type: Transform - - uid: 30221 + - uid: 30424 components: - pos: -46.5,-3.5 parent: 2 type: Transform - - uid: 30222 + - uid: 30425 components: - pos: -43.5,-2.5 parent: 2 type: Transform - - uid: 30223 + - uid: 30426 components: - pos: -50.5,-2.5 parent: 2 type: Transform - - uid: 30224 + - uid: 30427 components: - pos: -52.5,-1.5 parent: 2 type: Transform - - uid: 30225 + - uid: 30428 components: - pos: -52.5,0.5 parent: 2 type: Transform - - uid: 30226 + - uid: 30429 components: - pos: -52.5,-2.5 parent: 2 type: Transform - - uid: 30227 + - uid: 30430 components: - pos: -54.5,-2.5 parent: 2 type: Transform - - uid: 30228 + - uid: 30431 components: - rot: 3.141592653589793 rad pos: -11.5,22.5 parent: 2 type: Transform - - uid: 30229 + - uid: 30432 components: - pos: -56.5,-2.5 parent: 2 type: Transform - - uid: 30230 + - uid: 30433 components: - pos: -55.5,-2.5 parent: 2 type: Transform - - uid: 30231 + - uid: 30434 components: - pos: -52.5,1.5 parent: 2 type: Transform - - uid: 30232 + - uid: 30435 components: - pos: -50.5,12.5 parent: 2 type: Transform - - uid: 30233 + - uid: 30436 components: - pos: -50.5,13.5 parent: 2 type: Transform - - uid: 30234 + - uid: 30437 components: - pos: -50.5,14.5 parent: 2 type: Transform - - uid: 30235 + - uid: 30438 components: - pos: -50.5,15.5 parent: 2 type: Transform - - uid: 30236 + - uid: 30439 components: - rot: 3.141592653589793 rad pos: -52.5,12.5 parent: 2 type: Transform - - uid: 30237 + - uid: 30440 components: - rot: 3.141592653589793 rad pos: -52.5,5.5 parent: 2 type: Transform - - uid: 30238 + - uid: 30441 components: - rot: 3.141592653589793 rad pos: -51.5,9.5 parent: 2 type: Transform - - uid: 30239 + - uid: 30442 components: - rot: 3.141592653589793 rad pos: -51.5,5.5 parent: 2 type: Transform - - uid: 30240 + - uid: 30443 components: - rot: 3.141592653589793 rad pos: -46.5,17.5 parent: 2 type: Transform - - uid: 30241 + - uid: 30444 components: - pos: -32.5,-3.5 parent: 2 type: Transform - - uid: 30242 + - uid: 30445 components: - pos: 53.5,41.5 parent: 2 type: Transform - - uid: 30243 + - uid: 30446 components: - pos: 64.5,0.5 parent: 2 type: Transform - - uid: 30244 + - uid: 30447 components: - pos: 67.5,-12.5 parent: 2 type: Transform - - uid: 30245 + - uid: 30448 components: - pos: 67.5,-4.5 parent: 2 type: Transform - - uid: 30246 + - uid: 30449 components: - pos: 53.5,40.5 parent: 2 type: Transform - - uid: 30247 + - uid: 30450 components: - pos: -17.5,36.5 parent: 2 type: Transform - - uid: 30248 + - uid: 30451 components: - pos: -20.5,32.5 parent: 2 type: Transform - - uid: 30249 + - uid: 30452 components: - pos: -21.5,32.5 parent: 2 type: Transform - - uid: 30250 + - uid: 30453 components: - pos: -21.5,31.5 parent: 2 type: Transform - - uid: 30251 + - uid: 30454 components: - rot: -1.5707963267948966 rad pos: -22.5,32.5 parent: 2 type: Transform - - uid: 30252 + - uid: 30455 components: - pos: -21.5,29.5 parent: 2 type: Transform - - uid: 30253 + - uid: 30456 components: - pos: -21.5,28.5 parent: 2 type: Transform - - uid: 30254 + - uid: 30457 components: - pos: -21.5,26.5 parent: 2 type: Transform - - uid: 30255 + - uid: 30458 components: - pos: -17.5,28.5 parent: 2 type: Transform - - uid: 30256 + - uid: 30459 components: - rot: -1.5707963267948966 rad pos: -13.5,27.5 parent: 2 type: Transform - - uid: 30257 + - uid: 30460 components: - rot: -1.5707963267948966 rad pos: -13.5,23.5 parent: 2 type: Transform - - uid: 30258 + - uid: 30461 components: - pos: -35.5,20.5 parent: 2 type: Transform - - uid: 30259 + - uid: 30462 components: - pos: -0.5,10.5 parent: 2 type: Transform - - uid: 30260 + - uid: 30463 components: - rot: 1.5707963267948966 rad pos: -6.5,-11.5 parent: 2 type: Transform - - uid: 30261 + - uid: 30464 components: - pos: 5.5,-55.5 parent: 2 type: Transform - - uid: 30262 + - uid: 30465 components: - pos: 59.5,-31.5 parent: 2 type: Transform - - uid: 30263 + - uid: 30466 components: - rot: -1.5707963267948966 rad pos: -0.5,-76.5 parent: 2 type: Transform - - uid: 30264 + - uid: 30467 components: - pos: 19.5,-51.5 parent: 2 type: Transform - - uid: 30265 + - uid: 30468 components: - pos: 22.5,-48.5 parent: 2 type: Transform - - uid: 30266 + - uid: 30469 components: - rot: 3.141592653589793 rad pos: -31.5,-53.5 parent: 2 type: Transform - - uid: 30267 + - uid: 30470 components: - pos: -27.5,-55.5 parent: 2 type: Transform - - uid: 30268 + - uid: 30471 components: - rot: 3.141592653589793 rad pos: -17.5,8.5 parent: 2 type: Transform - - uid: 30269 + - uid: 30472 components: - pos: -21.5,-6.5 parent: 2 type: Transform - - uid: 30270 + - uid: 30473 components: - rot: 3.141592653589793 rad pos: -44.5,17.5 parent: 2 type: Transform - - uid: 30271 + - uid: 30474 components: - rot: 3.141592653589793 rad pos: -31.5,-72.5 parent: 2 type: Transform - - uid: 30272 + - uid: 30475 components: - pos: -30.5,-68.5 parent: 2 type: Transform - - uid: 30273 + - uid: 30476 components: - pos: -26.5,-72.5 parent: 2 type: Transform - - uid: 30274 + - uid: 30477 components: - pos: -26.5,-71.5 parent: 2 type: Transform - - uid: 30275 + - uid: 30478 components: - pos: 6.5,-55.5 parent: 2 type: Transform - - uid: 30276 + - uid: 30479 components: - pos: -17.5,32.5 parent: 2 type: Transform - - uid: 30277 + - uid: 30480 components: - pos: -18.5,32.5 parent: 2 type: Transform - - uid: 30278 + - uid: 30481 components: - pos: -19.5,32.5 parent: 2 type: Transform - - uid: 30279 + - uid: 30482 components: - pos: 44.5,47.5 parent: 2 type: Transform - - uid: 30280 + - uid: 30483 components: - pos: 44.5,48.5 parent: 2 type: Transform - - uid: 30281 + - uid: 30484 components: - pos: 53.5,39.5 parent: 2 type: Transform - - uid: 30282 + - uid: 30485 components: - pos: 53.5,38.5 parent: 2 type: Transform - - uid: 30283 + - uid: 30486 components: - pos: 52.5,38.5 parent: 2 type: Transform - - uid: 30284 + - uid: 30487 components: - pos: 51.5,38.5 parent: 2 type: Transform - - uid: 30285 + - uid: 30488 components: - pos: 50.5,38.5 parent: 2 type: Transform - - uid: 30286 + - uid: 30489 components: - pos: 55.5,36.5 parent: 2 type: Transform - - uid: 30287 + - uid: 30490 components: - pos: 55.5,35.5 parent: 2 type: Transform - - uid: 30288 + - uid: 30491 components: - pos: 55.5,34.5 parent: 2 type: Transform - - uid: 30289 + - uid: 30492 components: - pos: 54.5,34.5 parent: 2 type: Transform - - uid: 30290 + - uid: 30493 components: - pos: 53.5,34.5 parent: 2 type: Transform - - uid: 30291 + - uid: 30494 components: - pos: 51.5,34.5 parent: 2 type: Transform - - uid: 30292 + - uid: 30495 components: - pos: 50.5,34.5 parent: 2 type: Transform - - uid: 30293 + - uid: 30496 components: - pos: 50.5,35.5 parent: 2 type: Transform - - uid: 30294 + - uid: 30497 components: - pos: 50.5,36.5 parent: 2 type: Transform - - uid: 30295 + - uid: 30498 components: - pos: 50.5,37.5 parent: 2 type: Transform - - uid: 30296 + - uid: 30499 components: - pos: 51.5,33.5 parent: 2 type: Transform - - uid: 30297 + - uid: 30500 components: - pos: 51.5,32.5 parent: 2 type: Transform - - uid: 30298 + - uid: 30501 components: - pos: 53.5,33.5 parent: 2 type: Transform - - uid: 30299 + - uid: 30502 components: - pos: 53.5,32.5 parent: 2 type: Transform - - uid: 30300 + - uid: 30503 components: - pos: 53.5,31.5 parent: 2 type: Transform - - uid: 30301 + - uid: 30504 components: - pos: 53.5,30.5 parent: 2 type: Transform - - uid: 30302 + - uid: 30505 components: - pos: 52.5,30.5 parent: 2 type: Transform - - uid: 30303 + - uid: 30506 components: - pos: 51.5,30.5 parent: 2 type: Transform - - uid: 30304 + - uid: 30507 components: - pos: 49.5,30.5 parent: 2 type: Transform - - uid: 30305 + - uid: 30508 components: - pos: 50.5,30.5 parent: 2 type: Transform - - uid: 30306 + - uid: 30509 components: - pos: 49.5,34.5 parent: 2 type: Transform - - uid: 30307 + - uid: 30510 components: - pos: 48.5,34.5 parent: 2 type: Transform - - uid: 30308 + - uid: 30511 components: - pos: 47.5,30.5 parent: 2 type: Transform - - uid: 30309 + - uid: 30512 components: - pos: 47.5,29.5 parent: 2 type: Transform - - uid: 30310 + - uid: 30513 components: - pos: 47.5,28.5 parent: 2 type: Transform - - uid: 30311 + - uid: 30514 components: - pos: 47.5,27.5 parent: 2 type: Transform - - uid: 30312 + - uid: 30515 components: - pos: 49.5,27.5 parent: 2 type: Transform - - uid: 30313 + - uid: 30516 components: - pos: 50.5,27.5 parent: 2 type: Transform - - uid: 30314 + - uid: 30517 components: - pos: 51.5,27.5 parent: 2 type: Transform - - uid: 30315 + - uid: 30518 components: - pos: 51.5,28.5 parent: 2 type: Transform - - uid: 30316 + - uid: 30519 components: - pos: 51.5,29.5 parent: 2 type: Transform - - uid: 30317 + - uid: 30520 components: - pos: 60.5,27.5 parent: 2 type: Transform - - uid: 30318 + - uid: 30521 components: - pos: 59.5,27.5 parent: 2 type: Transform - - uid: 30319 + - uid: 30522 components: - pos: 57.5,27.5 parent: 2 type: Transform - - uid: 30320 + - uid: 30523 components: - pos: 56.5,27.5 parent: 2 type: Transform - - uid: 30321 + - uid: 30524 components: - pos: 61.5,29.5 parent: 2 type: Transform - - uid: 30322 + - uid: 30525 components: - pos: 61.5,28.5 parent: 2 type: Transform - - uid: 30323 + - uid: 30526 components: - pos: 61.5,27.5 parent: 2 type: Transform - - uid: 30324 + - uid: 30527 components: - pos: 59.5,30.5 parent: 2 type: Transform - - uid: 30325 + - uid: 30528 components: - pos: 58.5,30.5 parent: 2 type: Transform - - uid: 30326 + - uid: 30529 components: - pos: 56.5,30.5 parent: 2 type: Transform - - uid: 30327 + - uid: 30530 components: - pos: 56.5,29.5 parent: 2 type: Transform - - uid: 30328 + - uid: 30531 components: - pos: 56.5,28.5 parent: 2 type: Transform - - uid: 30329 + - uid: 30532 components: - pos: 54.5,30.5 parent: 2 type: Transform - - uid: 30330 + - uid: 30533 components: - pos: 55.5,30.5 parent: 2 type: Transform - - uid: 30331 + - uid: 30534 components: - rot: -1.5707963267948966 rad pos: 49.5,29.5 parent: 2 type: Transform - - uid: 30332 + - uid: 30535 components: - rot: 3.141592653589793 rad pos: -11.5,23.5 parent: 2 type: Transform - - uid: 30333 + - uid: 30536 components: - rot: -1.5707963267948966 rad pos: -23.5,32.5 parent: 2 type: Transform - - uid: 30334 + - uid: 30537 components: - rot: -1.5707963267948966 rad pos: -24.5,32.5 parent: 2 type: Transform - - uid: 30335 + - uid: 30538 components: - rot: -1.5707963267948966 rad pos: -25.5,32.5 parent: 2 type: Transform - - uid: 30336 + - uid: 30539 components: - rot: -1.5707963267948966 rad pos: -22.5,28.5 parent: 2 type: Transform - - uid: 30337 + - uid: 30540 components: - rot: -1.5707963267948966 rad pos: -23.5,28.5 parent: 2 type: Transform - - uid: 30338 + - uid: 30541 components: - rot: -1.5707963267948966 rad pos: -24.5,28.5 parent: 2 type: Transform - - uid: 30339 + - uid: 30542 components: - rot: -1.5707963267948966 rad pos: -25.5,28.5 parent: 2 type: Transform - - uid: 30340 + - uid: 30543 components: - rot: -1.5707963267948966 rad pos: -25.5,31.5 parent: 2 type: Transform - - uid: 30341 + - uid: 30544 components: - rot: -1.5707963267948966 rad pos: -25.5,30.5 parent: 2 type: Transform - - uid: 30342 + - uid: 30545 components: - rot: -1.5707963267948966 rad pos: -25.5,29.5 parent: 2 type: Transform - - uid: 30343 + - uid: 30546 components: - rot: -1.5707963267948966 rad pos: -20.5,36.5 parent: 2 type: Transform - - uid: 30344 + - uid: 30547 components: - rot: -1.5707963267948966 rad pos: -19.5,36.5 parent: 2 type: Transform - - uid: 30345 + - uid: 30548 components: - rot: -1.5707963267948966 rad pos: -21.5,36.5 parent: 2 type: Transform - - uid: 30346 + - uid: 30549 components: - rot: -1.5707963267948966 rad pos: -22.5,36.5 parent: 2 type: Transform - - uid: 30347 + - uid: 30550 components: - rot: -1.5707963267948966 rad pos: -22.5,35.5 parent: 2 type: Transform - - uid: 30348 + - uid: 30551 components: - rot: -1.5707963267948966 rad pos: -22.5,33.5 parent: 2 type: Transform - - uid: 30349 + - uid: 30552 components: - rot: -1.5707963267948966 rad pos: -26.5,29.5 parent: 2 type: Transform - - uid: 30350 + - uid: 30553 components: - rot: -1.5707963267948966 rad pos: -27.5,29.5 parent: 2 type: Transform - - uid: 30351 + - uid: 30554 components: - rot: -1.5707963267948966 rad pos: -27.5,30.5 parent: 2 type: Transform - - uid: 30352 + - uid: 30555 components: - rot: -1.5707963267948966 rad pos: -18.5,37.5 parent: 2 type: Transform - - uid: 30353 + - uid: 30556 components: - rot: -1.5707963267948966 rad pos: -17.5,39.5 parent: 2 type: Transform - - uid: 30354 + - uid: 30557 components: - rot: -1.5707963267948966 rad pos: -18.5,39.5 parent: 2 type: Transform - - uid: 30355 + - uid: 30558 components: - rot: -1.5707963267948966 rad pos: -19.5,39.5 parent: 2 type: Transform - - uid: 30356 + - uid: 30559 components: - rot: -1.5707963267948966 rad pos: -9.5,31.5 parent: 2 type: Transform - - uid: 30357 + - uid: 30560 components: - rot: -1.5707963267948966 rad pos: -9.5,32.5 parent: 2 type: Transform - - uid: 30358 + - uid: 30561 components: - rot: -1.5707963267948966 rad pos: -13.5,31.5 parent: 2 type: Transform - - uid: 30359 + - uid: 30562 components: - rot: -1.5707963267948966 rad pos: -13.5,32.5 parent: 2 type: Transform - - uid: 30360 + - uid: 30563 components: - rot: -1.5707963267948966 rad pos: -9.5,36.5 parent: 2 type: Transform - - uid: 30361 + - uid: 30564 components: - rot: -1.5707963267948966 rad pos: -8.5,36.5 parent: 2 type: Transform - - uid: 30362 + - uid: 30565 components: - rot: -1.5707963267948966 rad pos: -13.5,40.5 parent: 2 type: Transform - - uid: 30363 + - uid: 30566 components: - rot: -1.5707963267948966 rad pos: -12.5,40.5 parent: 2 type: Transform - - uid: 30364 + - uid: 30567 components: - rot: -1.5707963267948966 rad pos: -11.5,40.5 parent: 2 type: Transform - - uid: 30365 + - uid: 30568 components: - rot: -1.5707963267948966 rad pos: -10.5,35.5 parent: 2 type: Transform - - uid: 30366 + - uid: 30569 components: - rot: -1.5707963267948966 rad pos: -19.5,52.5 parent: 2 type: Transform - - uid: 30367 + - uid: 30570 components: - rot: -1.5707963267948966 rad pos: -10.5,40.5 parent: 2 type: Transform - - uid: 30368 + - uid: 30571 components: - rot: -1.5707963267948966 rad pos: -9.5,40.5 parent: 2 type: Transform - - uid: 30369 + - uid: 30572 components: - rot: -1.5707963267948966 rad pos: -8.5,40.5 parent: 2 type: Transform - - uid: 30370 + - uid: 30573 components: - rot: -1.5707963267948966 rad pos: -10.5,36.5 parent: 2 type: Transform - - uid: 30371 + - uid: 30574 components: - rot: -1.5707963267948966 rad pos: -11.5,36.5 parent: 2 type: Transform - - uid: 30372 + - uid: 30575 components: - rot: -1.5707963267948966 rad pos: -12.5,36.5 parent: 2 type: Transform - - uid: 30373 + - uid: 30576 components: - rot: -1.5707963267948966 rad pos: -16.5,64.5 parent: 2 type: Transform - - uid: 30374 + - uid: 30577 components: - rot: -1.5707963267948966 rad pos: -15.5,64.5 parent: 2 type: Transform - - uid: 30375 + - uid: 30578 components: - rot: -1.5707963267948966 rad pos: -14.5,64.5 parent: 2 type: Transform - - uid: 30376 + - uid: 30579 components: - rot: -1.5707963267948966 rad pos: -18.5,64.5 parent: 2 type: Transform - - uid: 30377 + - uid: 30580 components: - rot: -1.5707963267948966 rad pos: -19.5,64.5 parent: 2 type: Transform - - uid: 30378 + - uid: 30581 components: - rot: -1.5707963267948966 rad pos: -20.5,64.5 parent: 2 type: Transform - - uid: 30379 + - uid: 30582 components: - rot: -1.5707963267948966 rad pos: -14.5,63.5 parent: 2 type: Transform - - uid: 30380 + - uid: 30583 components: - rot: -1.5707963267948966 rad pos: -14.5,61.5 parent: 2 type: Transform - - uid: 30381 + - uid: 30584 components: - rot: -1.5707963267948966 rad pos: -14.5,60.5 parent: 2 type: Transform - - uid: 30382 + - uid: 30585 components: - rot: -1.5707963267948966 rad pos: -20.5,63.5 parent: 2 type: Transform - - uid: 30383 + - uid: 30586 components: - rot: -1.5707963267948966 rad pos: -20.5,61.5 parent: 2 type: Transform - - uid: 30384 + - uid: 30587 components: - rot: -1.5707963267948966 rad pos: -20.5,60.5 parent: 2 type: Transform - - uid: 30385 + - uid: 30588 components: - rot: -1.5707963267948966 rad pos: -11.5,62.5 parent: 2 type: Transform - - uid: 30386 + - uid: 30589 components: - rot: -1.5707963267948966 rad pos: -11.5,61.5 parent: 2 type: Transform - - uid: 30387 + - uid: 30590 components: - rot: -1.5707963267948966 rad pos: -11.5,60.5 parent: 2 type: Transform - - uid: 30388 + - uid: 30591 components: - rot: -1.5707963267948966 rad pos: -20.5,59.5 parent: 2 type: Transform - - uid: 30389 + - uid: 30592 components: - rot: -1.5707963267948966 rad pos: -18.5,59.5 parent: 2 type: Transform - - uid: 30390 + - uid: 30593 components: - rot: -1.5707963267948966 rad pos: -18.5,58.5 parent: 2 type: Transform - - uid: 30391 + - uid: 30594 components: - rot: -1.5707963267948966 rad pos: -18.5,57.5 parent: 2 type: Transform - - uid: 30392 + - uid: 30595 components: - rot: -1.5707963267948966 rad pos: -11.5,57.5 parent: 2 type: Transform - - uid: 30393 + - uid: 30596 components: - rot: -1.5707963267948966 rad pos: -20.5,58.5 parent: 2 type: Transform - - uid: 30394 + - uid: 30597 components: - rot: -1.5707963267948966 rad pos: -20.5,57.5 parent: 2 type: Transform - - uid: 30395 + - uid: 30598 components: - rot: -1.5707963267948966 rad pos: -18.5,56.5 parent: 2 type: Transform - - uid: 30396 + - uid: 30599 components: - rot: 1.5707963267948966 rad pos: -19.5,57.5 parent: 2 type: Transform - - uid: 30397 + - uid: 30600 components: - rot: -1.5707963267948966 rad pos: -20.5,56.5 parent: 2 type: Transform - - uid: 30398 + - uid: 30601 components: - rot: -1.5707963267948966 rad pos: -20.5,54.5 parent: 2 type: Transform - - uid: 30399 + - uid: 30602 components: - rot: -1.5707963267948966 rad pos: -18.5,54.5 parent: 2 type: Transform - - uid: 30400 + - uid: 30603 components: - rot: -1.5707963267948966 rad pos: -18.5,53.5 parent: 2 type: Transform - - uid: 30401 + - uid: 30604 components: - rot: -1.5707963267948966 rad pos: -18.5,52.5 parent: 2 type: Transform - - uid: 30402 + - uid: 30605 components: - rot: -1.5707963267948966 rad pos: -22.5,49.5 parent: 2 type: Transform - - uid: 30403 + - uid: 30606 components: - rot: -1.5707963267948966 rad pos: -23.5,54.5 parent: 2 type: Transform - - uid: 30404 + - uid: 30607 components: - rot: -1.5707963267948966 rad pos: -23.5,55.5 parent: 2 type: Transform - - uid: 30405 + - uid: 30608 components: - rot: -1.5707963267948966 rad pos: -11.5,56.5 parent: 2 type: Transform - - uid: 30406 + - uid: 30609 components: - rot: -1.5707963267948966 rad pos: -11.5,55.5 parent: 2 type: Transform - - uid: 30407 + - uid: 30610 components: - rot: -1.5707963267948966 rad pos: -11.5,54.5 parent: 2 type: Transform - - uid: 30408 + - uid: 30611 components: - rot: -1.5707963267948966 rad pos: -20.5,53.5 parent: 2 type: Transform - - uid: 30409 + - uid: 30612 components: - rot: -1.5707963267948966 rad pos: -20.5,52.5 parent: 2 type: Transform - - uid: 30410 + - uid: 30613 components: - rot: -1.5707963267948966 rad pos: -23.5,53.5 parent: 2 type: Transform - - uid: 30411 + - uid: 30614 components: - rot: -1.5707963267948966 rad pos: -23.5,52.5 parent: 2 type: Transform - - uid: 30412 + - uid: 30615 components: - rot: -1.5707963267948966 rad pos: -23.5,49.5 parent: 2 type: Transform - - uid: 30413 + - uid: 30616 components: - rot: -1.5707963267948966 rad pos: -23.5,50.5 parent: 2 type: Transform - - uid: 30414 + - uid: 30617 components: - rot: -1.5707963267948966 rad pos: -23.5,51.5 parent: 2 type: Transform - - uid: 30415 + - uid: 30618 components: - rot: -1.5707963267948966 rad pos: -11.5,50.5 parent: 2 type: Transform - - uid: 30416 + - uid: 30619 components: - rot: -1.5707963267948966 rad pos: -11.5,49.5 parent: 2 type: Transform - - uid: 30417 + - uid: 30620 components: - rot: -1.5707963267948966 rad pos: -14.5,48.5 parent: 2 type: Transform - - uid: 30418 + - uid: 30621 components: - rot: -1.5707963267948966 rad pos: -11.5,48.5 parent: 2 type: Transform - - uid: 30419 + - uid: 30622 components: - rot: -1.5707963267948966 rad pos: -12.5,48.5 parent: 2 type: Transform - - uid: 30420 + - uid: 30623 components: - rot: -1.5707963267948966 rad pos: -15.5,49.5 parent: 2 type: Transform - - uid: 30421 + - uid: 30624 components: - rot: -1.5707963267948966 rad pos: -19.5,49.5 parent: 2 type: Transform - - uid: 30422 + - uid: 30625 components: - rot: -1.5707963267948966 rad pos: -19.5,48.5 parent: 2 type: Transform - - uid: 30423 + - uid: 30626 components: - rot: -1.5707963267948966 rad pos: -19.5,47.5 parent: 2 type: Transform - - uid: 30424 + - uid: 30627 components: - rot: -1.5707963267948966 rad pos: -19.5,46.5 parent: 2 type: Transform - - uid: 30425 + - uid: 30628 components: - rot: -1.5707963267948966 rad pos: -19.5,40.5 parent: 2 type: Transform - - uid: 30426 + - uid: 30629 components: - rot: -1.5707963267948966 rad pos: -15.5,48.5 parent: 2 type: Transform - - uid: 30427 + - uid: 30630 components: - rot: -1.5707963267948966 rad pos: -13.5,43.5 parent: 2 type: Transform - - uid: 30428 + - uid: 30631 components: - rot: -1.5707963267948966 rad pos: -13.5,42.5 parent: 2 type: Transform - - uid: 30429 + - uid: 30632 components: - pos: -25.5,37.5 parent: 2 type: Transform - - uid: 30430 + - uid: 30633 components: - pos: -25.5,36.5 parent: 2 type: Transform - - uid: 30431 + - uid: 30634 components: - pos: -26.5,36.5 parent: 2 type: Transform - - uid: 30432 + - uid: 30635 components: - pos: -25.5,39.5 parent: 2 type: Transform - - uid: 30433 + - uid: 30636 components: - pos: -25.5,40.5 parent: 2 type: Transform - - uid: 30434 + - uid: 30637 components: - pos: -44.5,38.5 parent: 2 type: Transform - - uid: 30435 + - uid: 30638 components: - pos: -30.5,37.5 parent: 2 type: Transform - - uid: 30436 + - uid: 30639 components: - pos: -31.5,37.5 parent: 2 type: Transform - - uid: 30437 + - uid: 30640 components: - pos: -33.5,37.5 parent: 2 type: Transform - - uid: 30438 + - uid: 30641 components: - pos: -33.5,38.5 parent: 2 type: Transform - - uid: 30439 + - uid: 30642 components: - pos: -34.5,38.5 parent: 2 type: Transform - - uid: 30440 + - uid: 30643 components: - pos: -35.5,36.5 parent: 2 type: Transform - - uid: 30441 + - uid: 30644 components: - pos: -37.5,38.5 parent: 2 type: Transform - - uid: 30442 + - uid: 30645 components: - pos: -38.5,38.5 parent: 2 type: Transform - - uid: 30443 + - uid: 30646 components: - rot: 3.141592653589793 rad pos: 67.5,9.5 parent: 2 type: Transform - - uid: 30444 + - uid: 30647 components: - pos: -44.5,13.5 parent: 2 type: Transform - - uid: 30445 + - uid: 30648 components: - rot: -1.5707963267948966 rad pos: -22.5,40.5 parent: 2 type: Transform - - uid: 30446 + - uid: 30649 components: - rot: -1.5707963267948966 rad pos: -21.5,40.5 parent: 2 type: Transform - - uid: 30447 + - uid: 30650 components: - rot: -1.5707963267948966 rad pos: -20.5,40.5 parent: 2 type: Transform - - uid: 30448 + - uid: 30651 components: - pos: -23.5,40.5 parent: 2 type: Transform - - uid: 30449 + - uid: 30652 components: - pos: -23.5,42.5 parent: 2 type: Transform - - uid: 30450 + - uid: 30653 components: - pos: -23.5,43.5 parent: 2 type: Transform - - uid: 30451 + - uid: 30654 components: - pos: -23.5,44.5 parent: 2 type: Transform - - uid: 30452 + - uid: 30655 components: - pos: -23.5,45.5 parent: 2 type: Transform - - uid: 30453 + - uid: 30656 components: - pos: -23.5,46.5 parent: 2 type: Transform - - uid: 30454 + - uid: 30657 components: - pos: -22.5,46.5 parent: 2 type: Transform - - uid: 30455 + - uid: 30658 components: - pos: -21.5,46.5 parent: 2 type: Transform - - uid: 30456 + - uid: 30659 components: - pos: -20.5,46.5 parent: 2 type: Transform - - uid: 30457 + - uid: 30660 components: - pos: -8.5,47.5 parent: 2 type: Transform - - uid: 30458 + - uid: 30661 components: - pos: -7.5,47.5 parent: 2 type: Transform - - uid: 30459 + - uid: 30662 components: - pos: -6.5,47.5 parent: 2 type: Transform - - uid: 30460 + - uid: 30663 components: - pos: -2.5,47.5 parent: 2 type: Transform - - uid: 30461 + - uid: 30664 components: - pos: -1.5,47.5 parent: 2 type: Transform - - uid: 30462 + - uid: 30665 components: - pos: -1.5,48.5 parent: 2 type: Transform - - uid: 30463 + - uid: 30666 components: - pos: -1.5,51.5 parent: 2 type: Transform - - uid: 30464 + - uid: 30667 components: - pos: -1.5,52.5 parent: 2 type: Transform - - uid: 30465 + - uid: 30668 components: - pos: -1.5,53.5 parent: 2 type: Transform - - uid: 30466 + - uid: 30669 components: - pos: -1.5,54.5 parent: 2 type: Transform - - uid: 30467 + - uid: 30670 components: - pos: 45.5,34.5 parent: 2 type: Transform - - uid: 30468 + - uid: 30671 components: - rot: 3.141592653589793 rad pos: 45.5,33.5 parent: 2 type: Transform - - uid: 30469 + - uid: 30672 components: - rot: -1.5707963267948966 rad pos: -4.5,57.5 parent: 2 type: Transform - - uid: 30470 + - uid: 30673 components: - rot: -1.5707963267948966 rad pos: -3.5,57.5 parent: 2 type: Transform - - uid: 30471 + - uid: 30674 components: - rot: -1.5707963267948966 rad pos: -2.5,57.5 parent: 2 type: Transform - - uid: 30472 + - uid: 30675 components: - rot: -1.5707963267948966 rad pos: -1.5,57.5 parent: 2 type: Transform - - uid: 30473 + - uid: 30676 components: - rot: -1.5707963267948966 rad pos: -1.5,56.5 parent: 2 type: Transform - - uid: 30474 + - uid: 30677 components: - rot: -1.5707963267948966 rad pos: -1.5,55.5 parent: 2 type: Transform - - uid: 30475 + - uid: 30678 components: - rot: -1.5707963267948966 rad pos: -9.5,60.5 parent: 2 type: Transform - - uid: 30476 + - uid: 30679 components: - pos: 17.5,35.5 parent: 2 type: Transform - - uid: 30477 + - uid: 30680 components: - pos: 15.5,35.5 parent: 2 type: Transform - - uid: 30478 + - uid: 30681 components: - pos: -28.5,42.5 parent: 2 type: Transform - - uid: 30479 + - uid: 30682 components: - pos: -27.5,42.5 parent: 2 type: Transform - - uid: 30480 + - uid: 30683 components: - pos: -26.5,42.5 parent: 2 type: Transform - - uid: 30481 + - uid: 30684 components: - pos: -39.5,37.5 parent: 2 type: Transform - - uid: 30482 + - uid: 30685 components: - pos: -39.5,38.5 parent: 2 type: Transform - - uid: 30483 + - uid: 30686 components: - pos: -36.5,38.5 parent: 2 type: Transform - - uid: 30484 + - uid: 30687 components: - pos: -35.5,38.5 parent: 2 type: Transform - - uid: 30485 + - uid: 30688 components: - pos: 40.5,49.5 parent: 2 type: Transform - - uid: 30486 + - uid: 30689 components: - pos: 40.5,50.5 parent: 2 type: Transform - - uid: 30487 + - uid: 30690 components: - pos: 44.5,46.5 parent: 2 type: Transform - - uid: 30488 + - uid: 30691 components: - pos: 44.5,44.5 parent: 2 type: Transform - - uid: 30489 + - uid: 30692 components: - pos: -23.5,48.5 parent: 2 type: Transform - - uid: 30490 + - uid: 30693 components: - pos: 7.5,-31.5 parent: 2 type: Transform - - uid: 30491 + - uid: 30694 components: - pos: 7.5,-29.5 parent: 2 type: Transform - - uid: 30492 + - uid: 30695 components: - pos: 7.5,-30.5 parent: 2 type: Transform - - uid: 30493 + - uid: 30696 components: - pos: -22.5,-17.5 parent: 2 type: Transform - - uid: 30494 + - uid: 30697 components: - pos: -16.5,-96.5 parent: 2 type: Transform - - uid: 30495 + - uid: 30698 components: - pos: -28.5,-96.5 parent: 2 type: Transform - - uid: 30496 + - uid: 30699 components: - pos: -13.5,-98.5 parent: 2 type: Transform - - uid: 30497 + - uid: 30700 components: - pos: -13.5,-96.5 parent: 2 type: Transform - - uid: 30498 + - uid: 30701 components: - pos: -31.5,-98.5 parent: 2 type: Transform - - uid: 30499 + - uid: 30702 components: - pos: -31.5,-96.5 parent: 2 type: Transform - - uid: 30500 + - uid: 30703 components: - pos: -43.5,-93.5 parent: 2 type: Transform - - uid: 30501 + - uid: 30704 components: - rot: 1.5707963267948966 rad pos: -39.5,-93.5 parent: 2 type: Transform - - uid: 30502 + - uid: 30705 components: - rot: 1.5707963267948966 rad pos: -40.5,-93.5 parent: 2 type: Transform - - uid: 30503 + - uid: 30706 components: - rot: 3.141592653589793 rad pos: -39.5,-94.5 parent: 2 type: Transform - - uid: 30504 + - uid: 30707 components: - rot: 3.141592653589793 rad pos: -39.5,-97.5 parent: 2 type: Transform - - uid: 30505 + - uid: 30708 components: - pos: 16.5,-4.5 parent: 2 type: Transform - - uid: 30506 + - uid: 30709 components: - rot: 1.5707963267948966 rad pos: 59.5,-8.5 parent: 2 type: Transform - - uid: 30507 + - uid: 30710 components: - pos: -13.5,33.5 parent: 2 type: Transform - - uid: 30508 + - uid: 30711 components: - rot: -1.5707963267948966 rad pos: -14.5,-15.5 parent: 2 type: Transform - - uid: 30509 + - uid: 30712 components: - rot: -1.5707963267948966 rad pos: -14.5,-12.5 parent: 2 type: Transform - - uid: 30510 + - uid: 30713 components: - pos: 60.5,-28.5 parent: 2 type: Transform - - uid: 30511 + - uid: 30714 components: - pos: 7.5,-35.5 parent: 2 type: Transform - - uid: 30512 + - uid: 30715 components: - pos: 7.5,-32.5 parent: 2 type: Transform - - uid: 30513 + - uid: 30716 components: - pos: 57.5,-62.5 parent: 2 type: Transform - - uid: 30514 + - uid: 30717 components: - pos: 5.5,-35.5 parent: 2 type: Transform - - uid: 30515 + - uid: 30718 components: - rot: -1.5707963267948966 rad pos: 39.5,-34.5 parent: 2 type: Transform - - uid: 30516 + - uid: 30719 components: - pos: 56.5,-62.5 parent: 2 type: Transform - - uid: 30517 + - uid: 30720 components: - pos: 7.5,-33.5 parent: 2 type: Transform - - uid: 30518 + - uid: 30721 components: - pos: 7.5,-34.5 parent: 2 type: Transform - - uid: 30519 + - uid: 30722 components: - pos: 52.5,-33.5 parent: 2 type: Transform - - uid: 30520 + - uid: 30723 components: - pos: 52.5,-34.5 parent: 2 type: Transform - - uid: 30521 + - uid: 30724 components: - pos: 55.5,-62.5 parent: 2 type: Transform - - uid: 30522 + - uid: 30725 components: - rot: -1.5707963267948966 rad pos: 38.5,-34.5 parent: 2 type: Transform - - uid: 30523 + - uid: 30726 components: - pos: 9.5,-38.5 parent: 2 type: Transform - - uid: 30524 + - uid: 30727 components: - rot: 3.141592653589793 rad pos: -16.5,-17.5 parent: 2 type: Transform - - uid: 30525 + - uid: 30728 components: - rot: 3.141592653589793 rad pos: -16.5,-19.5 parent: 2 type: Transform - - uid: 30526 + - uid: 30729 components: - rot: 3.141592653589793 rad pos: -14.5,-22.5 parent: 2 type: Transform - - uid: 30527 + - uid: 30730 components: - pos: 73.5,-55.5 parent: 2 type: Transform - - uid: 30528 + - uid: 30731 components: - pos: 52.5,-37.5 parent: 2 type: Transform - - uid: 30529 + - uid: 30732 components: - rot: 1.5707963267948966 rad pos: -57.5,-57.5 parent: 2 type: Transform - - uid: 30530 + - uid: 30733 components: - pos: 60.5,-42.5 parent: 2 type: Transform - - uid: 30531 + - uid: 30734 components: - rot: 1.5707963267948966 rad pos: 60.5,-40.5 parent: 2 type: Transform - - uid: 30532 + - uid: 30735 components: - pos: 55.5,-33.5 parent: 2 type: Transform - - uid: 30533 + - uid: 30736 components: - pos: 56.5,-36.5 parent: 2 type: Transform - - uid: 30534 + - uid: 30737 components: - pos: 56.5,-34.5 parent: 2 type: Transform - - uid: 30535 + - uid: 30738 components: - pos: 60.5,-27.5 parent: 2 type: Transform - - uid: 30536 + - uid: 30739 components: - pos: 59.5,-27.5 parent: 2 type: Transform - - uid: 30537 + - uid: 30740 components: - pos: 58.5,-27.5 parent: 2 type: Transform - - uid: 30538 + - uid: 30741 components: - pos: 56.5,-29.5 parent: 2 type: Transform - - uid: 30539 + - uid: 30742 components: - pos: 56.5,-30.5 parent: 2 type: Transform - - uid: 30540 + - uid: 30743 components: - pos: 56.5,-28.5 parent: 2 type: Transform - - uid: 30541 + - uid: 30744 components: - pos: 61.5,-27.5 parent: 2 type: Transform - - uid: 30542 + - uid: 30745 components: - pos: 56.5,-27.5 parent: 2 type: Transform - - uid: 30543 + - uid: 30746 components: - pos: 53.5,-29.5 parent: 2 type: Transform - - uid: 30544 + - uid: 30747 components: - pos: 54.5,-29.5 parent: 2 type: Transform - - uid: 30545 + - uid: 30748 components: - pos: 44.5,-62.5 parent: 2 type: Transform - - uid: 30546 + - uid: 30749 components: - pos: 44.5,-63.5 parent: 2 type: Transform - - uid: 30547 + - uid: 30750 components: - pos: 53.5,-66.5 parent: 2 type: Transform - - uid: 30548 + - uid: 30751 components: - pos: 56.5,-35.5 parent: 2 type: Transform - - uid: 30549 + - uid: 30752 components: - pos: 57.5,-66.5 parent: 2 type: Transform - - uid: 30550 + - uid: 30753 components: - pos: 57.5,-67.5 parent: 2 type: Transform - - uid: 30551 + - uid: 30754 components: - pos: 65.5,-66.5 parent: 2 type: Transform - - uid: 30552 + - uid: 30755 components: - pos: 65.5,-62.5 parent: 2 type: Transform - - uid: 30553 + - uid: 30756 components: - pos: 65.5,-64.5 parent: 2 type: Transform - - uid: 30554 + - uid: 30757 components: - pos: 65.5,-63.5 parent: 2 type: Transform - - uid: 30555 + - uid: 30758 components: - pos: 73.5,-56.5 parent: 2 type: Transform - - uid: 30556 + - uid: 30759 components: - pos: 74.5,-53.5 parent: 2 type: Transform - - uid: 30557 + - uid: 30760 components: - pos: 66.5,-62.5 parent: 2 type: Transform - - uid: 30558 + - uid: 30761 components: - pos: 67.5,-62.5 parent: 2 type: Transform - - uid: 30559 + - uid: 30762 components: - pos: 70.5,-63.5 parent: 2 type: Transform - - uid: 30560 + - uid: 30763 components: - pos: 70.5,-62.5 parent: 2 type: Transform - - uid: 30561 + - uid: 30764 components: - pos: 69.5,-62.5 parent: 2 type: Transform - - uid: 30562 + - uid: 30765 components: - pos: 69.5,-58.5 parent: 2 type: Transform - - uid: 30563 + - uid: 30766 components: - pos: 70.5,-58.5 parent: 2 type: Transform - - uid: 30564 + - uid: 30767 components: - pos: 70.5,-59.5 parent: 2 type: Transform - - uid: 30565 + - uid: 30768 components: - pos: 70.5,-60.5 parent: 2 type: Transform - - uid: 30566 + - uid: 30769 components: - pos: 72.5,-58.5 parent: 2 type: Transform - - uid: 30567 + - uid: 30770 components: - pos: 56.5,-37.5 parent: 2 type: Transform - - uid: 30568 + - uid: 30771 components: - pos: 58.5,-39.5 parent: 2 type: Transform - - uid: 30569 + - uid: 30772 components: - pos: 62.5,-27.5 parent: 2 type: Transform - - uid: 30570 + - uid: 30773 components: - pos: 18.5,-15.5 parent: 2 type: Transform - - uid: 30571 + - uid: 30774 components: - pos: -12.5,-34.5 parent: 2 type: Transform - - uid: 30572 + - uid: 30775 components: - pos: -22.5,0.5 parent: 2 type: Transform - - uid: 30573 + - uid: 30776 components: - rot: 3.141592653589793 rad pos: 19.5,8.5 parent: 2 type: Transform - - uid: 30574 + - uid: 30777 components: - pos: 16.5,8.5 parent: 2 type: Transform - - uid: 30575 + - uid: 30778 components: - pos: 1.5,-51.5 parent: 2 type: Transform - - uid: 30576 + - uid: 30779 components: - pos: 5.5,-73.5 parent: 2 type: Transform - - uid: 30577 + - uid: 30780 components: - rot: -1.5707963267948966 rad pos: -35.5,18.5 parent: 2 type: Transform - - uid: 30578 + - uid: 30781 components: - rot: -1.5707963267948966 rad pos: -35.5,19.5 parent: 2 type: Transform - - uid: 30579 + - uid: 30782 components: - pos: -16.5,-11.5 parent: 2 type: Transform - - uid: 30580 + - uid: 30783 components: - pos: -13.5,-16.5 parent: 2 type: Transform - - uid: 30581 + - uid: 30784 components: - pos: -8.5,-7.5 parent: 2 type: Transform - - uid: 30582 + - uid: 30785 components: - pos: 6.5,-51.5 parent: 2 type: Transform - - uid: 30583 + - uid: 30786 components: - rot: -1.5707963267948966 rad pos: 8.5,-46.5 parent: 2 type: Transform - - uid: 30584 + - uid: 30787 components: - rot: 1.5707963267948966 rad pos: -27.5,-60.5 parent: 2 type: Transform - - uid: 30585 + - uid: 30788 components: - pos: -21.5,-51.5 parent: 2 type: Transform - - uid: 30586 + - uid: 30789 components: - pos: 5.5,-75.5 parent: 2 type: Transform - - uid: 30587 + - uid: 30790 components: - pos: 4.5,-72.5 parent: 2 type: Transform - - uid: 30588 + - uid: 30791 components: - pos: -11.5,13.5 parent: 2 type: Transform - - uid: 30589 + - uid: 30792 components: - rot: -1.5707963267948966 rad pos: 2.5,-24.5 parent: 2 type: Transform - - uid: 30590 + - uid: 30793 components: - rot: 3.141592653589793 rad pos: 29.5,-37.5 parent: 2 type: Transform +- proto: WallSolidDiagonal + entities: + - uid: 30794 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-8.5 + parent: 2 + type: Transform + - uid: 30795 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,16.5 + parent: 2 + type: Transform + - uid: 30796 + components: + - rot: 3.141592653589793 rad + pos: -40.5,16.5 + parent: 2 + type: Transform - proto: WallSolidRust entities: - - uid: 30593 + - uid: 30797 components: - rot: 3.141592653589793 rad pos: -53.5,-30.5 parent: 2 type: Transform - - uid: 30594 + - uid: 30798 components: - rot: 3.141592653589793 rad pos: -56.5,-30.5 parent: 2 type: Transform - - uid: 30595 + - uid: 30799 components: - rot: 3.141592653589793 rad pos: -52.5,-65.5 parent: 2 type: Transform - - uid: 30596 + - uid: 30800 components: - rot: 3.141592653589793 rad pos: -26.5,-65.5 parent: 2 type: Transform - - uid: 30597 + - uid: 30801 components: - rot: 3.141592653589793 rad pos: -25.5,-65.5 parent: 2 type: Transform - - uid: 30598 + - uid: 30802 components: - rot: 3.141592653589793 rad pos: -31.5,-65.5 parent: 2 type: Transform - - uid: 30599 + - uid: 30803 components: - rot: 3.141592653589793 rad pos: -53.5,-69.5 parent: 2 type: Transform - - uid: 30600 + - uid: 30804 components: - rot: 3.141592653589793 rad pos: -48.5,-73.5 parent: 2 type: Transform - - uid: 30601 + - uid: 30805 components: - rot: 3.141592653589793 rad pos: -40.5,-66.5 parent: 2 type: Transform - - uid: 30602 + - uid: 30806 components: - rot: 3.141592653589793 rad pos: -37.5,-66.5 parent: 2 type: Transform - - uid: 30603 + - uid: 30807 components: - pos: -12.5,-33.5 parent: 2 type: Transform - - uid: 30604 + - uid: 30808 components: - rot: 3.141592653589793 rad pos: 13.5,-58.5 parent: 2 type: Transform - - uid: 30605 + - uid: 30809 components: - rot: 3.141592653589793 rad pos: 13.5,-56.5 parent: 2 type: Transform - - uid: 30606 + - uid: 30810 components: - rot: 1.5707963267948966 rad pos: -10.5,-7.5 @@ -195472,7 +196628,7 @@ entities: type: Transform - proto: WardrobeBotanistFilled entities: - - uid: 30607 + - uid: 30811 components: - pos: -4.5,12.5 parent: 2 @@ -195495,7 +196651,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30608 + - uid: 30812 components: - pos: -4.5,10.5 parent: 2 @@ -195520,7 +196676,7 @@ entities: type: EntityStorage - proto: WardrobeGreenFilled entities: - - uid: 30609 + - uid: 30813 components: - pos: -48.5,3.5 parent: 2 @@ -195545,7 +196701,7 @@ entities: type: EntityStorage - proto: WardrobePrisonFilled entities: - - uid: 30610 + - uid: 30814 components: - pos: 28.5,10.5 parent: 2 @@ -195568,7 +196724,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30611 + - uid: 30815 components: - pos: 36.5,5.5 parent: 2 @@ -195591,7 +196747,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30612 + - uid: 30816 components: - pos: 31.5,10.5 parent: 2 @@ -195614,7 +196770,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30613 + - uid: 30817 components: - pos: 34.5,10.5 parent: 2 @@ -195637,7 +196793,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30614 + - uid: 30818 components: - pos: 36.5,8.5 parent: 2 @@ -195660,7 +196816,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30615 + - uid: 30819 components: - pos: 55.5,22.5 parent: 2 @@ -195683,7 +196839,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30616 + - uid: 30820 components: - pos: 52.5,22.5 parent: 2 @@ -195706,7 +196862,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30617 + - uid: 30821 components: - pos: 49.5,22.5 parent: 2 @@ -195729,7 +196885,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30618 + - uid: 30822 components: - pos: 46.5,22.5 parent: 2 @@ -195752,7 +196908,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30619 + - uid: 30823 components: - pos: 58.5,22.5 parent: 2 @@ -195775,7 +196931,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30620 + - uid: 30824 components: - pos: 60.5,19.5 parent: 2 @@ -195798,7 +196954,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 30621 + - uid: 30825 components: - pos: 60.5,16.5 parent: 2 @@ -195823,7 +196979,7 @@ entities: type: EntityStorage - proto: WardrobeYellowFilled entities: - - uid: 30622 + - uid: 30826 components: - pos: -49.5,3.5 parent: 2 @@ -195848,56 +197004,56 @@ entities: type: EntityStorage - proto: WarningCO2 entities: - - uid: 30623 + - uid: 30827 components: - pos: -51.5,-50.5 parent: 2 type: Transform - proto: WarningN2 entities: - - uid: 30624 + - uid: 30828 components: - pos: -51.5,-54.5 parent: 2 type: Transform - proto: WarningN2O entities: - - uid: 30625 + - uid: 30829 components: - pos: -51.5,-42.5 parent: 2 type: Transform - proto: WarningO2 entities: - - uid: 30626 + - uid: 30830 components: - pos: -51.5,-52.5 parent: 2 type: Transform - proto: WarningPlasma entities: - - uid: 30627 + - uid: 30831 components: - pos: -51.5,-46.5 parent: 2 type: Transform - proto: WarningTritium entities: - - uid: 30628 + - uid: 30832 components: - pos: -51.5,-44.5 parent: 2 type: Transform - proto: WarningWaste entities: - - uid: 30629 + - uid: 30833 components: - pos: -51.5,-48.5 parent: 2 type: Transform - proto: WarpPoint entities: - - uid: 30630 + - uid: 30834 components: - rot: -1.5707963267948966 rad pos: 1.5,-5.5 @@ -195905,14 +197061,14 @@ entities: type: Transform - location: hop type: WarpPoint - - uid: 30631 + - uid: 30835 components: - pos: 12.5,11.5 parent: 2 type: Transform - location: bar type: WarpPoint - - uid: 30632 + - uid: 30836 components: - name: 'Warp: medical' type: MetaData @@ -195921,7 +197077,7 @@ entities: type: Transform - location: medbay type: WarpPoint - - uid: 30633 + - uid: 30837 components: - name: 'warp: science' type: MetaData @@ -195930,7 +197086,7 @@ entities: type: Transform - location: science reception type: WarpPoint - - uid: 30634 + - uid: 30838 components: - name: 'warp: bridge' type: MetaData @@ -195939,7 +197095,7 @@ entities: type: Transform - location: bridge type: WarpPoint - - uid: 30635 + - uid: 30839 components: - name: 'warp: prison' type: MetaData @@ -195948,7 +197104,7 @@ entities: type: Transform - location: open prison type: WarpPoint - - uid: 30636 + - uid: 30840 components: - name: 'warp: security' type: MetaData @@ -195957,21 +197113,21 @@ entities: type: Transform - location: security type: WarpPoint - - uid: 30637 + - uid: 30841 components: - pos: 61.5,-8.5 parent: 2 type: Transform - location: evac type: WarpPoint - - uid: 30638 + - uid: 30842 components: - name: 'warp: waste' type: MetaData - pos: 17.5,-53.5 parent: 2 type: Transform - - uid: 30639 + - uid: 30843 components: - name: 'warp: engineering' type: MetaData @@ -195980,7 +197136,7 @@ entities: type: Transform - location: engineering reception type: WarpPoint - - uid: 30640 + - uid: 30844 components: - name: 'warp: atmospherics' type: MetaData @@ -195989,7 +197145,7 @@ entities: type: Transform - location: atmospherics type: WarpPoint - - uid: 30641 + - uid: 30845 components: - name: 'warp: singularity' type: MetaData @@ -195998,7 +197154,7 @@ entities: type: Transform - location: singularity type: WarpPoint - - uid: 30642 + - uid: 30846 components: - name: 'warp: forgotten dock' type: MetaData @@ -196007,7 +197163,7 @@ entities: type: Transform - location: forgotten ship dock type: WarpPoint - - uid: 30643 + - uid: 30847 components: - name: 'warp: jani closet' type: MetaData @@ -196016,7 +197172,7 @@ entities: type: Transform - location: janitorial closet type: WarpPoint - - uid: 30644 + - uid: 30848 components: - name: 'warp: courthouse' type: MetaData @@ -196025,7 +197181,7 @@ entities: type: Transform - location: courtroom type: WarpPoint - - uid: 30645 + - uid: 30849 components: - name: 'Warp: psychology' type: MetaData @@ -196034,7 +197190,7 @@ entities: type: Transform - location: psychology type: WarpPoint - - uid: 30646 + - uid: 30850 components: - name: 'warp: virology' type: MetaData @@ -196043,7 +197199,7 @@ entities: type: Transform - location: virology reception type: WarpPoint - - uid: 30647 + - uid: 30851 components: - name: 'warp: cargo' type: MetaData @@ -196053,7 +197209,7 @@ entities: type: Transform - location: cargo type: WarpPoint - - uid: 30648 + - uid: 30852 components: - name: 'warp: salvage' type: MetaData @@ -196063,7 +197219,7 @@ entities: type: Transform - location: salvage type: WarpPoint - - uid: 30649 + - uid: 30853 components: - name: 'warp: arrivals' type: MetaData @@ -196073,7 +197229,7 @@ entities: type: Transform - location: arrivals type: WarpPoint - - uid: 30650 + - uid: 30854 components: - name: 'Warp: kitchen' type: MetaData @@ -196083,7 +197239,7 @@ entities: type: Transform - location: kitchen type: WarpPoint - - uid: 30651 + - uid: 30855 components: - name: 'Warp: botany' type: MetaData @@ -196093,7 +197249,7 @@ entities: type: Transform - location: hydrophonics type: WarpPoint - - uid: 30652 + - uid: 30856 components: - name: 'warp: library' type: MetaData @@ -196103,7 +197259,7 @@ entities: type: Transform - location: library type: WarpPoint - - uid: 30653 + - uid: 30857 components: - name: 'Warp: armory' type: MetaData @@ -196113,7 +197269,7 @@ entities: type: Transform - location: armory type: WarpPoint - - uid: 30654 + - uid: 30858 components: - name: 'warp: revolution bar' type: MetaData @@ -196123,7 +197279,7 @@ entities: type: Transform - location: rebelion bar type: WarpPoint - - uid: 30655 + - uid: 30859 components: - rot: 3.141592653589793 rad pos: -44.5,53.5 @@ -196131,7 +197287,7 @@ entities: type: Transform - location: asteroid type: WarpPoint - - uid: 30656 + - uid: 30860 components: - pos: 0.5,-20.5 parent: 2 @@ -196140,203 +197296,203 @@ entities: type: WarpPoint - proto: WarpPointBombing entities: - - uid: 30657 + - uid: 30861 components: - pos: 24.5,1.5 parent: 2 type: Transform - location: boxing ring type: WarpPoint - - uid: 30658 + - uid: 30862 components: - pos: 30.5,-12.5 parent: 2 type: Transform - location: eva type: WarpPoint - - uid: 30659 + - uid: 30863 components: - pos: 53.5,15.5 parent: 2 type: Transform - location: perma brig type: WarpPoint - - uid: 30660 + - uid: 30864 components: - pos: -19.5,4.5 parent: 2 type: Transform - location: gravity type: WarpPoint - - uid: 30661 + - uid: 30865 components: - pos: 5.5,-47.5 parent: 2 type: Transform - location: chemistry type: WarpPoint - - uid: 30662 + - uid: 30866 components: - pos: -24.5,-60.5 parent: 2 type: Transform - location: cryogenics type: WarpPoint - - uid: 30663 + - uid: 30867 components: - pos: 0.5,-20.5 parent: 2 type: Transform - location: theatre type: WarpPoint - - uid: 30664 + - uid: 30868 components: - pos: 29.5,31.5 parent: 2 type: Transform - location: armory type: WarpPoint - - uid: 30665 + - uid: 30869 components: - pos: 25.5,-23.5 parent: 2 type: Transform - location: bridge type: WarpPoint - - uid: 30666 + - uid: 30870 components: - pos: 46.5,6.5 parent: 2 type: Transform - location: brigmed type: WarpPoint - - uid: 30667 + - uid: 30871 components: - pos: 64.5,-8.5 parent: 2 type: Transform - location: evac type: WarpPoint - - uid: 30668 + - uid: 30872 components: - pos: 46.5,-24.5 parent: 2 type: Transform - location: north vault type: WarpPoint - - uid: 30669 + - uid: 30873 components: - pos: 31.5,-49.5 parent: 2 type: Transform - location: courtroom type: WarpPoint - - uid: 30670 + - uid: 30874 components: - pos: -19.5,-47.5 parent: 2 type: Transform - location: camera server room type: WarpPoint - - uid: 30671 + - uid: 30875 components: - pos: 9.5,-21.5 parent: 2 type: Transform - location: 'telecoms ' type: WarpPoint - - uid: 30672 + - uid: 30876 components: - pos: -46.5,-12.5 parent: 2 type: Transform - location: ame type: WarpPoint - - uid: 30673 + - uid: 30877 components: - pos: -40.5,21.5 parent: 2 type: Transform - location: cargo type: WarpPoint - - uid: 30674 + - uid: 30878 components: - pos: -42.5,32.5 parent: 2 type: Transform - location: salvage type: WarpPoint - - uid: 30675 + - uid: 30879 components: - pos: -1.5,-64.5 parent: 2 type: Transform - location: surgery type: WarpPoint - - uid: 30676 + - uid: 30880 components: - pos: -43.5,-46.5 parent: 2 type: Transform - location: atmospherics type: WarpPoint - - uid: 30677 + - uid: 30881 components: - pos: -69.5,-41.5 parent: 2 type: Transform - location: teg type: WarpPoint - - uid: 30678 + - uid: 30882 components: - pos: 72.5,-34.5 parent: 2 type: Transform - location: xenoarcheology type: WarpPoint - - uid: 30679 + - uid: 30883 components: - pos: 72.5,-45.5 parent: 2 type: Transform - location: robotics type: WarpPoint - - uid: 30680 + - uid: 30884 components: - pos: -11.5,-35.5 parent: 2 type: Transform - location: psychologists office type: WarpPoint - - uid: 30681 + - uid: 30885 components: - pos: -11.5,-10.5 parent: 2 type: Transform - location: trash sorting type: WarpPoint - - uid: 30682 + - uid: 30886 components: - pos: -7.5,9.5 parent: 2 type: Transform - location: botany type: WarpPoint - - uid: 30683 + - uid: 30887 components: - pos: 19.5,-13.5 parent: 2 type: Transform - location: detectives office type: WarpPoint - - uid: 30684 + - uid: 30888 components: - pos: 22.5,22.5 parent: 2 type: Transform - location: wardens office type: WarpPoint - - uid: 30685 + - uid: 30889 components: - pos: -24.5,-77.5 parent: 2 @@ -196345,29 +197501,29 @@ entities: type: WarpPoint - proto: WaterCooler entities: - - uid: 30686 + - uid: 30890 components: - pos: -8.5,-35.5 parent: 2 type: Transform - - uid: 30687 + - uid: 30891 components: - pos: 55.398575,18.5843 parent: 2 type: Transform - - uid: 30688 + - uid: 30892 components: - pos: 36.5,-6.5 parent: 2 type: Transform - - uid: 30689 + - uid: 30893 components: - pos: 41.5,-47.5 parent: 2 type: Transform - proto: WatermelonSeeds entities: - - uid: 30690 + - uid: 30894 components: - rot: 3.141592653589793 rad pos: -9.469382,12.335931 @@ -196375,432 +197531,432 @@ entities: type: Transform - proto: WaterTank entities: - - uid: 30691 + - uid: 30895 components: - pos: 74.5,-54.5 parent: 2 type: Transform - proto: WaterTankFull entities: - - uid: 30692 + - uid: 30896 components: - pos: -4.5,14.5 parent: 2 type: Transform - - uid: 30693 + - uid: 30897 components: - pos: -19.5,-86.5 parent: 2 type: Transform - - uid: 30694 + - uid: 30898 components: - pos: 7.5,-81.5 parent: 2 type: Transform - - uid: 30695 + - uid: 30899 components: - pos: 45.5,21.5 parent: 2 type: Transform - - uid: 30696 + - uid: 30900 components: - pos: 8.5,-64.5 parent: 2 type: Transform - - uid: 30697 + - uid: 30901 components: - pos: -29.5,-65.5 parent: 2 type: Transform - - uid: 30698 + - uid: 30902 components: - pos: 35.5,-10.5 parent: 2 type: Transform - - uid: 30699 + - uid: 30903 components: - pos: -27.5,-43.5 parent: 2 type: Transform - - uid: 30700 + - uid: 30904 components: - pos: -1.5,-14.5 parent: 2 type: Transform - - uid: 30701 + - uid: 30905 components: - pos: -39.5,-30.5 parent: 2 type: Transform - - uid: 30702 + - uid: 30906 components: - pos: -45.5,-3.5 parent: 2 type: Transform - - uid: 30703 + - uid: 30907 components: - pos: -27.5,37.5 parent: 2 type: Transform - - uid: 30704 + - uid: 30908 components: - pos: -8.5,-8.5 parent: 2 type: Transform - proto: WaterTankHighCapacity entities: - - uid: 30705 + - uid: 30909 components: - pos: -7.5,-21.5 parent: 2 type: Transform - - uid: 30706 + - uid: 30910 components: - pos: -5.5,8.5 parent: 2 type: Transform - proto: WaterVaporCanister entities: - - uid: 30707 + - uid: 30911 components: - pos: -50.5,-48.5 parent: 2 type: Transform - - uid: 30708 + - uid: 30912 components: - pos: -34.5,-28.5 parent: 2 type: Transform - proto: WeaponCapacitorRecharger entities: - - uid: 30709 + - uid: 30913 components: - pos: 28.5,-21.5 parent: 2 type: Transform - - uid: 30710 + - uid: 30914 components: - pos: 2.5,-56.5 parent: 2 type: Transform - - uid: 30711 + - uid: 30915 components: - pos: 6.5,12.5 parent: 2 type: Transform - - uid: 30712 + - uid: 30916 components: - pos: 20.5,-45.5 parent: 2 type: Transform - - uid: 30713 + - uid: 30917 components: - pos: 5.5,20.5 parent: 2 type: Transform - - uid: 30714 + - uid: 30918 components: - pos: 17.5,22.5 parent: 2 type: Transform - - uid: 30715 + - uid: 30919 components: - pos: 25.5,23.5 parent: 2 type: Transform - - uid: 30716 + - uid: 30920 components: - pos: -16.5,24.5 parent: 2 type: Transform - - uid: 30717 + - uid: 30921 components: - pos: -16.5,-21.5 parent: 2 type: Transform - proto: WeaponDisabler entities: - - uid: 30718 + - uid: 30922 components: - pos: 1.6229637,21.593708 parent: 2 type: Transform - - uid: 30719 + - uid: 30923 components: - pos: 12.563014,21.38584 parent: 2 type: Transform - - uid: 30720 + - uid: 30924 components: - pos: 12.453639,21.54209 parent: 2 type: Transform - proto: WeaponLaserCarbine entities: - - uid: 30721 + - uid: 30925 components: - pos: 26.559673,29.582918 parent: 2 type: Transform - - uid: 30722 + - uid: 30926 components: - pos: 31.473701,27.53409 parent: 2 type: Transform - - uid: 30723 + - uid: 30927 components: - pos: 27.55704,27.505564 parent: 2 type: Transform - proto: WeaponPistolMk58 entities: - - uid: 30724 + - uid: 30928 components: - pos: 31.657001,32.450115 parent: 2 type: Transform - - uid: 30725 + - uid: 30929 components: - pos: 31.637281,32.558495 parent: 2 type: Transform - - uid: 30726 + - uid: 30930 components: - pos: 31.586092,32.47933 parent: 2 type: Transform - - uid: 30727 + - uid: 30931 components: - pos: 31.657982,32.330257 parent: 2 type: Transform - proto: WeaponRevolverDeckard entities: - - uid: 30728 + - uid: 30932 components: - pos: 30.600538,32.59448 parent: 2 type: Transform - proto: WeaponRevolverInspector entities: - - uid: 30729 + - uid: 30933 components: - pos: 23.444613,-35.267536 parent: 2 type: Transform - proto: WeaponShotgunKammerer entities: - - uid: 30730 + - uid: 30934 components: - pos: 26.643364,32.60906 parent: 2 type: Transform - - uid: 30731 + - uid: 30935 components: - pos: 26.777893,32.47498 parent: 2 type: Transform - - uid: 30732 + - uid: 30936 components: - pos: 26.709015,32.580257 parent: 2 type: Transform - proto: WeaponSubMachineGunDrozd entities: - - uid: 30733 + - uid: 30937 components: - pos: 27.939907,32.617863 parent: 2 type: Transform - - uid: 30734 + - uid: 30938 components: - pos: 28.718153,32.704456 parent: 2 type: Transform - - uid: 30735 + - uid: 30939 components: - pos: 29.421278,32.68883 parent: 2 type: Transform - proto: WeaponSubMachineGunWt550 entities: - - uid: 30736 + - uid: 30940 components: - pos: 6.384364,22.636343 parent: 2 type: Transform - proto: Welder entities: - - uid: 30737 + - uid: 30941 components: - pos: -23.377909,-24.435646 parent: 2 type: Transform - - uid: 30738 + - uid: 30942 components: - pos: -11.453522,-74.45183 parent: 2 type: Transform - - uid: 30739 + - uid: 30943 components: - pos: -44.4577,-25.484493 parent: 2 type: Transform - - uid: 30740 + - uid: 30944 components: - pos: -28.416739,-28.473803 parent: 2 type: Transform - - uid: 30741 + - uid: 30945 components: - pos: -52.43758,2.566814 parent: 2 type: Transform - - uid: 30742 + - uid: 30946 components: - pos: -44.442474,-76.91975 parent: 2 type: Transform - - uid: 30743 + - uid: 30947 components: - pos: 76.51503,-43.437786 parent: 2 type: Transform - - uid: 30744 + - uid: 30948 components: - pos: -66.37563,-43.430454 parent: 2 type: Transform - proto: WelderIndustrial entities: - - uid: 30745 + - uid: 30949 components: - pos: -34.41553,-12.611145 parent: 2 type: Transform - - uid: 30746 + - uid: 30950 components: - pos: -35.502888,-46.513077 parent: 2 type: Transform - - uid: 30747 + - uid: 30951 components: - pos: -42.417007,-21.43029 parent: 2 type: Transform - proto: WelderMini entities: - - uid: 30748 + - uid: 30952 components: - pos: -52.426445,-12.844277 parent: 2 type: Transform - proto: WeldingFuelTank entities: - - uid: 30749 + - uid: 30953 components: - pos: -28.5,-43.5 parent: 2 type: Transform - - uid: 30750 + - uid: 30954 components: - pos: 7.5,-64.5 parent: 2 type: Transform - proto: WeldingFuelTankFull entities: - - uid: 30751 + - uid: 30955 components: - pos: -3.5,-71.5 parent: 2 type: Transform - - uid: 30752 + - uid: 30956 components: - pos: -28.5,-25.5 parent: 2 type: Transform - - uid: 30753 + - uid: 30957 components: - pos: -43.5,-63.5 parent: 2 type: Transform - - uid: 30754 + - uid: 30958 components: - pos: -38.5,-30.5 parent: 2 type: Transform - - uid: 30755 + - uid: 30959 components: - pos: -0.5,23.5 parent: 2 type: Transform - - uid: 30756 + - uid: 30960 components: - pos: -51.5,4.5 parent: 2 type: Transform - - uid: 30757 + - uid: 30961 components: - pos: -16.5,-18.5 parent: 2 type: Transform - - uid: 30758 + - uid: 30962 components: - pos: 39.5,-32.5 parent: 2 type: Transform - - uid: 30759 + - uid: 30963 components: - pos: 72.5,-59.5 parent: 2 type: Transform - - uid: 30760 + - uid: 30964 components: - pos: 66.5,6.5 parent: 2 type: Transform - - uid: 30761 + - uid: 30965 components: - pos: 74.5,-55.5 parent: 2 type: Transform - - uid: 30762 + - uid: 30966 components: - pos: -54.5,-35.5 parent: 2 type: Transform - proto: WeldingFuelTankHighCapacity entities: - - uid: 30763 + - uid: 30967 components: - pos: -53.5,-25.5 parent: 2 type: Transform - proto: WetFloorSign entities: - - uid: 30764 + - uid: 30968 components: - pos: -7.8693366,-23.228895 parent: 2 type: Transform - - uid: 30765 + - uid: 30969 components: - pos: 16.379074,-41.325726 parent: 2 type: Transform - - uid: 30766 + - uid: 30970 components: - pos: -7.8537116,-23.36952 parent: 2 type: Transform - - uid: 30767 + - uid: 30971 components: - pos: -7.7912116,-23.603895 parent: 2 type: Transform - proto: Windoor entities: - - uid: 30768 + - uid: 30972 components: - rot: 1.5707963267948966 rad pos: 26.5,0.5 @@ -196808,135 +197964,135 @@ entities: type: Transform - proto: WindoorBarLocked entities: - - uid: 30769 + - uid: 30973 components: - pos: 18.5,15.5 parent: 2 type: Transform - - uid: 30770 + - uid: 30974 components: - pos: 17.5,15.5 parent: 2 type: Transform - - uid: 30771 + - uid: 30975 components: - rot: 1.5707963267948966 rad pos: 15.5,14.5 parent: 2 type: Transform - - uid: 30772 + - uid: 30976 components: - rot: 1.5707963267948966 rad pos: -39.5,-75.5 parent: 2 type: Transform - - uid: 30773 + - uid: 30977 components: - rot: -1.5707963267948966 rad pos: -44.5,-75.5 parent: 2 type: Transform - - uid: 30774 + - uid: 30978 components: - pos: 28.5,-37.5 parent: 2 type: Transform - proto: WindoorKitchenHydroponicsLocked entities: - - uid: 30775 + - uid: 30979 components: - pos: -4.5,17.5 parent: 2 type: Transform - - uid: 30776 + - uid: 30980 components: - pos: -7.5,17.5 parent: 2 type: Transform - proto: WindoorSecure entities: - - uid: 30777 + - uid: 30981 components: - pos: 1.5,-1.5 parent: 2 type: Transform - - uid: 30778 + - uid: 30982 components: - rot: 3.141592653589793 rad pos: 4.5,-3.5 parent: 2 type: Transform - - uid: 30779 + - uid: 30983 components: - pos: 4.5,-1.5 parent: 2 type: Transform - - uid: 30780 + - uid: 30984 components: - pos: 17.5,-53.5 parent: 2 type: Transform - - uid: 30781 + - uid: 30985 components: - pos: -13.5,-9.5 parent: 2 type: Transform - - uid: 30782 + - uid: 30986 components: - pos: 59.5,22.5 parent: 2 type: Transform - - uid: 30783 + - uid: 30987 components: - pos: 56.5,22.5 parent: 2 type: Transform - - uid: 30784 + - uid: 30988 components: - pos: 53.5,22.5 parent: 2 type: Transform - - uid: 30785 + - uid: 30989 components: - pos: 50.5,22.5 parent: 2 type: Transform - - uid: 30786 + - uid: 30990 components: - pos: 47.5,22.5 parent: 2 type: Transform - - uid: 30787 + - uid: 30991 components: - rot: -1.5707963267948966 rad pos: 60.5,18.5 parent: 2 type: Transform - - uid: 30788 + - uid: 30992 components: - rot: -1.5707963267948966 rad pos: 60.5,15.5 parent: 2 type: Transform - - uid: 30789 + - uid: 30993 components: - rot: 1.5707963267948966 rad pos: 59.5,-34.5 parent: 2 type: Transform - - uid: 30790 + - uid: 30994 components: - rot: 1.5707963267948966 rad pos: 59.5,-33.5 parent: 2 type: Transform - - uid: 30791 + - uid: 30995 components: - rot: -1.5707963267948966 rad pos: -34.5,14.5 parent: 2 type: Transform - - uid: 30792 + - uid: 30996 components: - rot: 3.141592653589793 rad pos: 71.5,-47.5 @@ -196944,49 +198100,49 @@ entities: type: Transform - proto: WindoorSecureArmoryLocked entities: - - uid: 30793 + - uid: 30997 components: - rot: 3.141592653589793 rad pos: 25.5,19.5 parent: 2 type: Transform - - uid: 30794 + - uid: 30998 components: - rot: 3.141592653589793 rad pos: 24.5,19.5 parent: 2 type: Transform - - uid: 30795 + - uid: 30999 components: - rot: 1.5707963267948966 rad pos: 30.5,28.5 parent: 2 type: Transform - - uid: 30796 + - uid: 31000 components: - rot: 1.5707963267948966 rad pos: 30.5,30.5 parent: 2 type: Transform - - uid: 30797 + - uid: 31001 components: - rot: -1.5707963267948966 rad pos: 28.5,30.5 parent: 2 type: Transform - - uid: 30798 + - uid: 31002 components: - rot: 3.141592653589793 rad pos: 26.5,19.5 parent: 2 type: Transform - - uid: 30799 + - uid: 31003 components: - rot: -1.5707963267948966 rad pos: 28.5,28.5 parent: 2 type: Transform - - uid: 30800 + - uid: 31004 components: - rot: 3.141592653589793 rad pos: 29.5,30.5 @@ -196994,14 +198150,14 @@ entities: type: Transform - proto: WindoorSecureBrigLocked entities: - - uid: 30801 + - uid: 31005 components: - pos: 31.5,-52.5 parent: 2 type: Transform - proto: WindoorSecureCargoLocked entities: - - uid: 30802 + - uid: 31006 components: - rot: -1.5707963267948966 rad pos: -26.5,22.5 @@ -197009,19 +198165,19 @@ entities: type: Transform - proto: WindoorSecureChemistryLocked entities: - - uid: 30803 + - uid: 31007 components: - rot: 1.5707963267948966 rad pos: 1.5,-48.5 parent: 2 type: Transform - - uid: 30804 + - uid: 31008 components: - rot: 1.5707963267948966 rad pos: 1.5,-46.5 parent: 2 type: Transform - - uid: 30805 + - uid: 31009 components: - rot: 3.141592653589793 rad pos: 3.5,-51.5 @@ -197029,13 +198185,13 @@ entities: type: Transform - proto: WindoorSecureEngineeringLocked entities: - - uid: 30806 + - uid: 31010 components: - rot: -1.5707963267948966 rad pos: -26.5,-12.5 parent: 2 type: Transform - - uid: 30807 + - uid: 31011 components: - rot: -1.5707963267948966 rad pos: -21.5,-34.5 @@ -197043,67 +198199,67 @@ entities: type: Transform - proto: WindoorSecureHeadOfPersonnelLocked entities: - - uid: 30808 + - uid: 31012 components: - pos: 4.5,-3.5 parent: 2 type: Transform - proto: WindoorSecureMedicalLocked entities: - - uid: 30809 + - uid: 31013 components: - rot: -1.5707963267948966 rad pos: -17.5,-79.5 parent: 2 type: Transform - - uid: 30810 + - uid: 31014 components: - rot: -1.5707963267948966 rad pos: -16.5,-78.5 parent: 2 type: Transform - - uid: 30811 + - uid: 31015 components: - rot: -1.5707963267948966 rad pos: -16.5,-76.5 parent: 2 type: Transform - - uid: 30812 + - uid: 31016 components: - rot: 1.5707963267948966 rad pos: -28.5,-77.5 parent: 2 type: Transform - - uid: 30813 + - uid: 31017 components: - rot: -1.5707963267948966 rad pos: -17.5,-75.5 parent: 2 type: Transform - - uid: 30814 + - uid: 31018 components: - rot: 1.5707963267948966 rad pos: -28.5,-79.5 parent: 2 type: Transform - - uid: 30815 + - uid: 31019 components: - rot: 3.141592653589793 rad pos: -20.5,-88.5 parent: 2 type: Transform - - uid: 30816 + - uid: 31020 components: - rot: 3.141592653589793 rad pos: -25.5,-88.5 parent: 2 type: Transform - - uid: 30817 + - uid: 31021 components: - pos: 3.5,-51.5 parent: 2 type: Transform - - uid: 30818 + - uid: 31022 components: - rot: 1.5707963267948966 rad pos: 48.5,6.5 @@ -197111,13 +198267,13 @@ entities: type: Transform - proto: WindoorSecureScienceLocked entities: - - uid: 30819 + - uid: 31023 components: - rot: 3.141592653589793 rad pos: 42.5,-40.5 parent: 2 type: Transform - - uid: 30820 + - uid: 31024 components: - rot: 3.141592653589793 rad pos: 43.5,-40.5 @@ -197125,116 +198281,116 @@ entities: type: Transform - proto: WindoorSecureSecurityLocked entities: - - uid: 30821 + - uid: 31025 components: - rot: -1.5707963267948966 rad pos: 48.5,6.5 parent: 2 type: Transform - - uid: 30822 + - uid: 31026 components: - rot: 1.5707963267948966 rad pos: 42.5,6.5 parent: 2 type: Transform - - uid: 30823 + - uid: 31027 components: - rot: 3.141592653589793 rad pos: 29.5,13.5 parent: 2 type: Transform - links: - - 2246 + - 2249 type: DeviceLinkSink - - uid: 30824 + - uid: 31028 components: - rot: 1.5707963267948966 rad pos: 39.5,7.5 parent: 2 type: Transform - links: - - 2248 + - 2251 type: DeviceLinkSink - - uid: 30825 + - uid: 31029 components: - rot: 3.141592653589793 rad pos: 5.5,11.5 parent: 2 type: Transform - - uid: 30826 + - uid: 31030 components: - rot: -1.5707963267948966 rad pos: 5.5,-56.5 parent: 2 type: Transform - - uid: 30827 + - uid: 31031 components: - rot: 3.141592653589793 rad pos: 4.5,11.5 parent: 2 type: Transform - - uid: 30828 + - uid: 31032 components: - rot: 3.141592653589793 rad pos: 32.5,13.5 parent: 2 type: Transform - links: - - 2247 + - 2250 type: DeviceLinkSink - - uid: 30829 + - uid: 31033 components: - rot: 1.5707963267948966 rad pos: 39.5,4.5 parent: 2 type: Transform - links: - - 2249 + - 2252 type: DeviceLinkSink - - uid: 30830 + - uid: 31034 components: - rot: 3.141592653589793 rad pos: 17.5,15.5 parent: 2 type: Transform - - uid: 30831 + - uid: 31035 components: - rot: 3.141592653589793 rad pos: 35.5,13.5 parent: 2 type: Transform - links: - - 2245 + - 2248 type: DeviceLinkSink - - uid: 30832 + - uid: 31036 components: - rot: 3.141592653589793 rad pos: 18.5,15.5 parent: 2 type: Transform - - uid: 30833 + - uid: 31037 components: - pos: 21.5,-44.5 parent: 2 type: Transform - - uid: 30834 + - uid: 31038 components: - pos: 22.5,-44.5 parent: 2 type: Transform - - uid: 30835 + - uid: 31039 components: - rot: 1.5707963267948966 rad pos: -17.5,-22.5 parent: 2 type: Transform - - uid: 30836 + - uid: 31040 components: - rot: 1.5707963267948966 rad pos: -17.5,-23.5 parent: 2 type: Transform - - uid: 30837 + - uid: 31041 components: - rot: 1.5707963267948966 rad pos: -17.5,25.5 @@ -197242,7 +198398,7 @@ entities: type: Transform - proto: WindoorTheatreLocked entities: - - uid: 30838 + - uid: 31042 components: - rot: 3.141592653589793 rad pos: 9.5,-0.5 @@ -197250,786 +198406,786 @@ entities: type: Transform - proto: Window entities: - - uid: 28421 + - uid: 31043 components: - rot: -1.5707963267948966 rad pos: -48.5,-74.5 parent: 2 type: Transform - - uid: 30591 + - uid: 31044 components: - rot: -1.5707963267948966 rad pos: -41.5,-69.5 parent: 2 type: Transform - - uid: 30592 + - uid: 31045 components: - rot: -1.5707963267948966 rad pos: -42.5,-69.5 parent: 2 type: Transform - - uid: 30839 + - uid: 31046 components: - rot: -1.5707963267948966 rad pos: -53.5,-31.5 parent: 2 type: Transform - - uid: 30840 + - uid: 31047 components: - rot: -1.5707963267948966 rad pos: -53.5,-32.5 parent: 2 type: Transform - - uid: 30841 + - uid: 31048 components: - pos: 27.5,-55.5 parent: 2 type: Transform - - uid: 30842 + - uid: 31049 components: - pos: 27.5,-54.5 parent: 2 type: Transform - - uid: 30843 + - uid: 31050 components: - rot: 3.141592653589793 rad pos: -20.5,65.5 parent: 2 type: Transform - - uid: 30844 + - uid: 31051 components: - rot: 3.141592653589793 rad pos: -20.5,67.5 parent: 2 type: Transform - - uid: 30845 + - uid: 31052 components: - rot: 3.141592653589793 rad pos: -14.5,67.5 parent: 2 type: Transform - - uid: 30846 + - uid: 31053 components: - pos: -13.5,-57.5 parent: 2 type: Transform - - uid: 30847 + - uid: 31054 components: - pos: -9.5,-58.5 parent: 2 type: Transform - - uid: 30848 + - uid: 31055 components: - pos: -4.5,-56.5 parent: 2 type: Transform - - uid: 30849 + - uid: 31056 components: - rot: -1.5707963267948966 rad pos: 22.5,5.5 parent: 2 type: Transform - - uid: 30850 + - uid: 31057 components: - pos: -21.5,-13.5 parent: 2 type: Transform - - uid: 30851 + - uid: 31058 components: - pos: -9.5,-40.5 parent: 2 type: Transform - - uid: 30852 + - uid: 31059 components: - rot: -1.5707963267948966 rad pos: 19.5,-1.5 parent: 2 type: Transform - - uid: 30853 + - uid: 31060 components: - pos: -14.5,-44.5 parent: 2 type: Transform - - uid: 30854 + - uid: 31061 components: - pos: -1.5,-56.5 parent: 2 type: Transform - - uid: 30855 + - uid: 31062 components: - pos: 39.5,-0.5 parent: 2 type: Transform - - uid: 30856 + - uid: 31063 components: - pos: -12.5,-58.5 parent: 2 type: Transform - - uid: 30857 + - uid: 31064 components: - pos: -6.5,-55.5 parent: 2 type: Transform - - uid: 30858 + - uid: 31065 components: - pos: -0.5,-62.5 parent: 2 type: Transform - - uid: 30859 + - uid: 31066 components: - pos: 1.5,-56.5 parent: 2 type: Transform - - uid: 30860 + - uid: 31067 components: - pos: -0.5,-58.5 parent: 2 type: Transform - - uid: 30861 + - uid: 31068 components: - pos: -3.5,-58.5 parent: 2 type: Transform - - uid: 30862 + - uid: 31069 components: - pos: 30.5,-57.5 parent: 2 type: Transform - - uid: 30863 + - uid: 31070 components: - pos: 29.5,-57.5 parent: 2 type: Transform - - uid: 30864 + - uid: 31071 components: - pos: 33.5,-57.5 parent: 2 type: Transform - - uid: 30865 + - uid: 31072 components: - rot: -1.5707963267948966 rad pos: 19.5,0.5 parent: 2 type: Transform - - uid: 30866 + - uid: 31073 components: - rot: -1.5707963267948966 rad pos: 26.5,-3.5 parent: 2 type: Transform - - uid: 30867 + - uid: 31074 components: - rot: -1.5707963267948966 rad pos: 23.5,-3.5 parent: 2 type: Transform - - uid: 30868 + - uid: 31075 components: - rot: -1.5707963267948966 rad pos: 22.5,-3.5 parent: 2 type: Transform - - uid: 30869 + - uid: 31076 components: - pos: 35.5,-5.5 parent: 2 type: Transform - - uid: 30870 + - uid: 31077 components: - pos: -21.5,11.5 parent: 2 type: Transform - - uid: 30871 + - uid: 31078 components: - pos: -21.5,12.5 parent: 2 type: Transform - - uid: 30872 + - uid: 31079 components: - pos: -21.5,-10.5 parent: 2 type: Transform - - uid: 30873 + - uid: 31080 components: - pos: -21.5,-14.5 parent: 2 type: Transform - - uid: 30874 + - uid: 31081 components: - pos: 35.5,-1.5 parent: 2 type: Transform - - uid: 30875 + - uid: 31082 components: - pos: 35.5,-2.5 parent: 2 type: Transform - - uid: 30876 + - uid: 31083 components: - pos: -21.5,-9.5 parent: 2 type: Transform - - uid: 30877 + - uid: 31084 components: - pos: -5.5,-44.5 parent: 2 type: Transform - - uid: 30878 + - uid: 31085 components: - pos: -11.5,-40.5 parent: 2 type: Transform - - uid: 30879 + - uid: 31086 components: - pos: -10.5,-40.5 parent: 2 type: Transform - - uid: 30880 + - uid: 31087 components: - pos: 0.5,-62.5 parent: 2 type: Transform - - uid: 30881 + - uid: 31088 components: - pos: 1.5,-57.5 parent: 2 type: Transform - - uid: 30882 + - uid: 31089 components: - pos: -0.5,-55.5 parent: 2 type: Transform - - uid: 30883 + - uid: 31090 components: - pos: 2.5,-55.5 parent: 2 type: Transform - - uid: 30884 + - uid: 31091 components: - pos: 2.5,-62.5 parent: 2 type: Transform - - uid: 30885 + - uid: 31092 components: - pos: -9.5,-62.5 parent: 2 type: Transform - - uid: 30886 + - uid: 31093 components: - pos: -3.5,-55.5 parent: 2 type: Transform - - uid: 30887 + - uid: 31094 components: - pos: -9.5,-55.5 parent: 2 type: Transform - - uid: 30888 + - uid: 31095 components: - pos: 2.5,-58.5 parent: 2 type: Transform - - uid: 30889 + - uid: 31096 components: - pos: 4.5,-62.5 parent: 2 type: Transform - - uid: 30890 + - uid: 31097 components: - pos: -8.5,-62.5 parent: 2 type: Transform - - uid: 30891 + - uid: 31098 components: - pos: -10.5,-56.5 parent: 2 type: Transform - - uid: 30892 + - uid: 31099 components: - pos: -10.5,-57.5 parent: 2 type: Transform - - uid: 30893 + - uid: 31100 components: - pos: -21.5,-61.5 parent: 2 type: Transform - - uid: 30894 + - uid: 31101 components: - pos: -21.5,-59.5 parent: 2 type: Transform - - uid: 30895 + - uid: 31102 components: - pos: -12.5,-44.5 parent: 2 type: Transform - - uid: 30896 + - uid: 31103 components: - pos: -12.5,-55.5 parent: 2 type: Transform - - uid: 30897 + - uid: 31104 components: - pos: -6.5,-36.5 parent: 2 type: Transform - - uid: 30898 + - uid: 31105 components: - pos: -25.5,9.5 parent: 2 type: Transform - - uid: 30899 + - uid: 31106 components: - pos: -3.5,-44.5 parent: 2 type: Transform - - uid: 30900 + - uid: 31107 components: - rot: -1.5707963267948966 rad pos: 19.5,-0.5 parent: 2 type: Transform - - uid: 30901 + - uid: 31108 components: - rot: -1.5707963267948966 rad pos: 25.5,5.5 parent: 2 type: Transform - - uid: 30902 + - uid: 31109 components: - rot: -1.5707963267948966 rad pos: 27.5,-3.5 parent: 2 type: Transform - - uid: 30903 + - uid: 31110 components: - rot: -1.5707963267948966 rad pos: 21.5,-3.5 parent: 2 type: Transform - - uid: 30904 + - uid: 31111 components: - pos: -4.5,-44.5 parent: 2 type: Transform - - uid: 30905 + - uid: 31112 components: - pos: -1.5,-57.5 parent: 2 type: Transform - - uid: 30906 + - uid: 31113 components: - pos: -4.5,-57.5 parent: 2 type: Transform - - uid: 30907 + - uid: 31114 components: - pos: -7.5,-57.5 parent: 2 type: Transform - - uid: 30908 + - uid: 31115 components: - pos: -13.5,-44.5 parent: 2 type: Transform - - uid: 30909 + - uid: 31116 components: - pos: -6.5,-38.5 parent: 2 type: Transform - - uid: 30910 + - uid: 31117 components: - pos: -10.5,-16.5 parent: 2 type: Transform - - uid: 30911 + - uid: 31118 components: - pos: 42.5,-0.5 parent: 2 type: Transform - - uid: 30912 + - uid: 31119 components: - pos: -21.5,-20.5 parent: 2 type: Transform - - uid: 30913 + - uid: 31120 components: - rot: -1.5707963267948966 rad pos: 21.5,5.5 parent: 2 type: Transform - - uid: 30914 + - uid: 31121 components: - rot: -1.5707963267948966 rad pos: 26.5,5.5 parent: 2 type: Transform - - uid: 30915 + - uid: 31122 components: - rot: -1.5707963267948966 rad pos: 23.5,5.5 parent: 2 type: Transform - - uid: 30916 + - uid: 31123 components: - rot: -1.5707963267948966 rad pos: 25.5,-3.5 parent: 2 type: Transform - - uid: 30917 + - uid: 31124 components: - pos: -12.5,43.5 parent: 2 type: Transform - - uid: 30918 + - uid: 31125 components: - pos: 37.5,-0.5 parent: 2 type: Transform - - uid: 30919 + - uid: 31126 components: - rot: 3.141592653589793 rad pos: -20.5,-68.5 parent: 2 type: Transform - - uid: 30920 + - uid: 31127 components: - rot: 3.141592653589793 rad pos: -18.5,-68.5 parent: 2 type: Transform - - uid: 30921 + - uid: 31128 components: - rot: -1.5707963267948966 rad pos: 19.5,3.5 parent: 2 type: Transform - - uid: 30922 + - uid: 31129 components: - rot: -1.5707963267948966 rad pos: 19.5,2.5 parent: 2 type: Transform - - uid: 30923 + - uid: 31130 components: - pos: -6.5,-58.5 parent: 2 type: Transform - - uid: 30924 + - uid: 31131 components: - pos: -6.5,-37.5 parent: 2 type: Transform - - uid: 30925 + - uid: 31132 components: - pos: -7.5,-56.5 parent: 2 type: Transform - - uid: 30926 + - uid: 31133 components: - pos: 41.5,-0.5 parent: 2 type: Transform - - uid: 30927 + - uid: 31134 components: - pos: -13.5,-56.5 parent: 2 type: Transform - - uid: 30928 + - uid: 31135 components: - rot: -1.5707963267948966 rad pos: 19.5,1.5 parent: 2 type: Transform - - uid: 30929 + - uid: 31136 components: - rot: -1.5707963267948966 rad pos: 27.5,5.5 parent: 2 type: Transform - - uid: 30930 + - uid: 31137 components: - pos: 43.5,-0.5 parent: 2 type: Transform - - uid: 30931 + - uid: 31138 components: - pos: -21.5,-22.5 parent: 2 type: Transform - - uid: 30932 + - uid: 31139 components: - pos: 32.5,-57.5 parent: 2 type: Transform - - uid: 30933 + - uid: 31140 components: - pos: -12.5,14.5 parent: 2 type: Transform - - uid: 30934 + - uid: 31141 components: - pos: -23.5,9.5 parent: 2 type: Transform - - uid: 30935 + - uid: 31142 components: - pos: -22.5,9.5 parent: 2 type: Transform - - uid: 30936 + - uid: 31143 components: - pos: -8.5,43.5 parent: 2 type: Transform - - uid: 30937 + - uid: 31144 components: - pos: 35.5,-4.5 parent: 2 type: Transform - - uid: 30938 + - uid: 31145 components: - pos: -12.5,-16.5 parent: 2 type: Transform - - uid: 30939 + - uid: 31146 components: - pos: 43.5,-12.5 parent: 2 type: Transform - - uid: 30940 + - uid: 31147 components: - pos: 42.5,-44.5 parent: 2 type: Transform - - uid: 30941 + - uid: 31148 components: - pos: 43.5,-44.5 parent: 2 type: Transform - - uid: 30942 + - uid: 31149 components: - pos: 44.5,-44.5 parent: 2 type: Transform - - uid: 30943 + - uid: 31150 components: - pos: 27.5,-51.5 parent: 2 type: Transform - - uid: 30944 + - uid: 31151 components: - pos: 27.5,-47.5 parent: 2 type: Transform - - uid: 30945 + - uid: 31152 components: - pos: -19.5,0.5 parent: 2 type: Transform - - uid: 30946 + - uid: 31153 components: - pos: -17.5,0.5 parent: 2 type: Transform - - uid: 30947 + - uid: 31154 components: - pos: -16.5,0.5 parent: 2 type: Transform - - uid: 30948 + - uid: 31155 components: - rot: -1.5707963267948966 rad pos: -24.5,-18.5 parent: 2 type: Transform - - uid: 30949 + - uid: 31156 components: - pos: 38.5,-57.5 parent: 2 type: Transform - - uid: 30950 + - uid: 31157 components: - pos: 40.5,-57.5 parent: 2 type: Transform - - uid: 30951 + - uid: 31158 components: - rot: -1.5707963267948966 rad pos: -25.5,-18.5 parent: 2 type: Transform - - uid: 30952 + - uid: 31159 components: - pos: 5.5,-58.5 parent: 2 type: Transform - - uid: 30953 + - uid: 31160 components: - rot: 1.5707963267948966 rad pos: -66.5,-29.5 parent: 2 type: Transform - - uid: 30954 + - uid: 31161 components: - rot: -1.5707963267948966 rad pos: -28.5,-47.5 parent: 2 type: Transform - - uid: 30955 + - uid: 31162 components: - pos: -38.5,-63.5 parent: 2 type: Transform - - uid: 30956 + - uid: 31163 components: - pos: -38.5,-65.5 parent: 2 type: Transform - - uid: 30957 + - uid: 31164 components: - pos: -21.5,24.5 parent: 2 type: Transform - - uid: 30958 + - uid: 31165 components: - pos: -21.5,23.5 parent: 2 type: Transform - - uid: 30959 + - uid: 31166 components: - pos: -34.5,2.5 parent: 2 type: Transform - - uid: 30960 + - uid: 31167 components: - pos: -26.5,9.5 parent: 2 type: Transform - - uid: 30961 + - uid: 31168 components: - pos: -36.5,2.5 parent: 2 type: Transform - - uid: 30962 + - uid: 31169 components: - pos: -36.5,7.5 parent: 2 type: Transform - - uid: 30963 + - uid: 31170 components: - pos: -39.5,2.5 parent: 2 type: Transform - - uid: 30964 + - uid: 31171 components: - pos: -35.5,2.5 parent: 2 type: Transform - - uid: 30965 + - uid: 31172 components: - pos: -39.5,7.5 parent: 2 type: Transform - - uid: 30966 + - uid: 31173 components: - pos: -41.5,2.5 parent: 2 type: Transform - - uid: 30967 + - uid: 31174 components: - pos: -40.5,2.5 parent: 2 type: Transform - - uid: 30968 + - uid: 31175 components: - rot: 1.5707963267948966 rad pos: -52.5,-0.5 parent: 2 type: Transform - - uid: 30969 + - uid: 31176 components: - pos: -30.5,-72.5 parent: 2 type: Transform - - uid: 30970 + - uid: 31177 components: - pos: -14.5,65.5 parent: 2 type: Transform - - uid: 30971 + - uid: 31178 components: - pos: -14.5,62.5 parent: 2 type: Transform - - uid: 30972 + - uid: 31179 components: - pos: -3.5,47.5 parent: 2 type: Transform - - uid: 30973 + - uid: 31180 components: - pos: -1.5,49.5 parent: 2 type: Transform - - uid: 30974 + - uid: 31181 components: - pos: -5.5,47.5 parent: 2 type: Transform - - uid: 30975 + - uid: 31182 components: - rot: 3.141592653589793 rad pos: -19.5,44.5 parent: 2 type: Transform - - uid: 30976 + - uid: 31183 components: - pos: -7.5,57.5 parent: 2 type: Transform - - uid: 30977 + - uid: 31184 components: - pos: -5.5,57.5 parent: 2 type: Transform - - uid: 30978 + - uid: 31185 components: - pos: 2.5,47.5 parent: 2 type: Transform - - uid: 30979 + - uid: 31186 components: - pos: 2.5,50.5 parent: 2 type: Transform - - uid: 30980 + - uid: 31187 components: - pos: 2.5,51.5 parent: 2 type: Transform - - uid: 30981 + - uid: 31188 components: - pos: -1.5,50.5 parent: 2 type: Transform - - uid: 30982 + - uid: 31189 components: - pos: -11.5,51.5 parent: 2 type: Transform - - uid: 30983 + - uid: 31190 components: - pos: -11.5,53.5 parent: 2 type: Transform - - uid: 30984 + - uid: 31191 components: - pos: -20.5,62.5 parent: 2 type: Transform - - uid: 30985 + - uid: 31192 components: - rot: 3.141592653589793 rad pos: -28.5,-72.5 @@ -198037,129 +199193,129 @@ entities: type: Transform - proto: WindowDirectional entities: - - uid: 30986 + - uid: 31193 components: - pos: 3.5,-1.5 parent: 2 type: Transform - - uid: 30987 + - uid: 31194 components: - pos: 2.5,-1.5 parent: 2 type: Transform - - uid: 30988 + - uid: 31195 components: - rot: -1.5707963267948966 rad pos: 10.5,0.5 parent: 2 type: Transform - - uid: 30989 + - uid: 31196 components: - rot: 1.5707963267948966 rad pos: 7.5,1.5 parent: 2 type: Transform - - uid: 30990 + - uid: 31197 components: - pos: 8.5,2.5 parent: 2 type: Transform - - uid: 30991 + - uid: 31198 components: - rot: -1.5707963267948966 rad pos: 10.5,1.5 parent: 2 type: Transform - - uid: 30992 + - uid: 31199 components: - rot: -1.5707963267948966 rad pos: 5.5,-57.5 parent: 2 type: Transform - - uid: 30993 + - uid: 31200 components: - pos: 9.5,2.5 parent: 2 type: Transform - - uid: 30994 + - uid: 31201 components: - rot: 3.141592653589793 rad pos: 8.5,-0.5 parent: 2 type: Transform - - uid: 30995 + - uid: 31202 components: - rot: 1.5707963267948966 rad pos: 7.5,0.5 parent: 2 type: Transform - - uid: 30996 + - uid: 31203 components: - rot: 1.5707963267948966 rad pos: 59.5,-35.5 parent: 2 type: Transform - - uid: 30997 + - uid: 31204 components: - rot: -1.5707963267948966 rad pos: 74.5,-49.5 parent: 2 type: Transform - - uid: 30998 + - uid: 31205 components: - rot: -1.5707963267948966 rad pos: 74.5,-47.5 parent: 2 type: Transform - - uid: 30999 + - uid: 31206 components: - rot: 1.5707963267948966 rad pos: 68.5,-47.5 parent: 2 type: Transform - - uid: 31000 + - uid: 31207 components: - rot: 1.5707963267948966 rad pos: 68.5,-49.5 parent: 2 type: Transform - - uid: 31001 + - uid: 31208 components: - rot: 1.5707963267948966 rad pos: 59.5,-32.5 parent: 2 type: Transform - - uid: 31002 + - uid: 31209 components: - rot: 1.5707963267948966 rad pos: 68.5,-48.5 parent: 2 type: Transform - - uid: 31003 + - uid: 31210 components: - rot: -1.5707963267948966 rad pos: 74.5,-48.5 parent: 2 type: Transform - - uid: 31004 + - uid: 31211 components: - rot: 3.141592653589793 rad pos: 69.5,-47.5 parent: 2 type: Transform - - uid: 31005 + - uid: 31212 components: - rot: 3.141592653589793 rad pos: 70.5,-47.5 parent: 2 type: Transform - - uid: 31006 + - uid: 31213 components: - rot: 3.141592653589793 rad pos: 73.5,-47.5 parent: 2 type: Transform - - uid: 31007 + - uid: 31214 components: - rot: 3.141592653589793 rad pos: 72.5,-47.5 @@ -198167,1569 +199323,1569 @@ entities: type: Transform - proto: WindowReinforcedDirectional entities: - - uid: 31008 + - uid: 31215 components: - rot: 1.5707963267948966 rad pos: -25.5,-24.5 parent: 2 type: Transform - - uid: 31009 + - uid: 31216 components: - rot: 3.141592653589793 rad pos: -24.5,-24.5 parent: 2 type: Transform - - uid: 31010 + - uid: 31217 components: - rot: -1.5707963267948966 rad pos: -11.5,7.5 parent: 2 type: Transform - - uid: 31011 + - uid: 31218 components: - pos: 16.5,-53.5 parent: 2 type: Transform - - uid: 31012 + - uid: 31219 components: - pos: -11.5,6.5 parent: 2 type: Transform - - uid: 31013 + - uid: 31220 components: - pos: 15.5,-53.5 parent: 2 type: Transform - - uid: 31014 + - uid: 31221 components: - rot: 3.141592653589793 rad pos: -11.5,7.5 parent: 2 type: Transform - - uid: 31015 + - uid: 31222 components: - rot: -1.5707963267948966 rad pos: -11.5,6.5 parent: 2 type: Transform - - uid: 31016 + - uid: 31223 components: - rot: 1.5707963267948966 rad pos: -11.5,6.5 parent: 2 type: Transform - - uid: 31017 + - uid: 31224 components: - rot: 1.5707963267948966 rad pos: -11.5,7.5 parent: 2 type: Transform - - uid: 31018 + - uid: 31225 components: - pos: -28.5,-78.5 parent: 2 type: Transform - - uid: 31019 + - uid: 31226 components: - rot: -1.5707963267948966 rad pos: 22.5,-21.5 parent: 2 type: Transform - - uid: 31020 + - uid: 31227 components: - rot: -1.5707963267948966 rad pos: -16.5,-75.5 parent: 2 type: Transform - - uid: 31021 + - uid: 31228 components: - rot: 1.5707963267948966 rad pos: -23.5,-88.5 parent: 2 type: Transform - - uid: 31022 + - uid: 31229 components: - pos: -17.5,-76.5 parent: 2 type: Transform - - uid: 31023 + - uid: 31230 components: - pos: -30.5,-78.5 parent: 2 type: Transform - - uid: 31024 + - uid: 31231 components: - rot: 1.5707963267948966 rad pos: -28.5,-80.5 parent: 2 type: Transform - - uid: 31025 + - uid: 31232 components: - rot: 1.5707963267948966 rad pos: -23.5,-90.5 parent: 2 type: Transform - - uid: 31026 + - uid: 31233 components: - pos: -4.5,4.5 parent: 2 type: Transform - - uid: 31027 + - uid: 31234 components: - rot: -1.5707963267948966 rad pos: 28.5,-21.5 parent: 2 type: Transform - - uid: 31028 + - uid: 31235 components: - rot: 1.5707963267948966 rad pos: 24.5,-21.5 parent: 2 type: Transform - - uid: 31029 + - uid: 31236 components: - rot: 1.5707963267948966 rad pos: 26.5,-21.5 parent: 2 type: Transform - - uid: 31030 + - uid: 31237 components: - rot: -1.5707963267948966 rad pos: 26.5,-21.5 parent: 2 type: Transform - - uid: 31031 + - uid: 31238 components: - pos: 49.5,22.5 parent: 2 type: Transform - - uid: 31032 + - uid: 31239 components: - pos: 25.5,-23.5 parent: 2 type: Transform - - uid: 31033 + - uid: 31240 components: - rot: 3.141592653589793 rad pos: 26.5,28.5 parent: 2 type: Transform - - uid: 31034 + - uid: 31241 components: - rot: 1.5707963267948966 rad pos: 30.5,29.5 parent: 2 type: Transform - - uid: 31035 + - uid: 31242 components: - rot: 3.141592653589793 rad pos: 32.5,28.5 parent: 2 type: Transform - - uid: 31036 + - uid: 31243 components: - rot: 3.141592653589793 rad pos: 27.5,28.5 parent: 2 type: Transform - - uid: 31037 + - uid: 31244 components: - rot: -1.5707963267948966 rad pos: -17.5,-78.5 parent: 2 type: Transform - - uid: 31038 + - uid: 31245 components: - pos: -11.5,-9.5 parent: 2 type: Transform - - uid: 31039 + - uid: 31246 components: - rot: -1.5707963267948966 rad pos: 19.5,-54.5 parent: 2 type: Transform - - uid: 31040 + - uid: 31247 components: - pos: 58.5,22.5 parent: 2 type: Transform - - uid: 31041 + - uid: 31248 components: - pos: 52.5,22.5 parent: 2 type: Transform - - uid: 31042 + - uid: 31249 components: - pos: 55.5,22.5 parent: 2 type: Transform - - uid: 31043 + - uid: 31250 components: - rot: -1.5707963267948966 rad pos: 28.5,29.5 parent: 2 type: Transform - - uid: 31044 + - uid: 31251 components: - rot: 3.141592653589793 rad pos: 26.5,30.5 parent: 2 type: Transform - - uid: 31045 + - uid: 31252 components: - rot: 3.141592653589793 rad pos: -17.5,-78.5 parent: 2 type: Transform - - uid: 31046 + - uid: 31253 components: - rot: -1.5707963267948966 rad pos: -17.5,-76.5 parent: 2 type: Transform - - uid: 31047 + - uid: 31254 components: - rot: -1.5707963267948966 rad pos: -16.5,-79.5 parent: 2 type: Transform - - uid: 31048 + - uid: 31255 components: - rot: 1.5707963267948966 rad pos: -28.5,-78.5 parent: 2 type: Transform - - uid: 31049 + - uid: 31256 components: - rot: 3.141592653589793 rad pos: -26.5,-88.5 parent: 2 type: Transform - - uid: 31050 + - uid: 31257 components: - rot: 3.141592653589793 rad pos: -23.5,-88.5 parent: 2 type: Transform - - uid: 31051 + - uid: 31258 components: - rot: 3.141592653589793 rad pos: -21.5,-88.5 parent: 2 type: Transform - - uid: 31052 + - uid: 31259 components: - pos: 26.5,-23.5 parent: 2 type: Transform - - uid: 31053 + - uid: 31260 components: - rot: 3.141592653589793 rad pos: -24.5,-88.5 parent: 2 type: Transform - - uid: 31054 + - uid: 31261 components: - rot: -1.5707963267948966 rad pos: -22.5,-90.5 parent: 2 type: Transform - - uid: 31055 + - uid: 31262 components: - rot: -1.5707963267948966 rad pos: -22.5,-88.5 parent: 2 type: Transform - - uid: 31056 + - uid: 31263 components: - rot: -1.5707963267948966 rad pos: 28.5,27.5 parent: 2 type: Transform - - uid: 31057 + - uid: 31264 components: - pos: -9.5,-81.5 parent: 2 type: Transform - - uid: 31058 + - uid: 31265 components: - rot: 3.141592653589793 rad pos: 31.5,30.5 parent: 2 type: Transform - - uid: 31059 + - uid: 31266 components: - rot: 3.141592653589793 rad pos: 27.5,30.5 parent: 2 type: Transform - - uid: 31060 + - uid: 31267 components: - rot: 3.141592653589793 rad pos: -8.5,21.5 parent: 2 type: Transform - - uid: 31061 + - uid: 31268 components: - rot: 3.141592653589793 rad pos: 32.5,30.5 parent: 2 type: Transform - - uid: 31062 + - uid: 31269 components: - rot: 1.5707963267948966 rad pos: 23.5,-24.5 parent: 2 type: Transform - - uid: 31063 + - uid: 31270 components: - rot: 3.141592653589793 rad pos: 31.5,28.5 parent: 2 type: Transform - - uid: 31064 + - uid: 31271 components: - rot: -1.5707963267948966 rad pos: -22.5,-89.5 parent: 2 type: Transform - - uid: 31065 + - uid: 31272 components: - rot: 1.5707963267948966 rad pos: -23.5,-89.5 parent: 2 type: Transform - - uid: 31066 + - uid: 31273 components: - pos: -29.5,-78.5 parent: 2 type: Transform - - uid: 31067 + - uid: 31274 components: - rot: 1.5707963267948966 rad pos: 30.5,27.5 parent: 2 type: Transform - - uid: 31068 + - uid: 31275 components: - rot: -1.5707963267948966 rad pos: 24.5,-21.5 parent: 2 type: Transform - - uid: 31069 + - uid: 31276 components: - rot: 1.5707963267948966 rad pos: 28.5,-21.5 parent: 2 type: Transform - - uid: 31070 + - uid: 31277 components: - pos: -3.5,4.5 parent: 2 type: Transform - - uid: 31071 + - uid: 31278 components: - rot: 1.5707963267948966 rad pos: 22.5,-21.5 parent: 2 type: Transform - - uid: 31072 + - uid: 31279 components: - rot: 1.5707963267948966 rad pos: -10.5,-82.5 parent: 2 type: Transform - - uid: 31073 + - uid: 31280 components: - rot: -1.5707963267948966 rad pos: 27.5,-24.5 parent: 2 type: Transform - - uid: 31074 + - uid: 31281 components: - pos: 24.5,-23.5 parent: 2 type: Transform - - uid: 31075 + - uid: 31282 components: - pos: 18.5,-53.5 parent: 2 type: Transform - - uid: 31076 + - uid: 31283 components: - pos: -14.5,-9.5 parent: 2 type: Transform - - uid: 31077 + - uid: 31284 components: - rot: 3.141592653589793 rad pos: -22.5,-88.5 parent: 2 type: Transform - - uid: 31078 + - uid: 31285 components: - rot: 3.141592653589793 rad pos: -19.5,-88.5 parent: 2 type: Transform - - uid: 31079 + - uid: 31286 components: - rot: -1.5707963267948966 rad pos: -10.5,-10.5 parent: 2 type: Transform - - uid: 31080 + - uid: 31287 components: - rot: 1.5707963267948966 rad pos: -15.5,-10.5 parent: 2 type: Transform - - uid: 31081 + - uid: 31288 components: - pos: -10.5,29.5 parent: 2 type: Transform - - uid: 31082 + - uid: 31289 components: - pos: -9.5,29.5 parent: 2 type: Transform - - uid: 31083 + - uid: 31290 components: - pos: 46.5,22.5 parent: 2 type: Transform - - uid: 31084 + - uid: 31291 components: - rot: -1.5707963267948966 rad pos: 60.5,19.5 parent: 2 type: Transform - - uid: 31085 + - uid: 31292 components: - rot: -1.5707963267948966 rad pos: 60.5,16.5 parent: 2 type: Transform - - uid: 31086 + - uid: 31293 components: - pos: -10.5,-82.5 parent: 2 type: Transform - - uid: 31087 + - uid: 31294 components: - pos: 30.5,-52.5 parent: 2 type: Transform - - uid: 31088 + - uid: 31295 components: - pos: 29.5,-52.5 parent: 2 type: Transform - - uid: 31089 + - uid: 31296 components: - pos: 28.5,-52.5 parent: 2 type: Transform - - uid: 31090 + - uid: 31297 components: - pos: 32.5,-52.5 parent: 2 type: Transform - - uid: 31091 + - uid: 31298 components: - pos: 33.5,-52.5 parent: 2 type: Transform - - uid: 31092 + - uid: 31299 components: - pos: 34.5,-52.5 parent: 2 type: Transform - - uid: 31093 + - uid: 31300 components: - rot: 1.5707963267948966 rad pos: 32.5,-47.5 parent: 2 type: Transform - - uid: 31094 + - uid: 31301 components: - rot: 1.5707963267948966 rad pos: 32.5,-48.5 parent: 2 type: Transform - - uid: 31095 + - uid: 31302 components: - pos: 33.5,-48.5 parent: 2 type: Transform - - uid: 31096 + - uid: 31303 components: - pos: 34.5,-48.5 parent: 2 type: Transform - - uid: 31097 + - uid: 31304 components: - rot: 1.5707963267948966 rad pos: 34.5,-48.5 parent: 2 type: Transform - - uid: 31098 + - uid: 31305 components: - rot: 1.5707963267948966 rad pos: 34.5,-47.5 parent: 2 type: Transform - - uid: 31099 + - uid: 31306 components: - rot: 1.5707963267948966 rad pos: 29.5,-47.5 parent: 2 type: Transform - - uid: 31100 + - uid: 31307 components: - rot: 1.5707963267948966 rad pos: 29.5,-48.5 parent: 2 type: Transform - - uid: 31101 + - uid: 31308 components: - pos: 29.5,-48.5 parent: 2 type: Transform - - uid: 31102 + - uid: 31309 components: - pos: 28.5,-48.5 parent: 2 type: Transform - - uid: 31103 + - uid: 31310 components: - rot: 3.141592653589793 rad pos: 62.5,-48.5 parent: 2 type: Transform - - uid: 31104 + - uid: 31311 components: - rot: 1.5707963267948966 rad pos: 61.5,-47.5 parent: 2 type: Transform - - uid: 31105 + - uid: 31312 components: - rot: -1.5707963267948966 rad pos: 63.5,-47.5 parent: 2 type: Transform - - uid: 31106 + - uid: 31313 components: - rot: 3.141592653589793 rad pos: 63.5,-47.5 parent: 2 type: Transform - - uid: 31107 + - uid: 31314 components: - rot: -1.5707963267948966 rad pos: 64.5,-46.5 parent: 2 type: Transform - - uid: 31108 + - uid: 31315 components: - pos: 63.5,-45.5 parent: 2 type: Transform - - uid: 31109 + - uid: 31316 components: - pos: 62.5,-44.5 parent: 2 type: Transform - - uid: 31110 + - uid: 31317 components: - rot: -1.5707963267948966 rad pos: 63.5,-45.5 parent: 2 type: Transform - - uid: 31111 + - uid: 31318 components: - rot: 1.5707963267948966 rad pos: 61.5,-45.5 parent: 2 type: Transform - - uid: 31112 + - uid: 31319 components: - pos: 61.5,-45.5 parent: 2 type: Transform - - uid: 31113 + - uid: 31320 components: - rot: 1.5707963267948966 rad pos: 60.5,-46.5 parent: 2 type: Transform - - uid: 31114 + - uid: 31321 components: - rot: 3.141592653589793 rad pos: 61.5,-47.5 parent: 2 type: Transform - - uid: 31115 + - uid: 31322 components: - rot: 1.5707963267948966 rad pos: -44.5,-13.5 parent: 2 type: Transform - - uid: 31116 + - uid: 31323 components: - rot: 3.141592653589793 rad pos: -46.5,-8.5 parent: 2 type: Transform - - uid: 31117 + - uid: 31324 components: - rot: -1.5707963267948966 rad pos: -8.5,27.5 parent: 2 type: Transform - - uid: 31118 + - uid: 31325 components: - rot: 1.5707963267948966 rad pos: -11.5,28.5 parent: 2 type: Transform - - uid: 31119 + - uid: 31326 components: - rot: -1.5707963267948966 rad pos: -8.5,28.5 parent: 2 type: Transform - - uid: 31120 + - uid: 31327 components: - rot: -1.5707963267948966 rad pos: -34.5,13.5 parent: 2 type: Transform - - uid: 31121 + - uid: 31328 components: - rot: -1.5707963267948966 rad pos: -34.5,15.5 parent: 2 type: Transform - - uid: 31122 + - uid: 31329 components: - rot: 3.141592653589793 rad pos: -3.5,4.5 parent: 2 type: Transform - - uid: 31123 + - uid: 31330 components: - rot: 3.141592653589793 rad pos: -4.5,4.5 parent: 2 type: Transform - - uid: 31124 + - uid: 31331 components: - rot: 1.5707963267948966 rad pos: -3.5,4.5 parent: 2 type: Transform - - uid: 31125 + - uid: 31332 components: - rot: -1.5707963267948966 rad pos: -4.5,4.5 parent: 2 type: Transform - - uid: 31126 + - uid: 31333 components: - pos: -12.5,-9.5 parent: 2 type: Transform - - uid: 31127 + - uid: 31334 components: - rot: 3.141592653589793 rad pos: 30.5,30.5 parent: 2 type: Transform - - uid: 31128 + - uid: 31335 components: - pos: -8.5,-81.5 parent: 2 type: Transform - - uid: 31129 + - uid: 31336 components: - rot: 3.141592653589793 rad pos: -10.5,-84.5 parent: 2 type: Transform - - uid: 31130 + - uid: 31337 components: - rot: 3.141592653589793 rad pos: -9.5,-84.5 parent: 2 type: Transform - - uid: 31131 + - uid: 31338 components: - pos: 45.5,38.5 parent: 2 type: Transform - - uid: 31132 + - uid: 31339 components: - pos: 46.5,38.5 parent: 2 type: Transform - - uid: 31133 + - uid: 31340 components: - pos: 47.5,38.5 parent: 2 type: Transform - - uid: 31134 + - uid: 31341 components: - rot: -1.5707963267948966 rad pos: 49.5,37.5 parent: 2 type: Transform - - uid: 31135 + - uid: 31342 components: - rot: -1.5707963267948966 rad pos: 49.5,36.5 parent: 2 type: Transform - - uid: 31136 + - uid: 31343 components: - rot: 3.141592653589793 rad pos: 48.5,35.5 parent: 2 type: Transform - - uid: 31137 + - uid: 31344 components: - rot: 3.141592653589793 rad pos: 47.5,35.5 parent: 2 type: Transform - - uid: 31138 + - uid: 31345 components: - rot: 3.141592653589793 rad pos: 46.5,35.5 parent: 2 type: Transform - - uid: 31139 + - uid: 31346 components: - rot: 1.5707963267948966 rad pos: 45.5,36.5 parent: 2 type: Transform - - uid: 31140 + - uid: 31347 components: - rot: 3.141592653589793 rad pos: 45.5,36.5 parent: 2 type: Transform - - uid: 31141 + - uid: 31348 components: - pos: -2.5,71.5 parent: 2 type: Transform - - uid: 31142 + - uid: 31349 components: - pos: -1.5,71.5 parent: 2 type: Transform - - uid: 31143 + - uid: 31350 components: - pos: -0.5,71.5 parent: 2 type: Transform - - uid: 31144 + - uid: 31351 components: - rot: 1.5707963267948966 rad pos: -3.5,70.5 parent: 2 type: Transform - - uid: 31145 + - uid: 31352 components: - rot: 1.5707963267948966 rad pos: -3.5,69.5 parent: 2 type: Transform - - uid: 31146 + - uid: 31353 components: - rot: 1.5707963267948966 rad pos: -3.5,68.5 parent: 2 type: Transform - - uid: 31147 + - uid: 31354 components: - rot: 3.141592653589793 rad pos: -2.5,67.5 parent: 2 type: Transform - - uid: 31148 + - uid: 31355 components: - rot: 3.141592653589793 rad pos: -1.5,67.5 parent: 2 type: Transform - - uid: 31149 + - uid: 31356 components: - rot: 3.141592653589793 rad pos: -0.5,67.5 parent: 2 type: Transform - - uid: 31150 + - uid: 31357 components: - rot: -1.5707963267948966 rad pos: 0.5,68.5 parent: 2 type: Transform - - uid: 31151 + - uid: 31358 components: - rot: -1.5707963267948966 rad pos: 0.5,69.5 parent: 2 type: Transform - - uid: 31152 + - uid: 31359 components: - rot: -1.5707963267948966 rad pos: 0.5,70.5 parent: 2 type: Transform - - uid: 31153 + - uid: 31360 components: - pos: -10.5,24.5 parent: 2 type: Transform - - uid: 31154 + - uid: 31361 components: - rot: 3.141592653589793 rad pos: -10.5,21.5 parent: 2 type: Transform - - uid: 31155 + - uid: 31362 components: - rot: 3.141592653589793 rad pos: -9.5,21.5 parent: 2 type: Transform - - uid: 31156 + - uid: 31363 components: - rot: 1.5707963267948966 rad pos: -10.5,24.5 parent: 2 type: Transform - - uid: 31157 + - uid: 31364 components: - pos: -11.5,28.5 parent: 2 type: Transform - - uid: 31158 + - uid: 31365 components: - rot: -1.5707963267948966 rad pos: -8.5,26.5 parent: 2 type: Transform - - uid: 31159 + - uid: 31366 components: - rot: -1.5707963267948966 rad pos: -8.5,24.5 parent: 2 type: Transform - - uid: 31160 + - uid: 31367 components: - rot: -1.5707963267948966 rad pos: -8.5,23.5 parent: 2 type: Transform - - uid: 31161 + - uid: 31368 components: - pos: -8.5,23.5 parent: 2 type: Transform - - uid: 31162 + - uid: 31369 components: - rot: 3.141592653589793 rad pos: -8.5,-84.5 parent: 2 type: Transform - - uid: 31163 + - uid: 31370 components: - rot: -1.5707963267948966 rad pos: -7.5,-83.5 parent: 2 type: Transform - - uid: 31164 + - uid: 31371 components: - rot: -1.5707963267948966 rad pos: -7.5,-82.5 parent: 2 type: Transform - - uid: 31165 + - uid: 31372 components: - rot: 3.141592653589793 rad pos: -10.5,26.5 parent: 2 type: Transform - - uid: 31166 + - uid: 31373 components: - rot: 1.5707963267948966 rad pos: -10.5,26.5 parent: 2 type: Transform - - uid: 31167 + - uid: 31374 components: - rot: 3.141592653589793 rad pos: -11.5,26.5 parent: 2 type: Transform - - uid: 31168 + - uid: 31375 components: - rot: 3.141592653589793 rad pos: -12.5,26.5 parent: 2 type: Transform - - uid: 31169 + - uid: 31376 components: - pos: -11.5,-81.5 parent: 2 type: Transform - - uid: 31170 + - uid: 31377 components: - rot: 1.5707963267948966 rad pos: -12.5,-82.5 parent: 2 type: Transform - - uid: 31171 + - uid: 31378 components: - rot: 3.141592653589793 rad pos: -11.5,-84.5 parent: 2 type: Transform - - uid: 31172 + - uid: 31379 components: - rot: 1.5707963267948966 rad pos: -13.5,-83.5 parent: 2 type: Transform - - uid: 31173 + - uid: 31380 components: - rot: 1.5707963267948966 rad pos: -13.5,-82.5 parent: 2 type: Transform - - uid: 31174 + - uid: 31381 components: - rot: 3.141592653589793 rad pos: -12.5,-84.5 parent: 2 type: Transform - - uid: 31175 + - uid: 31382 components: - rot: 3.141592653589793 rad pos: -12.5,-81.5 parent: 2 type: Transform - - uid: 31176 + - uid: 31383 components: - rot: -1.5707963267948966 rad pos: -11.5,-81.5 parent: 2 type: Transform - - uid: 31177 + - uid: 31384 components: - rot: -1.5707963267948966 rad pos: -10.5,-81.5 parent: 2 type: Transform - - uid: 31178 + - uid: 31385 components: - rot: -1.5707963267948966 rad pos: -10.5,-80.5 parent: 2 type: Transform - - uid: 31179 + - uid: 31386 components: - rot: 3.141592653589793 rad pos: -10.5,-79.5 parent: 2 type: Transform - - uid: 31180 + - uid: 31387 components: - rot: 3.141592653589793 rad pos: -11.5,-79.5 parent: 2 type: Transform - - uid: 31181 + - uid: 31388 components: - rot: 1.5707963267948966 rad pos: -12.5,-80.5 parent: 2 type: Transform - - uid: 31182 + - uid: 31389 components: - rot: 1.5707963267948966 rad pos: -12.5,-79.5 parent: 2 type: Transform - - uid: 31183 + - uid: 31390 components: - rot: -1.5707963267948966 rad pos: -9.5,-81.5 parent: 2 type: Transform - - uid: 31184 + - uid: 31391 components: - rot: -1.5707963267948966 rad pos: -9.5,-80.5 parent: 2 type: Transform - - uid: 31185 + - uid: 31392 components: - rot: 3.141592653589793 rad pos: -9.5,-79.5 parent: 2 type: Transform - - uid: 31186 + - uid: 31393 components: - rot: 1.5707963267948966 rad pos: -9.5,-79.5 parent: 2 type: Transform - - uid: 31187 + - uid: 31394 components: - rot: 1.5707963267948966 rad pos: -9.5,-80.5 parent: 2 type: Transform - - uid: 31188 + - uid: 31395 components: - pos: -8.5,-80.5 parent: 2 type: Transform - - uid: 31189 + - uid: 31396 components: - rot: 1.5707963267948966 rad pos: -8.5,-80.5 parent: 2 type: Transform - - uid: 31190 + - uid: 31397 components: - rot: 1.5707963267948966 rad pos: -8.5,-79.5 parent: 2 type: Transform - - uid: 31191 + - uid: 31398 components: - rot: 1.5707963267948966 rad pos: -7.5,-79.5 parent: 2 type: Transform - - uid: 31192 + - uid: 31399 components: - rot: 1.5707963267948966 rad pos: -7.5,-80.5 parent: 2 type: Transform - - uid: 31193 + - uid: 31400 components: - pos: -7.5,-81.5 parent: 2 type: Transform - - uid: 31194 + - uid: 31401 components: - rot: -1.5707963267948966 rad pos: -5.5,-81.5 parent: 2 type: Transform - - uid: 31195 + - uid: 31402 components: - rot: 3.141592653589793 rad pos: -6.5,-81.5 parent: 2 type: Transform - - uid: 31196 + - uid: 31403 components: - rot: 1.5707963267948966 rad pos: -6.5,-82.5 parent: 2 type: Transform - - uid: 31197 + - uid: 31404 components: - rot: 3.141592653589793 rad pos: -6.5,-83.5 parent: 2 type: Transform - - uid: 31198 + - uid: 31405 components: - rot: -1.5707963267948966 rad pos: -6.5,-83.5 parent: 2 type: Transform - - uid: 31199 + - uid: 31406 components: - rot: -1.5707963267948966 rad pos: -6.5,-84.5 parent: 2 type: Transform - - uid: 31200 + - uid: 31407 components: - rot: 3.141592653589793 rad pos: -7.5,-85.5 parent: 2 type: Transform - - uid: 31201 + - uid: 31408 components: - rot: 1.5707963267948966 rad pos: -9.5,-84.5 parent: 2 type: Transform - - uid: 31202 + - uid: 31409 components: - rot: 1.5707963267948966 rad pos: -8.5,-85.5 parent: 2 type: Transform - - uid: 31203 + - uid: 31410 components: - rot: 1.5707963267948966 rad pos: -9.5,-85.5 parent: 2 type: Transform - - uid: 31204 + - uid: 31411 components: - rot: 1.5707963267948966 rad pos: -9.5,-77.5 parent: 2 type: Transform - - uid: 31205 + - uid: 31412 components: - rot: 3.141592653589793 rad pos: -8.5,-78.5 parent: 2 type: Transform - - uid: 31206 + - uid: 31413 components: - rot: 3.141592653589793 rad pos: -7.5,-78.5 parent: 2 type: Transform - - uid: 31207 + - uid: 31414 components: - rot: -1.5707963267948966 rad pos: -6.5,-78.5 parent: 2 type: Transform - - uid: 31208 + - uid: 31415 components: - rot: -1.5707963267948966 rad pos: -9.5,-77.5 parent: 2 type: Transform - - uid: 31209 + - uid: 31416 components: - pos: -6.5,-79.5 parent: 2 type: Transform - - uid: 31210 + - uid: 31417 components: - pos: -5.5,-79.5 parent: 2 type: Transform - - uid: 31211 + - uid: 31418 components: - rot: -1.5707963267948966 rad pos: -4.5,-80.5 parent: 2 type: Transform - - uid: 31212 + - uid: 31419 components: - rot: 3.141592653589793 rad pos: -4.5,-82.5 parent: 2 type: Transform - - uid: 31213 + - uid: 31420 components: - rot: 1.5707963267948966 rad pos: -5.5,-82.5 parent: 2 type: Transform - - uid: 31214 + - uid: 31421 components: - rot: 1.5707963267948966 rad pos: -5.5,-83.5 parent: 2 type: Transform - - uid: 31215 + - uid: 31422 components: - rot: 1.5707963267948966 rad pos: -6.5,-83.5 parent: 2 type: Transform - - uid: 31216 + - uid: 31423 components: - rot: 1.5707963267948966 rad pos: -6.5,-84.5 parent: 2 type: Transform - - uid: 31217 + - uid: 31424 components: - rot: 3.141592653589793 rad pos: -5.5,-85.5 parent: 2 type: Transform - - uid: 31218 + - uid: 31425 components: - rot: 1.5707963267948966 rad pos: -4.5,-83.5 parent: 2 type: Transform - - uid: 31219 + - uid: 31426 components: - rot: 1.5707963267948966 rad pos: -4.5,-82.5 parent: 2 type: Transform - - uid: 31220 + - uid: 31427 components: - rot: 3.141592653589793 rad pos: -5.5,-87.5 parent: 2 type: Transform - - uid: 31221 + - uid: 31428 components: - rot: 3.141592653589793 rad pos: -6.5,-87.5 parent: 2 type: Transform - - uid: 31222 + - uid: 31429 components: - rot: 3.141592653589793 rad pos: -7.5,-87.5 parent: 2 type: Transform - - uid: 31223 + - uid: 31430 components: - rot: 3.141592653589793 rad pos: -8.5,-87.5 parent: 2 type: Transform - - uid: 31224 + - uid: 31431 components: - rot: 3.141592653589793 rad pos: -9.5,-87.5 parent: 2 type: Transform - - uid: 31225 + - uid: 31432 components: - rot: 3.141592653589793 rad pos: -10.5,-88.5 parent: 2 type: Transform - - uid: 31226 + - uid: 31433 components: - rot: 1.5707963267948966 rad pos: -11.5,-86.5 parent: 2 type: Transform - - uid: 31227 + - uid: 31434 components: - rot: 1.5707963267948966 rad pos: -11.5,-85.5 parent: 2 type: Transform - - uid: 31228 + - uid: 31435 components: - rot: 3.141592653589793 rad pos: -9.5,-86.5 parent: 2 type: Transform - - uid: 31229 + - uid: 31436 components: - rot: 1.5707963267948966 rad pos: -10.5,-85.5 parent: 2 type: Transform - - uid: 31230 + - uid: 31437 components: - rot: 3.141592653589793 rad pos: -11.5,-85.5 parent: 2 type: Transform - - uid: 31231 + - uid: 31438 components: - rot: 3.141592653589793 rad pos: -12.5,-85.5 parent: 2 type: Transform - - uid: 31232 + - uid: 31439 components: - rot: 3.141592653589793 rad pos: -7.5,-86.5 parent: 2 type: Transform - - uid: 31233 + - uid: 31440 components: - rot: 3.141592653589793 rad pos: -6.5,-86.5 parent: 2 type: Transform - - uid: 31234 + - uid: 31441 components: - rot: 1.5707963267948966 rad pos: -5.5,-85.5 parent: 2 type: Transform - - uid: 31235 + - uid: 31442 components: - rot: 1.5707963267948966 rad pos: -13.5,-85.5 parent: 2 type: Transform - - uid: 31236 + - uid: 31443 components: - rot: 1.5707963267948966 rad pos: -14.5,-85.5 parent: 2 type: Transform - - uid: 31237 + - uid: 31444 components: - rot: 1.5707963267948966 rad pos: -14.5,-84.5 parent: 2 type: Transform - - uid: 31238 + - uid: 31445 components: - rot: 1.5707963267948966 rad pos: -14.5,-83.5 parent: 2 type: Transform - - uid: 31239 + - uid: 31446 components: - rot: 3.141592653589793 rad pos: -13.5,-87.5 parent: 2 type: Transform - - uid: 31240 + - uid: 31447 components: - rot: 1.5707963267948966 rad pos: -14.5,-86.5 parent: 2 type: Transform - - uid: 31241 + - uid: 31448 components: - rot: 3.141592653589793 rad pos: -12.5,-86.5 parent: 2 type: Transform - - uid: 31242 + - uid: 31449 components: - rot: 1.5707963267948966 rad pos: -14.5,-82.5 parent: 2 type: Transform - - uid: 31243 + - uid: 31450 components: - rot: 3.141592653589793 rad pos: -14.5,-82.5 parent: 2 type: Transform - - uid: 31244 + - uid: 31451 components: - rot: 1.5707963267948966 rad pos: -15.5,-82.5 parent: 2 type: Transform - - uid: 31245 + - uid: 31452 components: - pos: -15.5,-83.5 parent: 2 type: Transform - - uid: 31246 + - uid: 31453 components: - rot: 3.141592653589793 rad pos: -14.5,-85.5 parent: 2 type: Transform - - uid: 31247 + - uid: 31454 components: - rot: 1.5707963267948966 rad pos: -12.5,-87.5 parent: 2 type: Transform - - uid: 31248 + - uid: 31455 components: - rot: 3.141592653589793 rad pos: -11.5,-88.5 parent: 2 type: Transform - - uid: 31249 + - uid: 31456 components: - rot: 1.5707963267948966 rad pos: -11.5,-87.5 parent: 2 type: Transform - - uid: 31250 + - uid: 31457 components: - rot: 1.5707963267948966 rad pos: -10.5,-87.5 parent: 2 type: Transform - - uid: 31251 + - uid: 31458 components: - rot: 3.141592653589793 rad pos: -8.5,-88.5 parent: 2 type: Transform - - uid: 31252 + - uid: 31459 components: - rot: 1.5707963267948966 rad pos: -8.5,-88.5 parent: 2 type: Transform - - uid: 31253 + - uid: 31460 components: - rot: -1.5707963267948966 rad pos: -6.5,-88.5 parent: 2 type: Transform - - uid: 31254 + - uid: 31461 components: - pos: -6.5,-87.5 parent: 2 type: Transform - - uid: 31255 + - uid: 31462 components: - pos: -5.5,-87.5 parent: 2 type: Transform - - uid: 31256 + - uid: 31463 components: - rot: -1.5707963267948966 rad pos: -4.5,-87.5 parent: 2 type: Transform - - uid: 31257 + - uid: 31464 components: - rot: -1.5707963267948966 rad pos: -12.5,-87.5 parent: 2 type: Transform - - uid: 31258 + - uid: 31465 components: - rot: 3.141592653589793 rad pos: -13.5,-88.5 parent: 2 type: Transform - - uid: 31259 + - uid: 31466 components: - rot: 3.141592653589793 rad pos: -14.5,-88.5 parent: 2 type: Transform - - uid: 31260 + - uid: 31467 components: - rot: 1.5707963267948966 rad pos: -15.5,-87.5 parent: 2 type: Transform - - uid: 31261 + - uid: 31468 components: - pos: -15.5,-85.5 parent: 2 type: Transform - - uid: 31262 + - uid: 31469 components: - rot: 1.5707963267948966 rad pos: -13.5,-86.5 parent: 2 type: Transform - - uid: 31263 + - uid: 31470 components: - rot: 1.5707963267948966 rad pos: -10.5,-86.5 parent: 2 type: Transform - - uid: 31264 + - uid: 31471 components: - rot: -1.5707963267948966 rad pos: -5.5,-77.5 parent: 2 type: Transform - - uid: 31265 + - uid: 31472 components: - rot: -1.5707963267948966 rad pos: -5.5,-78.5 parent: 2 type: Transform - - uid: 31266 + - uid: 31473 components: - rot: -1.5707963267948966 rad pos: -4.5,-79.5 parent: 2 type: Transform - - uid: 31267 + - uid: 31474 components: - rot: -1.5707963267948966 rad pos: -4.5,-78.5 parent: 2 type: Transform - - uid: 31268 + - uid: 31475 components: - rot: -1.5707963267948966 rad pos: -10.5,-78.5 parent: 2 type: Transform - - uid: 31269 + - uid: 31476 components: - rot: 3.141592653589793 rad pos: -11.5,-78.5 parent: 2 type: Transform - - uid: 31270 + - uid: 31477 components: - rot: 3.141592653589793 rad pos: 28.5,30.5 parent: 2 type: Transform - - uid: 31271 + - uid: 31478 components: - pos: 16.5,37.5 parent: 2 type: Transform - - uid: 31272 + - uid: 31479 components: - rot: 3.141592653589793 rad pos: -55.5,-63.5 parent: 2 type: Transform - - uid: 31273 + - uid: 31480 components: - rot: 3.141592653589793 rad pos: -54.5,-63.5 parent: 2 type: Transform - - uid: 31274 + - uid: 31481 components: - rot: -1.5707963267948966 rad pos: -53.5,-63.5 parent: 2 type: Transform - - uid: 31275 + - uid: 31482 components: - rot: -1.5707963267948966 rad pos: -53.5,-64.5 parent: 2 type: Transform - - uid: 31276 + - uid: 31483 components: - rot: 1.5707963267948966 rad pos: 42.5,5.5 parent: 2 type: Transform - - uid: 31277 + - uid: 31484 components: - rot: 1.5707963267948966 rad pos: 42.5,7.5 parent: 2 type: Transform - - uid: 31278 + - uid: 31485 components: - rot: -1.5707963267948966 rad pos: -23.5,-24.5 @@ -199737,71 +200893,71 @@ entities: type: Transform - proto: WoodblockInstrument entities: - - uid: 31279 + - uid: 31486 components: - pos: -47.491924,-64.51194 parent: 2 type: Transform - proto: WoodDoor entities: - - uid: 31280 + - uid: 31487 components: - pos: -31.5,-5.5 parent: 2 type: Transform - - uid: 31281 + - uid: 31488 components: - pos: -31.5,-7.5 parent: 2 type: Transform - - uid: 31282 + - uid: 31489 components: - pos: -38.5,7.5 parent: 2 type: Transform - - uid: 31283 + - uid: 31490 components: - rot: 3.141592653589793 rad pos: -37.5,7.5 parent: 2 type: Transform - - uid: 31284 + - uid: 31491 components: - rot: 3.141592653589793 rad pos: -29.5,-5.5 parent: 2 type: Transform - - uid: 31285 + - uid: 31492 components: - pos: 41.5,49.5 parent: 2 type: Transform - - uid: 31286 + - uid: 31493 components: - pos: 40.5,51.5 parent: 2 type: Transform - - uid: 31287 + - uid: 31494 components: - pos: -39.5,-95.5 parent: 2 type: Transform - - uid: 31288 + - uid: 31495 components: - pos: -39.5,-96.5 parent: 2 type: Transform - - uid: 31289 + - uid: 31496 components: - pos: 61.5,23.5 parent: 2 type: Transform - - uid: 31290 + - uid: 31497 components: - pos: 63.5,23.5 parent: 2 type: Transform - - uid: 31291 + - uid: 31498 components: - rot: 3.141592653589793 rad pos: -29.5,-7.5 @@ -199809,112 +200965,112 @@ entities: type: Transform - proto: Wrench entities: - - uid: 31292 + - uid: 31499 components: - pos: -65.606735,-34.373695 parent: 2 type: Transform - - uid: 31293 + - uid: 31500 components: - pos: 19.497053,-52.46946 parent: 2 type: Transform - - uid: 31294 + - uid: 31501 components: - pos: 43.41047,-49.384262 parent: 2 type: Transform - - uid: 31295 + - uid: 31502 components: - pos: 40.515266,-53.36736 parent: 2 type: Transform - - uid: 31296 + - uid: 31503 components: - pos: 53.570477,-52.25876 parent: 2 type: Transform - - uid: 31297 + - uid: 31504 components: - pos: -52.48202,-14.116064 parent: 2 type: Transform - - uid: 31298 + - uid: 31505 components: - pos: -43.931065,-77.41935 parent: 2 type: Transform - - uid: 31299 + - uid: 31506 components: - pos: -3.6165767,31.44955 parent: 2 type: Transform - - uid: 31300 + - uid: 31507 components: - pos: -52.52865,13.566981 parent: 2 type: Transform - - uid: 31301 + - uid: 31508 components: - pos: -56.484455,-4.5012527 parent: 2 type: Transform - - uid: 31302 + - uid: 31509 components: - pos: -31.403458,-56.573048 parent: 2 type: Transform - - uid: 31303 + - uid: 31510 components: - pos: 56.276398,42.55694 parent: 2 type: Transform - - uid: 31304 + - uid: 31511 components: - pos: 30.53096,47.374912 parent: 2 type: Transform - - uid: 31305 + - uid: 31512 components: - pos: 63.43439,-33.411366 parent: 2 type: Transform - - uid: 31306 + - uid: 31513 components: - pos: 73.54562,-44.324593 parent: 2 type: Transform - - uid: 31307 + - uid: 31514 components: - rot: 1.5707963267948966 rad pos: -37.345474,18.574602 parent: 2 type: Transform - - uid: 31308 + - uid: 31515 components: - pos: -8.112096,-15.394987 parent: 2 type: Transform - - uid: 31309 + - uid: 31516 components: - pos: -66.48501,-43.492954 parent: 2 type: Transform - proto: YellowOxygenTankFilled entities: - - uid: 31310 + - uid: 31517 components: - pos: 64.41901,29.545698 parent: 2 type: Transform - - uid: 31311 + - uid: 31518 components: - pos: 67.49378,-65.34203 parent: 2 type: Transform - proto: Zipties entities: - - uid: 31312 + - uid: 31519 components: - pos: 22.565756,-47.432816 parent: 2 diff --git a/Resources/Prototypes/Body/Organs/reptilian.yml b/Resources/Prototypes/Body/Organs/reptilian.yml index b2233a92070..01c0fe9658f 100644 --- a/Resources/Prototypes/Body/Organs/reptilian.yml +++ b/Resources/Prototypes/Body/Organs/reptilian.yml @@ -9,6 +9,7 @@ - Fruit - Meat - Pill + - Crayon - type: SolutionContainerManager solutions: stomach: diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_materials.yml b/Resources/Prototypes/Catalog/Cargo/cargo_materials.yml index 23449f35310..6bf54302abe 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_materials.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_materials.yml @@ -68,6 +68,16 @@ category: Materials group: market +- type: cargoProduct + id: PaperMaterial + icon: + sprite: Objects/Materials/Sheets/other.rsi + state: paper_3 + product: CrateMaterialPaper + cost: 1000 + category: Materials + group: market + - type: cargoProduct id: MaterialFuelTank icon: @@ -86,4 +96,4 @@ product: WaterTankFull cost: 1000 category: Materials - group: market \ No newline at end of file + group: market diff --git a/Resources/Prototypes/Catalog/Fills/Boxes/general.yml b/Resources/Prototypes/Catalog/Fills/Boxes/general.yml index b00b37efc3e..cbc76115b44 100644 --- a/Resources/Prototypes/Catalog/Fills/Boxes/general.yml +++ b/Resources/Prototypes/Catalog/Fills/Boxes/general.yml @@ -414,8 +414,6 @@ parent: BoxCardboard id: BoxCandle components: - - type: Item - size: 30 - type: Sprite layers: - state: box @@ -440,8 +438,6 @@ parent: BoxCardboard id: BoxCandleSmall components: - - type: Item - size: 30 - type: Sprite layers: - state: box diff --git a/Resources/Prototypes/Catalog/Fills/Boxes/science.yml b/Resources/Prototypes/Catalog/Fills/Boxes/science.yml index 13cae992e94..b4bfb578c19 100644 --- a/Resources/Prototypes/Catalog/Fills/Boxes/science.yml +++ b/Resources/Prototypes/Catalog/Fills/Boxes/science.yml @@ -4,6 +4,9 @@ id: BoxBeaker description: A box full of beakers. components: + - type: Storage + maxTotalWeight: 12 + maxItemSize: Normal - type: StorageFill contents: - id: Beaker diff --git a/Resources/Prototypes/Catalog/Fills/Crates/fun.yml b/Resources/Prototypes/Catalog/Fills/Crates/fun.yml index 862423864ee..4ca5f39c5c5 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/fun.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/fun.yml @@ -270,6 +270,7 @@ - id: ClothingShoesClownLarge - id: ClothingHeadHatMagician - id: BeachBall + - id: ClothingShoesSkates - type: entity id: CrateFunBikeHornImplants diff --git a/Resources/Prototypes/Catalog/Fills/Crates/materials.yml b/Resources/Prototypes/Catalog/Fills/Crates/materials.yml index fd49ec339c1..dc73a5106a9 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/materials.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/materials.yml @@ -70,6 +70,15 @@ - id: MaterialCardboard amount: 2 +- type: entity + id: CrateMaterialPaper + parent: CrateGenericSteel + components: + - type: StorageFill + contents: + - id: SheetPaper + amount: 3 + #- type: entity # id: CrateMaterialHFuelTank # name: fueltank crate diff --git a/Resources/Prototypes/Catalog/Fills/Items/toolboxes.yml b/Resources/Prototypes/Catalog/Fills/Items/toolboxes.yml index bc9485d7f04..3b01b73db44 100644 --- a/Resources/Prototypes/Catalog/Fills/Items/toolboxes.yml +++ b/Resources/Prototypes/Catalog/Fills/Items/toolboxes.yml @@ -81,23 +81,20 @@ prob: 0.5 - type: entity + parent: ToolboxSyndicate id: ToolboxSyndicateFilled - name: suspicious toolbox suffix: Filled - parent: ToolboxSyndicate components: - - type: Storage - maxSlots: 8 - type: StorageFill contents: - - id: Crowbar - - id: Wrench - - id: Screwdriver - - id: Wirecutter - - id: Welder - - id: Multitool - - id: ClothingHandsGlovesCombat - - id: ClothingMaskGasSyndicate + - id: Crowbar + - id: Wrench + - id: Screwdriver + - id: Wirecutter + - id: Welder + - id: Multitool + - id: ClothingHandsGlovesCombat + - id: ClothingMaskGasSyndicate - type: entity id: ToolboxGoldFilled diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml b/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml index 9ed3acc0493..4e4d4f10672 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml @@ -11,6 +11,7 @@ - id: ClothingUniformJumpsuitOperative - id: ClothingUniformJumpskirtOperative - id: ClothingHeadsetAltSyndicate + - id: ClothingEyesHudSyndicate - type: entity id: ClosetEmergencyFilledRandom @@ -115,6 +116,8 @@ prob: 0.2 - id: PlushieSnake prob: 0.2 + - id: ClothingShoesSkates + prob: 0.1 - id: ClothingHandsGlovesColorYellow prob: 0.05 - id: ClothingHandsGlovesFingerlessInsulated diff --git a/Resources/Prototypes/Damage/modifier_sets.yml b/Resources/Prototypes/Damage/modifier_sets.yml index d83379d2c19..d651373edee 100644 --- a/Resources/Prototypes/Damage/modifier_sets.yml +++ b/Resources/Prototypes/Damage/modifier_sets.yml @@ -95,9 +95,9 @@ id: Web # Very flammable, can be easily hacked and slashed, but shooting or hitting it is another story. coefficients: Blunt: 0.7 - Slash: 2.0 + Slash: 1.4 Piercing: 0.7 - Heat: 3.0 + Heat: 2.0 - type: damageModifierSet id: Slime @@ -210,3 +210,18 @@ Cellular: 1.0 Radiation: 0.0 # hehe funny cockroach immune to rads Caustic: 1.0 + +# Massive heat damage, presumably to kill with lasers +- type: damageModifierSet + id: LivingLight + coefficients: + Blunt: 0.8 + Slash: 0.8 + Piercing: 0.7 + Shock: 0.0 + Cold: 0.0 + Poison: 0.0 + Radiation: 0.0 + Cellular: 0.0 + Heat: 2.5 + Caustic: 0.0 diff --git a/Resources/Prototypes/DeviceLinking/source_ports.yml b/Resources/Prototypes/DeviceLinking/source_ports.yml index 73e96978a73..6e97c3c809c 100644 --- a/Resources/Prototypes/DeviceLinking/source_ports.yml +++ b/Resources/Prototypes/DeviceLinking/source_ports.yml @@ -114,3 +114,28 @@ name: signal-port-name-air-normal description: signal-port-description-air-normal defaultLinks: [ DoorBolt ] + +- type: sourcePort + id: Decaying + name: signal-port-name-decaying + description: signal-port-description-decaying + +- type: sourcePort + id: Stabilize + name: signal-port-name-stabilize + description: signal-port-description-stabilize + +- type: sourcePort + id: Growing + name: signal-port-name-growing + description: signal-port-description-growing + +- type: sourcePort + id: Pulse + name: signal-port-name-pulse + description: signal-port-description-pulse + +- type: sourcePort + id: Supercritical + name: signal-port-name-supercrit + description: signal-port-description-supercrit \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Clothing/Ears/headsets.yml b/Resources/Prototypes/Entities/Clothing/Ears/headsets.yml index 858ec6f0db6..a2e18d99aa2 100644 --- a/Resources/Prototypes/Entities/Clothing/Ears/headsets.yml +++ b/Resources/Prototypes/Entities/Clothing/Ears/headsets.yml @@ -274,3 +274,17 @@ - type: Clothing sprite: Clothing/Ears/Headsets/service.rsi +- type: entity + parent: ClothingHeadset + id: ClothingHeadsetFreelance + name: freelancer headset + description: This is used by a roaming group of freelancers + components: + - type: ContainerFill + containers: + key_slots: + - EncryptionKeyFreelance + - type: Sprite + sprite: Clothing/Ears/Headsets/freelance.rsi + - type: Clothing + sprite: Clothing/Ears/Headsets/freelance.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Ears/headsets_alt.yml b/Resources/Prototypes/Entities/Clothing/Ears/headsets_alt.yml index bff46beda2f..7981fc2b9e9 100644 --- a/Resources/Prototypes/Entities/Clothing/Ears/headsets_alt.yml +++ b/Resources/Prototypes/Entities/Clothing/Ears/headsets_alt.yml @@ -146,3 +146,20 @@ sprite: Clothing/Ears/Headsets/syndicate.rsi - type: Clothing sprite: Clothing/Ears/Headsets/syndicate.rsi + +- type: entity + parent: ClothingHeadsetAlt + id: ClothingHeadsetAltFreelancer + name: freelancer's over-ear headset + components: + - type: Headset + - type: EncryptionKeyHolder + keySlots: 5 + - type: ContainerFill + containers: + key_slots: + - EncryptionKeyFreelance + - type: Sprite + sprite: Clothing/Ears/Headsets/freelance.rsi + - type: Clothing + sprite: Clothing/Ears/Headsets/freelance.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml b/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml index 80317fbaec0..dfd1e50a4b7 100644 --- a/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml +++ b/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml @@ -129,6 +129,7 @@ - type: Clothing sprite: Clothing/Eyes/Hud/medsecengi.rsi - type: ShowSecurityIcons + - type: ShowSyndicateIcons - type: entity parent: ClothingEyesBase @@ -143,3 +144,18 @@ - type: ShowSecurityIcons - type: ShowHungerIcons - type: ShowThirstIcons + - type: ShowSyndicateIcons + +- type: entity + parent: ClothingEyesBase + id: ClothingEyesHudSyndicate + name: syndicate visor + description: The syndicate's professional head-up display, designed for better detection of humanoids and their subsequent elimination. + components: + - type: Sprite + sprite: Clothing/Eyes/Hud/synd.rsi + - type: Clothing + sprite: Clothing/Eyes/Hud/synd.rsi + - type: ShowSyndicateIcons + - type: ShowSecurityIcons + diff --git a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml index 98833bb5e12..fb5441a5907 100644 --- a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml +++ b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml @@ -130,9 +130,9 @@ description: High-quality nitrile gloves. Expensive medical PPE. components: - type: Sprite - sprite: Clothing/Hands/Gloves/nitrile.rsi # Corvax-Resprite + sprite: Clothing/Hands/Gloves/nitrile.rsi - type: Clothing - sprite: Clothing/Hands/Gloves/nitrile.rsi # Corvax-Resprite + sprite: Clothing/Hands/Gloves/nitrile.rsi - type: Fiber fiberMaterial: fibers-nitrile - type: FingerprintMask @@ -213,8 +213,6 @@ stripTimeReduction: 1 stealthy: true - type: NinjaGloves - # not actually electrified, just used to make stun ability work - - type: Electrified - type: entity parent: ClothingHandsGlovesColorBlack diff --git a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml index 53d24b092ab..a87f713ffaf 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml @@ -351,3 +351,14 @@ - type: Construction graph: BoneHelmet node: helmet + +- type: entity + parent: ClothingHeadHelmetBasic + id: ClothingHeadHelmetPodWars + name: ironclad II helmet + description: An ironclad II helmet, a relic of the pod wars. + components: + - type: Sprite + sprite: Clothing/Head/Helmets/podwars_helmet.rsi + - type: Clothing + sprite: Clothing/Head/Helmets/podwars_helmet.rsi diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml index a20addcce23..a282ce45c11 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml @@ -280,3 +280,22 @@ - type: Construction graph: BoneArmor node: armor + +- type: entity + parent: ClothingOuterBaseLarge + id: ClothingOuterArmorPodWars + name: ironclad II armor + description: A repurposed suit of ironclad II armor, a relic of the pod wars. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Armor/podwars_armor.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Armor/podwars_armor.rsi + - type: Armor + modifiers: + coefficients: + Blunt: 0.5 + Slash: 0.5 + Piercing: 0.6 + Heat: 0.5 + - type: GroupExamine diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml index caa84e00eda..e71c503e929 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml @@ -651,6 +651,8 @@ sprintModifier: 0.6 - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitPirateEVA + - type: StaticPrice + price: 0 #Pirate Captain Hardsuit - type: entity @@ -681,7 +683,8 @@ sprintModifier: 0.8 - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitPirateCap - + - type: StaticPrice + price: 0 #CENTCOMM / ERT HARDSUITS #ERT Leader Hardsuit diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml index d15e114857a..1f075bba6e3 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml @@ -11,7 +11,7 @@ - type: TemperatureProtection coefficient: 0.1 - type: Item - size: Small + size: Normal - type: Armor modifiers: coefficients: diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml b/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml index e531e212e95..30cf878ad1d 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml @@ -69,3 +69,52 @@ sprite: Clothing/Shoes/Misc/damedaneshoes.rsi - type: Clothing sprite: Clothing/Shoes/Misc/damedaneshoes.rsi + +- type: entity + parent: [ClothingShoesBase, PowerCellSlotSmallItem] + id: ClothingShoesBootsSpeed + name: speed boots + description: High-tech boots woven with quantum fibers, able to convert electricity into pure speed! + components: + - type: Sprite + sprite: Clothing/Shoes/Boots/speedboots.rsi + layers: + - state: icon + map: [ "enum.ToggleVisuals.Layer" ] + - type: Clothing + sprite: Clothing/Shoes/Boots/speedboots.rsi + - type: ToggleClothingSpeed + toggleAction: ActionToggleSpeedBoots + - type: ClothingSpeedModifier + walkModifier: 1.25 + sprintModifier: 1.25 + enabled: false + - type: Appearance + - type: GenericVisualizer + visuals: + enum.ToggleVisuals.Toggled: + enum.ToggleVisuals.Layer: + True: {state: icon-on} + False: {state: icon} + - type: StaticPrice + price: 500 + - type: PowerCellDraw + drawRate: 4 + - type: ItemSlots + slots: + cell_slot: + name: power-cell-slot-component-slot-name-default + - type: Tag + tags: [] + +- type: entity + id: ActionToggleSpeedBoots + name: Toggle Speed Boots + description: Toggles the speed boots on and off. + noSpawn: true + components: + - type: InstantAction + itemIconStyle: NoItem + event: !type:ToggleClothingSpeedEvent + icon: { sprite: Clothing/Shoes/Boots/speedboots.rsi, state: icon } + iconOn: { sprite: Clothing/Shoes/Boots/speedboots.rsi, state: icon-on } diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml index 8a5029540e2..6bf2c7adc6c 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml @@ -189,3 +189,27 @@ - type: ClothingSpeedModifier walkModifier: 0.85 sprintModifier: 0.8 + +- type: entity + parent: ClothingShoesBaseButcherable + id: ClothingShoesSkates + name: roller skates + description: "Get your skates on!" + components: + - type: Sprite + sprite: Clothing/Shoes/Specific/skates.rsi + - type: Clothing + sprite: Clothing/Shoes/Specific/skates.rsi + clothingVisuals: + shoes: + - state: equipped-FEET + offset: "0, -0.04" + - type: Item + sprite: Clothing/Shoes/Specific/skates.rsi + - type: ClothingSpeedModifier + walkModifier: 1.3 + sprintModifier: 1.3 + - type: Skates + - type: FootstepModifier + footstepSoundCollection: + collection: FootstepSkates diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml index 46b2d3e3aff..67b34f00b4b 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml @@ -49,9 +49,9 @@ description: A yellow turtleneck designed specifically for work in conditions of the engineering department. components: - type: Sprite - sprite: Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi + sprite: Clothing/Uniforms/Jumpskirt/ce_turtle.rsi - type: Clothing - sprite: Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi + sprite: Clothing/Uniforms/Jumpskirt/ce_turtle.rsi - type: entity parent: ClothingUniformSkirtBase diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml index 19808fb5975..4fd9e1f953c 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml @@ -108,9 +108,9 @@ description: A yellow turtleneck designed specifically for work in conditions of the engineering department. components: - type: Sprite - sprite: Clothing/Uniforms/Jumpsuit/ceturtle.rsi + sprite: Clothing/Uniforms/Jumpsuit/ce_turtle.rsi - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/ceturtle.rsi + sprite: Clothing/Uniforms/Jumpsuit/ce_turtle.rsi - type: entity parent: ClothingUniformBase diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/anomaly.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/anomaly.yml index 043bf707b4d..3b5d33ee06d 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/anomaly.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/anomaly.yml @@ -19,3 +19,4 @@ - AnomalyRock - AnomalyLiquid chance: 1 + offset: 0.15 # not to put it higher. The anomaly sychnronizer looks for anomalies within this radius, and if the radius is higher, the anomaly can be attracted from a neighboring tile. diff --git a/Resources/Prototypes/Entities/Markers/Spawners/mobs.yml b/Resources/Prototypes/Entities/Markers/Spawners/mobs.yml index 70efaed9018..bf77600f5b2 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/mobs.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/mobs.yml @@ -138,7 +138,7 @@ - type: ConditionalSpawner prototypes: - MobCatFloppa - + - type: entity name: Bingus Spawner id: SpawnMobCatBingus @@ -736,3 +736,45 @@ - MobUraniumCrab - MobIronCrab - MobQuartzCrab + +- type: entity + name: luminous person spawner + id: SpawnMobLuminousPerson + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - state: luminous_person + sprite: Mobs/Elemental/living_light/luminous_person.rsi + - type: ConditionalSpawner + prototypes: + - MobLuminousPerson + +- type: entity + name: luminous object spawner + id: SpawnMobLuminousObject + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - state: luminous_object + sprite: Mobs/Elemental/living_light/luminous_object.rsi + - type: ConditionalSpawner + prototypes: + - MobLuminousObject + +- type: entity + name: luminous entity spawner + id: SpawnMobLuminousEntity + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - state: luminous_entity + sprite: Mobs/Elemental/living_light/luminous_entity.rsi + - type: ConditionalSpawner + prototypes: + - MobLuminousEntity diff --git a/Resources/Prototypes/Entities/Markers/Spawners/vehicles.yml b/Resources/Prototypes/Entities/Markers/Spawners/vehicles.yml index f5538f20b40..ee735289203 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/vehicles.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/vehicles.yml @@ -53,3 +53,31 @@ - type: ConditionalSpawner prototypes: - VehicleSkeletonMotorcycle + +- type: entity + name: Wheelchair Spawner + id: SpawnVehicleWheelchair + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - sprite: Objects/Vehicles/wheelchair.rsi + state: vehicle + - type: ConditionalSpawner + prototypes: + - VehicleWheelchair + +- type: entity + name: Wheelchair [Folded] Spawner + id: SpawnVehicleWheelchairFolded + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - sprite: Objects/Vehicles/wheelchair.rsi + state: vehicle_folded + - type: ConditionalSpawner + prototypes: + - VehicleWheelchairFolded \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index 3a60263540c..95657cc431a 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -1067,9 +1067,9 @@ sprite: Objects/Misc/handcuffs.rsi state: body-overlay-2 visible: false - - map: [ "id" ] - map: [ "ears" ] - map: [ "outerClothing" ] + - map: [ "id" ] - map: [ "mask" ] - map: [ "head" ] - map: [ "clownedon" ] @@ -1696,8 +1696,8 @@ sprite: Objects/Misc/handcuffs.rsi state: body-overlay-2 visible: false - - map: [ "id" ] - map: [ "outerClothing" ] + - map: [ "id" ] - map: [ "mask" ] - map: [ "head" ] - map: [ "clownedon" ] diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/living_light.yml b/Resources/Prototypes/Entities/Mobs/NPCs/living_light.yml new file mode 100644 index 00000000000..0e8b220c644 --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/NPCs/living_light.yml @@ -0,0 +1,211 @@ +- type: entity + id: MobLivingLight + parent: [ BaseMob, MobCombat ] + abstract: true + name: luminous person + description: A blinding figure of pure light, seemingly intangible. + components: + - type: HTN + rootTask: + task: SimpleRangedHostileCompound + blackboard: + NavClimb: !type:Bool + true + NavSmash: !type:Bool + true + - type: NpcFactionMember + factions: + - SimpleHostile + - type: MovementIgnoreGravity + - type: MovementSpeedModifier + baseWalkSpeed: 5.5 + baseSprintSpeed: 5.5 + - type: Sprite + drawdepth: Mobs + sprite: Mobs/Elemental/living_light/luminous_person.rsi + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: luminous_person + - map: [ "enum.DamageStateVisualLayers.BaseUnshaded" ] + state: glow + shader: unshaded + - type: MobState + - type: MobThresholds + thresholds: + 0: Alive + 100: Dead + - type: DamageStateVisuals + states: + Alive: + Base: luminous_person + BaseUnshaded: glow + Dead: + Base: dead + BaseUnshaded: dead_glow + - type: StatusEffects + allowed: + - Stun + - Corporeal + - Electrocution + - StaminaModifier + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 60 + mask: + - MobMask + layer: + - Opaque + - type: Damageable + damageContainer: Inorganic + damageModifierSet: LivingLight + - type: PassiveDamage + allowedStates: + - Alive + damageCap: 20 + damage: + types: + Heat: -0.2 + - type: NoSlip + - type: ZombieImmune + - type: NameIdentifier + group: GenericNumber + - type: GhostTakeoverAvailable + - type: PointLight + color: "#e4de6c" + radius: 8 + softness: 2 + energy: 5 + - type: FootstepModifier + footstepSoundCollection: + collection: FootstepBells + - type: Speech + speechVerb: Ghost + - type: Tag + tags: + - FootstepSound + - DoorBumpOpener + - type: Destructible + thresholds: + - trigger: + !type:DamageTypeTrigger + damageType: Heat + damage: 150 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + +- type: entity + id: MobLuminousPerson + parent: MobLivingLight + components: + - type: MeleeWeapon + damage: + types: + Heat: 16 + animation: WeaponArcFist + - type: StaminaDamageOnHit + damage: 16 + +- type: entity + id: MobLuminousObject + parent: MobLivingLight + name: luminous object + description: A small glowing object that causes burns on the skin with its glow. + components: + - type: Sprite + sprite: Mobs/Elemental/living_light/luminous_object.rsi + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: luminous_object + - map: [ "enum.DamageStateVisualLayers.BaseUnshaded" ] + state: glow + shader: unshaded + - type: MobThresholds + thresholds: + 0: Alive + 50: Dead + - type: DamageStateVisuals + states: + Alive: + Base: luminous_object + BaseUnshaded: glow + Dead: + Base: dead + BaseUnshaded: dead_glow + - type: MeleeWeapon + damage: + types: + Heat: 8 + - type: Destructible + thresholds: + - trigger: + !type:DamageTypeTrigger + damageType: Heat + damage: 80 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + +- type: entity + id: MobLuminousEntity + parent: MobLivingLight + name: luminous entity + description: A blinding translucent entity, the bright eye seems dangerous and scalding. + components: + - type: Sprite + sprite: Mobs/Elemental/living_light/luminous_entity.rsi + layers: + - map: [ "enum.DamageStateVisualLayers.Base" ] + state: luminous_entity + - map: [ "enum.DamageStateVisualLayers.BaseUnshaded" ] + state: glow + shader: unshaded + - type: MobThresholds + thresholds: + 0: Alive + 60: Dead + - type: DamageStateVisuals + states: + Alive: + Base: luminous_entity + BaseUnshaded: glow + Dead: + Base: dead + BaseUnshaded: dead_glow + - type: MeleeWeapon + damage: + types: + Heat: 5 + - type: HitscanBatteryAmmoProvider + proto: Pulse + fireCost: 140 + - type: Battery + maxCharge: 1000 + startingCharge: 1000 + - type: BatterySelfRecharger + autoRecharge: true + autoRechargeRate: 50 + - type: Gun + fireRate: 0.3 + useKey: false + showExamineText: false + selectedMode: SemiAuto + availableModes: + - SemiAuto + soundGunshot: + path: /Audio/Weapons/Guns/Gunshots/laser3.ogg + soundEmpty: + path: /Audio/Items/lighter_off.ogg + - type: Destructible + thresholds: + - trigger: + !type:DamageTypeTrigger + damageType: Heat + damage: 100 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml index e5ec716f4da..dbe8b9d4387 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml @@ -10,16 +10,6 @@ - type: Clickable - type: Damageable damageContainer: Inorganic - - type: Bloodstream - bloodReagent: Oil - bloodlossDamage: - types: - Bloodloss: - 1 - bloodlossHealDamage: - types: - Bloodloss: - -1 - type: InteractionOutline - type: Fixtures fixtures: @@ -56,11 +46,10 @@ - Piercing - Heat - Shock + locPrefix: silicon - type: MovedByPressure - type: Physics bodyType: KinematicController # Same for all inheritors - - type: DrawableSolution - solution: bloodstream - type: StatusEffects allowed: - Stun @@ -86,6 +75,9 @@ thresholds: 0: Alive 120: Dead + stateAlertDict: + Alive: BorgHealth + showOverlays: false - type: Stamina critThreshold: 120 - type: Destructible diff --git a/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml b/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml index 633d8a72823..244631509c7 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml @@ -11,36 +11,41 @@ - type: HumanoidAppearance species: Arachnid - type: Hunger - baseDecayRate: 0.0125 # Spiders have slow metabolisms all things considered, so I decided to just make their hunger drain slower. starvationDamage: types: Cold: 0.5 Bloodloss: 0.5 - type: Thirst - baseDecayRate: 0.0125 # Read comment in hunger - # Damage (Self) - - type: Bloodstream - bloodReagent: CopperBlood - # Damage (Others) - - type: MeleeWeapon - animation: WeaponArcClaw - soundHit: - collection: AlienClaw - damage: - types: # Realisically this is more like 5 slash - Slash: 4 - # Fun - type: Sericulture action: ActionSericulture - productionLength: 3 + productionLength: 2 entityProduced: MaterialWebSilk1 - hungerCost: 9 # Should total to 12 total silk on full hunger + hungerCost: 4 # Should total to 25 total silk on full hunger + - type: Tag + tags: + - CanPilot + - FootstepSound + - DoorBumpOpener + - SpiderCraft - type: Perishable - type: Butcherable butcheringType: Spike spawned: - id: FoodMeatSpider amount: 5 + - type: Inventory + templateId: arachnid + # Damage (Self) + - type: Bloodstream + bloodReagent: CopperBlood + # Damage (Others) + - type: MeleeWeapon + animation: WeaponArcClaw + soundHit: + collection: AlienClaw + damage: + types: + Slash: 5 # Visual & Audio - type: DamageVisuals damageOverlayGroups: @@ -82,18 +87,18 @@ - map: ["enum.HumanoidVisualLayers.RFoot"] - map: ["enum.HumanoidVisualLayers.LHand"] - map: ["enum.HumanoidVisualLayers.RHand"] - - map: [ "id" ] - map: [ "gloves" ] - map: [ "shoes" ] - map: [ "ears" ] - map: [ "outerClothing" ] - map: [ "eyes" ] - map: [ "belt" ] + - map: [ "id" ] - map: [ "enum.HumanoidVisualLayers.Tail" ] # Mentioned in moth code: This needs renaming lol. - map: [ "neck" ] - map: [ "back" ] - map: [ "enum.HumanoidVisualLayers.FacialHair" ] - - map: [ "enum.HumanoidVisualLayers.Hair" ] + - map: [ "enum.HumanoidVisualLayers.Hair" ] # Do these need to be here? (arachnid hair arachnid hair) - map: [ "enum.HumanoidVisualLayers.HeadSide" ] - map: [ "enum.HumanoidVisualLayers.HeadTop" ] - map: [ "mask" ] @@ -109,11 +114,6 @@ sprite: "Effects/creampie.rsi" state: "creampie_arachnid" visible: false - - type: Tag - tags: - - CanPilot - - FootstepSound - - DoorBumpOpener - type: entity parent: BaseSpeciesDummy diff --git a/Resources/Prototypes/Entities/Mobs/Species/base.yml b/Resources/Prototypes/Entities/Mobs/Species/base.yml index 55473daf157..a5936c22693 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/base.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/base.yml @@ -32,13 +32,13 @@ - map: ["enum.HumanoidVisualLayers.RFoot"] - map: ["enum.HumanoidVisualLayers.LHand"] - map: ["enum.HumanoidVisualLayers.RHand"] - - map: [ "id" ] - map: [ "gloves" ] - map: [ "shoes" ] - map: [ "ears" ] - map: [ "outerClothing" ] - map: [ "eyes" ] - map: [ "belt" ] + - map: [ "id" ] - map: [ "neck" ] - map: [ "back" ] - map: [ "enum.HumanoidVisualLayers.FacialHair" ] @@ -340,13 +340,13 @@ sprite: Objects/Misc/handcuffs.rsi state: body-overlay-2 visible: false - - map: [ "id" ] - map: [ "gloves" ] - map: [ "shoes" ] - map: [ "ears" ] - map: [ "outerClothing" ] - map: [ "eyes" ] - map: [ "belt" ] + - map: [ "id" ] - map: [ "neck" ] - map: [ "back" ] - map: [ "enum.HumanoidVisualLayers.FacialHair" ] diff --git a/Resources/Prototypes/Entities/Mobs/Species/moth.yml b/Resources/Prototypes/Entities/Mobs/Species/moth.yml index 4198c605ddf..a18e47ead36 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/moth.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/moth.yml @@ -88,13 +88,13 @@ sprite: Objects/Misc/handcuffs.rsi state: body-overlay-2 visible: false - - map: [ "id" ] - map: [ "gloves" ] - map: [ "shoes" ] - map: [ "ears" ] - map: [ "outerClothing" ] - map: [ "eyes" ] - map: [ "belt" ] + - map: [ "id" ] - map: [ "enum.HumanoidVisualLayers.Tail" ] #in the utopian future we should probably have a wings enum inserted here so everyhting doesn't break - map: [ "neck" ] - map: [ "back" ] diff --git a/Resources/Prototypes/Entities/Mobs/Species/vox.yml b/Resources/Prototypes/Entities/Mobs/Species/vox.yml index b6c5edf7519..c1ee7744c8e 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/vox.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/vox.yml @@ -60,13 +60,13 @@ sprite: Objects/Misc/handcuffs.rsi state: body-overlay-2 visible: false - - map: [ "id" ] - map: [ "gloves" ] - map: [ "shoes" ] - map: [ "ears" ] - map: [ "outerClothing" ] - map: [ "eyes" ] - map: [ "belt" ] + - map: [ "id" ] - map: [ "neck" ] - map: [ "back" ] - map: [ "enum.HumanoidVisualLayers.FacialHair" ] diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles.yml index d6a0570e289..66c9c404c47 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles.yml @@ -12,6 +12,8 @@ maxVol: 100 - type: Sprite state: icon + - type: Item + size: Normal - type: DamageOnLand damage: types: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml index 3595d93ea07..9fdc594ed00 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml @@ -59,6 +59,9 @@ - type: PhysicalComposition materialComposition: Steel: 50 #reduce, reuse, recycle + - type: Tag + tags: + - DrinkCan - type: entity parent: DrinkCanBaseFull @@ -76,12 +79,38 @@ - type: Tag tags: - Cola + - DrinkCan - Recyclable - type: Sprite sprite: Objects/Consumable/Drinks/cola.rsi - type: Item sprite: Objects/Consumable/Drinks/cola.rsi +# created when taking apart an ied +- type: entity + parent: DrinkColaCan + id: DrinkColaCanEmpty + suffix: empty + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + - type: Openable + opened: true + - type: Sprite + sprite: Objects/Consumable/Drinks/cola.rsi + layers: + - state: icon_open + - type: Item + sprite: Objects/Consumable/Drinks/cola.rsi + - type: Tag + tags: + - Cola + - DrinkCan + - Recyclable + - Trash + - type: entity parent: DrinkCanBaseFull id: DrinkIcedTeaCan @@ -317,6 +346,7 @@ Quantity: 5 - type: Tag tags: + - DrinkCan - Recyclable - type: Sprite sprite: Objects/Consumable/Drinks/robustnukie.rsi diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml index a25e5b7069d..2aed92bc28e 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml @@ -233,6 +233,22 @@ Cable: 1 PlasmaGlass: 10 +- type: entity + parent: BaseMachineCircuitboard + id: AnomalySynchronizerCircuitboard + name: anomaly synchronizer machine board + description: A machine printed circuit board for an anomaly synchronizer. + components: + - type: Sprite + state: science + - type: MachineBoard + prototype: MachineAnomalySynchronizer + requirements: + Manipulator: 2 + Capacitor: 5 + materialRequirements: + PlasmaGlass: 25 + - type: entity parent: BaseMachineCircuitboard id: APECircuitboard diff --git a/Resources/Prototypes/Entities/Objects/Devices/encryption_keys.yml b/Resources/Prototypes/Entities/Objects/Devices/encryption_keys.yml index edee1dbb2cd..df9954eb154 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/encryption_keys.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/encryption_keys.yml @@ -228,3 +228,19 @@ layers: - state: crypt_silver - state: rd_label + +- type: entity + parent: EncryptionKey + id: EncryptionKeyFreelance + name: freelancer encryption key + description: An encryption key used by freelancers, who may or may not have an affiliation. It looks like its worn out. + components: + - type: EncryptionKey + channels: + - Freelance + defaultChannel: Freelance + - type: Sprite + layers: + - state: crypt_rusted + - state: pirate_label + diff --git a/Resources/Prototypes/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/Entities/Objects/Devices/pda.yml index 4cf04d8b179..b39ea2a0c42 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/pda.yml @@ -949,3 +949,15 @@ accentVColor: "#DFDFDF" - type: Icon state: pda-seniorofficer + +- type: entity + parent: SyndiPDA + id: PiratePDA + name: pirate PDA + description: Yargh! + components: + - type: Pda + id: PirateIDCard + state: pda-pirate + - type: Icon + state: pda-pirate diff --git a/Resources/Prototypes/Entities/Objects/Fun/candy_bucket.yml b/Resources/Prototypes/Entities/Objects/Fun/candy_bucket.yml index 5bdf80f6455..d78def0c94d 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/candy_bucket.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/candy_bucket.yml @@ -13,7 +13,7 @@ threshold: 1 - type: Item heldPrefix: empty - size: 20 + size: Normal - type: Appearance - type: GenericVisualizer visuals: diff --git a/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml b/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml index 938bc120fee..cbe6ee78b72 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml @@ -37,6 +37,10 @@ - paper - paper_2 - paper_3 + - type: Material + - type: PhysicalComposition + materialComposition: + Paper: 100 - type: Sprite state: paper_3 layers: diff --git a/Resources/Prototypes/Entities/Objects/Materials/materials.yml b/Resources/Prototypes/Entities/Objects/Materials/materials.yml index 4af2886c245..c74bec6a061 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/materials.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/materials.yml @@ -223,6 +223,11 @@ - type: Appearance - type: Item heldPrefix: wood + - type: Tag + tags: + - Wooden + - DroneUsable + - RawMaterial - type: entity parent: MaterialWoodPlank diff --git a/Resources/Prototypes/Entities/Objects/Misc/candles.yml b/Resources/Prototypes/Entities/Objects/Misc/candles.yml index d86b20caf61..bef37e5fd08 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/candles.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/candles.yml @@ -11,14 +11,14 @@ - state: candle-big color: "#decb8e" - type: Item - size: 2 + size: Small - type: Appearance - type: Reactive groups: Flammable: [ Touch ] Extinguish: [ Touch ] - type: ExtinguishOnInteract - extinguishAttemptSound: + extinguishAttemptSound: path: /Audio/Items/candle_blowing.ogg params: variation: 0.05 @@ -28,9 +28,9 @@ fireSpread: false canResistFire: false alwaysCombustible: true - canExtinguish: true + canExtinguish: true firestacksOnIgnite: 3.0 - firestackFade: -0.01 + firestackFade: -0.01 damage: types: Heat: 0.1 @@ -56,7 +56,7 @@ behaviors: - !type:DoActsBehavior acts: [ "Destruction" ] - + - type: entity name: red candle parent: Candle @@ -120,7 +120,7 @@ - type: Sprite layers: - state: candle-big - color: "#5d997e" + color: "#5d997e" - type: Item inhandVisuals: left: @@ -149,13 +149,13 @@ color: "#984aa1" -- type: entity +- type: entity name: small candle parent: Candle id: CandleSmall components: - type: Item - size: 1 + size: Tiny - type: Sprite layers: - state: candle-small @@ -236,7 +236,7 @@ - type: Sprite layers: - state: candle-small - color: "#5d997e" + color: "#5d997e" - type: Item inhandVisuals: left: @@ -266,8 +266,8 @@ #Purely decorative candles for mappers. Do not have any functionality. -- type: entity - name: magic candle +- type: entity + name: magic candle description: It's either magic or high tech, but this candle never goes out. On the other hand, its flame is quite cold. parent: BaseItem suffix: Decorative @@ -354,7 +354,7 @@ - type: Sprite layers: - state: candle-big - color: "#5d997e" + color: "#5d997e" - state: fire-big shader: unshaded - type: Item @@ -444,7 +444,7 @@ color: "#1b1724" right: - state: inhand-right - color: "#1b1724" + color: "#1b1724" - type: entity name: small magic green candle @@ -456,7 +456,7 @@ - state: candle-small color: "#5d997e" - state: fire-small - shader: unshaded + shader: unshaded - type: Item inhandVisuals: left: @@ -464,7 +464,7 @@ color: "#5d997e" right: - state: inhand-right - color: "#5d997e" + color: "#5d997e" - type: entity name: small magic purple candle @@ -484,4 +484,4 @@ color: "#984aa1" right: - state: inhand-right - color: "#984aa1" + color: "#984aa1" diff --git a/Resources/Prototypes/Entities/Objects/Misc/ice_crust.yml b/Resources/Prototypes/Entities/Objects/Misc/ice_crust.yml new file mode 100644 index 00000000000..2f8da6dadac --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Misc/ice_crust.yml @@ -0,0 +1,52 @@ +- type: entity + id: IceCrust + name: ice crust + description: It's cold and slippery. + placement: + mode: SnapgridCenter + snap: + - Wall + components: + - type: MeleeSound + soundGroups: + Brute: + path: + "/Audio/Weapons/slash.ogg" + - type: Sprite + sprite: Objects/Misc/ice_crust.rsi + layers: + - state: ice + drawdepth: FloorObjects + color: "#ffffff44" + - type: Clickable + - type: Transform + anchored: true + - type: Physics + - type: Fixtures + fixtures: + fix1: + hard: false + density: 7 + shape: + !type:PhysShapeAabb + bounds: "-0.4,-0.4,0.4,0.4" + layer: + - MidImpassable + - type: Damageable + damageModifierSet: Wood + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 10 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - type: Temperature + heatDamage: + types: + Heat: 5 + coldDamage: {} + ColdDamageThreshold: 0 + - type: FrictionContacts + \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml b/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml index 130d3758117..0e5238316fe 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml @@ -624,6 +624,19 @@ - NuclearOperative - SyndicateAgent +- type: entity + parent: IDCardStandard + id: PirateIDCard + name: pirate ID card + components: + - type: Sprite + layers: + - state: pirate + - type: Access + tags: + - NuclearOperative + - SyndicateAgent + - type: entity parent: IDCardStandard id: PsychologistIDCard diff --git a/Resources/Prototypes/Entities/Objects/Power/powercells.yml b/Resources/Prototypes/Entities/Objects/Power/powercells.yml index 4ed3e207c5b..01680dec3a0 100644 --- a/Resources/Prototypes/Entities/Objects/Power/powercells.yml +++ b/Resources/Prototypes/Entities/Objects/Power/powercells.yml @@ -208,25 +208,41 @@ startingCharge: 0 - type: entity - name: small microreactor cell - description: A rechargeable standardized microreactor cell. Intended for low-power devices, it slowly recharges by itself. + parent: BasePowerCell id: PowerCellMicroreactor + name: microreactor power cell + description: A rechargeable standardized microreactor cell. Has lower capacity but slowly recharges by itself. suffix: Full - parent: BasePowerCell components: - - type: Sprite - layers: - - map: [ "enum.PowerCellVisualLayers.Base" ] - state: microreactor - - map: [ "enum.PowerCellVisualLayers.Unshaded" ] - state: o2 - shader: unshaded - - type: Battery - maxCharge: 50 - startingCharge: 50 - - type: BatterySelfRecharger - autoRecharge: true - autoRechargeRate: 0.16667 #takes about 5 minutes to charge itself back to full + - type: Sprite + layers: + - map: [ "enum.PowerCellVisualLayers.Base" ] + state: microreactor + - map: [ "enum.PowerCellVisualLayers.Unshaded" ] + state: o2 + shader: unshaded + - type: Battery + maxCharge: 720 + startingCharge: 720 + - type: BatterySelfRecharger + autoRecharge: true + autoRechargeRate: 12 # takes 1 minute to charge itself back to full + +- type: entity + parent: PowerCellMicroreactor + id: PowerCellMicroreactorPrinted + suffix: Empty + components: + - type: Sprite + layers: + - map: [ "enum.PowerCellVisualLayers.Base" ] + state: microreactor + - map: [ "enum.PowerCellVisualLayers.Unshaded" ] + state: o2 + shader: unshaded + visible: false + - type: Battery + startingCharge: 0 - type: entity name: antique power cell prototype diff --git a/Resources/Prototypes/Entities/Objects/Shields/shields.yml b/Resources/Prototypes/Entities/Objects/Shields/shields.yml index c3e3ea44ead..4596085f341 100644 --- a/Resources/Prototypes/Entities/Objects/Shields/shields.yml +++ b/Resources/Prototypes/Entities/Objects/Shields/shields.yml @@ -222,6 +222,59 @@ min: 1 max: 2 +- type: entity + name: web shield + parent: BaseShield + id: WebShield + description: A stringy shield. It's weak, and doesn't seem to do well against heat. + components: + - type: Sprite + sprite: Objects/Weapons/Melee/web-shield.rsi + state: icon + - type: Item + sprite: Objects/Weapons/Melee/web-shield.rsi + heldPrefix: icon + - type: Blocking + passiveBlockModifier: + coefficients: + Blunt: 0.95 + Slash: 0.95 + Piercing: 0.95 + activeBlockModifier: + coefficients: + Blunt: 0.85 + Slash: 0.85 + Piercing: 0.85 + flatReductions: + Blunt: 0.5 + Slash: 0.5 + Piercing: 0.5 + - type: Construction + graph: WebObjects + node: shield + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 40 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageTrigger + damage: 20 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - !type:SpawnEntitiesBehavior + spawn: + MaterialWebSilk: + min: 1 + max: 1 + - !type:PlaySoundBehavior + sound: + path: /Audio/Effects/woodhit.ogg + #Magic/Cult Shields (give these to wizard for now) - type: entity diff --git a/Resources/Prototypes/Entities/Objects/Specific/Chemistry/chem_bag.yml b/Resources/Prototypes/Entities/Objects/Specific/Chemistry/chem_bag.yml index 597f48744cb..a221b2ca1f8 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Chemistry/chem_bag.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Chemistry/chem_bag.yml @@ -13,13 +13,15 @@ slots: - belt - type: Item - size: Normal + size: Ginormous - type: Storage - maxSlots: 40 + maxItemSize: Normal # allow up to 5 large beakers / 10 beakers / 10 pill canisters + maxTotalWeight: 20 quickInsert: true areaInsert: true whitelist: components: + - FitsInDispenser - Pill tags: - PillCanister diff --git a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml index 07ca776207f..3cf2b7f7953 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml @@ -66,6 +66,7 @@ - clean - type: Food solution: soap + - type: BadFood - type: entity diff --git a/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml b/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml index 5eab64e73ac..fb2f44158c8 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml @@ -6,18 +6,29 @@ - type: MobMover - type: Mech - type: MechAir - - type: MechAirFilter + - type: AirFilter # everything except oxygen and nitrogen gases: - - 2 - - 3 - - 4 - - 5 - - 6 - - 7 - - 8 - #- 9 TODO: fusion - - type: MechAirIntake + - CarbonDioxide + - Plasma + - Tritium + - WaterVapor + - Miasma + - NitrousOxide + - Frezon + #- Helium3 TODO: fusion + # remove everything except oxygen to maintain oxygen ratio + overflowGases: + - Nitrogen + - CarbonDioxide + - Plasma + - Tritium + - WaterVapor + - Miasma + - NitrousOxide + - Frezon + #- Helium3 TODO: fusion + - type: AirIntake # for intake and filter to work - type: AtmosDevice requireAnchored: false diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml index bfa6aa2ed22..41a5472b575 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml @@ -132,7 +132,7 @@ name: emergency medipen parent: ChemicalMedipen id: EmergencyMedipen - description: A rapid and safe way to stabilize patients in critical condition for personnel without advanced medical knowledge. Beware, as it's easy to overdose on epinephrine and tranexmic acid. + description: A rapid and safe way to stabilize patients in critical condition for personnel without advanced medical knowledge. Beware, as it's easy to overdose on epinephrine and tranexamic acid. components: - type: SolutionContainerManager solutions: @@ -225,7 +225,7 @@ name: rad auto-injector parent: ChemicalMedipen id: RadAutoInjector - description: A rapid dose of anti-radiation. Contains arithrazine and bicardine. + description: A rapid dose of anti-radiation. Contains arithrazine and bicaridine. components: - type: Sprite sprite: Objects/Specific/Medical/medipen.rsi diff --git a/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/item_artifacts.yml b/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/item_artifacts.yml index 6c49fd7a5e0..2de09112c12 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/item_artifacts.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/item_artifacts.yml @@ -177,6 +177,8 @@ - enum.ArtifactsVisualLayers.Base: wizardball6: "" - type: Appearance + - type: Item + size: Normal - type: Tag tags: - ArtifactFragment @@ -186,7 +188,17 @@ - ReagentId: Artifexium Quantity: 10 - type: StaticPrice - price: 250 + price: 0 + - type: Stack + stackType: ArtifactFragment - type: GuideHelp guides: - Xenoarchaeology + +- type: entity + parent: ArtifactFragment + id: ArtifactFragment1 + suffix: Single + components: + - type: Stack + count: 1 diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml index 4c6e03c578c..7dddb71c0d0 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml @@ -90,12 +90,10 @@ acts: [ "Destruction" ] - type: entity - name: bottle parent: BaseChemistryEmptyBottle id: ChemistryEmptyBottle01 - type: entity - name: bottle parent: BaseChemistryEmptyBottle id: ChemistryEmptyBottle02 components: @@ -106,11 +104,9 @@ map: ["enum.SolutionContainerLayers.Fill"] visible: false - type: SolutionContainerVisuals - maxFillLevels: 6 fillBaseName: bottle-2- - type: entity - name: bottle parent: BaseChemistryEmptyBottle id: ChemistryEmptyBottle03 components: @@ -121,11 +117,9 @@ map: ["enum.SolutionContainerLayers.Fill"] visible: false - type: SolutionContainerVisuals - maxFillLevels: 6 fillBaseName: bottle-3- - type: entity - name: bottle parent: BaseChemistryEmptyBottle id: ChemistryEmptyBottle04 components: @@ -136,13 +130,21 @@ map: ["enum.SolutionContainerLayers.Fill"] visible: false - type: SolutionContainerVisuals - maxFillLevels: 6 fillBaseName: bottle-4- +- type: entity + parent: BaseChemistryEmptyBottle + id: BaseChemistryBottleFilled + abstract: true + components: + - type: Tag + tags: + - Bottle + - type: entity id: EpinephrineChemistryBottle name: epinephrine bottle - parent: BaseChemistryEmptyBottle + parent: BaseChemistryBottleFilled components: - type: SolutionContainerManager solutions: @@ -151,15 +153,12 @@ reagents: - ReagentId: Epinephrine Quantity: 30 - - type: Tag - tags: - - Bottle - type: entity id: RobustHarvestChemistryBottle name: robust harvest bottle description: This will increase the potency of your plants. - parent: BaseChemistryEmptyBottle + parent: BaseChemistryBottleFilled components: - type: SolutionContainerManager solutions: @@ -168,15 +167,12 @@ reagents: - ReagentId: RobustHarvest Quantity: 30 - - type: Tag - tags: - - Bottle - type: entity id: EZNutrientChemistryBottle name: ez nutrient bottle description: This will provide some nutrition to your plants. - parent: BaseChemistryEmptyBottle + parent: BaseChemistryBottleFilled components: - type: SolutionContainerManager solutions: @@ -185,15 +181,12 @@ reagents: - ReagentId: EZNutrient Quantity: 30 - - type: Tag - tags: - - Bottle - type: entity id: Left4ZedChemistryBottle name: left-4-zed bottle description: This will increase the effectiveness of mutagen. - parent: BaseChemistryEmptyBottle + parent: BaseChemistryBottleFilled components: - type: SolutionContainerManager solutions: @@ -202,15 +195,12 @@ reagents: - ReagentId: Left4Zed Quantity: 30 - - type: Tag - tags: - - Bottle - type: entity id: UnstableMutagenChemistryBottle name: unstable mutagen bottle description: This will cause rapid mutations in your plants. - parent: BaseChemistryEmptyBottle + parent: BaseChemistryBottleFilled components: - type: SolutionContainerManager solutions: @@ -219,15 +209,12 @@ reagents: - ReagentId: UnstableMutagen Quantity: 30 - - type: Tag - tags: - - Bottle - type: entity id: NocturineChemistryBottle name: nocturine bottle description: This will make someone fall down almost immediately. Hard to overdose on. - parent: BaseChemistryEmptyBottle + parent: BaseChemistryBottleFilled components: - type: SolutionContainerManager solutions: @@ -236,14 +223,11 @@ reagents: - ReagentId: Nocturine Quantity: 30 - - type: Tag - tags: - - Bottle - type: entity id: EphedrineChemistryBottle name: ephedrine bottle - parent: BaseChemistryEmptyBottle + parent: BaseChemistryBottleFilled components: - type: SolutionContainerManager solutions: @@ -252,14 +236,11 @@ reagents: - ReagentId: Ephedrine Quantity: 30 - - type: Tag - tags: - - Bottle - type: entity id: OmnizineChemistryBottle name: omnizine bottle - parent: BaseChemistryEmptyBottle + parent: BaseChemistryBottleFilled components: - type: SolutionContainerManager solutions: @@ -268,12 +249,9 @@ reagents: - ReagentId: Omnizine Quantity: 30 - - type: Tag - tags: - - Bottle - type: entity - parent: BaseChemistryEmptyBottle + parent: BaseChemistryBottleFilled id: CognizineChemistryBottle name: cognizine bottle components: @@ -284,14 +262,11 @@ reagents: - ReagentId: Cognizine Quantity: 30 - - type: Tag - tags: - - Bottle - type: entity id: PaxChemistryBottle name: pax bottle - parent: BaseChemistryEmptyBottle + parent: BaseChemistryBottleFilled components: - type: SolutionContainerManager solutions: @@ -300,14 +275,11 @@ reagents: - ReagentId: Pax Quantity: 30 - - type: Tag - tags: - - Bottle - type: entity id: MuteToxinChemistryBottle name: mute toxin bottle - parent: BaseChemistryEmptyBottle + parent: BaseChemistryBottleFilled components: - type: SolutionContainerManager solutions: @@ -316,14 +288,11 @@ reagents: - ReagentId: MuteToxin Quantity: 30 - - type: Tag - tags: - - Bottle - type: entity id: LeadChemistryBottle name: lead bottle - parent: BaseChemistryEmptyBottle + parent: BaseChemistryBottleFilled components: - type: SolutionContainerManager solutions: @@ -332,14 +301,11 @@ reagents: - ReagentId: Lead Quantity: 30 - - type: Tag - tags: - - Bottle - type: entity id: ToxinChemistryBottle name: toxin bottle - parent: BaseChemistryEmptyBottle + parent: BaseChemistryBottleFilled components: - type: SolutionContainerManager solutions: @@ -348,6 +314,3 @@ reagents: - ReagentId: Toxin Quantity: 30 - - type: Tag - tags: - - Bottle diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml index d8924895df8..9e8140943ee 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml @@ -187,7 +187,7 @@ map: ["enum.SolutionContainerLayers.Fill"] visible: false - type: Item - size: Small + size: Normal sprite: Objects/Specific/Chemistry/beaker_large.rsi - type: SolutionContainerManager solutions: diff --git a/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml b/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml index f4149b5a6a1..0acc760a574 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml @@ -117,7 +117,8 @@ sprite: Objects/Tools/Toolboxes/toolbox_syn.rsi - type: Storage maxItemSize: Huge - maxTotalWeight: 28 + maxSlots: 8 + maxTotalWeight: 32 - type: MeleeWeapon damage: types: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Bombs/ied.yml b/Resources/Prototypes/Entities/Objects/Weapons/Bombs/ied.yml new file mode 100644 index 00000000000..7e669aea525 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Weapons/Bombs/ied.yml @@ -0,0 +1,101 @@ +# ied crafted from random stuff +# ideally it would be dynamic and work by actually sparking the solution but that doesnt exist yet :( +# with that you could make napalm ied instead of welding fuel with no additional complexity +- type: entity + parent: BaseItem + id: ImprovisedExplosive + name: improvised explosive device + description: A weak, improvised incendiary device. + components: + - type: Sprite + sprite: Objects/Weapons/Bombs/ied.rsi + layers: + - state: base + - state: fuel + - state: wires + - type: Item + sprite: Objects/Consumable/Drinks/cola.rsi + - type: OnUseTimerTrigger + delay: 5 + examinable: false + initialBeepDelay: 0 + beepSound: /Audio/Effects/lightburn.ogg + # TODO: random timer when crafted + - type: TriggerOnSignal + - type: DeviceLinkSink + ports: + - Trigger + - type: Explosive # Weak explosion in a very small radius. Doesn't break underplating. + explosionType: Default + totalIntensity: 50 + intensitySlope: 5 + maxIntensity: 6 + canCreateVacuum: false + - type: ExplodeOnTrigger + - type: Damageable + damageContainer: Inorganic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 50 + behaviors: + - !type:DoActsBehavior + acts: ["Destruction"] + - !type:ExplodeBehavior + - type: Construction + graph: ImprovisedExplosive + node: ied + +# has igniter but no fuel or wires +- type: entity + parent: DrinkColaCanEmpty + id: ImprovisedExplosiveEmpty + name: improvised explosive device + suffix: empty + description: A weak, improvised incendiary device. This one has no fuel. + components: + - type: Sprite + sprite: Objects/Weapons/Bombs/ied.rsi + layers: + - state: base + map: ["enum.OpenableVisuals.Layer"] + # bad dog + - type: GenericVisualizer + visuals: + enum.OpenableVisuals.Opened: + enum.OpenableVisuals.Layer: + True: {state: "base"} + False: {state: "base"} + - type: Construction + graph: ImprovisedExplosive + node: empty + defaultTarget: ied + - type: Tag + tags: + - Trash + # no DrinkCan, prevent using it to make another ied + +- type: entity + parent: ImprovisedExplosiveEmpty + id: ImprovisedExplosiveFuel + suffix: fuel + description: A weak, improvised incendiary device. This one is missing wires. + components: + - type: Sprite + layers: + - state: base + map: ["enum.OpenableVisuals.Layer"] + - state: fuel + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: WeldingFuel + Quantity: 30 + - type: Construction + node: fuel + defaultTarget: ied + - type: Tag + tags: [] diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml index 5393de1e8b6..51d4b1bbc2a 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml @@ -233,6 +233,8 @@ graph: ShotgunSawn node: shotgunsawn deconstructionTarget: null + - type: StaticPrice + price: 0 - type: entity name: blunderbuss @@ -247,6 +249,8 @@ fireRate: 2 - type: BallisticAmmoProvider capacity: 1 + - type: StaticPrice + price: 0 - type: entity name: improvised shotgun @@ -267,7 +271,7 @@ graph: ImprovisedShotgunGraph node: shotgun - type: StaticPrice - price: 400 + price: 20 - type: entity name: improvised shotgun diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml index ccccb633f69..9c6dfa8a8ab 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml @@ -100,3 +100,5 @@ - CartridgeAntiMateriel capacity: 1 proto: CartridgeAntiMateriel + - type: StaticPrice + price: 0 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/sledgehammer.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/sledgehammer.yml index 8a3754c035f..3a0eb0ab2c0 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/sledgehammer.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/sledgehammer.yml @@ -19,4 +19,4 @@ Blunt: 10 Structural: 60 - type: Item - size: 80 + size: Large diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml index 0cc5d90a1e1..125a8a79276 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml @@ -805,7 +805,7 @@ access: [["External"]] - type: entity - parent: AirlockShuttle + parent: AirlockShuttleSyndicate id: AirlockExternalShuttleSyndicateLocked suffix: External, Docking, Syndicate, Locked components: @@ -813,7 +813,7 @@ access: [["SyndicateAgent"]] - type: entity - parent: AirlockShuttle + parent: AirlockShuttleSyndicate id: AirlockExternalShuttleNukeopLocked suffix: External, Docking, Nukeop, Locked components: @@ -828,6 +828,22 @@ - type: AccessReader access: [["External"]] +- type: entity + parent: AirlockGlassShuttleSyndicate + id: AirlockExternalGlassShuttleSyndicateLocked + suffix: Syndicate, Locked, Glass + components: + - type: AccessReader + access: [["SyndicateAgent"]] + +- type: entity + parent: AirlockGlassShuttleSyndicate + id: AirlockExternalGlassShuttleNukeopLocked + suffix: Nukeop, Locked, Glass + components: + - type: AccessReader + access: [["NuclearOperative"]] + - type: entity parent: AirlockGlassShuttle id: AirlockExternalGlassShuttleEmergencyLocked diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml index aa14d74838a..03f023975bc 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml @@ -120,3 +120,47 @@ - type: Construction graph: AirlockShuttle node: assembly + +- type: entity + id: AirlockGlassShuttleSyndicate + parent: AirlockShuttle + name: external airlock + suffix: Glass, Docking + description: Necessary for connecting two space craft together. + components: + - type: Docking + - type: Sprite + sprite: Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi + snapCardinals: false + layers: + - state: closed + map: ["enum.DoorVisualLayers.Base"] + - state: closed_unlit + shader: unshaded + map: ["enum.DoorVisualLayers.BaseUnlit"] + - state: welded + map: ["enum.WeldableLayers.BaseWelded"] + - state: bolted_unlit + shader: unshaded + map: ["enum.DoorVisualLayers.BaseBolted"] + - state: emergency_unlit + shader: unshaded + map: ["enum.DoorVisualLayers.BaseEmergencyAccess"] + - state: panel_open + map: ["enum.WiresVisualLayers.MaintenancePanel"] + - type: Occluder + enabled: false + - type: PaintableAirlock + group: ShuttleGlass + - type: Door + occludes: false + +- type: entity + parent: AirlockShuttle + id: AirlockShuttleSyndicate + suffix: Docking + name: external airlock + description: Necessary for connecting two space craft together. + components: + - type: Sprite + sprite: Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi diff --git a/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml b/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml index e4b9e574c71..a93e224d1f2 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml @@ -139,6 +139,8 @@ node: ShuttersRadiation containers: - board + - type: RadiationBlocker + resistance: 4 - type: entity id: ShuttersRadiationOpen @@ -172,6 +174,8 @@ node: ShuttersWindow containers: - board + - type: RadiationBlocker + resistance: 1 - type: entity id: ShuttersWindowOpen diff --git a/Resources/Prototypes/Entities/Structures/Machines/anomaly_sync.yml b/Resources/Prototypes/Entities/Structures/Machines/anomaly_sync.yml new file mode 100644 index 00000000000..d37cc714e28 --- /dev/null +++ b/Resources/Prototypes/Entities/Structures/Machines/anomaly_sync.yml @@ -0,0 +1,75 @@ +- type: entity + id: MachineAnomalySynchronizer + parent: [ BaseMachinePowered, ConstructibleMachine ] + name: anomaly synchronizer + description: A sophisticated device that reads changes in anomalous waves, and converts them into energy signals. + components: + - type: AnomalySynchronizer + - type: Machine + board: AnomalySynchronizerCircuitboard + - type: DeviceNetwork + deviceNetId: Wireless + - type: WirelessNetworkConnection + range: 300 + - type: DeviceNetworkRequiresPower + - type: DeviceLinkSource + ports: + - Decaying + - Stabilize + - Growing + - Pulse + - Supercritical + - type: Sprite + noRot: true + sprite: Structures/Machines/anomaly_sync.rsi + layers: + - state: base + - state: energy + shader: unshaded + map: ["enum.PowerDeviceVisualLayers.Powered"] + - type: AmbientSound + enabled: false + sound: + path: /Audio/Machines/scan_loop.ogg + range: 5 + volume: -8 + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.35,-0.35,0.35,0.35" + density: 190 + mask: + - MachineMask + layer: + - Impassable + - MidImpassable + - LowImpassable + hard: False + - type: Transform + anchored: true + noRot: false + - type: ApcPowerReceiver + powerLoad: 15000 + needsPower: true + - type: UpgradePowerDraw + powerDrawMultiplier: 0.80 + scaling: Exponential + - type: ItemPlacer + whitelist: + components: + - Anomaly + - type: DeviceList + - type: PointLight + radius: 1.8 + energy: 1.6 + color: "#b53ca1" + - type: LitOnPowered + - type: Appearance + - type: GenericVisualizer + visuals: + enum.PowerDeviceVisuals.Powered: + enum.PowerDeviceVisualLayers.Powered: + True: { visible: true } + False: { visible: false } diff --git a/Resources/Prototypes/Entities/Structures/Machines/cloning_machine.yml b/Resources/Prototypes/Entities/Structures/Machines/cloning_machine.yml index 0cc9f71e55a..6067149c8ae 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/cloning_machine.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/cloning_machine.yml @@ -20,17 +20,6 @@ map: ["base"] - type: Physics bodyType: Static - - type: Fixtures - fixtures: - fix1: - shape: - !type:PhysShapeAabb - bounds: "-0.25,-0.5,0.25,0.5" - density: 190 - mask: - - MachineMask - layer: - - MachineLayer - type: Construction graph: Machine node: machine diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 689430429a0..5beb9b006e3 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -249,11 +249,13 @@ - VoiceTrigger - Igniter - PowerCellMedium + - PowerCellMicroreactor - PowerCellHigh - WeaponPistolCHIMP - SynthesizerInstrument - RPED - ClothingShoesBootsMag + - ClothingShoesBootsSpeed - NodeScanner - HolofanProjector - BluespaceBeaker @@ -365,6 +367,7 @@ - AnalysisComputerCircuitboard - ExosuitFabricatorMachineCircuitboard - AnomalyVesselCircuitboard + - AnomalySynchronizerCircuitboard - APECircuitboard - ArtifactAnalyzerMachineCircuitboard - TraversalDistorterMachineCircuitboard @@ -888,9 +891,11 @@ whitelist: tags: - Raw + - Wooden - type: Lathe idleState: base_machine runningState: base_machine_processing canEjectStoredMaterials: false staticRecipes: - MaterialSheetMeat + - SheetPaper diff --git a/Resources/Prototypes/Entities/Structures/Machines/medical_scanner.yml b/Resources/Prototypes/Entities/Structures/Machines/medical_scanner.yml index c8d233f04cc..3cadb180c98 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/medical_scanner.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/medical_scanner.yml @@ -39,17 +39,6 @@ Yellow: {state: "maint_unlit"} - type: Physics bodyType: Static - - type: Fixtures - fixtures: - fix1: - shape: - !type:PhysShapeAabb - bounds: "-0.25,-0.5,0.25,0.5" - density: 190 - mask: - - MachineMask - layer: - - MachineLayer - type: Construction graph: Machine node: machine diff --git a/Resources/Prototypes/Entities/Structures/Machines/microwave.yml b/Resources/Prototypes/Entities/Structures/Machines/microwave.yml index 48ac7c33935..0a1a6f431f1 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/microwave.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/microwave.yml @@ -33,6 +33,14 @@ False: { visible: false } - type: ActivatableUI key: enum.MicrowaveUiKey.Key + - type: DeviceLinkSink + ports: + - On + - type: DeviceNetwork + deviceNetId: Wireless + receiveFrequencyId: BasicDevice + - type: WirelessNetworkConnection + range: 200 - type: UserInterface interfaces: - key: enum.MicrowaveUiKey.Key diff --git a/Resources/Prototypes/Entities/Structures/Specific/Anomaly/anomalies.yml b/Resources/Prototypes/Entities/Structures/Specific/Anomaly/anomalies.yml index 3526216c139..234dd523596 100644 --- a/Resources/Prototypes/Entities/Structures/Specific/Anomaly/anomalies.yml +++ b/Resources/Prototypes/Entities/Structures/Specific/Anomaly/anomalies.yml @@ -241,6 +241,13 @@ - type: ProjectileAnomaly projectilePrototype: ProjectileIcicle targetNonSentientChance: 0.1 + - type: EntitySpawnAnomaly + spawns: + - IceCrust + maxSpawnAmount: 17 + spawnOnPulse: false + spawnOnSuperCritical: false + spawnOnStabilityChanged: true - type: TempAffectingAnomaly tempChangePerSecond: -25 hotspotExposeTemperature: -1000 diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/lockers.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/lockers.yml index 144ef91c89e..5123d84d192 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/lockers.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/lockers.yml @@ -407,3 +407,45 @@ actOnClose: false destroyAfterUses: 2 destroyType: DeleteComponent + +# Clown +- type: entity + id: LockerClown + name: clown locker + parent: LockerBaseSecure + components: + - type: Appearance + - type: AccessReader + access: [["Theatre"]] + - type: EntityStorageVisuals + stateBaseClosed: clown + stateDoorOpen: clown_open + stateDoorClosed: clown_door + +# Mime +- type: entity + id: LockerMime + name: mime locker + parent: LockerBaseSecure + components: + - type: Appearance + - type: AccessReader + access: [["Theatre"]] + - type: EntityStorageVisuals + stateBaseClosed: mime + stateDoorOpen: mime_open + stateDoorClosed: mime_door + +# Representative +- type: entity + id: LockerRepresentative + name: representative locker + parent: LockerBaseSecure + components: + - type: Appearance + - type: AccessReader + access: [["Command"]] + - type: EntityStorageVisuals + stateBaseClosed: hop + stateDoorOpen: hop_open + stateDoorClosed: representative_door diff --git a/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml b/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml index 0221b2b61ac..072a8b2b717 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml @@ -299,8 +299,7 @@ name: livestock crate components: - type: EntityStorage - air: - volume: 800 + airtight: false - type: Sprite sprite: Structures/Storage/Crates/livestock.rsi layers: diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/noticeboard.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/noticeboard.yml new file mode 100644 index 00000000000..d5c330f47ed --- /dev/null +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/noticeboard.yml @@ -0,0 +1,54 @@ +- type: entity + id: NoticeBoard + name: notice board + description: Is there a job for a witcher? + components: + - type: WallMount + - type: Sprite + sprite: Structures/Wallmounts/noticeboard.rsi + layers: + - state: noticeboard + - state: notice-0 + - map: ["enum.StorageFillLayers.Fill"] + - type: StorageFillVisualizer + maxFillLevels: 6 + fillBaseName: notice + - type: Appearance + - type: InteractionOutline + - type: Clickable + - type: Transform + anchored: true + - type: Damageable + damageModifierSet: Wood + damageContainer: Inorganic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 30 + behaviors: + - !type:PlaySoundBehavior + sound: + path: /Audio/Effects/woodhit.ogg + - !type:SpawnEntitiesBehavior + spawn: + MaterialWoodPlank: + min: 1 + max: 2 + - !type:DoActsBehavior + acts: ["Destruction"] + - type: Storage + maxSlots: 10 + maxItemSize: Small + whitelist: + tags: + - Folder + - Document + - Write + - type: UserInterface + interfaces: + - key: enum.StorageUiKey.Key + type: StorageBoundUserInterface + - type: ContainerContainer + containers: + storagebase: !type:Container diff --git a/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml b/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml index ac12dc2717f..e4235dc8ce6 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml @@ -55,6 +55,8 @@ - type: OreVein oreChance: 0.2 oreRarityPrototypeId: RandomOreDistributionStandard + - type: RadiationBlocker + resistance: 2 - type: entity id: AsteroidRockMining @@ -196,6 +198,8 @@ state: rock_north - map: [ "enum.EdgeLayer.West" ] state: rock_west + - type: RadiationBlocker + resistance: 2 # Ore veins - type: entity diff --git a/Resources/Prototypes/Entities/Structures/Walls/grille.yml b/Resources/Prototypes/Entities/Structures/Walls/grille.yml index 267a06d24fd..1d9e0b3a5c1 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/grille.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/grille.yml @@ -124,3 +124,38 @@ node: start - !type:DoActsBehavior acts: ["Destruction"] + +- type: entity + id: GrilleDiagonal + parent: Grille + name: diagonal grille + components: + - type: Sprite + drawdepth: Walls + sprite: Structures/Walls/grille.rsi + layers: + - state: grille_diagonal + - state: electrified_diagonal + sprite: Effects/electricity.rsi + map: ["enum.ElectrifiedLayers.Powered"] + shader: unshaded + visible: false + - type: Icon + sprite: Structures/Walls/grille.rsi + state: grille_diagonal + - type: Fixtures + fixtures: + fix1: + shape: + !type:PolygonShape + vertices: + - "-0.5,-0.5" + - "0.5,0.5" + - "0.5,-0.5" + mask: + - FullTileMask + layer: + - WallLayer + - type: Construction + graph: GrilleDiagonal + node: grilleDiagonal \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Structures/Walls/walls.yml b/Resources/Prototypes/Entities/Structures/Walls/walls.yml index 51d611ba8d0..9059fd06d7f 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/walls.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/walls.yml @@ -382,6 +382,8 @@ - type: IconSmooth key: walls base: plasma + - type: RadiationBlocker + resistance: 5 - type: entity parent: BaseWall @@ -889,6 +891,8 @@ - type: IconSmooth key: walls base: uranium + - type: RadiationBlocker + resistance: 6 - type: entity parent: BaseWall @@ -962,6 +966,9 @@ MaterialWebSilk: min: 1 max: 1 + - !type:PlaySoundBehavior + sound: + path: /Audio/Effects/woodhit.ogg - type: IconSmooth key: walls base: wall diff --git a/Resources/Prototypes/Entities/Structures/Windows/plasma.yml b/Resources/Prototypes/Entities/Structures/Windows/plasma.yml index a0f091133a7..99e482ce7de 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/plasma.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/plasma.yml @@ -63,6 +63,13 @@ - type: Construction graph: WindowDirectional node: plasmaWindowDirectional + - type: Appearance + - type: DamageVisuals + thresholds: [4, 8, 12] + damageDivisor: 12 + trackAllDamage: true + damageOverlay: + sprite: Structures/Windows/cracks_directional.rsi - type: Destructible thresholds: - trigger: @@ -81,3 +88,44 @@ acts: [ "Destruction" ] - type: StaticPrice price: 30 + +- type: entity + parent: PlasmaWindow + id: PlasmaWindowDiagonal + name: diagonal plasma window + suffix: diagonal + placement: + mode: SnapgridCenter + snap: + - Window + components: + - type: Sprite + drawdepth: WallTops + sprite: Structures/Windows/plasma_diagonal.rsi + state: state0 + - type: IconSmooth + mode: Diagonal + key: windows + base: state + - type: Icon + sprite: Structures/Windows/plasma_diagonal.rsi + state: state0 + - type: Fixtures + fixtures: + fix1: + shape: + !type:PolygonShape + vertices: + - "-0.5,-0.5" + - "0.5,0.5" + - "0.5,-0.5" + mask: + - FullTileMask + layer: + - GlassLayer + - type: DamageVisuals + damageOverlay: + sprite: Structures/Windows/cracks_diagonal.rsi + - type: Construction + graph: WindowDiagonal + node: plasmaWindowDiagonal diff --git a/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml b/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml index 9e59143e996..c049aaf6df2 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml @@ -87,6 +87,13 @@ - type: Construction graph: WindowDirectional node: windowReinforcedDirectional + - type: Appearance + - type: DamageVisuals + thresholds: [4, 8, 12] + damageDivisor: 10 + trackAllDamage: true + damageOverlay: + sprite: Structures/Windows/cracks_directional.rsi - type: Damageable damageModifierSet: RGlass - type: Destructible @@ -107,3 +114,44 @@ acts: [ "Destruction" ] - type: StaticPrice price: 22 + +- type: entity + parent: ReinforcedWindow + id: ReinforcedWindowDiagonal + name: reinforced window diagonal + suffix: diagonal + placement: + mode: SnapgridCenter + snap: + - Window + components: + - type: Sprite + drawdepth: WallTops + sprite: Structures/Windows/reinforced_window_diagonal.rsi + state: state0 + - type: IconSmooth + mode: Diagonal + key: windows + base: state + - type: Icon + sprite: Structures/Windows/reinforced_window_diagonal.rsi + state: state0 + - type: Fixtures + fixtures: + fix1: + shape: + !type:PolygonShape + vertices: + - "-0.5,-0.5" + - "0.5,0.5" + - "0.5,-0.5" + mask: + - FullTileMask + layer: + - GlassLayer + - type: DamageVisuals + damageOverlay: + sprite: Structures/Windows/cracks_diagonal.rsi + - type: Construction + graph: WindowDiagonal + node: reinforcedWindowDiagonal diff --git a/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml b/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml index 62ddbbe8ebf..8cbcab46611 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml @@ -72,6 +72,13 @@ - type: Construction graph: WindowDirectional node: plasmaReinforcedWindowDirectional + - type: Appearance + - type: DamageVisuals + thresholds: [4, 8, 12] + damageDivisor: 36 + trackAllDamage: true + damageOverlay: + sprite: Structures/Windows/cracks_directional.rsi - type: Destructible thresholds: - trigger: @@ -99,3 +106,44 @@ acts: [ "Destruction" ] - type: StaticPrice price: 66 + +- type: entity + parent: ReinforcedPlasmaWindow + id: ReinforcedPlasmaWindowDiagonal + name: diagonal reinforced plasma window + suffix: diagonal + placement: + mode: SnapgridCenter + snap: + - Window + components: + - type: Sprite + drawdepth: WallTops + sprite: Structures/Windows/reinforced_plasma_diagonal.rsi + state: state0 + - type: IconSmooth + mode: Diagonal + key: windows + base: state + - type: Icon + sprite: Structures/Windows/reinforced_plasma_diagonal.rsi + state: state0 + - type: Fixtures + fixtures: + fix1: + shape: + !type:PolygonShape + vertices: + - "-0.5,-0.5" + - "0.5,0.5" + - "0.5,-0.5" + mask: + - FullTileMask + layer: + - GlassLayer + - type: DamageVisuals + damageOverlay: + sprite: Structures/Windows/cracks_diagonal.rsi + - type: Construction + graph: WindowDiagonal + node: reinforcedPlasmaWindowDiagonal diff --git a/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml b/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml index c32a6484191..17ca85ba306 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml @@ -52,3 +52,44 @@ price: 140 - type: RadiationBlocker resistance: 5 + +- type: entity + parent: ReinforcedUraniumWindow + id: ReinforcedUraniumWindowDiagonal + name: diagonal reinforced uranium window + suffix: diagonal + placement: + mode: SnapgridCenter + snap: + - Window + components: + - type: Sprite + drawdepth: WallTops + sprite: Structures/Windows/reinforced_uranium_diagonal.rsi + state: state0 + - type: IconSmooth + mode: Diagonal + key: windows + base: state + - type: Icon + sprite: Structures/Windows/reinforced_uranium_diagonal.rsi + state: state0 + - type: Fixtures + fixtures: + fix1: + shape: + !type:PolygonShape + vertices: + - "-0.5,-0.5" + - "0.5,0.5" + - "0.5,-0.5" + mask: + - FullTileMask + layer: + - GlassLayer + - type: DamageVisuals + damageOverlay: + sprite: Structures/Windows/cracks_diagonal.rsi + - type: Construction + graph: WindowDiagonal + node: reinforcedUraniumWindowDiagonal diff --git a/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml b/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml index 7535ba0d39b..826f9b09f47 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml @@ -47,3 +47,41 @@ sprite: Structures/Windows/cracks.rsi - type: StaticPrice price: 75 + +- type: entity + parent: ShuttleWindow + id: ShuttleWindowDiagonal + name: diagonal shuttle window + suffix: diagonal + placement: + mode: SnapgridCenter + snap: + - Window + components: + - type: Sprite + drawdepth: WallTops + sprite: Structures/Windows/shuttle_window_diagonal.rsi + state: state0 + - type: IconSmooth + mode: Diagonal + key: windows + base: state + - type: Icon + sprite: Structures/Windows/shuttle_window_diagonal.rsi + state: state0 + - type: Fixtures + fixtures: + fix1: + shape: + !type:PolygonShape + vertices: + - "-0.5,-0.5" + - "0.5,0.5" + - "0.5,-0.5" + mask: + - FullTileMask + layer: + - GlassLayer + - type: DamageVisuals + damageOverlay: + sprite: Structures/Windows/cracks_diagonal.rsi diff --git a/Resources/Prototypes/Entities/Structures/Windows/uranium.yml b/Resources/Prototypes/Entities/Structures/Windows/uranium.yml index 0728f80c43c..74092f3dbd6 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/uranium.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/uranium.yml @@ -44,3 +44,44 @@ price: 80 - type: RadiationBlocker resistance: 3 + +- type: entity + parent: UraniumWindow + id: UraniumWindowDiagonal + name: diagonal uranium window + suffix: diagonal + placement: + mode: SnapgridCenter + snap: + - Window + components: + - type: Sprite + drawdepth: WallTops + sprite: Structures/Windows/uranium_window_diagonal.rsi + state: state0 + - type: IconSmooth + mode: Diagonal + key: windows + base: state + - type: Icon + sprite: Structures/Windows/uranium_window_diagonal.rsi + state: state0 + - type: Fixtures + fixtures: + fix1: + shape: + !type:PolygonShape + vertices: + - "-0.5,-0.5" + - "0.5,0.5" + - "0.5,-0.5" + mask: + - FullTileMask + layer: + - GlassLayer + - type: DamageVisuals + damageOverlay: + sprite: Structures/Windows/cracks_diagonal.rsi + - type: Construction + graph: WindowDiagonal + node: uraniumWindowDiagonal \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Structures/Windows/window.yml b/Resources/Prototypes/Entities/Structures/Windows/window.yml index 23e4342e267..76c0156a018 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/window.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/window.yml @@ -166,6 +166,13 @@ - type: Construction graph: WindowDirectional node: windowDirectional + - type: Appearance + - type: DamageVisuals + thresholds: [4, 8, 12] + damageDivisor: 2 + trackAllDamage: true + damageOverlay: + sprite: Structures/Windows/cracks_directional.rsi - type: StaticPrice price: 10 @@ -185,3 +192,44 @@ - type: Icon sprite: Structures/Windows/directional.rsi state: frosted_window + +- type: entity + parent: Window + id: WindowDiagonal + name: window diagonal + suffix: diagonal + placement: + mode: SnapgridCenter + snap: + - Window + components: + - type: Sprite + drawdepth: WallTops + sprite: Structures/Windows/window_diagonal.rsi + state: state0 + - type: IconSmooth + mode: Diagonal + key: windows + base: state + - type: Icon + sprite: Structures/Windows/window_diagonal.rsi + state: state0 + - type: Fixtures + fixtures: + fix1: + shape: + !type:PolygonShape + vertices: + - "-0.5,-0.5" + - "0.5,0.5" + - "0.5,-0.5" + mask: + - FullTileMask + layer: + - GlassLayer + - type: DamageVisuals + damageOverlay: + sprite: Structures/Windows/cracks_diagonal.rsi + - type: Construction + graph: WindowDiagonal + node: windowDiagonal diff --git a/Resources/Prototypes/InventoryTemplates/arachnid_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/arachnid_inventory_template.yml new file mode 100644 index 00000000000..0ebbdb916ef --- /dev/null +++ b/Resources/Prototypes/InventoryTemplates/arachnid_inventory_template.yml @@ -0,0 +1,134 @@ +- 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: 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: suitstorage + slotTexture: suit_storage + slotFlags: SUITSTORAGE + stripTime: 3 + uiWindowPos: 2,0 + strippingWindowPos: 2,5 + dependsOn: outerClothing + displayName: Suit Storage + - 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: pocket4 + slotTexture: web + slotFlags: POCKET + slotGroup: MainHotbar + stripTime: 3 + uiWindowPos: 2,4 + strippingWindowPos: 1,5 + displayName: Pocket 4 + - name: pocket3 + slotTexture: web + slotFlags: POCKET + slotGroup: MainHotbar + stripTime: 3 + uiWindowPos: 0,4 + strippingWindowPos: 0,5 + displayName: Pocket 3 + + - name: outerClothing + slotTexture: suit + slotFlags: OUTERCLOTHING + slotGroup: SecondHotbar + stripTime: 6 + uiWindowPos: 1,2 + strippingWindowPos: 1,2 + displayName: Suit + - 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 diff --git a/Resources/Prototypes/NPCs/medibot.yml b/Resources/Prototypes/NPCs/medibot.yml index 91aae781a7a..c0853984eed 100644 --- a/Resources/Prototypes/NPCs/medibot.yml +++ b/Resources/Prototypes/NPCs/medibot.yml @@ -21,6 +21,7 @@ - !type:HTNPrimitiveTask operator: !type:SpeakOperator speech: medibot-start-inject + hidden: true - !type:HTNPrimitiveTask operator: !type:MoveToOperator diff --git a/Resources/Prototypes/Parallaxes/origin.yml b/Resources/Prototypes/Parallaxes/origin.yml new file mode 100644 index 00000000000..174f21a3ca4 --- /dev/null +++ b/Resources/Prototypes/Parallaxes/origin.yml @@ -0,0 +1,41 @@ +- type: parallax + id: OriginStation + layers: + - texture: + !type:ImageParallaxTextureSource + path: "/Textures/Parallaxes/KettleParallaxBG.png" + slowness: 0.998046875 + scale: "1, 1" + - texture: + !type:GeneratedParallaxTextureSource + id: "hq_wizard_stars" + configPath: "/Prototypes/Parallaxes/parallax_config_stars.toml" + slowness: 0.996625 + - texture: + !type:GeneratedParallaxTextureSource + id: "hq_wizard_stars_dim" + configPath: "/Prototypes/Parallaxes/parallax_config_stars_dim.toml" + slowness: 0.989375 + - texture: + !type:GeneratedParallaxTextureSource + id: "hq_wizard_stars_faster" + configPath: "/Prototypes/Parallaxes/parallax_config_stars-2.toml" + slowness: 0.987265625 + - texture: + !type:GeneratedParallaxTextureSource + id: "hq_wizard_stars_dim_faster" + configPath: "/Prototypes/Parallaxes/parallax_config_stars_dim-2.toml" + slowness: 0.984352 + - texture: + !type:ImageParallaxTextureSource + path: "/Textures/Parallaxes/gas_giant.png" + slowness: 0.998046875 + scale: "1, 1" + tiled: false + layersLQ: + - texture: + !type:GeneratedParallaxTextureSource + id: "" + configPath: "/Prototypes/Parallaxes/parallax_config.toml" + slowness: 0.875 + layersLQUseHQ: false diff --git a/Resources/Prototypes/Polymorphs/polymorph.yml b/Resources/Prototypes/Polymorphs/polymorph.yml index c710d83cecc..8593c2194d1 100644 --- a/Resources/Prototypes/Polymorphs/polymorph.yml +++ b/Resources/Prototypes/Polymorphs/polymorph.yml @@ -136,3 +136,14 @@ revertOnDeath: true revertOnCrit: true duration: 20 + +- type: polymorph + id: ArtifactLuminous + entity: MobLuminousPerson + forced: true + transferName: true + transferHumanoidAppearance: true + inventory: None + revertOnDeath: true + revertOnCrit: true + duration: 20 diff --git a/Resources/Prototypes/Reagents/Materials/materials.yml b/Resources/Prototypes/Reagents/Materials/materials.yml index e9a0cad37df..a8fc1744b3b 100644 --- a/Resources/Prototypes/Reagents/Materials/materials.yml +++ b/Resources/Prototypes/Reagents/Materials/materials.yml @@ -34,6 +34,14 @@ color: "#8291a1" price: 0.15 # 1-1 mix of plastic and cloth. +- type: material + id: Paper + stackEntity: SheetPaper1 + name: materials-paper + icon: { sprite: Objects/Materials/Sheets/other.rsi, state: paper } + color: "#d9d9d9" + price: 0.05 #same as wood + - type: material id: Plasma stackEntity: SheetPlasma1 @@ -98,4 +106,4 @@ unit: materials-unit-piece icon: { sprite: Objects/Materials/materials.rsi, state: bones } color: "#896f5e" - price: 0 \ No newline at end of file + price: 0 diff --git a/Resources/Prototypes/Reagents/biological.yml b/Resources/Prototypes/Reagents/biological.yml index a8775799460..45311604107 100644 --- a/Resources/Prototypes/Reagents/biological.yml +++ b/Resources/Prototypes/Reagents/biological.yml @@ -10,13 +10,21 @@ slippery: false metabolisms: Drink: - # Quenching! effects: - !type:SatiateThirst factor: 1.5 + conditions: + - !type:OrganType + type: Human + shouldHave: false + Food: + effects: + - !type:AdjustReagent + reagent: UncookedAnimalProteins + amount: 0.5 plantMetabolism: - - !type:PlantAdjustWater - amount: 0.5 + - !type:PlantAdjustWater + amount: 0.5 - type: reagent id: Slime @@ -39,6 +47,7 @@ factor: 1.5 - type: reagent + parent: Blood id: CopperBlood name: reagent-name-hemocyanin-blood group: Biological @@ -48,15 +57,6 @@ recognizable: true physicalDesc: reagent-physical-desc-ferrous slippery: false - metabolisms: - Drink: - # Quenching! - effects: - - !type:SatiateThirst - factor: 1.5 - plantMetabolism: - - !type:PlantAdjustWater - amount: 0.5 - type: reagent id: ZombieBlood diff --git a/Resources/Prototypes/Reagents/cleaning.yml b/Resources/Prototypes/Reagents/cleaning.yml index e4ea12307d3..b70a7af0fad 100644 --- a/Resources/Prototypes/Reagents/cleaning.yml +++ b/Resources/Prototypes/Reagents/cleaning.yml @@ -52,9 +52,17 @@ Food: effects: - !type:ChemVomit + conditions: + - !type:ReagentThreshold + min: 6 + probability: 0.20 Drink: effects: - !type:ChemVomit + conditions: + - !type:ReagentThreshold + min: 6 + probability: 0.20 - type: reagent id: SoapyWater @@ -71,8 +79,12 @@ - !type:SatiateThirst factor: 3 - !type:ChemVomit - thirstAmount: -10.0 - hungerAmount: -10.0 + conditions: + - !type:ReagentThreshold + min: 6 + probability: 0.10 + thirstAmount: -5.0 + hungerAmount: -5.0 plantMetabolism: - !type:PlantAdjustWater amount: .8 diff --git a/Resources/Prototypes/Reagents/medicine.yml b/Resources/Prototypes/Reagents/medicine.yml index 3342444759d..73c33c2455d 100644 --- a/Resources/Prototypes/Reagents/medicine.yml +++ b/Resources/Prototypes/Reagents/medicine.yml @@ -12,8 +12,6 @@ - !type:GenericStatusEffect key: Stutter component: ScrambledAccent - Alcohol: - effects: - !type:Drunk slurSpeech: false boozePower: 20 @@ -57,8 +55,6 @@ - !type:ReagentThreshold min: 20 probability: 0.02 - Alcohol: - effects: - !type:Drunk conditions: - !type:ReagentThreshold @@ -162,8 +158,6 @@ conditions: - !type:ReagentThreshold min: 15 - Alcohol: - effects: - !type:Drunk - type: reagent @@ -407,6 +401,9 @@ Medicine: effects: - !type:ChemVomit + conditions: + - !type:ReagentThreshold + min: 4 probability: 0.3 - type: reagent diff --git a/Resources/Prototypes/Reagents/toxins.yml b/Resources/Prototypes/Reagents/toxins.yml index 7e206cc9d8f..8c561d96f21 100644 --- a/Resources/Prototypes/Reagents/toxins.yml +++ b/Resources/Prototypes/Reagents/toxins.yml @@ -442,19 +442,34 @@ flavor: bitter color: "#FFFFE5" metabolisms: - Poison: + Food: effects: + - !type:PopupMessage + conditions: + - !type:OrganType + type: Human + reagent: Protein + type: Local + visualType: MediumCaution + messages: [ "generic-reagent-effect-sick" ] + probability: 0.5 + - !type:ChemVomit + probability: 0.1 + conditions: + - !type:OrganType + type: Human - !type:HealthChange conditions: - !type:OrganType type: Human damage: types: - Poison: 2 + Poison: 1 - !type:AdjustReagent conditions: - !type:OrganType - type: Animal + type: Human + shouldHave: false reagent: Protein amount: 0.5 diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/structures/grille_diagonal.yml b/Resources/Prototypes/Recipes/Construction/Graphs/structures/grille_diagonal.yml new file mode 100644 index 00000000000..3f1bad5d342 --- /dev/null +++ b/Resources/Prototypes/Recipes/Construction/Graphs/structures/grille_diagonal.yml @@ -0,0 +1,29 @@ +- type: constructionGraph + id: GrilleDiagonal + start: start + graph: + - node: start + edges: + - to: grilleDiagonal + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: MetalRod + amount: 2 + doAfter: 1 + + - node: grilleDiagonal + entity: GrilleDiagonal + edges: + - to: start + completed: + - !type:AdminLog + message: "A grille was cut" + - !type:SpawnPrototype + prototype: PartRodMetal1 + amount: 2 + - !type:DeleteEntity + steps: + - tool: Cutting + doAfter: 0.25 diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/structures/window_diagonal.yml b/Resources/Prototypes/Recipes/Construction/Graphs/structures/window_diagonal.yml new file mode 100644 index 00000000000..1a116952126 --- /dev/null +++ b/Resources/Prototypes/Recipes/Construction/Graphs/structures/window_diagonal.yml @@ -0,0 +1,163 @@ +- type: constructionGraph + id: WindowDiagonal + start: start + graph: + - node: start + edges: + - to: plasmaWindowDiagonal + steps: + - material: PlasmaGlass + amount: 2 + doAfter: 2 + + - to: reinforcedWindowDiagonal + steps: + - material: ReinforcedGlass + amount: 2 + doAfter: 2 + + - to: reinforcedPlasmaWindowDiagonal + steps: + - material: ReinforcedPlasmaGlass + amount: 2 + doAfter: 3 + + - to: uraniumWindowDiagonal + steps: + - material: UraniumGlass + amount: 2 + doAfter: 2 + + - to: reinforcedUraniumWindowDiagonal + steps: + - material: ReinforcedUraniumGlass + amount: 2 + doAfter: 3 + + - to: windowDiagonal + steps: + - material: Glass + amount: 2 + doAfter: 3 + + - node: windowDiagonal + entity: WindowDiagonal + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: SheetGlass1 + amount: 2 + - !type:DeleteEntity {} + steps: + - tool: Screwing + doAfter: 1 + - tool: Anchoring + doAfter: 2 + + - node: reinforcedWindowDiagonal + entity: ReinforcedWindowDiagonal + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: SheetRGlass1 + amount: 2 + - !type:DeleteEntity {} + steps: + - tool: Welding + doAfter: 5 + - tool: Screwing + doAfter: 1 + - tool: Prying + doAfter: 2 + - tool: Welding + doAfter: 5 + - tool: Screwing + doAfter: 1 + - tool: Anchoring + doAfter: 2 + + - node: plasmaWindowDiagonal + entity: PlasmaWindowDiagonal + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: SheetPGlass1 + amount: 2 + - !type:DeleteEntity {} + steps: + - tool: Screwing + doAfter: 2 + - tool: Prying + doAfter: 3 + - tool: Screwing + doAfter: 2 + - tool: Anchoring + doAfter: 3 + + - node: reinforcedPlasmaWindowDiagonal + entity: ReinforcedPlasmaWindowDiagonal + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: SheetRPGlass1 + amount: 2 + - !type:DeleteEntity {} + steps: + - tool: Welding + doAfter: 5 + - tool: Screwing + doAfter: 2 + - tool: Prying + doAfter: 3 + - tool: Welding + doAfter: 5 + - tool: Screwing + doAfter: 2 + - tool: Anchoring + doAfter: 3 + + - node: uraniumWindowDiagonal + entity: UraniumWindowDiagonal + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: SheetUGlass1 + amount: 2 + - !type:DeleteEntity {} + steps: + - tool: Screwing + doAfter: 2 + - tool: Prying + doAfter: 3 + - tool: Screwing + doAfter: 2 + - tool: Anchoring + doAfter: 3 + + - node: reinforcedUraniumWindowDiagonal + entity: ReinforcedUraniumWindowDiagonal + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: SheetRUGlass1 + amount: 2 + - !type:DeleteEntity {} + steps: + - tool: Welding + doAfter: 5 + - tool: Screwing + doAfter: 2 + - tool: Prying + doAfter: 3 + - tool: Welding + doAfter: 5 + - tool: Screwing + doAfter: 2 + - tool: Anchoring + doAfter: 3 diff --git a/Resources/Prototypes/Recipes/Construction/structures.yml b/Resources/Prototypes/Recipes/Construction/structures.yml index d1b711ec0a7..20343111a06 100644 --- a/Resources/Prototypes/Recipes/Construction/structures.yml +++ b/Resources/Prototypes/Recipes/Construction/structures.yml @@ -232,6 +232,23 @@ placementMode: SnapgridCenter canRotate: false +- type: construction + name: diagonal grille + id: GrilleDiagonal + graph: GrilleDiagonal + startNode: start + targetNode: grilleDiagonal + category: construction-category-structures + description: A flimsy framework of iron rods. + conditions: + - !type:TileNotBlocked + failIfSpace: false + icon: + sprite: Structures/Walls/grille.rsi + state: grille_diagonal + objectType: Structure + placementMode: SnapgridCenter + - type: construction name: window id: Window @@ -251,6 +268,24 @@ placementMode: SnapgridCenter canRotate: false +- type: construction + name: diagonal window + id: WindowDiagonal + graph: WindowDiagonal + startNode: start + targetNode: windowDiagonal + category: construction-category-structures + description: Clear. + canBuildInImpassable: true + conditions: + - !type:EmptyOrWindowValidInTile + - !type:NoWindowsInTile + icon: + sprite: Structures/Windows/window_diagonal.rsi + state: state1 + objectType: Structure + placementMode: SnapgridCenter + - type: construction name: reinforced window id: ReinforcedWindow @@ -270,6 +305,24 @@ placementMode: SnapgridCenter canRotate: false +- type: construction + name: diagonal reinforced window + id: ReinforcedWindowDiagonal + graph: WindowDiagonal + startNode: start + targetNode: reinforcedWindowDiagonal + category: construction-category-structures + description: Clear but tough. + canBuildInImpassable: true + conditions: + - !type:EmptyOrWindowValidInTile + - !type:NoWindowsInTile + icon: + sprite: Structures/Windows/reinforced_window_diagonal.rsi + state: state1 + objectType: Structure + placementMode: SnapgridCenter + - type: construction name: tinted window id: TintedWindow @@ -327,6 +380,42 @@ placementMode: SnapgridCenter canRotate: false +- type: construction + name: diagonal plasma window + id: PlasmaWindowDiagonal + graph: WindowDiagonal + startNode: start + targetNode: plasmaWindowDiagonal + category: construction-category-structures + canBuildInImpassable: true + description: Clear and even tougher, with a purple tint. + conditions: + - !type:EmptyOrWindowValidInTile + - !type:NoWindowsInTile + icon: + sprite: Structures/Windows/plasma_diagonal.rsi + state: state1 + objectType: Structure + placementMode: SnapgridCenter + +- type: construction + name: diagonal reinforced plasma window + id: ReinforcedPlasmaWindowDiagonal + graph: WindowDiagonal + startNode: start + targetNode: reinforcedPlasmaWindowDiagonal + category: construction-category-structures + canBuildInImpassable: true + description: Fire resistant and even tougher, with a purple tint. + conditions: + - !type:EmptyOrWindowValidInTile + - !type:NoWindowsInTile + icon: + sprite: Structures/Windows/reinforced_plasma_diagonal.rsi + state: state1 + objectType: Structure + placementMode: SnapgridCenter + - type: construction name: directional window id: WindowDirectional @@ -437,6 +526,42 @@ placementMode: SnapgridCenter canRotate: false +- type: construction + name: diagonal uranium window + id: UraniumWindowDiagonal + graph: WindowDiagonal + startNode: start + targetNode: uraniumWindowDiagonal + category: construction-category-structures + canBuildInImpassable: true + description: Clear and much tougher than regular glass, with added RadAbsorb to protect you from deadly radiation. + conditions: + - !type:EmptyOrWindowValidInTile + - !type:NoWindowsInTile + icon: + sprite: Structures/Windows/uranium_window_diagonal.rsi + state: state1 + objectType: Structure + placementMode: SnapgridCenter + +- type: construction + name: diagonal reinforced uranium window + id: ReinforcedUraniumWindowDiagonal + graph: WindowDiagonal + startNode: start + targetNode: reinforcedUraniumWindowDiagonal + category: construction-category-structures + canBuildInImpassable: true + description: Clear and much tougher than regular glass, with added RadAbsorb to protect you from deadly radiation. + conditions: + - !type:EmptyOrWindowValidInTile + - !type:NoWindowsInTile + icon: + sprite: Structures/Windows/reinforced_uranium_diagonal.rsi + state: state1 + objectType: Structure + placementMode: SnapgridCenter + - type: construction name: firelock id: Firelock diff --git a/Resources/Prototypes/Recipes/Construction/web.yml b/Resources/Prototypes/Recipes/Construction/web.yml index 2d61ac15158..9a0d832d012 100644 --- a/Resources/Prototypes/Recipes/Construction/web.yml +++ b/Resources/Prototypes/Recipes/Construction/web.yml @@ -13,6 +13,9 @@ placementMode: SnapgridCenter canRotate: false canBuildInImpassable: false + entityWhitelist: + tags: + - SpiderCraft conditions: - !type:TileNotBlocked @@ -31,6 +34,9 @@ placementMode: SnapgridCenter canRotate: false canBuildInImpassable: false + entityWhitelist: + tags: + - SpiderCraft conditions: - !type:TileNotBlocked @@ -49,6 +55,9 @@ placementMode: SnapgridCenter canRotate: false canBuildInImpassable: false + entityWhitelist: + tags: + - SpiderCraft conditions: - !type:TileNotBlocked @@ -66,6 +75,9 @@ objectType: Structure placementMode: SnapgridCenter canBuildInImpassable: false + entityWhitelist: + tags: + - SpiderCraft - type: construction name: web crate @@ -82,6 +94,9 @@ placementMode: SnapgridCenter canRotate: false canBuildInImpassable: false + entityWhitelist: + tags: + - SpiderCraft - type: construction name: web door @@ -97,5 +112,8 @@ objectType: Structure placementMode: SnapgridCenter canBuildInImpassable: false + entityWhitelist: + tags: + - SpiderCraft conditions: - !type:TileNotBlocked diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/ied.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/ied.yml new file mode 100644 index 00000000000..bdf06e558f1 --- /dev/null +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/ied.yml @@ -0,0 +1,75 @@ +- type: constructionGraph + id: ImprovisedExplosive + start: start + graph: + - node: start + edges: + - to: empty + steps: + - tag: DrinkCan + name: an empty can + icon: + sprite: Objects/Consumable/Drinks/cola.rsi + state: icon_open + doAfter: 1 + - tag: Igniter + name: an igniter + icon: + sprite: Objects/Devices/igniter.rsi + state: icon + doAfter: 1 + - node: empty + entity: ImprovisedExplosiveEmpty + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: DrinkColaCanEmpty + - !type:SpawnPrototype + prototype: Igniter + - !type:DeleteEntity {} + steps: + - tool: Prying + doAfter: 1 + - to: fuel + conditions: + - !type:MinSolution + solution: drink + reagent: + ReagentId: WeldingFuel + quantity: 30 + steps: + - tool: Screwing + doAfter: 1 + - node: fuel + entity: ImprovisedExplosiveFuel + edges: + - to: empty + conditions: + - !type:SolutionEmpty + solution: drink + steps: + - tool: Screwing + doAfter: 1 + - to: ied + conditions: # no dumping out 29u of the fuel then adding wires :) + - !type:MinSolution + solution: drink + reagent: + ReagentId: WeldingFuel + quantity: 30 + steps: + - material: Cable + amount: 5 + doAfter: 2 + - node: ied + entity: ImprovisedExplosive + edges: + - to: fuel + completed: + - !type:SpawnPrototype + prototype: CableApcStack1 + amount: 5 + steps: + - tool: Cutting + doAfter: 2 diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/web.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/web.yml index 2bde191cdb2..718af8be278 100644 --- a/Resources/Prototypes/Recipes/Crafting/Graphs/web.yml +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/web.yml @@ -36,6 +36,12 @@ amount: 4 doAfter: 6 + - to: shield + steps: + - material: WebSilk + amount: 12 + doAfter: 6 + # Deconstruction - node: tile entity: FloorTileItemWeb @@ -51,3 +57,6 @@ - node: cloth entity: MaterialCloth1 + + - node: shield + entity: WebShield diff --git a/Resources/Prototypes/Recipes/Crafting/improvised.yml b/Resources/Prototypes/Recipes/Crafting/improvised.yml index 2f3b34db2b0..df3a3bbdab9 100644 --- a/Resources/Prototypes/Recipes/Crafting/improvised.yml +++ b/Resources/Prototypes/Recipes/Crafting/improvised.yml @@ -162,3 +162,16 @@ icon: sprite: Objects/Misc/rifle_stock.rsi state: icon + +- type: construction + name: improvised explosive device + id: improvisedexplosive + graph: ImprovisedExplosive + startNode: start + targetNode: ied + category: construction-category-weapons + objectType: Item + description: A weak, improvised incendiary device. + icon: + sprite: Objects/Weapons/Bombs/ied.rsi + state: icon diff --git a/Resources/Prototypes/Recipes/Crafting/web.yml b/Resources/Prototypes/Recipes/Crafting/web.yml index 0cd8b22c0ac..fe25b2f2246 100644 --- a/Resources/Prototypes/Recipes/Crafting/web.yml +++ b/Resources/Prototypes/Recipes/Crafting/web.yml @@ -6,6 +6,9 @@ targetNode: tile category: construction-category-tiles description: "Nice and smooth." + entityWhitelist: + tags: + - SpiderCraft icon: sprite: Objects/Tiles/web.rsi state: icon @@ -19,6 +22,9 @@ targetNode: coat category: construction-category-clothing description: "Surprisingly warm and durable." + entityWhitelist: + tags: + - SpiderCraft icon: sprite: Clothing/OuterClothing/WinterCoats/coatweb.rsi state: icon @@ -32,6 +38,9 @@ targetNode: jumpsuit category: construction-category-clothing description: "At least it's something." + entityWhitelist: + tags: + - SpiderCraft icon: sprite: Clothing/Uniforms/Jumpsuit/web.rsi state: icon @@ -45,6 +54,9 @@ targetNode: jumpskirt category: construction-category-clothing description: "At least it's something." + entityWhitelist: + tags: + - SpiderCraft icon: sprite: Clothing/Uniforms/Jumpskirt/web.rsi state: icon @@ -58,7 +70,26 @@ targetNode: cloth category: construction-category-materials description: "Feels just like cloth, strangely enough." + entityWhitelist: + tags: + - SpiderCraft icon: sprite: Objects/Materials/materials.rsi state: cloth_3 objectType: Item + +- type: construction + name: web shield + id: WebShield + graph: WebObjects + startNode: start + targetNode: shield + category: construction-category-clothing + description: "It's thick enough to handle a few blows, but probably not heat." + entityWhitelist: + tags: + - SpiderCraft + icon: + sprite: Objects/Weapons/Melee/web-shield.rsi + state: icon + objectType: Item diff --git a/Resources/Prototypes/Recipes/Lathes/electronics.yml b/Resources/Prototypes/Recipes/Lathes/electronics.yml index bc54c78ca1e..88b655644fe 100644 --- a/Resources/Prototypes/Recipes/Lathes/electronics.yml +++ b/Resources/Prototypes/Recipes/Lathes/electronics.yml @@ -248,6 +248,16 @@ Steel: 100 Glass: 900 +- type: latheRecipe + id: AnomalySynchronizerCircuitboard + result: AnomalySynchronizerCircuitboard + completetime: 4 + materials: + Steel: 500 + Glass: 700 + Gold: 200 + Silver: 100 + - type: latheRecipe id: APECircuitboard result: APECircuitboard diff --git a/Resources/Prototypes/Recipes/Lathes/misc.yml b/Resources/Prototypes/Recipes/Lathes/misc.yml index 5aff63ed925..266cdf6e513 100644 --- a/Resources/Prototypes/Recipes/Lathes/misc.yml +++ b/Resources/Prototypes/Recipes/Lathes/misc.yml @@ -85,6 +85,15 @@ Steel: 1000 Plastic: 500 +- type: latheRecipe + id: ClothingShoesBootsSpeed + result: ClothingShoesBootsSpeed + completetime: 2 + materials: + Steel: 1500 + Plastic: 1000 + Silver: 500 + - type: latheRecipe id: ModularReceiver result: ModularReceiver diff --git a/Resources/Prototypes/Recipes/Lathes/powercells.yml b/Resources/Prototypes/Recipes/Lathes/powercells.yml index b7d92810932..2982c070be2 100644 --- a/Resources/Prototypes/Recipes/Lathes/powercells.yml +++ b/Resources/Prototypes/Recipes/Lathes/powercells.yml @@ -25,3 +25,13 @@ Glass: 400 Plastic: 200 Gold: 50 + +- type: latheRecipe + id: PowerCellMicroreactor + result: PowerCellMicroreactorPrinted + completetime: 10 + materials: + Steel: 500 + Glass: 400 + Uranium: 200 + Gold: 100 diff --git a/Resources/Prototypes/Recipes/Lathes/sheet.yml b/Resources/Prototypes/Recipes/Lathes/sheet.yml index cbfc0ca4527..f724b96bc08 100644 --- a/Resources/Prototypes/Recipes/Lathes/sheet.yml +++ b/Resources/Prototypes/Recipes/Lathes/sheet.yml @@ -139,3 +139,10 @@ completetime: 6.4 materials: Meaterial: 200 + +- type: latheRecipe + id: SheetPaper + result: SheetPaper1 + completetime: 1 + materials: + Wood: 50 diff --git a/Resources/Prototypes/Research/civilianservices.yml b/Resources/Prototypes/Research/civilianservices.yml index 92087750944..c49ba371604 100644 --- a/Resources/Prototypes/Research/civilianservices.yml +++ b/Resources/Prototypes/Research/civilianservices.yml @@ -157,7 +157,6 @@ cost: 5000 recipeUnlocks: - FatExtractorMachineCircuitboard - - SheetifierMachineCircuitboard - type: technology id: HONKMech @@ -205,3 +204,15 @@ cost: 15000 recipeUnlocks: - CargoTelepadMachineCircuitboard + +- type: technology + id: QuantumFiberWeaving + name: research-technology-quantum-fiber-weaving + icon: + sprite: Clothing/Shoes/Boots/speedboots.rsi + state: icon + discipline: CivilianServices + tier: 3 + cost: 10000 + recipeUnlocks: + - ClothingShoesBootsSpeed diff --git a/Resources/Prototypes/Research/experimental.yml b/Resources/Prototypes/Research/experimental.yml index 02d66c06bf7..363dee815e3 100644 --- a/Resources/Prototypes/Research/experimental.yml +++ b/Resources/Prototypes/Research/experimental.yml @@ -99,16 +99,17 @@ - TraversalDistorterMachineCircuitboard - type: technology - id: MobileAnomalyTech - name: research-technology-mobile-anomaly-tech + id: AdvancedAnomalyResearch + name: research-technology-advanced-anomaly-research icon: - sprite: Objects/Weapons/Guns/Revolvers/chimp.rsi + sprite: Structures/Machines/anomaly_sync.rsi state: base discipline: Experimental tier: 2 cost: 10000 recipeUnlocks: - WeaponPistolCHIMP + - AnomalySynchronizerCircuitboard technologyPrerequisites: - BasicAnomalousResearch diff --git a/Resources/Prototypes/Research/industrial.yml b/Resources/Prototypes/Research/industrial.yml index 58ff346e0ef..154bebe198b 100644 --- a/Resources/Prototypes/Research/industrial.yml +++ b/Resources/Prototypes/Research/industrial.yml @@ -1,4 +1,4 @@ -# Tier 1 +# Tier 1 - type: technology id: SalvageEquipment @@ -54,6 +54,7 @@ - AutolatheMachineCircuitboard - CircuitImprinterMachineCircuitboard - MaterialReclaimerMachineCircuitboard + - SheetifierMachineCircuitboard - type: technology id: PowerGeneration @@ -208,3 +209,17 @@ - ClothingBackpackHolding - ClothingBackpackSatchelHolding - ClothingBackpackDuffelHolding + +- type: technology + id: PortableFission + name: research-technology-portable-fission + icon: + sprite: Objects/Power/power_cells.rsi + state: microreactor + discipline: Industrial + tier: 3 + cost: 10000 + recipeUnlocks: + - PowerCellMicroreactor + technologyPrerequisites: + - SuperPowercells diff --git a/Resources/Prototypes/Roles/Antags/pirate.yml b/Resources/Prototypes/Roles/Antags/pirate.yml index 59290acd047..729d8c27e94 100644 --- a/Resources/Prototypes/Roles/Antags/pirate.yml +++ b/Resources/Prototypes/Roles/Antags/pirate.yml @@ -5,7 +5,7 @@ back: ClothingBackpackPirateFilled head: ClothingHeadBandBlack shoes: ClothingShoesBootsLaceup - id: PassengerPDA + id: PiratePDA belt: ClothingBeltUtility pocket1: AppraisalTool innerClothingSkirt: ClothingUniformJumpsuitPirate @@ -19,7 +19,7 @@ back: ClothingBackpackPirateFilled head: ClothingHeadHatPirate shoes: ClothingShoesBootsLaceup - id: PassengerPDA + id: PiratePDA belt: ClothingBeltUtility pocket1: AppraisalTool pocket2: EnergyCutlass @@ -35,7 +35,7 @@ back: ClothingBackpackPirateFilled head: ClothingHeadHatPirateTricord shoes: ClothingShoesBootsLaceup - id: PassengerPDA + id: PiratePDA belt: ClothingBeltUtility pocket1: AppraisalTool outerClothing: ClothingOuterCoatGentle diff --git a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml index ad99ef7def4..8d53e0540f1 100644 --- a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml +++ b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml @@ -103,8 +103,7 @@ jumpsuit: ClothingUniformJumpsuitOperative back: ClothingBackpackDuffelSyndicateOperative mask: ClothingMaskGasSyndicate - # eyes: Night Vision Goggles whenever they're made - eyes: ClothingEyesGlassesMeson + eyes: ClothingEyesHudSyndicate ears: ClothingHeadsetAltSyndicate gloves: ClothingHandsGlovesCombat outerClothing: ClothingOuterHardsuitSyndie @@ -124,8 +123,7 @@ jumpsuit: ClothingUniformJumpsuitOperative back: ClothingBackpackDuffelSyndicateOperative mask: ClothingMaskGasSyndicate - # eyes: Night Vision Goggles whenever they're made - eyes: ClothingEyesGlassesMeson + eyes: ClothingEyesHudSyndicate ears: ClothingHeadsetAltSyndicate gloves: ClothingHandsGlovesCombat outerClothing: ClothingOuterHardsuitSyndieCommander @@ -147,7 +145,7 @@ jumpsuit: ClothingUniformJumpsuitOperative back: ClothingBackpackDuffelSyndicateOperativeMedic mask: ClothingMaskGasSyndicate - eyes: ClothingEyesHudMedical + eyes: ClothingEyesHudSyndicate ears: ClothingHeadsetAltSyndicate gloves: ClothingHandsGlovesCombat outerClothing: ClothingOuterHardsuitMedic diff --git a/Resources/Prototypes/Roles/Jobs/Medical/senior_physician.yml b/Resources/Prototypes/Roles/Jobs/Medical/senior_physician.yml index e0defc952d7..e4c097b0c5c 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/senior_physician.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/senior_physician.yml @@ -24,6 +24,7 @@ - type: startingGear id: SeniorPhysicianGear equipment: + head: ClothingHeadHatBeretBrigmedic jumpsuit: ClothingUniformJumpsuitSeniorPhysician back: ClothingBackpackMedicalFilled shoes: ClothingShoesColorBlack diff --git a/Resources/Prototypes/Roles/Jobs/Security/senior_officer.yml b/Resources/Prototypes/Roles/Jobs/Security/senior_officer.yml index 4ae15327e57..720fb4e34d8 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/senior_officer.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/senior_officer.yml @@ -37,7 +37,7 @@ back: ClothingBackpackSecurityFilled shoes: ClothingShoesBootsJackSecFilled # Corvax-Resprite eyes: ClothingEyesGlassesSecurity - head: ClothingHeadHatBeret + head: ClothingHeadHatBeretSecurity outerClothing: ClothingOuterVestArmorSec # Corvax-Resprite id: SeniorOfficerPDA ears: ClothingHeadsetSecurity diff --git a/Resources/Prototypes/SoundCollections/footsteps.yml b/Resources/Prototypes/SoundCollections/footsteps.yml index 00f723b054a..d67d4600987 100644 --- a/Resources/Prototypes/SoundCollections/footsteps.yml +++ b/Resources/Prototypes/SoundCollections/footsteps.yml @@ -72,6 +72,11 @@ - /Audio/Effects/Footsteps/jesterstep1.ogg - /Audio/Effects/Footsteps/jesterstep2.ogg +- type: soundCollection + id: FootstepSkates + files: + - /Audio/Items/Toys/skates.ogg + - type: soundCollection id: FootstepDuck files: @@ -153,3 +158,12 @@ files: - /Audio/Effects/Footsteps/clownspiderstep1.ogg - /Audio/Effects/Footsteps/clownspiderstep2.ogg + +- type: soundCollection + id: FootstepBells + files: + - /Audio/Effects/Footsteps/bells1.ogg + - /Audio/Effects/Footsteps/bells2.ogg + - /Audio/Effects/Footsteps/bells3.ogg + - /Audio/Effects/Footsteps/bells4.ogg + - /Audio/Effects/Footsteps/bells5.ogg diff --git a/Resources/Prototypes/Stacks/science_stacks.yml b/Resources/Prototypes/Stacks/science_stacks.yml new file mode 100644 index 00000000000..010a5dc659a --- /dev/null +++ b/Resources/Prototypes/Stacks/science_stacks.yml @@ -0,0 +1,6 @@ +- type: stack + id: ArtifactFragment + name: artifact fragment + spawn: ArtifactFragment1 + maxCount: 30 + itemSize: 5 \ No newline at end of file diff --git a/Resources/Prototypes/StatusIcon/antag.yml b/Resources/Prototypes/StatusIcon/antag.yml index 564d29a35b2..6016d0c94eb 100644 --- a/Resources/Prototypes/StatusIcon/antag.yml +++ b/Resources/Prototypes/StatusIcon/antag.yml @@ -18,3 +18,11 @@ icon: sprite: Interface/Misc/job_icons.rsi state: HeadRevolutionary + +- type: statusIcon + id: SyndicateFaction + priority: 0 + locationPreference: Left + icon: + sprite: Interface/Misc/job_icons.rsi + state: Syndicate diff --git a/Resources/Prototypes/XenoArch/Effects/normal_effects.yml b/Resources/Prototypes/XenoArch/Effects/normal_effects.yml index 040f688403c..2bc2abdd6bf 100644 --- a/Resources/Prototypes/XenoArch/Effects/normal_effects.yml +++ b/Resources/Prototypes/XenoArch/Effects/normal_effects.yml @@ -420,6 +420,14 @@ - type: PolyArtifact polymorphPrototypeName: ArtifactLizard +- type: artifactEffect + id: EffectPolyLuminous + targetDepth: 3 + effectHint: artifact-effect-hint-polymorph + components: + - type: PolyArtifact + polymorphPrototypeName: ArtifactLuminous + - type: artifactEffect id: EffectHealAll targetDepth: 3 diff --git a/Resources/Prototypes/item_size.yml b/Resources/Prototypes/item_size.yml new file mode 100644 index 00000000000..47d1fe3db47 --- /dev/null +++ b/Resources/Prototypes/item_size.yml @@ -0,0 +1,35 @@ +# Items that can be held completely in one's hand. +- type: itemSize + id: Tiny + weight: 1 + name: item-component-size-Tiny + +# Items that can fit inside of a standard pocket. +- type: itemSize + id: Small + weight: 2 + name: item-component-size-Small + +# Items that can fit inside of a standard bag. +- type: itemSize + id: Normal + weight: 4 + name: item-component-size-Normal + +# Items that are too large to fit inside of standard bags, but can worn in exterior slots or placed in custom containers. +- type: itemSize + id: Large + weight: 8 + name: item-component-size-Large + +# Items that are too large to place inside of any kind of container. +- type: itemSize + id: Huge + weight: 16 + name: item-component-size-Huge + +# Picture furry gf +- type: itemSize + id: Ginormous + weight: 32 + name: item-component-size-Ginormous diff --git a/Resources/Prototypes/ore.yml b/Resources/Prototypes/ore.yml index c8411940a49..89214c96fa4 100644 --- a/Resources/Prototypes/ore.yml +++ b/Resources/Prototypes/ore.yml @@ -50,7 +50,7 @@ - type: ore id: OreArtifactFragment - oreEntity: ArtifactFragment + oreEntity: ArtifactFragment1 minOreYield: 2 maxOreYield: 4 diff --git a/Resources/Prototypes/radio_channels.yml b/Resources/Prototypes/radio_channels.yml index d9026760980..212fa5b21aa 100644 --- a/Resources/Prototypes/radio_channels.yml +++ b/Resources/Prototypes/radio_channels.yml @@ -86,3 +86,12 @@ color: "#2ed2fd" # long range since otherwise it'd defeat the point of a handheld radio independent of telecomms longRange: true + +- type: radioChannel + id: Freelance + name: chat-radio-freelance + keycode: 'f' + frequency: 1984 + color: "#f6ce64" + # long range since otherwise it'd defeat the point of a handheld radio independent of telecomms + longRange: true diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index 8a120d7bf03..33e2e376fe4 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -407,6 +407,9 @@ - type: Tag id: Donut +- type: Tag + id: DrinkCan + - type: Tag id: DrinkSpaceGlue @@ -969,6 +972,9 @@ - type: Tag id: SpeedLoaderRifle +- type: Tag + id: SpiderCraft + - type: Tag id: SpreaderIgnore diff --git a/Resources/ServerInfo/Rules.txt b/Resources/ServerInfo/Rules.txt index e1c143053d3..01ed62d6ab5 100644 --- a/Resources/ServerInfo/Rules.txt +++ b/Resources/ServerInfo/Rules.txt @@ -13,7 +13,7 @@ This is the "short" form of the rules, which has all the information any regular [color=#ff0000]ZERO TOLERANCE RULES[/color] -[color=#a4885c]02.[/color] Absolutely no hate speech, slurs, bigotry, racism, specism (demeaning other characters in-game due to their in-game race), sexism, or anything even remotely similar. (YOU WILL GET PERMABANNED) +[color=#a4885c]02.[/color] Absolutely no hate speech, slurs, bigotry, racism, specism (demeaning other characters in-game due to their in-game race), sexism, disability-related or anything even remotely similar. (YOU WILL GET PERMABANNED) [color=#a4885c]03.[/color] Absolutely no Erotic Roleplay (ERP) or sexual content, including direct or indirect mentions of sexual behavior or actions. (YOU WILL GET PERMABANNED) (Leeway is given to insults, ex: 'You are a dickhead', do not push it) diff --git a/Resources/Textures/Clothing/Ears/Headsets/freelance.rsi/alt-equipped-EARS.png b/Resources/Textures/Clothing/Ears/Headsets/freelance.rsi/alt-equipped-EARS.png new file mode 100644 index 00000000000..33931255341 Binary files /dev/null and b/Resources/Textures/Clothing/Ears/Headsets/freelance.rsi/alt-equipped-EARS.png differ diff --git a/Resources/Textures/Clothing/Ears/Headsets/freelance.rsi/equipped-EARS.png b/Resources/Textures/Clothing/Ears/Headsets/freelance.rsi/equipped-EARS.png new file mode 100644 index 00000000000..30188f5e38d Binary files /dev/null and b/Resources/Textures/Clothing/Ears/Headsets/freelance.rsi/equipped-EARS.png differ diff --git a/Resources/Textures/Clothing/Ears/Headsets/freelance.rsi/icon.png b/Resources/Textures/Clothing/Ears/Headsets/freelance.rsi/icon.png new file mode 100644 index 00000000000..0ff3f2c9893 Binary files /dev/null and b/Resources/Textures/Clothing/Ears/Headsets/freelance.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Ears/Headsets/freelance.rsi/icon_alt.png b/Resources/Textures/Clothing/Ears/Headsets/freelance.rsi/icon_alt.png new file mode 100644 index 00000000000..d3be4bc4972 Binary files /dev/null and b/Resources/Textures/Clothing/Ears/Headsets/freelance.rsi/icon_alt.png differ diff --git a/Resources/Textures/Clothing/Ears/Headsets/freelance.rsi/meta.json b/Resources/Textures/Clothing/Ears/Headsets/freelance.rsi/meta.json new file mode 100644 index 00000000000..5567eaaf379 --- /dev/null +++ b/Resources/Textures/Clothing/Ears/Headsets/freelance.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Sprite modified by PursuitInAshes (Github) for SS14, original sprite taken from tgstation at commit https://github.com/tgstation/tgstation/commit/f8f4aeda930fcd0805ca4cc76d9bc9412a5b3428", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon_alt" + }, + { + "name": "equipped-EARS", + "directions": 4 + }, + { + "name": "alt-equipped-EARS", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Eyes/Hud/synd.rsi/equipped-EYES.png b/Resources/Textures/Clothing/Eyes/Hud/synd.rsi/equipped-EYES.png new file mode 100644 index 00000000000..9128dd01f6e Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Hud/synd.rsi/equipped-EYES.png differ diff --git a/Resources/Textures/Clothing/Eyes/Hud/synd.rsi/icon.png b/Resources/Textures/Clothing/Eyes/Hud/synd.rsi/icon.png new file mode 100644 index 00000000000..02dc6cc0679 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Hud/synd.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Eyes/Hud/synd.rsi/inhand-left.png b/Resources/Textures/Clothing/Eyes/Hud/synd.rsi/inhand-left.png new file mode 100644 index 00000000000..ebd7858dabb Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Hud/synd.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Eyes/Hud/synd.rsi/inhand-right.png b/Resources/Textures/Clothing/Eyes/Hud/synd.rsi/inhand-right.png new file mode 100644 index 00000000000..53535a1de70 Binary files /dev/null and b/Resources/Textures/Clothing/Eyes/Hud/synd.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Eyes/Hud/synd.rsi/meta.json b/Resources/Textures/Clothing/Eyes/Hud/synd.rsi/meta.json new file mode 100644 index 00000000000..e3bc1a2940a --- /dev/null +++ b/Resources/Textures/Clothing/Eyes/Hud/synd.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by IntegerTempest", + "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/Helmets/podwars_helmet.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Helmets/podwars_helmet.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..33215f839ee Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/podwars_helmet.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/podwars_helmet.rsi/icon.png b/Resources/Textures/Clothing/Head/Helmets/podwars_helmet.rsi/icon.png new file mode 100644 index 00000000000..8cb59275c70 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/podwars_helmet.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/podwars_helmet.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Helmets/podwars_helmet.rsi/inhand-left.png new file mode 100644 index 00000000000..5f67fc5219d Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/podwars_helmet.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/podwars_helmet.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Helmets/podwars_helmet.rsi/inhand-right.png new file mode 100644 index 00000000000..48e23f9e4e9 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/podwars_helmet.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/podwars_helmet.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/podwars_helmet.rsi/meta.json new file mode 100644 index 00000000000..eedfec73a91 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Helmets/podwars_helmet.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by patogrone (ss14 discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "direction": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/podwars_armor.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Armor/podwars_armor.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..0d00f003d6b Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/podwars_armor.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/podwars_armor.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Armor/podwars_armor.rsi/icon.png new file mode 100644 index 00000000000..711204c6310 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/podwars_armor.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/podwars_armor.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Armor/podwars_armor.rsi/inhand-left.png new file mode 100644 index 00000000000..196377c3d8c Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/podwars_armor.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/podwars_armor.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Armor/podwars_armor.rsi/inhand-right.png new file mode 100644 index 00000000000..9d7305f1480 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/podwars_armor.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/podwars_armor.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/podwars_armor.rsi/meta.json new file mode 100644 index 00000000000..97c559cbdc1 --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Armor/podwars_armor.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by patogrone (ss14 discord)", + "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/Shoes/Boots/speedboots.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/equipped-FEET.png new file mode 100644 index 00000000000..70618221d75 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/icon-on.png b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/icon-on.png new file mode 100644 index 00000000000..9f487123c06 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/icon-on.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/icon.png new file mode 100644 index 00000000000..2fda82988f4 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/inhand-left.png new file mode 100644 index 00000000000..fbb48f58246 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/inhand-right.png new file mode 100644 index 00000000000..92620635af6 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/meta.json new file mode 100644 index 00000000000..3aa61e31c5a --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/meta.json @@ -0,0 +1,41 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Created by EmoGarbage404", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "on-equipped-FEET", + "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "icon-on" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "on-inhand-left", + "directions": 4 + }, + { + "name": "on-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/on-equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/on-equipped-FEET.png new file mode 100644 index 00000000000..b8b1846e16f Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/on-equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/on-inhand-left.png b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/on-inhand-left.png new file mode 100644 index 00000000000..3077ae093f6 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/on-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/on-inhand-right.png b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/on-inhand-right.png new file mode 100644 index 00000000000..ee0c1be1dd8 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/on-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/skates.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Specific/skates.rsi/equipped-FEET.png new file mode 100644 index 00000000000..09c92cfa5f5 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Specific/skates.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/skates.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Specific/skates.rsi/icon.png new file mode 100644 index 00000000000..0d9b9dcf324 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Specific/skates.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/skates.rsi/inhand-left.png b/Resources/Textures/Clothing/Shoes/Specific/skates.rsi/inhand-left.png new file mode 100644 index 00000000000..1ba8eb41732 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Specific/skates.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/skates.rsi/inhand-right.png b/Resources/Textures/Clothing/Shoes/Specific/skates.rsi/inhand-right.png new file mode 100644 index 00000000000..7886baaeda6 Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Specific/skates.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Shoes/Specific/skates.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Specific/skates.rsi/meta.json new file mode 100644 index 00000000000..3c606364d87 --- /dev/null +++ b/Resources/Textures/Clothing/Shoes/Specific/skates.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by brainfood1183 (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/equipped-INNERCLOTHING-monkey.png new file mode 100644 index 00000000000..4cb7704e2c9 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/equipped-INNERCLOTHING-monkey.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..93477d07f5c Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/icon.png new file mode 100644 index 00000000000..06c845ef84e Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/inhand-left.png new file mode 100644 index 00000000000..bdbd3ea4881 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/inhand-right.png new file mode 100644 index 00000000000..7822bf686cf Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/meta.json similarity index 100% rename from Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/meta.json rename to Resources/Textures/Clothing/Uniforms/Jumpskirt/ce_turtle.rsi/meta.json 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 deleted file mode 100644 index f142d6efc0c..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null 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 deleted file mode 100644 index 71587c58788..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/icon.png deleted file mode 100644 index 0d92af9ee15..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/icon.png and /dev/null 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 deleted file mode 100644 index 1b40db931c9..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/inhand-left.png and /dev/null 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 deleted file mode 100644 index 5ba096c23a3..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/ceturtleskirt.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/equipped-INNERCLOTHING-monkey.png new file mode 100644 index 00000000000..7c9e3cfc923 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/equipped-INNERCLOTHING-monkey.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..171598455fc Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/icon.png new file mode 100644 index 00000000000..50def373e33 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/inhand-left.png new file mode 100644 index 00000000000..bdbd3ea4881 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/inhand-right.png new file mode 100644 index 00000000000..7822bf686cf Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ceturtle.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/meta.json similarity index 100% rename from Resources/Textures/Clothing/Uniforms/Jumpsuit/ceturtle.rsi/meta.json rename to Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_turtle.rsi/meta.json 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 deleted file mode 100644 index afa10c94d47..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ceturtle.rsi/equipped-INNERCLOTHING-monkey.png and /dev/null 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 deleted file mode 100644 index d5dc5cd0a72..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ceturtle.rsi/equipped-INNERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ceturtle.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ceturtle.rsi/icon.png deleted file mode 100644 index 2d5cfefadee..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ceturtle.rsi/icon.png and /dev/null 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 deleted file mode 100644 index 1b40db931c9..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ceturtle.rsi/inhand-left.png and /dev/null 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 deleted file mode 100644 index 5ba096c23a3..00000000000 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ceturtle.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Effects/electricity.rsi/electrified_diagonal.png b/Resources/Textures/Effects/electricity.rsi/electrified_diagonal.png new file mode 100644 index 00000000000..435aec5276d Binary files /dev/null and b/Resources/Textures/Effects/electricity.rsi/electrified_diagonal.png differ diff --git a/Resources/Textures/Effects/electricity.rsi/meta.json b/Resources/Textures/Effects/electricity.rsi/meta.json index 0b762debd06..b603d7a3857 100644 --- a/Resources/Textures/Effects/electricity.rsi/meta.json +++ b/Resources/Textures/Effects/electricity.rsi/meta.json @@ -19,6 +19,19 @@ 0.1 ] ] + }, + { + "name": "electrified_diagonal", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] } ] } \ No newline at end of file diff --git a/Resources/Textures/Interface/Classic/Slots/web.png b/Resources/Textures/Interface/Classic/Slots/web.png new file mode 100644 index 00000000000..4c37ac42472 Binary files /dev/null and b/Resources/Textures/Interface/Classic/Slots/web.png differ diff --git a/Resources/Textures/Interface/Default/Slots/web.png b/Resources/Textures/Interface/Default/Slots/web.png index d85d84e28c1..f67ae575c78 100644 Binary files a/Resources/Textures/Interface/Default/Slots/web.png and b/Resources/Textures/Interface/Default/Slots/web.png differ diff --git a/Resources/Textures/Interface/Misc/job_icons.rsi/Syndicate.png b/Resources/Textures/Interface/Misc/job_icons.rsi/Syndicate.png new file mode 100644 index 00000000000..a6719770853 Binary files /dev/null and b/Resources/Textures/Interface/Misc/job_icons.rsi/Syndicate.png differ diff --git a/Resources/Textures/Interface/Misc/job_icons.rsi/meta.json b/Resources/Textures/Interface/Misc/job_icons.rsi/meta.json index a3fbdfd333d..50db24c37bb 100644 --- a/Resources/Textures/Interface/Misc/job_icons.rsi/meta.json +++ b/Resources/Textures/Interface/Misc/job_icons.rsi/meta.json @@ -172,6 +172,9 @@ }, { "name": "HeadRevolutionary" + }, + { + "name": "Syndicate" } ] } diff --git a/Resources/Textures/Interface/Modernized/Slots/web.png b/Resources/Textures/Interface/Modernized/Slots/web.png new file mode 100644 index 00000000000..0e9a67f8be8 Binary files /dev/null and b/Resources/Textures/Interface/Modernized/Slots/web.png differ diff --git a/Resources/Textures/Mobs/Customization/Arachnid/chelicerae.rsi/downwards.png b/Resources/Textures/Mobs/Customization/Arachnid/chelicerae.rsi/downwards.png index f68272ec0ea..f072ef05e91 100644 Binary files a/Resources/Textures/Mobs/Customization/Arachnid/chelicerae.rsi/downwards.png and b/Resources/Textures/Mobs/Customization/Arachnid/chelicerae.rsi/downwards.png differ diff --git a/Resources/Textures/Mobs/Elemental/living_light/luminous_entity.rsi/dead.png b/Resources/Textures/Mobs/Elemental/living_light/luminous_entity.rsi/dead.png new file mode 100644 index 00000000000..06cafe53ffc Binary files /dev/null and b/Resources/Textures/Mobs/Elemental/living_light/luminous_entity.rsi/dead.png differ diff --git a/Resources/Textures/Mobs/Elemental/living_light/luminous_entity.rsi/dead_glow.png b/Resources/Textures/Mobs/Elemental/living_light/luminous_entity.rsi/dead_glow.png new file mode 100644 index 00000000000..9295688721a Binary files /dev/null and b/Resources/Textures/Mobs/Elemental/living_light/luminous_entity.rsi/dead_glow.png differ diff --git a/Resources/Textures/Mobs/Elemental/living_light/luminous_entity.rsi/glow.png b/Resources/Textures/Mobs/Elemental/living_light/luminous_entity.rsi/glow.png new file mode 100644 index 00000000000..12c9773c38b Binary files /dev/null and b/Resources/Textures/Mobs/Elemental/living_light/luminous_entity.rsi/glow.png differ diff --git a/Resources/Textures/Mobs/Elemental/living_light/luminous_entity.rsi/luminous_entity.png b/Resources/Textures/Mobs/Elemental/living_light/luminous_entity.rsi/luminous_entity.png new file mode 100644 index 00000000000..53fca1627bb Binary files /dev/null and b/Resources/Textures/Mobs/Elemental/living_light/luminous_entity.rsi/luminous_entity.png differ diff --git a/Resources/Textures/Mobs/Elemental/living_light/luminous_entity.rsi/meta.json b/Resources/Textures/Mobs/Elemental/living_light/luminous_entity.rsi/meta.json new file mode 100644 index 00000000000..6631e32227e --- /dev/null +++ b/Resources/Textures/Mobs/Elemental/living_light/luminous_entity.rsi/meta.json @@ -0,0 +1,51 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Nimfar11 (github) for ss14", + "states": [ + { + "name": "glow", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "dead_glow" + }, + { + "name": "dead" + }, + { + "name": "luminous_entity", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Mobs/Elemental/living_light/luminous_object.rsi/dead.png b/Resources/Textures/Mobs/Elemental/living_light/luminous_object.rsi/dead.png new file mode 100644 index 00000000000..06cafe53ffc Binary files /dev/null and b/Resources/Textures/Mobs/Elemental/living_light/luminous_object.rsi/dead.png differ diff --git a/Resources/Textures/Mobs/Elemental/living_light/luminous_object.rsi/dead_glow.png b/Resources/Textures/Mobs/Elemental/living_light/luminous_object.rsi/dead_glow.png new file mode 100644 index 00000000000..9295688721a Binary files /dev/null and b/Resources/Textures/Mobs/Elemental/living_light/luminous_object.rsi/dead_glow.png differ diff --git a/Resources/Textures/Mobs/Elemental/living_light/luminous_object.rsi/glow.png b/Resources/Textures/Mobs/Elemental/living_light/luminous_object.rsi/glow.png new file mode 100644 index 00000000000..a82b0b7dfbd Binary files /dev/null and b/Resources/Textures/Mobs/Elemental/living_light/luminous_object.rsi/glow.png differ diff --git a/Resources/Textures/Mobs/Elemental/living_light/luminous_object.rsi/luminous_object.png b/Resources/Textures/Mobs/Elemental/living_light/luminous_object.rsi/luminous_object.png new file mode 100644 index 00000000000..f5a3006ce56 Binary files /dev/null and b/Resources/Textures/Mobs/Elemental/living_light/luminous_object.rsi/luminous_object.png differ diff --git a/Resources/Textures/Mobs/Elemental/living_light/luminous_object.rsi/meta.json b/Resources/Textures/Mobs/Elemental/living_light/luminous_object.rsi/meta.json new file mode 100644 index 00000000000..b5cab9225b3 --- /dev/null +++ b/Resources/Textures/Mobs/Elemental/living_light/luminous_object.rsi/meta.json @@ -0,0 +1,61 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Nimfar11 (github) for ss14", + "states": [ + { + "name": "glow", + "directions": 4, + "delays": [ + [ + 0.4, + 0.4 + ], + [ + 0.4, + 0.4 + ], + [ + 0.4, + 0.4 + ], + [ + 0.4, + 0.4 + ] + ] + }, + { + "name": "dead_glow" + }, + { + "name": "dead" + }, + { + "name": "luminous_object", + "directions": 4, + "delays": [ + [ + 0.4, + 0.4 + ], + [ + 0.4, + 0.4 + ], + [ + 0.4, + 0.4 + ], + [ + 0.4, + 0.4 + ] + ] + } + ] +} diff --git a/Resources/Textures/Mobs/Elemental/living_light/luminous_person.rsi/dead.png b/Resources/Textures/Mobs/Elemental/living_light/luminous_person.rsi/dead.png new file mode 100644 index 00000000000..06cafe53ffc Binary files /dev/null and b/Resources/Textures/Mobs/Elemental/living_light/luminous_person.rsi/dead.png differ diff --git a/Resources/Textures/Mobs/Elemental/living_light/luminous_person.rsi/dead_glow.png b/Resources/Textures/Mobs/Elemental/living_light/luminous_person.rsi/dead_glow.png new file mode 100644 index 00000000000..9295688721a Binary files /dev/null and b/Resources/Textures/Mobs/Elemental/living_light/luminous_person.rsi/dead_glow.png differ diff --git a/Resources/Textures/Mobs/Elemental/living_light/luminous_person.rsi/glow.png b/Resources/Textures/Mobs/Elemental/living_light/luminous_person.rsi/glow.png new file mode 100644 index 00000000000..ffc32c2402a Binary files /dev/null and b/Resources/Textures/Mobs/Elemental/living_light/luminous_person.rsi/glow.png differ diff --git a/Resources/Textures/Mobs/Elemental/living_light/luminous_person.rsi/luminous_person.png b/Resources/Textures/Mobs/Elemental/living_light/luminous_person.rsi/luminous_person.png new file mode 100644 index 00000000000..a04adc4b81c Binary files /dev/null and b/Resources/Textures/Mobs/Elemental/living_light/luminous_person.rsi/luminous_person.png differ diff --git a/Resources/Textures/Mobs/Elemental/living_light/luminous_person.rsi/meta.json b/Resources/Textures/Mobs/Elemental/living_light/luminous_person.rsi/meta.json new file mode 100644 index 00000000000..e4566553eba --- /dev/null +++ b/Resources/Textures/Mobs/Elemental/living_light/luminous_person.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Nimfar11 (github) for ss14", + "states": [ + { + "name": "glow", + "directions": 4 + }, + { + "name": "dead_glow" + }, + { + "name": "dead" + }, + { + "name": "luminous_person", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Mobs/Species/Arachnid/parts.rsi/eyes.png b/Resources/Textures/Mobs/Species/Arachnid/parts.rsi/eyes.png index 3b205738f20..a6620541083 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/Objects/Devices/pda.rsi/equipped-IDCARD.png b/Resources/Textures/Objects/Devices/pda.rsi/equipped-IDCARD.png new file mode 100644 index 00000000000..5c8b0666f1e Binary files /dev/null and b/Resources/Textures/Objects/Devices/pda.rsi/equipped-IDCARD.png differ diff --git a/Resources/Textures/Objects/Devices/pda.rsi/meta.json b/Resources/Textures/Objects/Devices/pda.rsi/meta.json index 7ec6b3b1756..a72e5328681 100644 --- a/Resources/Textures/Objects/Devices/pda.rsi/meta.json +++ b/Resources/Textures/Objects/Devices/pda.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/59f2a4e10e5ba36033c9734ddebfbbdc6157472d, pda-cluwne made by brainfood1183 (github) ss14 | pda-brigmedic and pda-centcom made by PuroSlavKing (Github) | pda-brigemdic resprited by Hülle#2562 (Discord)", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/59f2a4e10e5ba36033c9734ddebfbbdc6157472d, pda-cluwne made by brainfood1183 (github) ss14 | pda-brigmedic and pda-centcom made by PuroSlavKing (Github) | pda-brigemdic resprited by Hülle#2562 (Discord), pda-pirate made by brainfood1183 (Github)", "size": { "x": 32, "y": 32 @@ -114,6 +114,9 @@ { "name": "pda-miner" }, + { + "name": "pda-pirate" + }, { "name": "pda-qm" }, @@ -205,7 +208,7 @@ { "name": "pda-ert" }, - { + { "name": "pda-cluwne" }, { @@ -219,6 +222,10 @@ }, { "name": "pda-seniorofficer" + }, + { + "name": "equipped-IDCARD", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Devices/pda.rsi/pda-pirate.png b/Resources/Textures/Objects/Devices/pda.rsi/pda-pirate.png new file mode 100644 index 00000000000..f9408319a74 Binary files /dev/null and b/Resources/Textures/Objects/Devices/pda.rsi/pda-pirate.png differ diff --git a/Resources/Textures/Objects/Materials/silk.rsi/icon.png b/Resources/Textures/Objects/Materials/silk.rsi/icon.png index 648f370a540..003f17ab445 100644 Binary files a/Resources/Textures/Objects/Materials/silk.rsi/icon.png and b/Resources/Textures/Objects/Materials/silk.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Misc/ice_crust.rsi/ice.png b/Resources/Textures/Objects/Misc/ice_crust.rsi/ice.png new file mode 100644 index 00000000000..0f460febe86 Binary files /dev/null and b/Resources/Textures/Objects/Misc/ice_crust.rsi/ice.png differ diff --git a/Resources/Textures/Objects/Misc/ice_crust.rsi/meta.json b/Resources/Textures/Objects/Misc/ice_crust.rsi/meta.json new file mode 100644 index 00000000000..865e457e9b4 --- /dev/null +++ b/Resources/Textures/Objects/Misc/ice_crust.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from space-station-14+Resources+Textures+Tiles+Planet+Snow", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "ice" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Objects/Misc/id_cards.rsi/meta.json b/Resources/Textures/Objects/Misc/id_cards.rsi/meta.json index 9c1343d304a..01714f32af5 100644 --- a/Resources/Textures/Objects/Misc/id_cards.rsi/meta.json +++ b/Resources/Textures/Objects/Misc/id_cards.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/d917f4c2a088419d5c3aec7656b7ff8cebd1822e idcluwne made by brainfood1183 (github) for ss14, idbrigmedic made by PuroSlavKing (Github)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/d917f4c2a088419d5c3aec7656b7ff8cebd1822e idcluwne made by brainfood1183 (github) for ss14, idbrigmedic made by PuroSlavKing (Github), pirate made by brainfood1183 (github)", "size": { "x": 32, "y": 32 @@ -175,6 +175,9 @@ { "name": "orange" }, + { + "name": "pirate" + }, { "name": "prisoner_001" }, @@ -202,7 +205,7 @@ { "name": "syndie" }, - { + { "name": "idcluwne" }, { diff --git a/Resources/Textures/Objects/Misc/id_cards.rsi/pirate.png b/Resources/Textures/Objects/Misc/id_cards.rsi/pirate.png new file mode 100644 index 00000000000..d5670a71aa1 Binary files /dev/null and b/Resources/Textures/Objects/Misc/id_cards.rsi/pirate.png differ diff --git a/Resources/Textures/Objects/Tools/access_configurator.rsi/equipped-BELT.png b/Resources/Textures/Objects/Tools/access_configurator.rsi/equipped-BELT.png index dfa1aeb1b40..3b57ed39b10 100644 Binary files a/Resources/Textures/Objects/Tools/access_configurator.rsi/equipped-BELT.png and b/Resources/Textures/Objects/Tools/access_configurator.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Objects/Tools/access_configurator.rsi/icon.png b/Resources/Textures/Objects/Tools/access_configurator.rsi/icon.png index 62230b0b379..b08a74a6a56 100644 Binary files a/Resources/Textures/Objects/Tools/access_configurator.rsi/icon.png and b/Resources/Textures/Objects/Tools/access_configurator.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Tools/access_configurator.rsi/inhand-left.png b/Resources/Textures/Objects/Tools/access_configurator.rsi/inhand-left.png index 7e17df650ae..0ed77d8a65d 100644 Binary files a/Resources/Textures/Objects/Tools/access_configurator.rsi/inhand-left.png and b/Resources/Textures/Objects/Tools/access_configurator.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Tools/access_configurator.rsi/inhand-right.png b/Resources/Textures/Objects/Tools/access_configurator.rsi/inhand-right.png index 47944685640..1391120e281 100644 Binary files a/Resources/Textures/Objects/Tools/access_configurator.rsi/inhand-right.png and b/Resources/Textures/Objects/Tools/access_configurator.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Bombs/ied.rsi/base.png b/Resources/Textures/Objects/Weapons/Bombs/ied.rsi/base.png new file mode 100644 index 00000000000..dda9a11195b Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Bombs/ied.rsi/base.png differ diff --git a/Resources/Textures/Objects/Weapons/Bombs/ied.rsi/fuel.png b/Resources/Textures/Objects/Weapons/Bombs/ied.rsi/fuel.png new file mode 100644 index 00000000000..217abeb24f8 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Bombs/ied.rsi/fuel.png differ diff --git a/Resources/Textures/Objects/Weapons/Bombs/ied.rsi/icon.png b/Resources/Textures/Objects/Weapons/Bombs/ied.rsi/icon.png new file mode 100644 index 00000000000..a8c37b99108 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Bombs/ied.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Bombs/ied.rsi/meta.json b/Resources/Textures/Objects/Weapons/Bombs/ied.rsi/meta.json new file mode 100644 index 00000000000..6ec234fecd4 --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Bombs/ied.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by deltanedas (github) for SS14, icon and base based on cola sprite from cev-eris", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "base" + }, + { + "name": "fuel" + }, + { + "name": "wires" + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Bombs/ied.rsi/wires.png b/Resources/Textures/Objects/Weapons/Bombs/ied.rsi/wires.png new file mode 100644 index 00000000000..bfc9beed6df Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Bombs/ied.rsi/wires.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/laser_cannon.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Battery/laser_cannon.rsi/meta.json index eb436502d5c..d002675273f 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Battery/laser_cannon.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Battery/laser_cannon.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13/commit/125c975f1b3bf9826b37029e9ab5a5f89e975a7e, backpack sprite by Peptide", + "copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13/commit/125c975f1b3bf9826b37029e9ab5a5f89e975a7e, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/laser_gun.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Battery/laser_gun.rsi/meta.json index f96746633c5..4c6f32507b1 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Battery/laser_gun.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Battery/laser_gun.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from Polaris at https://github.com/PolarisSS13/Polaris/commit/9ded73fb85b9106d6bbf1c9a34d1d2fa27ee0e2e, backpack sprite by Peptide", + "copyright": "Taken from Polaris at https://github.com/PolarisSS13/Polaris/commit/9ded73fb85b9106d6bbf1c9a34d1d2fa27ee0e2e, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/makeshift.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Battery/makeshift.rsi/meta.json index b287e22011f..897d4233af0 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Battery/makeshift.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Battery/makeshift.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/1b6831dab1e1a74c0d91f2229adb87abbb089d31, backpack sprite by Peptide", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/1b6831dab1e1a74c0d91f2229adb87abbb089d31, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_carbine.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_carbine.rsi/meta.json index ea9289cea4b..159cf411e09 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_carbine.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_carbine.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/pull/27386/commits/4814da0f8e0d88f430c8b335e541e0a7734755a2 backpack sprite by Peptide (copy of pulse rifle)", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/pull/27386/commits/4814da0f8e0d88f430c8b335e541e0a7734755a2 backpack sprite by Peptide (copy of pulse rifle), backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_rifle.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_rifle.rsi/meta.json index dbe738ae806..fd779f5a3a3 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_rifle.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Battery/pulse_rifle.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/pull/27386/commits/4814da0f8e0d88f430c8b335e541e0a7734755a2, backpack sprite by Peptide", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/pull/27386/commits/4814da0f8e0d88f430c8b335e541e0a7734755a2, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/xray.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Battery/xray.rsi/meta.json index c8609f21520..a0c1ca8b1d1 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Battery/xray.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Battery/xray.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/raw/167a810bc8534a56c74ffa8f1373acd3b1ac70ee/icons/obj/guns/energy/xray.dmi, backpack sprite by peptide", + "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/raw/167a810bc8534a56c74ffa8f1373acd3b1ac70ee/icons/obj/guns/energy/xray.dmi, backpack sprite by peptide, backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/Cannons/pie_cannon.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Guns/Cannons/pie_cannon.rsi/equipped-BACKPACK.png index 77cbcee447f..08b657e2a6f 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Cannons/pie_cannon.rsi/equipped-BACKPACK.png and b/Resources/Textures/Objects/Weapons/Guns/Cannons/pie_cannon.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Cannons/pie_cannon.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Cannons/pie_cannon.rsi/meta.json index 0ecd1997868..1509c2c9753 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Cannons/pie_cannon.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Cannons/pie_cannon.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 at dc9cef40447ee86c2b9fff9f690385cd63b655fa, backpack sprite by peptide", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation at dc9cef40447ee86c2b9fff9f690385cd63b655fa, backpack sprite by peptide, backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/Cannons/pneumatic_cannon.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Guns/Cannons/pneumatic_cannon.rsi/equipped-BACKPACK.png index 322aa6a719a..2457b212c37 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Cannons/pneumatic_cannon.rsi/equipped-BACKPACK.png and b/Resources/Textures/Objects/Weapons/Guns/Cannons/pneumatic_cannon.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Cannons/pneumatic_cannon.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Cannons/pneumatic_cannon.rsi/meta.json index 7bd3c1f7863..002adee87cc 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Cannons/pneumatic_cannon.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Cannons/pneumatic_cannon.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 at b2e5316993806b1524ab81237b1735b0591df2a2, backpack sprite by peptide", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation at b2e5316993806b1524ab81237b1735b0591df2a2, backpack sprite by peptide, backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/equipped-BACKPACK.png index 8d2be6b881d..66bba2db27b 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/equipped-BACKPACK.png and b/Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/meta.json index 7dc67f28bd6..8cd2e3fe7b8 100644 --- a/Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/LMGs/l6.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/raw/237d8f7894617007d75c71d5d9feb4354c78debd/icons/obj/guns/lmg.dmi, backpack sprite by Peptide", + "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/raw/237d8f7894617007d75c71d5d9feb4354c78debd/icons/obj/guns/lmg.dmi, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/Launchers/china_lake.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Launchers/china_lake.rsi/meta.json index b7d464cbb7e..9a5cf766c7a 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Launchers/china_lake.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Launchers/china_lake.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Taken/modified from cev-eris at https://github.com/discordia-space/CEV-Eris/pull/6042/commits/64916c98f4847acc4adf3a2416bf78c005fd7dd7, https://github.com/discordia-space/CEV-Eris/blob/master/icons/obj/guns/launcher/grenadelauncher.dmi, backpack sprite by Peptide", + "copyright": "Taken/modified from cev-eris at https://github.com/discordia-space/CEV-Eris/pull/6042/commits/64916c98f4847acc4adf3a2416bf78c005fd7dd7, https://github.com/discordia-space/CEV-Eris/blob/master/icons/obj/guns/launcher/grenadelauncher.dmi, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/Launchers/rocket.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Launchers/rocket.rsi/meta.json index bbc0335401a..8f0a2fed6e9 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Launchers/rocket.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Launchers/rocket.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken/modified from tgstation at https://github.com/tgstation/tgstation/pull/21818/commits/8959238828600d01ee7c8165a0dd29007570a454, backpack sprite by Peptide", + "copyright": "Taken/modified from tgstation at https://github.com/tgstation/tgstation/pull/21818/commits/8959238828600d01ee7c8165a0dd29007570a454, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/ak.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Rifles/ak.rsi/meta.json index 5f57a1e7a68..12a95021c63 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Rifles/ak.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Rifles/ak.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken/modified from cev-eris at https://github.com/discordia-space/CEV-Eris/pull/6042/commits/64916c98f4847acc4adf3a2416bf78c005fd7dd7, https://github.com/discordia-space/CEV-Eris/raw/e1a3cbe9ba2e6e29b7f1cad1bb456b390aac936d/icons/obj/guns/projectile.dmi, backpack sprite by Peptide", + "copyright": "Taken/modified from cev-eris at https://github.com/discordia-space/CEV-Eris/pull/6042/commits/64916c98f4847acc4adf3a2416bf78c005fd7dd7, https://github.com/discordia-space/CEV-Eris/raw/e1a3cbe9ba2e6e29b7f1cad1bb456b390aac936d/icons/obj/guns/projectile.dmi, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/carbine.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Rifles/carbine.rsi/meta.json index 9c6c4cdeab0..eae8c0dd9a0 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Rifles/carbine.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Rifles/carbine.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from Polaris at https://github.com/PolarisSS13/Polaris/commit/ff87150c3dfc387c46db7d1c956abf19ddff7819, backpack sprite by Peptide", + "copyright": "Taken from Polaris at https://github.com/PolarisSS13/Polaris/commit/ff87150c3dfc387c46db7d1c956abf19ddff7819, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/meta.json index bfcf15bd153..955dc6e8bf3 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken/modified from tgstation at https://github.com/tgstation/tgstation/pull/41393/commits/1e56473177d0994d163c9edca3d13d6e5b640cc4, https://github.com/tgstation/tgstation/tree/master/icons/obj/weapons/guns backpack sprite by Peptide (copy of carbine)", + "copyright": "Taken/modified from tgstation at https://github.com/tgstation/tgstation/pull/41393/commits/1e56473177d0994d163c9edca3d13d6e5b640cc4, https://github.com/tgstation/tgstation/tree/master/icons/obj/weapons/guns backpack sprite by Peptide (copy of carbine), backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/atreides.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/SMGs/atreides.rsi/meta.json index 31389e9102b..4ed311cb4a4 100644 --- a/Resources/Textures/Objects/Weapons/Guns/SMGs/atreides.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/SMGs/atreides.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/58c39351887ee7f3793d96fafa28238ff693756f, equipped-BACKPACK modified by Peptide", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/58c39351887ee7f3793d96fafa28238ff693756f, equipped-BACKPACK modified by Peptide, backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/c20r.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/SMGs/c20r.rsi/meta.json index 979ecfc3889..ef54ce952a7 100644 --- a/Resources/Textures/Objects/Weapons/Guns/SMGs/c20r.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/SMGs/c20r.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken/modified from tgstation at https://github.com/tgstation/tgstation/pull/41804/commits/1baf679a544505960cebd071425f1df60669cdf3, backpack sprite by Peptide", + "copyright": "Taken/modified from tgstation at https://github.com/tgstation/tgstation/pull/41804/commits/1baf679a544505960cebd071425f1df60669cdf3, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/equipped-BACKPACK.png index 29687171f9a..38a2686dfb5 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/equipped-BACKPACK.png and b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/meta.json index 1109258b605..cbdbfefd14a 100644 --- a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken/modified from cev-eris at https://github.com/discordia-space/CEV-Eris/raw/56cbafd6ad8c013ccd5472d6c4a0db790f7f872a/icons/obj/guns/projectile/drozd.dmi, sprite modification by Jaсkal 298/TaralGit", + "copyright": "Taken/modified from cev-eris at https://github.com/discordia-space/CEV-Eris/raw/56cbafd6ad8c013ccd5472d6c4a0db790f7f872a/icons/obj/guns/projectile/drozd.dmi, sprite modification by Jaсkal 298/TaralGit, backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/vector.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/SMGs/vector.rsi/meta.json index 099ca8bc559..66274aa8a6e 100644 --- a/Resources/Textures/Objects/Weapons/Guns/SMGs/vector.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/SMGs/vector.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken/modified vgstation at https://github.com/vgstation-coders/vgstation13/pull/20330/commits/1604c9cc61a48585e25b5f9eba3e179c06362372, backpack sprite by Peptide (copy of Atreides)", + "copyright": "Taken/modified vgstation at https://github.com/vgstation-coders/vgstation13/pull/20330/commits/1604c9cc61a48585e25b5f9eba3e179c06362372, backpack sprite by Peptide (copy of Atreides), backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/wt550.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/SMGs/wt550.rsi/meta.json index 07b4b46efb7..8de70644d1b 100644 --- a/Resources/Textures/Objects/Weapons/Guns/SMGs/wt550.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/SMGs/wt550.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/raw/e1a3cbe9ba2e6e29b7f1cad1bb456b390aac936d/icons/obj/guns/projectile.dmi, backpack sprite by Peptide (copy of Atreides), and sprite modification by Jaсkal 298", + "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/raw/e1a3cbe9ba2e6e29b7f1cad1bb456b390aac936d/icons/obj/guns/projectile.dmi, backpack sprite by Peptide (copy of Atreides), and sprite modification by Jaсkal 298, backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/bulldog.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Shotguns/bulldog.rsi/meta.json index fe7b4c0449d..607db55835b 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Shotguns/bulldog.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Shotguns/bulldog.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/1b6831dab1e1a74c0d91f2229adb87abbb089d31, backpack sprite by Peptide", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/1b6831dab1e1a74c0d91f2229adb87abbb089d31, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/equipped-BACKPACK.png index 10e436d2695..ab0cac8d096 100644 Binary files a/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/equipped-BACKPACK.png and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/meta.json index 33e5cae834b..df70db984ba 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Shotguns/db_shotgun.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-NC-4.0", - "copyright": "Taken from TerraGov Marine Corps at https://github.com/tgstation/TerraGov-Marine-Corps/pull/7678/commits/e7bc17b894aa4c1f882358016346c3be00236df8, https://github.com/tgstation/TerraGov-Marine-Corps/blob/master/icons/obj/items/gun.dmi, backpack sprite by Peptide, sprite modification by Jaсkal 298", + "copyright": "Taken from TerraGov Marine Corps at https://github.com/tgstation/TerraGov-Marine-Corps/pull/7678/commits/e7bc17b894aa4c1f882358016346c3be00236df8, https://github.com/tgstation/TerraGov-Marine-Corps/blob/master/icons/obj/items/gun.dmi, backpack sprite by Peptide, sprite modification by Jaсkal 298, backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer.rsi/meta.json index 2aed9f90d00..23e8bc2ee0b 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Shotguns/enforcer.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken/modified from tgstation at https://github.com/tgstation/tgstation/pull/27557/commits, backpack sprite by Peptide (copy of bulldog)", + "copyright": "Taken/modified from tgstation at https://github.com/tgstation/tgstation/pull/27557/commits, backpack sprite by Peptide (copy of bulldog), backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/meta.json index 2839d6e45df..c1c901f2eb0 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Shotguns/pump.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-NC-4.0", - "copyright": "Taken from TerraGov Marine Corps at https://github.com/tgstation/TerraGov-Marine-Corps/pull/7678/commits/e7bc17b894aa4c1f882358016346c3be00236df8backpack, https://github.com/tgstation/TerraGov-Marine-Corps/blob/master/icons/obj/items/gun.dmi, backpack sprite by Peptide (copy of db), sprite modification by Jaсkal 298", + "copyright": "Taken from TerraGov Marine Corps at https://github.com/tgstation/TerraGov-Marine-Corps/pull/7678/commits/e7bc17b894aa4c1f882358016346c3be00236df8backpack, https://github.com/tgstation/TerraGov-Marine-Corps/blob/master/icons/obj/items/gun.dmi, backpack sprite by Peptide (copy of db), sprite modification by Jaсkal 298, backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/Snipers/bolt_gun_wood.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Snipers/bolt_gun_wood.rsi/meta.json index a959ed58f65..c223e6b194f 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Snipers/bolt_gun_wood.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Snipers/bolt_gun_wood.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from InterBay13 at https://github.com/AndySok/InterBay13/commit/84824582fe1381d9ea6282b9da407994ab8ab509", + "copyright": "Taken from InterBay13 at https://github.com/AndySok/InterBay13/commit/84824582fe1381d9ea6282b9da407994ab8ab509, backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Guns/Snipers/heavy_sniper.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Snipers/heavy_sniper.rsi/meta.json index ffe748ea8d5..33ee152a4e1 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Snipers/heavy_sniper.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Snipers/heavy_sniper.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/pull/13612/commits/c1cf3c42b0cd00023937e46845a7c32d6beefa0e", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/pull/13612/commits/c1cf3c42b0cd00023937e46845a7c32d6beefa0e, backpack sling sprite edited by Boaz1111", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Weapons/Melee/web-shield.rsi/icon-inhand-left.png b/Resources/Textures/Objects/Weapons/Melee/web-shield.rsi/icon-inhand-left.png new file mode 100644 index 00000000000..9b1341bc3e9 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/web-shield.rsi/icon-inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/web-shield.rsi/icon-inhand-right.png b/Resources/Textures/Objects/Weapons/Melee/web-shield.rsi/icon-inhand-right.png new file mode 100644 index 00000000000..f0efd77d147 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/web-shield.rsi/icon-inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/web-shield.rsi/icon.png b/Resources/Textures/Objects/Weapons/Melee/web-shield.rsi/icon.png new file mode 100644 index 00000000000..29830d3ac8c Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/web-shield.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/web-shield.rsi/meta.json b/Resources/Textures/Objects/Weapons/Melee/web-shield.rsi/meta.json new file mode 100644 index 00000000000..5d8774872da --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Melee/web-shield.rsi/meta.json @@ -0,0 +1,19 @@ +{ + "version": 1, + "size": {"x": 32, "y": 32}, + "license": "CC-BY-SA-3.0", + "copyright": "Made by PixelTheKermit (github) for SS14", + "states": [ + { + "name": "icon" + }, + { + "name": "icon-inhand-left", + "directions": 4 + }, + { + "name": "icon-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Parallaxes/attributions.yml b/Resources/Textures/Parallaxes/attributions.yml index 71f0c919d29..4d1eaa36183 100644 --- a/Resources/Textures/Parallaxes/attributions.yml +++ b/Resources/Textures/Parallaxes/attributions.yml @@ -6,4 +6,9 @@ - files: ["KettleParallaxNeb.png", "KettleParallaxBG.png", "AspidParallaxBG.png", "AspidParallaxBG.png"] license: "CC0-1.0" copyright: "adapted from Screaming Brain Studios" - source: "https://opengameart.org/content/seamless-space-backgrounds" \ No newline at end of file + source: "https://opengameart.org/content/seamless-space-backgrounds" + +- files: ["gas_giant.png"] + license: "CC-BY-NC-SA-3.0" + copyright: "made by cogwerks (goonstation)" + source: "https://github.com/goonstation/goonstation/commit/cddafeb32349b24c0feb1afba974d06ec0fa725b" diff --git a/Resources/Textures/Parallaxes/gas_giant.png b/Resources/Textures/Parallaxes/gas_giant.png new file mode 100644 index 00000000000..6a4449390d3 Binary files /dev/null and b/Resources/Textures/Parallaxes/gas_giant.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/bolted_unlit.png new file mode 100644 index 00000000000..844bd201f10 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/bolted_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/closed.png new file mode 100644 index 00000000000..3c3577610f4 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/closed_unlit.png new file mode 100644 index 00000000000..7c80bc210c4 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/closing.png new file mode 100644 index 00000000000..607e1c93fe1 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/closing_unlit.png new file mode 100644 index 00000000000..51ae8ad3623 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/closing_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/deny_unlit.png new file mode 100644 index 00000000000..dfe4d406eda Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/deny_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/emergency_unlit.png new file mode 100644 index 00000000000..31f7a5f9f06 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/emergency_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/meta.json new file mode 100644 index 00000000000..8408176365e --- /dev/null +++ b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/meta.json @@ -0,0 +1,143 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from CEV-Eris at commit https://github.com/discordia-space/CEV-Eris/commit/14517938186858388656a6aee14bf47af9e9649f - then modified by 20kdc & AJCM-git, glass by Peptide90, modified by brainfood1183 (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "bolted_unlit" + }, + { + "name": "closed" + }, + { + "name": "closed_unlit" + }, + { + "name": "closing", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "closing_unlit", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "deny_unlit", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "open" + }, + { + "name": "opening", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "opening_unlit", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "panel_closing", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "panel_open" + }, + { + "name": "panel_opening", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "welded" + }, + { + "name": "emergency_unlit", + "delays": [ + [ + 0.4, + 0.4 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/open.png new file mode 100644 index 00000000000..d5fc8df3cab Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/opening.png new file mode 100644 index 00000000000..4d6ab7e7014 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/opening_unlit.png new file mode 100644 index 00000000000..51ae8ad3623 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/opening_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/panel_closing.png new file mode 100644 index 00000000000..6afe206992a Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/panel_closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/panel_open.png new file mode 100644 index 00000000000..d7d4122c087 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/panel_open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/panel_opening.png new file mode 100644 index 00000000000..e6c87d740e2 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/panel_opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/welded.png new file mode 100644 index 00000000000..eed2758c795 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/bolted_unlit.png new file mode 100644 index 00000000000..844bd201f10 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/bolted_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/closed.png new file mode 100644 index 00000000000..39d2ff31721 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/closed_unlit.png new file mode 100644 index 00000000000..7c80bc210c4 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/closing.png new file mode 100644 index 00000000000..042bf6bb10a Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/closing_unlit.png new file mode 100644 index 00000000000..51ae8ad3623 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/closing_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/deny_unlit.png new file mode 100644 index 00000000000..dfe4d406eda Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/deny_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/emergency_unlit.png new file mode 100644 index 00000000000..31f7a5f9f06 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/emergency_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/meta.json new file mode 100644 index 00000000000..d9058e33726 --- /dev/null +++ b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/meta.json @@ -0,0 +1,143 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from CEV-Eris at commit https://github.com/discordia-space/CEV-Eris/commit/14517938186858388656a6aee14bf47af9e9649f - then modified by brainfood1183 (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "bolted_unlit" + }, + { + "name": "closed" + }, + { + "name": "closed_unlit" + }, + { + "name": "closing", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "closing_unlit", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "deny_unlit", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "open" + }, + { + "name": "opening", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "opening_unlit", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "panel_closing", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "panel_open" + }, + { + "name": "panel_opening", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "welded" + }, + { + "name": "emergency_unlit", + "delays": [ + [ + 0.4, + 0.4 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/open.png new file mode 100644 index 00000000000..bbca39b0aa3 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/opening.png new file mode 100644 index 00000000000..b844d0a01c4 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/opening_unlit.png new file mode 100644 index 00000000000..51ae8ad3623 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/opening_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/panel_closing.png new file mode 100644 index 00000000000..6afe206992a Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/panel_closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/panel_open.png new file mode 100644 index 00000000000..d7d4122c087 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/panel_open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/panel_opening.png new file mode 100644 index 00000000000..e6c87d740e2 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/panel_opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/welded.png new file mode 100644 index 00000000000..eed2758c795 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Machines/anomaly_sync.rsi/base.png b/Resources/Textures/Structures/Machines/anomaly_sync.rsi/base.png new file mode 100644 index 00000000000..e51f0e4a808 Binary files /dev/null and b/Resources/Textures/Structures/Machines/anomaly_sync.rsi/base.png differ diff --git a/Resources/Textures/Structures/Machines/anomaly_sync.rsi/energy.png b/Resources/Textures/Structures/Machines/anomaly_sync.rsi/energy.png new file mode 100644 index 00000000000..81e8758c05f Binary files /dev/null and b/Resources/Textures/Structures/Machines/anomaly_sync.rsi/energy.png differ diff --git a/Resources/Textures/Structures/Machines/anomaly_sync.rsi/meta.json b/Resources/Textures/Structures/Machines/anomaly_sync.rsi/meta.json new file mode 100644 index 00000000000..1a8f1a82ecb --- /dev/null +++ b/Resources/Textures/Structures/Machines/anomaly_sync.rsi/meta.json @@ -0,0 +1,38 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Created by ThrShuEd (github) for Space Station 14", + "size": { + "x": 48, + "y": 32 + }, + "states": [ + { + "name": "base" + }, + { + "name": "energy", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "pulse", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Structures/Machines/anomaly_sync.rsi/pulse.png b/Resources/Textures/Structures/Machines/anomaly_sync.rsi/pulse.png new file mode 100644 index 00000000000..cceb35afcbc Binary files /dev/null and b/Resources/Textures/Structures/Machines/anomaly_sync.rsi/pulse.png differ diff --git a/Resources/Textures/Structures/Machines/electric_grill.rsi/high.png b/Resources/Textures/Structures/Machines/electric_grill.rsi/high.png index b1fe72eb4ff..26d0dc61730 100644 Binary files a/Resources/Textures/Structures/Machines/electric_grill.rsi/high.png and b/Resources/Textures/Structures/Machines/electric_grill.rsi/high.png differ diff --git a/Resources/Textures/Structures/Machines/electric_grill.rsi/icon.png b/Resources/Textures/Structures/Machines/electric_grill.rsi/icon.png index d085b5b4c89..36b7a174d63 100644 Binary files a/Resources/Textures/Structures/Machines/electric_grill.rsi/icon.png and b/Resources/Textures/Structures/Machines/electric_grill.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Machines/electric_grill.rsi/low.png b/Resources/Textures/Structures/Machines/electric_grill.rsi/low.png index db27683a63d..b1de9fa4450 100644 Binary files a/Resources/Textures/Structures/Machines/electric_grill.rsi/low.png and b/Resources/Textures/Structures/Machines/electric_grill.rsi/low.png differ diff --git a/Resources/Textures/Structures/Machines/electric_grill.rsi/medium.png b/Resources/Textures/Structures/Machines/electric_grill.rsi/medium.png index ed5d431e8d4..5fc7c4b93ee 100644 Binary files a/Resources/Textures/Structures/Machines/electric_grill.rsi/medium.png and b/Resources/Textures/Structures/Machines/electric_grill.rsi/medium.png differ diff --git a/Resources/Textures/Structures/Machines/electric_grill.rsi/meta.json b/Resources/Textures/Structures/Machines/electric_grill.rsi/meta.json index acb06666dbc..bdd57824367 100644 --- a/Resources/Textures/Structures/Machines/electric_grill.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/electric_grill.rsi/meta.json @@ -1,7 +1,7 @@ { - "version": 1, + "version": 2, "license": "CC0-1.0", - "copyright": "Created by deltanedas (github) for SS14.", + "copyright": "Original base by deltanedas (github) for SS14. Resprited by (DISCORD)@ps3moira#9488", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Storage/closet.rsi/clown.png b/Resources/Textures/Structures/Storage/closet.rsi/clown.png new file mode 100644 index 00000000000..e84db4906e1 Binary files /dev/null and b/Resources/Textures/Structures/Storage/closet.rsi/clown.png differ diff --git a/Resources/Textures/Structures/Storage/closet.rsi/clown_door.png b/Resources/Textures/Structures/Storage/closet.rsi/clown_door.png new file mode 100644 index 00000000000..db53379a028 Binary files /dev/null and b/Resources/Textures/Structures/Storage/closet.rsi/clown_door.png differ diff --git a/Resources/Textures/Structures/Storage/closet.rsi/clown_open.png b/Resources/Textures/Structures/Storage/closet.rsi/clown_open.png new file mode 100644 index 00000000000..5e89726c581 Binary files /dev/null and b/Resources/Textures/Structures/Storage/closet.rsi/clown_open.png differ diff --git a/Resources/Textures/Structures/Storage/closet.rsi/meta.json b/Resources/Textures/Structures/Storage/closet.rsi/meta.json index 5bd21273404..3f2a1ae2444 100644 --- a/Resources/Textures/Structures/Storage/closet.rsi/meta.json +++ b/Resources/Textures/Structures/Storage/closet.rsi/meta.json @@ -513,6 +513,27 @@ }, { "name": "yellow_door" + }, + { + "name": "clown" + }, + { + "name": "clown_door" + }, + { + "name": "clown_open" + }, + { + "name": "mime" + }, + { + "name": "mime_door" + }, + { + "name": "mime_open" + }, + { + "name": "representative_door" } ] } diff --git a/Resources/Textures/Structures/Storage/closet.rsi/mime.png b/Resources/Textures/Structures/Storage/closet.rsi/mime.png new file mode 100644 index 00000000000..80e7a67d32e Binary files /dev/null and b/Resources/Textures/Structures/Storage/closet.rsi/mime.png differ diff --git a/Resources/Textures/Structures/Storage/closet.rsi/mime_door.png b/Resources/Textures/Structures/Storage/closet.rsi/mime_door.png new file mode 100644 index 00000000000..45f3657175e Binary files /dev/null and b/Resources/Textures/Structures/Storage/closet.rsi/mime_door.png differ diff --git a/Resources/Textures/Structures/Storage/closet.rsi/mime_open.png b/Resources/Textures/Structures/Storage/closet.rsi/mime_open.png new file mode 100644 index 00000000000..fca2d509216 Binary files /dev/null and b/Resources/Textures/Structures/Storage/closet.rsi/mime_open.png differ diff --git a/Resources/Textures/Structures/Storage/closet.rsi/representative_door.png b/Resources/Textures/Structures/Storage/closet.rsi/representative_door.png new file mode 100644 index 00000000000..474cf1ba272 Binary files /dev/null and b/Resources/Textures/Structures/Storage/closet.rsi/representative_door.png differ diff --git a/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/meta.json b/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/meta.json new file mode 100644 index 00000000000..f5d234d91bc --- /dev/null +++ b/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/meta.json @@ -0,0 +1,32 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "copyright": "Taken from Paradise Station from commit https://github.com/ParadiseSS13/Paradise/commit/137338f4dd3cb33124ab3fbd55a4865dd2bdab81", + "license": "CC-BY-SA-3.0", + "states": [ + { + "name": "noticeboard" + }, + { + "name": "notice-0" + }, + { + "name": "notice-1" + }, + { + "name": "notice-2" + }, + { + "name": "notice-3" + }, + { + "name": "notice-4" + }, + { + "name": "notice-5" + } + ] +} diff --git a/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/notice-0.png b/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/notice-0.png new file mode 100644 index 00000000000..016d8ba5a76 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/notice-0.png differ diff --git a/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/notice-1.png b/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/notice-1.png new file mode 100644 index 00000000000..61b1825a415 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/notice-1.png differ diff --git a/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/notice-2.png b/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/notice-2.png new file mode 100644 index 00000000000..d069eef5e94 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/notice-2.png differ diff --git a/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/notice-3.png b/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/notice-3.png new file mode 100644 index 00000000000..7e4ac447be9 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/notice-3.png differ diff --git a/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/notice-4.png b/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/notice-4.png new file mode 100644 index 00000000000..f3ddba1d006 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/notice-4.png differ diff --git a/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/notice-5.png b/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/notice-5.png new file mode 100644 index 00000000000..e04a0eb63f4 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/notice-5.png differ diff --git a/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/noticeboard.png b/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/noticeboard.png new file mode 100644 index 00000000000..378577afdcc Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/noticeboard.rsi/noticeboard.png differ diff --git a/Resources/Textures/Structures/Walls/grille.rsi/grille_diagonal.png b/Resources/Textures/Structures/Walls/grille.rsi/grille_diagonal.png new file mode 100644 index 00000000000..64443a0b4d2 Binary files /dev/null and b/Resources/Textures/Structures/Walls/grille.rsi/grille_diagonal.png differ diff --git a/Resources/Textures/Structures/Walls/grille.rsi/meta.json b/Resources/Textures/Structures/Walls/grille.rsi/meta.json index fa55d903c65..975d50264c4 100644 --- a/Resources/Textures/Structures/Walls/grille.rsi/meta.json +++ b/Resources/Textures/Structures/Walls/grille.rsi/meta.json @@ -10,6 +10,9 @@ { "name": "grille" }, + { + "name": "grille_diagonal" + }, { "name": "grille_broken" }, diff --git a/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/DamageOverlay_12.png b/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/DamageOverlay_12.png new file mode 100644 index 00000000000..76bdfefaf6a Binary files /dev/null and b/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/DamageOverlay_12.png differ diff --git a/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/DamageOverlay_4.png b/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/DamageOverlay_4.png new file mode 100644 index 00000000000..704711e2279 Binary files /dev/null and b/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/DamageOverlay_4.png differ diff --git a/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/DamageOverlay_8.png b/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/DamageOverlay_8.png new file mode 100644 index 00000000000..d1e75e29d47 Binary files /dev/null and b/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/DamageOverlay_8.png differ diff --git a/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/meta.json b/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/meta.json new file mode 100644 index 00000000000..9d0cc9a505d --- /dev/null +++ b/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation at commit e06b82a7f4b2b09216fb28fd384c95a2e1dc50e5", + "states": [ + {"name": "DamageOverlay_4", "directions": 1}, + {"name": "DamageOverlay_8", "directions": 1}, + {"name": "DamageOverlay_12", "directions": 1} + ] +} diff --git a/Resources/Textures/Structures/Windows/cracks_directional.rsi/DamageOverlay_12.png b/Resources/Textures/Structures/Windows/cracks_directional.rsi/DamageOverlay_12.png new file mode 100644 index 00000000000..1d6459b8b25 Binary files /dev/null and b/Resources/Textures/Structures/Windows/cracks_directional.rsi/DamageOverlay_12.png differ diff --git a/Resources/Textures/Structures/Windows/cracks_directional.rsi/DamageOverlay_4.png b/Resources/Textures/Structures/Windows/cracks_directional.rsi/DamageOverlay_4.png new file mode 100644 index 00000000000..d446775f354 Binary files /dev/null and b/Resources/Textures/Structures/Windows/cracks_directional.rsi/DamageOverlay_4.png differ diff --git a/Resources/Textures/Structures/Windows/cracks_directional.rsi/DamageOverlay_8.png b/Resources/Textures/Structures/Windows/cracks_directional.rsi/DamageOverlay_8.png new file mode 100644 index 00000000000..70c23629e93 Binary files /dev/null and b/Resources/Textures/Structures/Windows/cracks_directional.rsi/DamageOverlay_8.png differ diff --git a/Resources/Textures/Structures/Windows/cracks_directional.rsi/meta.json b/Resources/Textures/Structures/Windows/cracks_directional.rsi/meta.json new file mode 100644 index 00000000000..df077f67d2b --- /dev/null +++ b/Resources/Textures/Structures/Windows/cracks_directional.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Adapted from https://github.com/space-wizards/space-station-14/ at commit f57e8ec6b9b4b72ef56c8146be0bc159ed2691ee, originally added by Zumorica, and modified for directional use by Darkie", + "states": [ + { + "name": "DamageOverlay_4", + "directions": 4 + }, + { + "name": "DamageOverlay_8", + "directions": 4 + }, + { + "name": "DamageOverlay_12", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/meta.json b/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/meta.json new file mode 100644 index 00000000000..453a3797223 --- /dev/null +++ b/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Made by brainfood1183 (github)", + "states": [ + { + "name": "state0" + }, + { + "name": "state1" + } + ] +} diff --git a/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/state0.png b/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/state0.png new file mode 100644 index 00000000000..60d1c0421b3 Binary files /dev/null and b/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/state0.png differ diff --git a/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/state1.png b/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/state1.png new file mode 100644 index 00000000000..1ae08dba887 Binary files /dev/null and b/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/state1.png differ diff --git a/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/meta.json b/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/meta.json new file mode 100644 index 00000000000..453a3797223 --- /dev/null +++ b/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Made by brainfood1183 (github)", + "states": [ + { + "name": "state0" + }, + { + "name": "state1" + } + ] +} diff --git a/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/state0.png b/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/state0.png new file mode 100644 index 00000000000..8ad1f325b35 Binary files /dev/null and b/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/state0.png differ diff --git a/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/state1.png b/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/state1.png new file mode 100644 index 00000000000..e724d3b9f78 Binary files /dev/null and b/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/state1.png differ diff --git a/Resources/Textures/Structures/Windows/reinforced_uranium_diagonal.rsi/meta.json b/Resources/Textures/Structures/Windows/reinforced_uranium_diagonal.rsi/meta.json new file mode 100644 index 00000000000..453a3797223 --- /dev/null +++ b/Resources/Textures/Structures/Windows/reinforced_uranium_diagonal.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Made by brainfood1183 (github)", + "states": [ + { + "name": "state0" + }, + { + "name": "state1" + } + ] +} diff --git a/Resources/Textures/Structures/Windows/reinforced_uranium_diagonal.rsi/state0.png b/Resources/Textures/Structures/Windows/reinforced_uranium_diagonal.rsi/state0.png new file mode 100644 index 00000000000..facbfda3ade Binary files /dev/null and b/Resources/Textures/Structures/Windows/reinforced_uranium_diagonal.rsi/state0.png differ diff --git a/Resources/Textures/Structures/Windows/reinforced_uranium_diagonal.rsi/state1.png b/Resources/Textures/Structures/Windows/reinforced_uranium_diagonal.rsi/state1.png new file mode 100644 index 00000000000..3799df51bf9 Binary files /dev/null and b/Resources/Textures/Structures/Windows/reinforced_uranium_diagonal.rsi/state1.png differ diff --git a/Resources/Textures/Structures/Windows/reinforced_window_diagonal.rsi/meta.json b/Resources/Textures/Structures/Windows/reinforced_window_diagonal.rsi/meta.json new file mode 100644 index 00000000000..453a3797223 --- /dev/null +++ b/Resources/Textures/Structures/Windows/reinforced_window_diagonal.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Made by brainfood1183 (github)", + "states": [ + { + "name": "state0" + }, + { + "name": "state1" + } + ] +} diff --git a/Resources/Textures/Structures/Windows/reinforced_window_diagonal.rsi/state0.png b/Resources/Textures/Structures/Windows/reinforced_window_diagonal.rsi/state0.png new file mode 100644 index 00000000000..eb9489ddb47 Binary files /dev/null and b/Resources/Textures/Structures/Windows/reinforced_window_diagonal.rsi/state0.png differ diff --git a/Resources/Textures/Structures/Windows/reinforced_window_diagonal.rsi/state1.png b/Resources/Textures/Structures/Windows/reinforced_window_diagonal.rsi/state1.png new file mode 100644 index 00000000000..65254207165 Binary files /dev/null and b/Resources/Textures/Structures/Windows/reinforced_window_diagonal.rsi/state1.png differ diff --git a/Resources/Textures/Structures/Windows/shuttle_window_diagonal.rsi/meta.json b/Resources/Textures/Structures/Windows/shuttle_window_diagonal.rsi/meta.json new file mode 100644 index 00000000000..453a3797223 --- /dev/null +++ b/Resources/Textures/Structures/Windows/shuttle_window_diagonal.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Made by brainfood1183 (github)", + "states": [ + { + "name": "state0" + }, + { + "name": "state1" + } + ] +} diff --git a/Resources/Textures/Structures/Windows/shuttle_window_diagonal.rsi/state0.png b/Resources/Textures/Structures/Windows/shuttle_window_diagonal.rsi/state0.png new file mode 100644 index 00000000000..d218355a78d Binary files /dev/null and b/Resources/Textures/Structures/Windows/shuttle_window_diagonal.rsi/state0.png differ diff --git a/Resources/Textures/Structures/Windows/shuttle_window_diagonal.rsi/state1.png b/Resources/Textures/Structures/Windows/shuttle_window_diagonal.rsi/state1.png new file mode 100644 index 00000000000..810b7039002 Binary files /dev/null and b/Resources/Textures/Structures/Windows/shuttle_window_diagonal.rsi/state1.png differ diff --git a/Resources/Textures/Structures/Windows/uranium_window_diagonal.rsi/meta.json b/Resources/Textures/Structures/Windows/uranium_window_diagonal.rsi/meta.json new file mode 100644 index 00000000000..453a3797223 --- /dev/null +++ b/Resources/Textures/Structures/Windows/uranium_window_diagonal.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Made by brainfood1183 (github)", + "states": [ + { + "name": "state0" + }, + { + "name": "state1" + } + ] +} diff --git a/Resources/Textures/Structures/Windows/uranium_window_diagonal.rsi/state0.png b/Resources/Textures/Structures/Windows/uranium_window_diagonal.rsi/state0.png new file mode 100644 index 00000000000..45b3c99189f Binary files /dev/null and b/Resources/Textures/Structures/Windows/uranium_window_diagonal.rsi/state0.png differ diff --git a/Resources/Textures/Structures/Windows/uranium_window_diagonal.rsi/state1.png b/Resources/Textures/Structures/Windows/uranium_window_diagonal.rsi/state1.png new file mode 100644 index 00000000000..5286b1e17e6 Binary files /dev/null and b/Resources/Textures/Structures/Windows/uranium_window_diagonal.rsi/state1.png differ diff --git a/Resources/Textures/Structures/Windows/window_diagonal.rsi/meta.json b/Resources/Textures/Structures/Windows/window_diagonal.rsi/meta.json new file mode 100644 index 00000000000..453a3797223 --- /dev/null +++ b/Resources/Textures/Structures/Windows/window_diagonal.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Made by brainfood1183 (github)", + "states": [ + { + "name": "state0" + }, + { + "name": "state1" + } + ] +} diff --git a/Resources/Textures/Structures/Windows/window_diagonal.rsi/state0.png b/Resources/Textures/Structures/Windows/window_diagonal.rsi/state0.png new file mode 100644 index 00000000000..df5805957d6 Binary files /dev/null and b/Resources/Textures/Structures/Windows/window_diagonal.rsi/state0.png differ diff --git a/Resources/Textures/Structures/Windows/window_diagonal.rsi/state1.png b/Resources/Textures/Structures/Windows/window_diagonal.rsi/state1.png new file mode 100644 index 00000000000..83737b8cefe Binary files /dev/null and b/Resources/Textures/Structures/Windows/window_diagonal.rsi/state1.png differ diff --git a/RobustToolbox b/RobustToolbox index f5874ea4024..93f44286354 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit f5874ea402430bb902a5d5d1f47953679d79d781 +Subproject commit 93f4428635403a8d075ce7950431e9edb7498e27 diff --git a/SpaceStation14.sln b/SpaceStation14.sln index 7e98187d337..11979cdd08c 100644 --- a/SpaceStation14.sln +++ b/SpaceStation14.sln @@ -63,8 +63,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Build", "Build", "{806ED41A ProjectSection(SolutionItems) = preProject Tools\gen_build_info.py = Tools\gen_build_info.py Tools\generate_hashes.ps1 = Tools\generate_hashes.ps1 - Tools\package_client_build.py = Tools\package_client_build.py - Tools\package_server_build.py = Tools\package_server_build.py EndProjectSection EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Robust.Shared.Scripting", "RobustToolbox\Robust.Shared.Scripting\Robust.Shared.Scripting.csproj", "{41B450C0-A361-4CD7-8121-7072B8995CFC}" diff --git a/Tools/package_client_build.py b/Tools/package_client_build.py old mode 100755 new mode 100644 diff --git a/Tools/package_server_build.py b/Tools/package_server_build.py old mode 100755 new mode 100644 index e8504ed630f..6d5a8153a70 --- a/Tools/package_server_build.py +++ b/Tools/package_server_build.py @@ -309,4 +309,4 @@ def copy_content_assemblies(target, zipf): if __name__ == '__main__': - main() + main() \ No newline at end of file